{"id":"3560c431e12a0a1d73d31c8f96a09d2f","_format":"hh-sol-build-info-1","solcVersion":"0.8.28","solcLongVersion":"0.8.28+commit.7893614a","input":{"language":"Solidity","sources":{"@openzeppelin/community-contracts/contracts/interfaces/IERC7802.sol":{"content":"// SPDX-License-Identifier: MIT\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\n\n/// @title IERC7802\n/// @notice Defines the interface for crosschain ERC20 transfers.\ninterface IERC7802 is IERC165 {\n    /// @notice Emitted when a crosschain transfer mints tokens.\n    /// @param to       Address of the account tokens are being minted for.\n    /// @param amount   Amount of tokens minted.\n    /// @param sender   Address of the caller (msg.sender) who invoked crosschainMint.\n    event CrosschainMint(address indexed to, uint256 amount, address indexed sender);\n\n    /// @notice Emitted when a crosschain transfer burns tokens.\n    /// @param from     Address of the account tokens are being burned from.\n    /// @param amount   Amount of tokens burned.\n    /// @param sender   Address of the caller (msg.sender) who invoked crosschainBurn.\n    event CrosschainBurn(address indexed from, uint256 amount, address indexed sender);\n\n    /// @notice Mint tokens through a crosschain transfer.\n    /// @param _to     Address to mint tokens to.\n    /// @param _amount Amount of tokens to mint.\n    function crosschainMint(address _to, uint256 _amount) external;\n\n    /// @notice Burn tokens through a crosschain transfer.\n    /// @param _from   Address to burn tokens from.\n    /// @param _amount Amount of tokens to burn.\n    function crosschainBurn(address _from, uint256 _amount) external;\n}\n"},"@openzeppelin/community-contracts/contracts/token/ERC20/extensions/ERC20Bridgeable.sol":{"content":"// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.20;\n\nimport {ERC20} from \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\nimport {ERC165, IERC165} from \"@openzeppelin/contracts/utils/introspection/ERC165.sol\";\nimport {IERC7802} from \"../../../interfaces/IERC7802.sol\";\n\n/**\n * @dev ERC20 extension that implements the standard token interface according to\n * https://eips.ethereum.org/EIPS/eip-7802[ERC-7802].\n *\n * NOTE: To implement a crosschain gateway for a chain, consider using an implementation if {IERC7786} token\n * bridge (e.g. {AxelarGatewaySource}, {AxelarGatewayDestination}).\n */\nabstract contract ERC20Bridgeable is ERC20, ERC165, IERC7802 {\n    /// @dev Modifier to restrict access to the token bridge.\n    modifier onlyTokenBridge() {\n        // Token bridge should never be impersonated using a relayer/forwarder. Using msg.sender is preferable to\n        // _msgSender() here, both for cost and security reasons.\n        _checkTokenBridge(msg.sender);\n        _;\n    }\n\n    /// @inheritdoc ERC165\n    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\n        return interfaceId == type(IERC7802).interfaceId || super.supportsInterface(interfaceId);\n    }\n\n    /**\n     * @dev See {IERC7802-crosschainMint}. Emits a {CrosschainMint} event.\n     */\n    function crosschainMint(address to, uint256 value) public virtual override onlyTokenBridge {\n        _mint(to, value);\n        emit CrosschainMint(to, value, _msgSender());\n    }\n\n    /**\n     * @dev See {IERC7802-crosschainBurn}. Emits a {CrosschainBurn} event.\n     */\n    function crosschainBurn(address from, uint256 value) public virtual override onlyTokenBridge {\n        _burn(from, value);\n        emit CrosschainBurn(from, value, _msgSender());\n    }\n\n    /**\n     * @dev Checks if the caller is a trusted token bridge. MUST revert otherwise.\n     *\n     * Developers should implement this function using an access control mechanism that allows\n     * customizing the list of allowed senders. Consider using {AccessControl} or {AccessManaged}.\n     */\n    function _checkTokenBridge(address caller) internal virtual;\n}\n"},"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n *\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n * reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n * case an upgrade adds a module that needs to be initialized.\n *\n * For example:\n *\n * [.hljs-theme-light.nopadding]\n * ```solidity\n * contract MyToken is ERC20Upgradeable {\n *     function initialize() initializer public {\n *         __ERC20_init(\"MyToken\", \"MTK\");\n *     }\n * }\n *\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n *     function initializeV2() reinitializer(2) public {\n *         __ERC20Permit_init(\"MyToken\");\n *     }\n * }\n * ```\n *\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n *\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n *\n * [CAUTION]\n * ====\n * Avoid leaving a contract uninitialized.\n *\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n *\n * [.hljs-theme-light.nopadding]\n * ```\n * /// @custom:oz-upgrades-unsafe-allow constructor\n * constructor() {\n *     _disableInitializers();\n * }\n * ```\n * ====\n */\nabstract contract Initializable {\n    /**\n     * @dev Storage of the initializable contract.\n     *\n     * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions\n     * when using with upgradeable contracts.\n     *\n     * @custom:storage-location erc7201:openzeppelin.storage.Initializable\n     */\n    struct InitializableStorage {\n        /**\n         * @dev Indicates that the contract has been initialized.\n         */\n        uint64 _initialized;\n        /**\n         * @dev Indicates that the contract is in the process of being initialized.\n         */\n        bool _initializing;\n    }\n\n    // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.Initializable\")) - 1)) & ~bytes32(uint256(0xff))\n    bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;\n\n    /**\n     * @dev The contract is already initialized.\n     */\n    error InvalidInitialization();\n\n    /**\n     * @dev The contract is not initializing.\n     */\n    error NotInitializing();\n\n    /**\n     * @dev Triggered when the contract has been initialized or reinitialized.\n     */\n    event Initialized(uint64 version);\n\n    /**\n     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n     * `onlyInitializing` functions can be used to initialize parent contracts.\n     *\n     * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any\n     * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in\n     * production.\n     *\n     * Emits an {Initialized} event.\n     */\n    modifier initializer() {\n        // solhint-disable-next-line var-name-mixedcase\n        InitializableStorage storage $ = _getInitializableStorage();\n\n        // Cache values to avoid duplicated sloads\n        bool isTopLevelCall = !$._initializing;\n        uint64 initialized = $._initialized;\n\n        // Allowed calls:\n        // - initialSetup: the contract is not in the initializing state and no previous version was\n        //                 initialized\n        // - construction: the contract is initialized at version 1 (no reinitialization) and the\n        //                 current contract is just being deployed\n        bool initialSetup = initialized == 0 && isTopLevelCall;\n        bool construction = initialized == 1 && address(this).code.length == 0;\n\n        if (!initialSetup && !construction) {\n            revert InvalidInitialization();\n        }\n        $._initialized = 1;\n        if (isTopLevelCall) {\n            $._initializing = true;\n        }\n        _;\n        if (isTopLevelCall) {\n            $._initializing = false;\n            emit Initialized(1);\n        }\n    }\n\n    /**\n     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n     * used to initialize parent contracts.\n     *\n     * A reinitializer may be used after the original initialization step. This is essential to configure modules that\n     * are added through upgrades and that require initialization.\n     *\n     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n     * cannot be nested. If one is invoked in the context of another, execution will revert.\n     *\n     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n     * a contract, executing them in the right order is up to the developer or operator.\n     *\n     * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.\n     *\n     * Emits an {Initialized} event.\n     */\n    modifier reinitializer(uint64 version) {\n        // solhint-disable-next-line var-name-mixedcase\n        InitializableStorage storage $ = _getInitializableStorage();\n\n        if ($._initializing || $._initialized >= version) {\n            revert InvalidInitialization();\n        }\n        $._initialized = version;\n        $._initializing = true;\n        _;\n        $._initializing = false;\n        emit Initialized(version);\n    }\n\n    /**\n     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n     * {initializer} and {reinitializer} modifiers, directly or indirectly.\n     */\n    modifier onlyInitializing() {\n        _checkInitializing();\n        _;\n    }\n\n    /**\n     * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.\n     */\n    function _checkInitializing() internal view virtual {\n        if (!_isInitializing()) {\n            revert NotInitializing();\n        }\n    }\n\n    /**\n     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n     * through proxies.\n     *\n     * Emits an {Initialized} event the first time it is successfully executed.\n     */\n    function _disableInitializers() internal virtual {\n        // solhint-disable-next-line var-name-mixedcase\n        InitializableStorage storage $ = _getInitializableStorage();\n\n        if ($._initializing) {\n            revert InvalidInitialization();\n        }\n        if ($._initialized != type(uint64).max) {\n            $._initialized = type(uint64).max;\n            emit Initialized(type(uint64).max);\n        }\n    }\n\n    /**\n     * @dev Returns the highest version that has been initialized. See {reinitializer}.\n     */\n    function _getInitializedVersion() internal view returns (uint64) {\n        return _getInitializableStorage()._initialized;\n    }\n\n    /**\n     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\n     */\n    function _isInitializing() internal view returns (bool) {\n        return _getInitializableStorage()._initializing;\n    }\n\n    /**\n     * @dev Pointer to storage slot. Allows integrators to override it with a custom storage location.\n     *\n     * NOTE: Consider following the ERC-7201 formula to derive storage locations.\n     */\n    function _initializableStorageSlot() internal pure virtual returns (bytes32) {\n        return INITIALIZABLE_STORAGE;\n    }\n\n    /**\n     * @dev Returns a pointer to the storage namespace.\n     */\n    // solhint-disable-next-line var-name-mixedcase\n    function _getInitializableStorage() private pure returns (InitializableStorage storage $) {\n        bytes32 slot = _initializableStorageSlot();\n        assembly {\n            $.slot := slot\n        }\n    }\n}\n"},"@openzeppelin/contracts/access/Ownable.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)\n\npragma solidity ^0.8.20;\n\nimport {Context} from \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * The initial owner is set to the address provided by the deployer. This can\n * later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n    address private _owner;\n\n    /**\n     * @dev The caller account is not authorized to perform an operation.\n     */\n    error OwnableUnauthorizedAccount(address account);\n\n    /**\n     * @dev The owner is not a valid owner account. (eg. `address(0)`)\n     */\n    error OwnableInvalidOwner(address owner);\n\n    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n    /**\n     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.\n     */\n    constructor(address initialOwner) {\n        if (initialOwner == address(0)) {\n            revert OwnableInvalidOwner(address(0));\n        }\n        _transferOwnership(initialOwner);\n    }\n\n    /**\n     * @dev Throws if called by any account other than the owner.\n     */\n    modifier onlyOwner() {\n        _checkOwner();\n        _;\n    }\n\n    /**\n     * @dev Returns the address of the current owner.\n     */\n    function owner() public view virtual returns (address) {\n        return _owner;\n    }\n\n    /**\n     * @dev Throws if the sender is not the owner.\n     */\n    function _checkOwner() internal view virtual {\n        if (owner() != _msgSender()) {\n            revert OwnableUnauthorizedAccount(_msgSender());\n        }\n    }\n\n    /**\n     * @dev Leaves the contract without owner. It will not be possible to call\n     * `onlyOwner` functions. Can only be called by the current owner.\n     *\n     * NOTE: Renouncing ownership will leave the contract without an owner,\n     * thereby disabling any functionality that is only available to the owner.\n     */\n    function renounceOwnership() public virtual onlyOwner {\n        _transferOwnership(address(0));\n    }\n\n    /**\n     * @dev Transfers ownership of the contract to a new account (`newOwner`).\n     * Can only be called by the current owner.\n     */\n    function transferOwnership(address newOwner) public virtual onlyOwner {\n        if (newOwner == address(0)) {\n            revert OwnableInvalidOwner(address(0));\n        }\n        _transferOwnership(newOwner);\n    }\n\n    /**\n     * @dev Transfers ownership of the contract to a new account (`newOwner`).\n     * Internal function without access restriction.\n     */\n    function _transferOwnership(address newOwner) internal virtual {\n        address oldOwner = _owner;\n        _owner = newOwner;\n        emit OwnershipTransferred(oldOwner, newOwner);\n    }\n}\n"},"@openzeppelin/contracts/access/Ownable2Step.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (access/Ownable2Step.sol)\n\npragma solidity ^0.8.20;\n\nimport {Ownable} from \"./Ownable.sol\";\n\n/**\n * @dev Contract module which provides access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * This extension of the {Ownable} contract includes a two-step mechanism to transfer\n * ownership, where the new owner must call {acceptOwnership} in order to replace the\n * old one. This can help prevent common mistakes, such as transfers of ownership to\n * incorrect accounts, or to contracts that are unable to interact with the\n * permission system.\n *\n * The initial owner is specified at deployment time in the constructor for `Ownable`. This\n * can later be changed with {transferOwnership} and {acceptOwnership}.\n *\n * This module is used through inheritance. It will make available all functions\n * from parent (Ownable).\n */\nabstract contract Ownable2Step is Ownable {\n    address private _pendingOwner;\n\n    event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);\n\n    /**\n     * @dev Returns the address of the pending owner.\n     */\n    function pendingOwner() public view virtual returns (address) {\n        return _pendingOwner;\n    }\n\n    /**\n     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\n     * Can only be called by the current owner.\n     *\n     * Setting `newOwner` to the zero address is allowed; this can be used to cancel an initiated ownership transfer.\n     */\n    function transferOwnership(address newOwner) public virtual override onlyOwner {\n        _pendingOwner = newOwner;\n        emit OwnershipTransferStarted(owner(), newOwner);\n    }\n\n    /**\n     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\n     * Internal function without access restriction.\n     */\n    function _transferOwnership(address newOwner) internal virtual override {\n        delete _pendingOwner;\n        super._transferOwnership(newOwner);\n    }\n\n    /**\n     * @dev The new owner accepts the ownership transfer.\n     */\n    function acceptOwnership() public virtual {\n        address sender = _msgSender();\n        if (pendingOwner() != sender) {\n            revert OwnableUnauthorizedAccount(sender);\n        }\n        _transferOwnership(sender);\n    }\n}\n"},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)\npragma solidity >=0.8.4;\n\n/**\n * @dev Standard ERC-20 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.\n */\ninterface IERC20Errors {\n    /**\n     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     * @param balance Current balance for the interacting account.\n     * @param needed Minimum amount required to perform a transfer.\n     */\n    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);\n\n    /**\n     * @dev Indicates a failure with the token `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     */\n    error ERC20InvalidSender(address sender);\n\n    /**\n     * @dev Indicates a failure with the token `receiver`. Used in transfers.\n     * @param receiver Address to which tokens are being transferred.\n     */\n    error ERC20InvalidReceiver(address receiver);\n\n    /**\n     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.\n     * @param spender Address that may be allowed to operate on tokens without being their owner.\n     * @param allowance Amount of tokens a `spender` is allowed to operate with.\n     * @param needed Minimum amount required to perform a transfer.\n     */\n    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);\n\n    /**\n     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n     * @param approver Address initiating an approval operation.\n     */\n    error ERC20InvalidApprover(address approver);\n\n    /**\n     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n     * @param spender Address that may be allowed to operate on tokens without being their owner.\n     */\n    error ERC20InvalidSpender(address spender);\n}\n\n/**\n * @dev Standard ERC-721 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.\n */\ninterface IERC721Errors {\n    /**\n     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.\n     * Used in balance queries.\n     * @param owner Address of the current owner of a token.\n     */\n    error ERC721InvalidOwner(address owner);\n\n    /**\n     * @dev Indicates a `tokenId` whose `owner` is the zero address.\n     * @param tokenId Identifier number of a token.\n     */\n    error ERC721NonexistentToken(uint256 tokenId);\n\n    /**\n     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     * @param tokenId Identifier number of a token.\n     * @param owner Address of the current owner of a token.\n     */\n    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);\n\n    /**\n     * @dev Indicates a failure with the token `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     */\n    error ERC721InvalidSender(address sender);\n\n    /**\n     * @dev Indicates a failure with the token `receiver`. Used in transfers.\n     * @param receiver Address to which tokens are being transferred.\n     */\n    error ERC721InvalidReceiver(address receiver);\n\n    /**\n     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n     * @param operator Address that may be allowed to operate on tokens without being their owner.\n     * @param tokenId Identifier number of a token.\n     */\n    error ERC721InsufficientApproval(address operator, uint256 tokenId);\n\n    /**\n     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n     * @param approver Address initiating an approval operation.\n     */\n    error ERC721InvalidApprover(address approver);\n\n    /**\n     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n     * @param operator Address that may be allowed to operate on tokens without being their owner.\n     */\n    error ERC721InvalidOperator(address operator);\n}\n\n/**\n * @dev Standard ERC-1155 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.\n */\ninterface IERC1155Errors {\n    /**\n     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     * @param balance Current balance for the interacting account.\n     * @param needed Minimum amount required to perform a transfer.\n     * @param tokenId Identifier number of a token.\n     */\n    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);\n\n    /**\n     * @dev Indicates a failure with the token `sender`. Used in transfers.\n     * @param sender Address whose tokens are being transferred.\n     */\n    error ERC1155InvalidSender(address sender);\n\n    /**\n     * @dev Indicates a failure with the token `receiver`. Used in transfers.\n     * @param receiver Address to which tokens are being transferred.\n     */\n    error ERC1155InvalidReceiver(address receiver);\n\n    /**\n     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n     * @param operator Address that may be allowed to operate on tokens without being their owner.\n     * @param owner Address of the current owner of a token.\n     */\n    error ERC1155MissingApprovalForAll(address operator, address owner);\n\n    /**\n     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n     * @param approver Address initiating an approval operation.\n     */\n    error ERC1155InvalidApprover(address approver);\n\n    /**\n     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n     * @param operator Address that may be allowed to operate on tokens without being their owner.\n     */\n    error ERC1155InvalidOperator(address operator);\n\n    /**\n     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.\n     * Used in batch transfers.\n     * @param idsLength Length of the array of token identifiers\n     * @param valuesLength Length of the array of token amounts\n     */\n    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);\n}\n"},"@openzeppelin/contracts/interfaces/IERC5267.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC5267.sol)\n\npragma solidity >=0.4.16;\n\ninterface IERC5267 {\n    /**\n     * @dev MAY be emitted to signal that the domain could have changed.\n     */\n    event EIP712DomainChanged();\n\n    /**\n     * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712\n     * signature.\n     */\n    function eip712Domain()\n        external\n        view\n        returns (\n            bytes1 fields,\n            string memory name,\n            string memory version,\n            uint256 chainId,\n            address verifyingContract,\n            bytes32 salt,\n            uint256[] memory extensions\n        );\n}\n"},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"./IERC20.sol\";\nimport {IERC20Metadata} from \"./extensions/IERC20Metadata.sol\";\nimport {Context} from \"../../utils/Context.sol\";\nimport {IERC20Errors} from \"../../interfaces/draft-IERC6093.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 *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * The default value of {decimals} is 18. To change this, you should override\n * this function so it returns a different value.\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 ERC-20\n * applications.\n */\nabstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {\n    mapping(address account => uint256) private _balances;\n\n    mapping(address account => mapping(address spender => 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     * Both values are immutable: they can only be set once during 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 returns (string memory) {\n        return _name;\n    }\n\n    /**\n     * @dev Returns the symbol of the token, usually a shorter version of the\n     * name.\n     */\n    function symbol() public view virtual returns (string memory) {\n        return _symbol;\n    }\n\n    /**\n     * @dev Returns the number of decimals used to get its user representation.\n     * For example, if `decimals` equals `2`, a balance of `505` tokens should\n     * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n     *\n     * Tokens usually opt for a value of 18, imitating the relationship between\n     * Ether and Wei. This is the default value returned by this function, unless\n     * it's overridden.\n     *\n     * NOTE: This information is only used for _display_ purposes: it in\n     * no way affects any of the arithmetic of the contract, including\n     * {IERC20-balanceOf} and {IERC20-transfer}.\n     */\n    function decimals() public view virtual returns (uint8) {\n        return 18;\n    }\n\n    /// @inheritdoc IERC20\n    function totalSupply() public view virtual returns (uint256) {\n        return _totalSupply;\n    }\n\n    /// @inheritdoc IERC20\n    function balanceOf(address account) public view virtual returns (uint256) {\n        return _balances[account];\n    }\n\n    /**\n     * @dev See {IERC20-transfer}.\n     *\n     * Requirements:\n     *\n     * - `to` cannot be the zero address.\n     * - the caller must have a balance of at least `value`.\n     */\n    function transfer(address to, uint256 value) public virtual returns (bool) {\n        address owner = _msgSender();\n        _transfer(owner, to, value);\n        return true;\n    }\n\n    /// @inheritdoc IERC20\n    function allowance(address owner, address spender) public view virtual returns (uint256) {\n        return _allowances[owner][spender];\n    }\n\n    /**\n     * @dev See {IERC20-approve}.\n     *\n     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on\n     * `transferFrom`. This is semantically equivalent to an infinite approval.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     */\n    function approve(address spender, uint256 value) public virtual returns (bool) {\n        address owner = _msgSender();\n        _approve(owner, spender, value);\n        return true;\n    }\n\n    /**\n     * @dev See {IERC20-transferFrom}.\n     *\n     * Skips emitting an {Approval} event indicating an allowance update. This is not\n     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].\n     *\n     * NOTE: Does not update the allowance if the current allowance\n     * is the maximum `uint256`.\n     *\n     * Requirements:\n     *\n     * - `from` and `to` cannot be the zero address.\n     * - `from` must have a balance of at least `value`.\n     * - the caller must have allowance for ``from``'s tokens of at least\n     * `value`.\n     */\n    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {\n        address spender = _msgSender();\n        _spendAllowance(from, spender, value);\n        _transfer(from, to, value);\n        return true;\n    }\n\n    /**\n     * @dev Moves a `value` amount of tokens from `from` to `to`.\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     * NOTE: This function is not virtual, {_update} should be overridden instead.\n     */\n    function _transfer(address from, address to, uint256 value) internal {\n        if (from == address(0)) {\n            revert ERC20InvalidSender(address(0));\n        }\n        if (to == address(0)) {\n            revert ERC20InvalidReceiver(address(0));\n        }\n        _update(from, to, value);\n    }\n\n    /**\n     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n     * this function.\n     *\n     * Emits a {Transfer} event.\n     */\n    function _update(address from, address to, uint256 value) internal virtual {\n        if (from == address(0)) {\n            // Overflow check required: The rest of the code assumes that totalSupply never overflows\n            _totalSupply += value;\n        } else {\n            uint256 fromBalance = _balances[from];\n            if (fromBalance < value) {\n                revert ERC20InsufficientBalance(from, fromBalance, value);\n            }\n            unchecked {\n                // Overflow not possible: value <= fromBalance <= totalSupply.\n                _balances[from] = fromBalance - value;\n            }\n        }\n\n        if (to == address(0)) {\n            unchecked {\n                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.\n                _totalSupply -= value;\n            }\n        } else {\n            unchecked {\n                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.\n                _balances[to] += value;\n            }\n        }\n\n        emit Transfer(from, to, value);\n    }\n\n    /**\n     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n     * Relies on the `_update` mechanism\n     *\n     * Emits a {Transfer} event with `from` set to the zero address.\n     *\n     * NOTE: This function is not virtual, {_update} should be overridden instead.\n     */\n    function _mint(address account, uint256 value) internal {\n        if (account == address(0)) {\n            revert ERC20InvalidReceiver(address(0));\n        }\n        _update(address(0), account, value);\n    }\n\n    /**\n     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n     * Relies on the `_update` mechanism.\n     *\n     * Emits a {Transfer} event with `to` set to the zero address.\n     *\n     * NOTE: This function is not virtual, {_update} should be overridden instead\n     */\n    function _burn(address account, uint256 value) internal {\n        if (account == address(0)) {\n            revert ERC20InvalidSender(address(0));\n        }\n        _update(account, address(0), value);\n    }\n\n    /**\n     * @dev Sets `value` 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     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.\n     */\n    function _approve(address owner, address spender, uint256 value) internal {\n        _approve(owner, spender, value, true);\n    }\n\n    /**\n     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n     *\n     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n     * `Approval` event during `transferFrom` operations.\n     *\n     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n     * true using the following override:\n     *\n     * ```solidity\n     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n     *     super._approve(owner, spender, value, true);\n     * }\n     * ```\n     *\n     * Requirements are the same as {_approve}.\n     */\n    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {\n        if (owner == address(0)) {\n            revert ERC20InvalidApprover(address(0));\n        }\n        if (spender == address(0)) {\n            revert ERC20InvalidSpender(address(0));\n        }\n        _allowances[owner][spender] = value;\n        if (emitEvent) {\n            emit Approval(owner, spender, value);\n        }\n    }\n\n    /**\n     * @dev Updates `owner`'s allowance for `spender` based on spent `value`.\n     *\n     * Does not update the allowance value in case of infinite allowance.\n     * Revert if not enough allowance is available.\n     *\n     * Does not emit an {Approval} event.\n     */\n    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {\n        uint256 currentAllowance = allowance(owner, spender);\n        if (currentAllowance < type(uint256).max) {\n            if (currentAllowance < value) {\n                revert ERC20InsufficientAllowance(spender, currentAllowance, value);\n            }\n            unchecked {\n                _approve(owner, spender, currentAllowance - value, false);\n            }\n        }\n    }\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/ERC20Permit.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20Permit} from \"./IERC20Permit.sol\";\nimport {ERC20} from \"../ERC20.sol\";\nimport {ECDSA} from \"../../../utils/cryptography/ECDSA.sol\";\nimport {EIP712} from \"../../../utils/cryptography/EIP712.sol\";\nimport {Nonces} from \"../../../utils/Nonces.sol\";\n\n/**\n * @dev Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC-20 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 */\nabstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces {\n    bytes32 private constant PERMIT_TYPEHASH =\n        keccak256(\"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)\");\n\n    /**\n     * @dev Permit deadline has expired.\n     */\n    error ERC2612ExpiredSignature(uint256 deadline);\n\n    /**\n     * @dev Mismatched signature.\n     */\n    error ERC2612InvalidSigner(address signer, address owner);\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 ERC-20 token name.\n     */\n    constructor(string memory name) EIP712(name, \"1\") {}\n\n    /// @inheritdoc IERC20Permit\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 {\n        if (block.timestamp > deadline) {\n            revert ERC2612ExpiredSignature(deadline);\n        }\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        if (signer != owner) {\n            revert ERC2612InvalidSigner(signer, owner);\n        }\n\n        _approve(owner, spender, value);\n    }\n\n    /// @inheritdoc IERC20Permit\n    function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) {\n        return super.nonces(owner);\n    }\n\n    /// @inheritdoc IERC20Permit\n    // solhint-disable-next-line func-name-mixedcase\n    function DOMAIN_SEPARATOR() external view virtual returns (bytes32) {\n        return _domainSeparatorV4();\n    }\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity >=0.6.2;\n\nimport {IERC20} from \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC-20 standard.\n */\ninterface IERC20Metadata is IERC20 {\n    /**\n     * @dev Returns the name of the token.\n     */\n    function name() external view returns (string memory);\n\n    /**\n     * @dev Returns the symbol of the token.\n     */\n    function symbol() external view returns (string memory);\n\n    /**\n     * @dev Returns the decimals places of the token.\n     */\n    function decimals() external view returns (uint8);\n}\n"},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Permit.sol)\n\npragma solidity >=0.4.16;\n\n/**\n * @dev Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC-20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n *\n * ==== Security Considerations\n *\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n * generally recommended is:\n *\n * ```solidity\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n *     doThing(..., value);\n * }\n *\n * function doThing(..., uint256 value) public {\n *     token.safeTransferFrom(msg.sender, address(this), value);\n *     ...\n * }\n * ```\n *\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n * {SafeERC20-safeTransferFrom}).\n *\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n * contracts should have entry points that don't rely on permit.\n */\ninterface IERC20Permit {\n    /**\n     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n     * given ``owner``'s signed approval.\n     *\n     * IMPORTANT: The same issues {IERC20-approve} has related to transaction\n     * ordering also apply here.\n     *\n     * Emits an {Approval} event.\n     *\n     * Requirements:\n     *\n     * - `spender` cannot be the zero address.\n     * - `deadline` must be a timestamp in the future.\n     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n     * over the EIP712-formatted function arguments.\n     * - the signature must use ``owner``'s current nonce (see {nonces}).\n     *\n     * For more information on the signature format, see the\n     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n     * section].\n     *\n     * CAUTION: See Security Considerations above.\n     */\n    function permit(\n        address owner,\n        address spender,\n        uint256 value,\n        uint256 deadline,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) external;\n\n    /**\n     * @dev Returns the current nonce for `owner`. This value must be\n     * included whenever a signature is generated for {permit}.\n     *\n     * Every successful call to {permit} increases ``owner``'s nonce by one. This\n     * prevents a signature from being used multiple times.\n     */\n    function nonces(address owner) external view returns (uint256);\n\n    /**\n     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\n     */\n    // solhint-disable-next-line func-name-mixedcase\n    function DOMAIN_SEPARATOR() external view returns (bytes32);\n}\n"},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)\n\npragma solidity >=0.4.16;\n\n/**\n * @dev Interface of the ERC-20 standard as defined in the ERC.\n */\ninterface IERC20 {\n    /**\n     * @dev Emitted when `value` tokens are moved from one account (`from`) to\n     * another (`to`).\n     *\n     * Note that `value` may be zero.\n     */\n    event Transfer(address indexed from, address indexed to, uint256 value);\n\n    /**\n     * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n     * a call to {approve}. `value` is the new allowance.\n     */\n    event Approval(address indexed owner, address indexed spender, uint256 value);\n\n    /**\n     * @dev Returns the value of tokens in existence.\n     */\n    function totalSupply() external view returns (uint256);\n\n    /**\n     * @dev Returns the value of tokens owned by `account`.\n     */\n    function balanceOf(address account) external view returns (uint256);\n\n    /**\n     * @dev Moves a `value` amount of tokens from the caller's account to `to`.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transfer(address to, uint256 value) external returns (bool);\n\n    /**\n     * @dev Returns the remaining number of tokens that `spender` will be\n     * allowed to spend on behalf of `owner` through {transferFrom}. This is\n     * zero by default.\n     *\n     * This value changes when {approve} or {transferFrom} are called.\n     */\n    function allowance(address owner, address spender) external view returns (uint256);\n\n    /**\n     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n     * caller's tokens.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * IMPORTANT: Beware that changing an allowance with this method brings the risk\n     * that someone may use both the old and the new allowance by unfortunate\n     * transaction ordering. One possible solution to mitigate this race\n     * condition is to first reduce the spender's allowance to 0 and set the\n     * desired value afterwards:\n     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n     *\n     * Emits an {Approval} event.\n     */\n    function approve(address spender, uint256 value) external returns (bool);\n\n    /**\n     * @dev Moves a `value` amount of tokens from `from` to `to` using the\n     * allowance mechanism. `value` is then deducted from the caller's\n     * allowance.\n     *\n     * Returns a boolean value indicating whether the operation succeeded.\n     *\n     * Emits a {Transfer} event.\n     */\n    function transferFrom(address from, address to, uint256 value) external returns (bool);\n}\n"},"@openzeppelin/contracts/utils/Context.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n    function _msgSender() internal view virtual returns (address) {\n        return msg.sender;\n    }\n\n    function _msgData() internal view virtual returns (bytes calldata) {\n        return msg.data;\n    }\n\n    function _contextSuffixLength() internal view virtual returns (uint256) {\n        return 0;\n    }\n}\n"},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/cryptography/ECDSA.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n *\n * These functions can be used to verify that a message was signed by the holder\n * of the private keys of a given address.\n */\nlibrary ECDSA {\n    enum RecoverError {\n        NoError,\n        InvalidSignature,\n        InvalidSignatureLength,\n        InvalidSignatureS\n    }\n\n    /**\n     * @dev The signature derives the `address(0)`.\n     */\n    error ECDSAInvalidSignature();\n\n    /**\n     * @dev The signature has an invalid length.\n     */\n    error ECDSAInvalidSignatureLength(uint256 length);\n\n    /**\n     * @dev The signature has an S value that is in the upper half order.\n     */\n    error ECDSAInvalidSignatureS(bytes32 s);\n\n    /**\n     * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not\n     * return address(0) without also returning an error description. Errors are documented using an enum (error type)\n     * and a bytes32 providing additional information about the error.\n     *\n     * If no error is returned, then the address can be used for verification purposes.\n     *\n     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n     * this function rejects them by requiring the `s` value to be in the lower\n     * half order, and the `v` value to be either 27 or 28.\n     *\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n     * verification to be secure: it is possible to craft signatures that\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n     * this is by receiving a hash of the original message (which may otherwise\n     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\n     *\n     * Documentation for signature generation:\n     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\n     */\n    function tryRecover(\n        bytes32 hash,\n        bytes memory signature\n    ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {\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 (\"memory-safe\") {\n                r := mload(add(signature, 0x20))\n                s := mload(add(signature, 0x40))\n                v := byte(0, mload(add(signature, 0x60)))\n            }\n            return tryRecover(hash, v, r, s);\n        } else {\n            return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));\n        }\n    }\n\n    /**\n     * @dev Returns the address that signed a hashed message (`hash`) with\n     * `signature`. This address can then be used for verification purposes.\n     *\n     * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n     * this function rejects them by requiring the `s` value to be in the lower\n     * half order, and the `v` value to be either 27 or 28.\n     *\n     * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n     * verification to be secure: it is possible to craft signatures that\n     * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n     * this is by receiving a hash of the original message (which may otherwise\n     * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\n     */\n    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\n        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);\n        _throwError(error, errorArg);\n        return recovered;\n    }\n\n    /**\n     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n     *\n     * See https://eips.ethereum.org/EIPS/eip-2098[ERC-2098 short signatures]\n     */\n    function tryRecover(\n        bytes32 hash,\n        bytes32 r,\n        bytes32 vs\n    ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {\n        unchecked {\n            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);\n            // We do not check for an overflow here since the shift operation results in 0 or 1.\n            uint8 v = uint8((uint256(vs) >> 255) + 27);\n            return tryRecover(hash, v, r, s);\n        }\n    }\n\n    /**\n     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n     */\n    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {\n        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);\n        _throwError(error, errorArg);\n        return recovered;\n    }\n\n    /**\n     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n     * `r` and `s` signature fields separately.\n     */\n    function tryRecover(\n        bytes32 hash,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) internal pure returns (address recovered, RecoverError err, bytes32 errArg) {\n        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\n        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\n        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most\n        // signatures from current libraries generate a unique signature with an s-value in the lower half order.\n        //\n        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\n        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\n        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\n        // these malleable signatures as well.\n        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\n            return (address(0), RecoverError.InvalidSignatureS, s);\n        }\n\n        // If the signature is valid (and not malleable), return the signer address\n        address signer = ecrecover(hash, v, r, s);\n        if (signer == address(0)) {\n            return (address(0), RecoverError.InvalidSignature, bytes32(0));\n        }\n\n        return (signer, RecoverError.NoError, bytes32(0));\n    }\n\n    /**\n     * @dev Overload of {ECDSA-recover} that receives the `v`,\n     * `r` and `s` signature fields separately.\n     */\n    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {\n        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);\n        _throwError(error, errorArg);\n        return recovered;\n    }\n\n    /**\n     * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.\n     */\n    function _throwError(RecoverError error, bytes32 errorArg) private pure {\n        if (error == RecoverError.NoError) {\n            return; // no error: do nothing\n        } else if (error == RecoverError.InvalidSignature) {\n            revert ECDSAInvalidSignature();\n        } else if (error == RecoverError.InvalidSignatureLength) {\n            revert ECDSAInvalidSignatureLength(uint256(errorArg));\n        } else if (error == RecoverError.InvalidSignatureS) {\n            revert ECDSAInvalidSignatureS(errorArg);\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/cryptography/EIP712.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (utils/cryptography/EIP712.sol)\n\npragma solidity ^0.8.20;\n\nimport {MessageHashUtils} from \"./MessageHashUtils.sol\";\nimport {ShortStrings, ShortString} from \"../ShortStrings.sol\";\nimport {IERC5267} from \"../../interfaces/IERC5267.sol\";\n\n/**\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP-712] is a standard for hashing and signing of typed structured data.\n *\n * The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose\n * encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract\n * does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to\n * produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.\n *\n * This contract implements the EIP-712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\n * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\n * ({_hashTypedDataV4}).\n *\n * The implementation of the domain separator was designed to be as efficient as possible while still properly updating\n * the chain id to protect against replay attacks on an eventual fork of the chain.\n *\n * NOTE: This contract implements the version of the encoding known as \"v4\", as implemented by the JSON RPC method\n * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\n *\n * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain\n * separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the\n * separator from the immutable values, which is cheaper than accessing a cached version in cold storage.\n *\n * @custom:oz-upgrades-unsafe-allow state-variable-immutable\n */\nabstract contract EIP712 is IERC5267 {\n    using ShortStrings for *;\n\n    bytes32 private constant TYPE_HASH =\n        keccak256(\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\");\n\n    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to\n    // invalidate the cached domain separator if the chain id changes.\n    bytes32 private immutable _cachedDomainSeparator;\n    uint256 private immutable _cachedChainId;\n    address private immutable _cachedThis;\n\n    bytes32 private immutable _hashedName;\n    bytes32 private immutable _hashedVersion;\n\n    ShortString private immutable _name;\n    ShortString private immutable _version;\n    // slither-disable-next-line constable-states\n    string private _nameFallback;\n    // slither-disable-next-line constable-states\n    string private _versionFallback;\n\n    /**\n     * @dev Initializes the domain separator and parameter caches.\n     *\n     * The meaning of `name` and `version` is specified in\n     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP-712]:\n     *\n     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\n     * - `version`: the current major version of the signing domain.\n     *\n     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\n     * contract upgrade].\n     */\n    constructor(string memory name, string memory version) {\n        _name = name.toShortStringWithFallback(_nameFallback);\n        _version = version.toShortStringWithFallback(_versionFallback);\n        _hashedName = keccak256(bytes(name));\n        _hashedVersion = keccak256(bytes(version));\n\n        _cachedChainId = block.chainid;\n        _cachedDomainSeparator = _buildDomainSeparator();\n        _cachedThis = address(this);\n    }\n\n    /**\n     * @dev Returns the domain separator for the current chain.\n     */\n    function _domainSeparatorV4() internal view returns (bytes32) {\n        if (address(this) == _cachedThis && block.chainid == _cachedChainId) {\n            return _cachedDomainSeparator;\n        } else {\n            return _buildDomainSeparator();\n        }\n    }\n\n    function _buildDomainSeparator() private view returns (bytes32) {\n        return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));\n    }\n\n    /**\n     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\n     * function returns the hash of the fully encoded EIP712 message for this domain.\n     *\n     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\n     *\n     * ```solidity\n     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\n     *     keccak256(\"Mail(address to,string contents)\"),\n     *     mailTo,\n     *     keccak256(bytes(mailContents))\n     * )));\n     * address signer = ECDSA.recover(digest, signature);\n     * ```\n     */\n    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {\n        return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash);\n    }\n\n    /// @inheritdoc IERC5267\n    function eip712Domain()\n        public\n        view\n        virtual\n        returns (\n            bytes1 fields,\n            string memory name,\n            string memory version,\n            uint256 chainId,\n            address verifyingContract,\n            bytes32 salt,\n            uint256[] memory extensions\n        )\n    {\n        return (\n            hex\"0f\", // 01111\n            _EIP712Name(),\n            _EIP712Version(),\n            block.chainid,\n            address(this),\n            bytes32(0),\n            new uint256[](0)\n        );\n    }\n\n    /**\n     * @dev The name parameter for the EIP712 domain.\n     *\n     * NOTE: By default this function reads _name which is an immutable value.\n     * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).\n     */\n    // solhint-disable-next-line func-name-mixedcase\n    function _EIP712Name() internal view returns (string memory) {\n        return _name.toStringWithFallback(_nameFallback);\n    }\n\n    /**\n     * @dev The version parameter for the EIP712 domain.\n     *\n     * NOTE: By default this function reads _version which is an immutable value.\n     * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).\n     */\n    // solhint-disable-next-line func-name-mixedcase\n    function _EIP712Version() internal view returns (string memory) {\n        return _version.toStringWithFallback(_versionFallback);\n    }\n}\n"},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (utils/cryptography/MessageHashUtils.sol)\n\npragma solidity ^0.8.20;\n\nimport {Strings} from \"../Strings.sol\";\n\n/**\n * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.\n *\n * The library provides methods for generating a hash of a message that conforms to the\n * https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]\n * specifications.\n */\nlibrary MessageHashUtils {\n    /**\n     * @dev Returns the keccak256 digest of an ERC-191 signed data with version\n     * `0x45` (`personal_sign` messages).\n     *\n     * The digest is calculated by prefixing a bytes32 `messageHash` with\n     * `\"\\x19Ethereum Signed Message:\\n32\"` and hashing the result. It corresponds with the\n     * hash signed when using the https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign[`eth_sign`] JSON-RPC method.\n     *\n     * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with\n     * keccak256, although any bytes32 value can be safely used because the final digest will\n     * be re-hashed.\n     *\n     * See {ECDSA-recover}.\n     */\n    function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) {\n        assembly (\"memory-safe\") {\n            mstore(0x00, \"\\x19Ethereum Signed Message:\\n32\") // 32 is the bytes-length of messageHash\n            mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix\n            digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20)\n        }\n    }\n\n    /**\n     * @dev Returns the keccak256 digest of an ERC-191 signed data with version\n     * `0x45` (`personal_sign` messages).\n     *\n     * The digest is calculated by prefixing an arbitrary `message` with\n     * `\"\\x19Ethereum Signed Message:\\n\" + len(message)` and hashing the result. It corresponds with the\n     * hash signed when using the https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign[`eth_sign`] JSON-RPC method.\n     *\n     * See {ECDSA-recover}.\n     */\n    function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) {\n        return\n            keccak256(bytes.concat(\"\\x19Ethereum Signed Message:\\n\", bytes(Strings.toString(message.length)), message));\n    }\n\n    /**\n     * @dev Returns the keccak256 digest of an ERC-191 signed data with version\n     * `0x00` (data with intended validator).\n     *\n     * The digest is calculated by prefixing an arbitrary `data` with `\"\\x19\\x00\"` and the intended\n     * `validator` address. Then hashing the result.\n     *\n     * See {ECDSA-recover}.\n     */\n    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {\n        return keccak256(abi.encodePacked(hex\"19_00\", validator, data));\n    }\n\n    /**\n     * @dev Variant of {toDataWithIntendedValidatorHash-address-bytes} optimized for cases where `data` is a bytes32.\n     */\n    function toDataWithIntendedValidatorHash(\n        address validator,\n        bytes32 messageHash\n    ) internal pure returns (bytes32 digest) {\n        assembly (\"memory-safe\") {\n            mstore(0x00, hex\"19_00\")\n            mstore(0x02, shl(96, validator))\n            mstore(0x16, messageHash)\n            digest := keccak256(0x00, 0x36)\n        }\n    }\n\n    /**\n     * @dev Returns the keccak256 digest of an EIP-712 typed data (ERC-191 version `0x01`).\n     *\n     * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with\n     * `\\x19\\x01` and hashing the result. It corresponds to the hash signed by the\n     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.\n     *\n     * See {ECDSA-recover}.\n     */\n    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) {\n        assembly (\"memory-safe\") {\n            let ptr := mload(0x40)\n            mstore(ptr, hex\"19_01\")\n            mstore(add(ptr, 0x02), domainSeparator)\n            mstore(add(ptr, 0x22), structHash)\n            digest := keccak256(ptr, 0x42)\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n */\nabstract contract ERC165 is IERC165 {\n    /// @inheritdoc IERC165\n    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {\n        return interfaceId == type(IERC165).interfaceId;\n    }\n}\n"},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/IERC165.sol)\n\npragma solidity >=0.4.16;\n\n/**\n * @dev Interface of the ERC-165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[ERC].\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[ERC 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"},"@openzeppelin/contracts/utils/math/Math.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.20;\n\nimport {Panic} from \"../Panic.sol\";\nimport {SafeCast} from \"./SafeCast.sol\";\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary Math {\n    enum Rounding {\n        Floor, // Toward negative infinity\n        Ceil, // Toward positive infinity\n        Trunc, // Toward zero\n        Expand // Away from zero\n    }\n\n    /**\n     * @dev Return the 512-bit addition of two uint256.\n     *\n     * The result is stored in two 256 variables such that sum = high * 2²⁵⁶ + low.\n     */\n    function add512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {\n        assembly (\"memory-safe\") {\n            low := add(a, b)\n            high := lt(low, a)\n        }\n    }\n\n    /**\n     * @dev Return the 512-bit multiplication of two uint256.\n     *\n     * The result is stored in two 256 variables such that product = high * 2²⁵⁶ + low.\n     */\n    function mul512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) {\n        // 512-bit multiply [high low] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use\n        // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n        // variables such that product = high * 2²⁵⁶ + low.\n        assembly (\"memory-safe\") {\n            let mm := mulmod(a, b, not(0))\n            low := mul(a, b)\n            high := sub(sub(mm, low), lt(mm, low))\n        }\n    }\n\n    /**\n     * @dev Returns the addition of two unsigned integers, with a success flag (no overflow).\n     */\n    function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            uint256 c = a + b;\n            success = c >= a;\n            result = c * SafeCast.toUint(success);\n        }\n    }\n\n    /**\n     * @dev Returns the subtraction of two unsigned integers, with a success flag (no overflow).\n     */\n    function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            uint256 c = a - b;\n            success = c <= a;\n            result = c * SafeCast.toUint(success);\n        }\n    }\n\n    /**\n     * @dev Returns the multiplication of two unsigned integers, with a success flag (no overflow).\n     */\n    function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            uint256 c = a * b;\n            assembly (\"memory-safe\") {\n                // Only true when the multiplication doesn't overflow\n                // (c / a == b) || (a == 0)\n                success := or(eq(div(c, a), b), iszero(a))\n            }\n            // equivalent to: success ? c : 0\n            result = c * SafeCast.toUint(success);\n        }\n    }\n\n    /**\n     * @dev Returns the division of two unsigned integers, with a success flag (no division by zero).\n     */\n    function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            success = b > 0;\n            assembly (\"memory-safe\") {\n                // The `DIV` opcode returns zero when the denominator is 0.\n                result := div(a, b)\n            }\n        }\n    }\n\n    /**\n     * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero).\n     */\n    function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {\n        unchecked {\n            success = b > 0;\n            assembly (\"memory-safe\") {\n                // The `MOD` opcode returns zero when the denominator is 0.\n                result := mod(a, b)\n            }\n        }\n    }\n\n    /**\n     * @dev Unsigned saturating addition, bounds to `2²⁵⁶ - 1` instead of overflowing.\n     */\n    function saturatingAdd(uint256 a, uint256 b) internal pure returns (uint256) {\n        (bool success, uint256 result) = tryAdd(a, b);\n        return ternary(success, result, type(uint256).max);\n    }\n\n    /**\n     * @dev Unsigned saturating subtraction, bounds to zero instead of overflowing.\n     */\n    function saturatingSub(uint256 a, uint256 b) internal pure returns (uint256) {\n        (, uint256 result) = trySub(a, b);\n        return result;\n    }\n\n    /**\n     * @dev Unsigned saturating multiplication, bounds to `2²⁵⁶ - 1` instead of overflowing.\n     */\n    function saturatingMul(uint256 a, uint256 b) internal pure returns (uint256) {\n        (bool success, uint256 result) = tryMul(a, b);\n        return ternary(success, result, type(uint256).max);\n    }\n\n    /**\n     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n     *\n     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n     * one branch when needed, making this function more expensive.\n     */\n    function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) {\n        unchecked {\n            // branchless ternary works because:\n            // b ^ (a ^ b) == a\n            // b ^ 0 == b\n            return b ^ ((a ^ b) * SafeCast.toUint(condition));\n        }\n    }\n\n    /**\n     * @dev Returns the largest of two numbers.\n     */\n    function max(uint256 a, uint256 b) internal pure returns (uint256) {\n        return ternary(a > b, a, b);\n    }\n\n    /**\n     * @dev Returns the smallest of two numbers.\n     */\n    function min(uint256 a, uint256 b) internal pure returns (uint256) {\n        return ternary(a < b, a, b);\n    }\n\n    /**\n     * @dev Returns the average of two numbers. The result is rounded towards\n     * zero.\n     */\n    function average(uint256 a, uint256 b) internal pure returns (uint256) {\n        // (a + b) / 2 can overflow.\n        return (a & b) + (a ^ b) / 2;\n    }\n\n    /**\n     * @dev Returns the ceiling of the division of two numbers.\n     *\n     * This differs from standard division with `/` in that it rounds towards infinity instead\n     * of rounding towards zero.\n     */\n    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n        if (b == 0) {\n            // Guarantee the same behavior as in a regular Solidity division.\n            Panic.panic(Panic.DIVISION_BY_ZERO);\n        }\n\n        // The following calculation ensures accurate ceiling division without overflow.\n        // Since a is non-zero, (a - 1) / b will not overflow.\n        // The largest possible result occurs when (a - 1) / b is type(uint256).max,\n        // but the largest value we can obtain is type(uint256).max - 1, which happens\n        // when a = type(uint256).max and b = 1.\n        unchecked {\n            return SafeCast.toUint(a > 0) * ((a - 1) / b + 1);\n        }\n    }\n\n    /**\n     * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or\n     * denominator == 0.\n     *\n     * Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by\n     * Uniswap Labs also under MIT license.\n     */\n    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\n        unchecked {\n            (uint256 high, uint256 low) = mul512(x, y);\n\n            // Handle non-overflow cases, 256 by 256 division.\n            if (high == 0) {\n                // Solidity will revert if denominator == 0, unlike the div opcode on its own.\n                // The surrounding unchecked block does not change this fact.\n                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\n                return low / denominator;\n            }\n\n            // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.\n            if (denominator <= high) {\n                Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW));\n            }\n\n            ///////////////////////////////////////////////\n            // 512 by 256 division.\n            ///////////////////////////////////////////////\n\n            // Make division exact by subtracting the remainder from [high low].\n            uint256 remainder;\n            assembly (\"memory-safe\") {\n                // Compute remainder using mulmod.\n                remainder := mulmod(x, y, denominator)\n\n                // Subtract 256 bit number from 512 bit number.\n                high := sub(high, gt(remainder, low))\n                low := sub(low, remainder)\n            }\n\n            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.\n            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.\n\n            uint256 twos = denominator & (0 - denominator);\n            assembly (\"memory-safe\") {\n                // Divide denominator by twos.\n                denominator := div(denominator, twos)\n\n                // Divide [high low] by twos.\n                low := div(low, twos)\n\n                // Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one.\n                twos := add(div(sub(0, twos), twos), 1)\n            }\n\n            // Shift in bits from high into low.\n            low |= high * twos;\n\n            // Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such\n            // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for\n            // four bits. That is, denominator * inv ≡ 1 mod 2⁴.\n            uint256 inverse = (3 * denominator) ^ 2;\n\n            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also\n            // works in modular arithmetic, doubling the correct bits in each step.\n            inverse *= 2 - denominator * inverse; // inverse mod 2⁸\n            inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶\n            inverse *= 2 - denominator * inverse; // inverse mod 2³²\n            inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴\n            inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸\n            inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶\n\n            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n            // This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is\n            // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and high\n            // is no longer required.\n            result = low * inverse;\n            return result;\n        }\n    }\n\n    /**\n     * @dev Calculates x * y / denominator with full precision, following the selected rounding direction.\n     */\n    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {\n        return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0);\n    }\n\n    /**\n     * @dev Calculates floor(x * y >> n) with full precision. Throws if result overflows a uint256.\n     */\n    function mulShr(uint256 x, uint256 y, uint8 n) internal pure returns (uint256 result) {\n        unchecked {\n            (uint256 high, uint256 low) = mul512(x, y);\n            if (high >= 1 << n) {\n                Panic.panic(Panic.UNDER_OVERFLOW);\n            }\n            return (high << (256 - n)) | (low >> n);\n        }\n    }\n\n    /**\n     * @dev Calculates x * y >> n with full precision, following the selected rounding direction.\n     */\n    function mulShr(uint256 x, uint256 y, uint8 n, Rounding rounding) internal pure returns (uint256) {\n        return mulShr(x, y, n) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, 1 << n) > 0);\n    }\n\n    /**\n     * @dev Calculate the modular multiplicative inverse of a number in Z/nZ.\n     *\n     * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.\n     * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.\n     *\n     * If the input value is not inversible, 0 is returned.\n     *\n     * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the\n     * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}.\n     */\n    function invMod(uint256 a, uint256 n) internal pure returns (uint256) {\n        unchecked {\n            if (n == 0) return 0;\n\n            // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version)\n            // Used to compute integers x and y such that: ax + ny = gcd(a, n).\n            // When the gcd is 1, then the inverse of a modulo n exists and it's x.\n            // ax + ny = 1\n            // ax = 1 + (-y)n\n            // ax ≡ 1 (mod n) # x is the inverse of a modulo n\n\n            // If the remainder is 0 the gcd is n right away.\n            uint256 remainder = a % n;\n            uint256 gcd = n;\n\n            // Therefore the initial coefficients are:\n            // ax + ny = gcd(a, n) = n\n            // 0a + 1n = n\n            int256 x = 0;\n            int256 y = 1;\n\n            while (remainder != 0) {\n                uint256 quotient = gcd / remainder;\n\n                (gcd, remainder) = (\n                    // The old remainder is the next gcd to try.\n                    remainder,\n                    // Compute the next remainder.\n                    // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd\n                    // where gcd is at most n (capped to type(uint256).max)\n                    gcd - remainder * quotient\n                );\n\n                (x, y) = (\n                    // Increment the coefficient of a.\n                    y,\n                    // Decrement the coefficient of n.\n                    // Can overflow, but the result is casted to uint256 so that the\n                    // next value of y is \"wrapped around\" to a value between 0 and n - 1.\n                    x - y * int256(quotient)\n                );\n            }\n\n            if (gcd != 1) return 0; // No inverse exists.\n            return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative.\n        }\n    }\n\n    /**\n     * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.\n     *\n     * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is\n     * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that\n     * `a**(p-2)` is the modular multiplicative inverse of a in Fp.\n     *\n     * NOTE: this function does NOT check that `p` is a prime greater than `2`.\n     */\n    function invModPrime(uint256 a, uint256 p) internal view returns (uint256) {\n        unchecked {\n            return Math.modExp(a, p - 2, p);\n        }\n    }\n\n    /**\n     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)\n     *\n     * Requirements:\n     * - modulus can't be zero\n     * - underlying staticcall to precompile must succeed\n     *\n     * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make\n     * sure the chain you're using it on supports the precompiled contract for modular exponentiation\n     * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,\n     * the underlying function will succeed given the lack of a revert, but the result may be incorrectly\n     * interpreted as 0.\n     */\n    function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) {\n        (bool success, uint256 result) = tryModExp(b, e, m);\n        if (!success) {\n            Panic.panic(Panic.DIVISION_BY_ZERO);\n        }\n        return result;\n    }\n\n    /**\n     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).\n     * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying\n     * to operate modulo 0 or if the underlying precompile reverted.\n     *\n     * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain\n     * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in\n     * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack\n     * of a revert, but the result may be incorrectly interpreted as 0.\n     */\n    function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) {\n        if (m == 0) return (false, 0);\n        assembly (\"memory-safe\") {\n            let ptr := mload(0x40)\n            // | Offset    | Content    | Content (Hex)                                                      |\n            // |-----------|------------|--------------------------------------------------------------------|\n            // | 0x00:0x1f | size of b  | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n            // | 0x20:0x3f | size of e  | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n            // | 0x40:0x5f | size of m  | 0x0000000000000000000000000000000000000000000000000000000000000020 |\n            // | 0x60:0x7f | value of b | 0x<.............................................................b> |\n            // | 0x80:0x9f | value of e | 0x<.............................................................e> |\n            // | 0xa0:0xbf | value of m | 0x<.............................................................m> |\n            mstore(ptr, 0x20)\n            mstore(add(ptr, 0x20), 0x20)\n            mstore(add(ptr, 0x40), 0x20)\n            mstore(add(ptr, 0x60), b)\n            mstore(add(ptr, 0x80), e)\n            mstore(add(ptr, 0xa0), m)\n\n            // Given the result < m, it's guaranteed to fit in 32 bytes,\n            // so we can use the memory scratch space located at offset 0.\n            success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20)\n            result := mload(0x00)\n        }\n    }\n\n    /**\n     * @dev Variant of {modExp} that supports inputs of arbitrary length.\n     */\n    function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) {\n        (bool success, bytes memory result) = tryModExp(b, e, m);\n        if (!success) {\n            Panic.panic(Panic.DIVISION_BY_ZERO);\n        }\n        return result;\n    }\n\n    /**\n     * @dev Variant of {tryModExp} that supports inputs of arbitrary length.\n     */\n    function tryModExp(\n        bytes memory b,\n        bytes memory e,\n        bytes memory m\n    ) internal view returns (bool success, bytes memory result) {\n        if (_zeroBytes(m)) return (false, new bytes(0));\n\n        uint256 mLen = m.length;\n\n        // Encode call args in result and move the free memory pointer\n        result = abi.encodePacked(b.length, e.length, mLen, b, e, m);\n\n        assembly (\"memory-safe\") {\n            let dataPtr := add(result, 0x20)\n            // Write result on top of args to avoid allocating extra memory.\n            success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen)\n            // Overwrite the length.\n            // result.length > returndatasize() is guaranteed because returndatasize() == m.length\n            mstore(result, mLen)\n            // Set the memory pointer after the returned data.\n            mstore(0x40, add(dataPtr, mLen))\n        }\n    }\n\n    /**\n     * @dev Returns whether the provided byte array is zero.\n     */\n    function _zeroBytes(bytes memory byteArray) private pure returns (bool) {\n        for (uint256 i = 0; i < byteArray.length; ++i) {\n            if (byteArray[i] != 0) {\n                return false;\n            }\n        }\n        return true;\n    }\n\n    /**\n     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded\n     * towards zero.\n     *\n     * This method is based on Newton's method for computing square roots; the algorithm is restricted to only\n     * using integer operations.\n     */\n    function sqrt(uint256 a) internal pure returns (uint256) {\n        unchecked {\n            // Take care of easy edge cases when a == 0 or a == 1\n            if (a <= 1) {\n                return a;\n            }\n\n            // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a\n            // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between\n            // the current value as `ε_n = | x_n - sqrt(a) |`.\n            //\n            // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root\n            // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is\n            // bigger than any uint256.\n            //\n            // By noticing that\n            // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)`\n            // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar\n            // to the msb function.\n            uint256 aa = a;\n            uint256 xn = 1;\n\n            if (aa >= (1 << 128)) {\n                aa >>= 128;\n                xn <<= 64;\n            }\n            if (aa >= (1 << 64)) {\n                aa >>= 64;\n                xn <<= 32;\n            }\n            if (aa >= (1 << 32)) {\n                aa >>= 32;\n                xn <<= 16;\n            }\n            if (aa >= (1 << 16)) {\n                aa >>= 16;\n                xn <<= 8;\n            }\n            if (aa >= (1 << 8)) {\n                aa >>= 8;\n                xn <<= 4;\n            }\n            if (aa >= (1 << 4)) {\n                aa >>= 4;\n                xn <<= 2;\n            }\n            if (aa >= (1 << 2)) {\n                xn <<= 1;\n            }\n\n            // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1).\n            //\n            // We can refine our estimation by noticing that the middle of that interval minimizes the error.\n            // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2).\n            // This is going to be our x_0 (and ε_0)\n            xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2)\n\n            // From here, Newton's method give us:\n            // x_{n+1} = (x_n + a / x_n) / 2\n            //\n            // One should note that:\n            // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a\n            //              = ((x_n² + a) / (2 * x_n))² - a\n            //              = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a\n            //              = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²)\n            //              = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²)\n            //              = (x_n² - a)² / (2 * x_n)²\n            //              = ((x_n² - a) / (2 * x_n))²\n            //              ≥ 0\n            // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n\n            //\n            // This gives us the proof of quadratic convergence of the sequence:\n            // ε_{n+1} = | x_{n+1} - sqrt(a) |\n            //         = | (x_n + a / x_n) / 2 - sqrt(a) |\n            //         = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) |\n            //         = | (x_n - sqrt(a))² / (2 * x_n) |\n            //         = | ε_n² / (2 * x_n) |\n            //         = ε_n² / | (2 * x_n) |\n            //\n            // For the first iteration, we have a special case where x_0 is known:\n            // ε_1 = ε_0² / | (2 * x_0) |\n            //     ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2)))\n            //     ≤ 2**(2*e-4) / (3 * 2**(e-1))\n            //     ≤ 2**(e-3) / 3\n            //     ≤ 2**(e-3-log2(3))\n            //     ≤ 2**(e-4.5)\n            //\n            // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n:\n            // ε_{n+1} = ε_n² / | (2 * x_n) |\n            //         ≤ (2**(e-k))² / (2 * 2**(e-1))\n            //         ≤ 2**(2*e-2*k) / 2**e\n            //         ≤ 2**(e-2*k)\n            xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5)  -- special case, see above\n            xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9)    -- general case with k = 4.5\n            xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18)   -- general case with k = 9\n            xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36)   -- general case with k = 18\n            xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72)   -- general case with k = 36\n            xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144)  -- general case with k = 72\n\n            // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision\n            // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either\n            // sqrt(a) or sqrt(a) + 1.\n            return xn - SafeCast.toUint(xn > a / xn);\n        }\n    }\n\n    /**\n     * @dev Calculates sqrt(a), following the selected rounding direction.\n     */\n    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = sqrt(a);\n            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a);\n        }\n    }\n\n    /**\n     * @dev Return the log in base 2 of a positive value rounded towards zero.\n     * Returns 0 if given 0.\n     */\n    function log2(uint256 x) internal pure returns (uint256 r) {\n        // If value has upper 128 bits set, log2 result is at least 128\n        r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;\n        // If upper 64 bits of 128-bit half set, add 64 to result\n        r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;\n        // If upper 32 bits of 64-bit half set, add 32 to result\n        r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;\n        // If upper 16 bits of 32-bit half set, add 16 to result\n        r |= SafeCast.toUint((x >> r) > 0xffff) << 4;\n        // If upper 8 bits of 16-bit half set, add 8 to result\n        r |= SafeCast.toUint((x >> r) > 0xff) << 3;\n        // If upper 4 bits of 8-bit half set, add 4 to result\n        r |= SafeCast.toUint((x >> r) > 0xf) << 2;\n\n        // Shifts value right by the current result and use it as an index into this lookup table:\n        //\n        // | x (4 bits) |  index  | table[index] = MSB position |\n        // |------------|---------|-----------------------------|\n        // |    0000    |    0    |        table[0] = 0         |\n        // |    0001    |    1    |        table[1] = 0         |\n        // |    0010    |    2    |        table[2] = 1         |\n        // |    0011    |    3    |        table[3] = 1         |\n        // |    0100    |    4    |        table[4] = 2         |\n        // |    0101    |    5    |        table[5] = 2         |\n        // |    0110    |    6    |        table[6] = 2         |\n        // |    0111    |    7    |        table[7] = 2         |\n        // |    1000    |    8    |        table[8] = 3         |\n        // |    1001    |    9    |        table[9] = 3         |\n        // |    1010    |   10    |        table[10] = 3        |\n        // |    1011    |   11    |        table[11] = 3        |\n        // |    1100    |   12    |        table[12] = 3        |\n        // |    1101    |   13    |        table[13] = 3        |\n        // |    1110    |   14    |        table[14] = 3        |\n        // |    1111    |   15    |        table[15] = 3        |\n        //\n        // The lookup table is represented as a 32-byte value with the MSB positions for 0-15 in the last 16 bytes.\n        assembly (\"memory-safe\") {\n            r := or(r, byte(shr(r, x), 0x0000010102020202030303030303030300000000000000000000000000000000))\n        }\n    }\n\n    /**\n     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = log2(value);\n            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value);\n        }\n    }\n\n    /**\n     * @dev Return the log in base 10 of a positive value rounded towards zero.\n     * Returns 0 if given 0.\n     */\n    function log10(uint256 value) internal pure returns (uint256) {\n        uint256 result = 0;\n        unchecked {\n            if (value >= 10 ** 64) {\n                value /= 10 ** 64;\n                result += 64;\n            }\n            if (value >= 10 ** 32) {\n                value /= 10 ** 32;\n                result += 32;\n            }\n            if (value >= 10 ** 16) {\n                value /= 10 ** 16;\n                result += 16;\n            }\n            if (value >= 10 ** 8) {\n                value /= 10 ** 8;\n                result += 8;\n            }\n            if (value >= 10 ** 4) {\n                value /= 10 ** 4;\n                result += 4;\n            }\n            if (value >= 10 ** 2) {\n                value /= 10 ** 2;\n                result += 2;\n            }\n            if (value >= 10 ** 1) {\n                result += 1;\n            }\n        }\n        return result;\n    }\n\n    /**\n     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = log10(value);\n            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value);\n        }\n    }\n\n    /**\n     * @dev Return the log in base 256 of a positive value rounded towards zero.\n     * Returns 0 if given 0.\n     *\n     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n     */\n    function log256(uint256 x) internal pure returns (uint256 r) {\n        // If value has upper 128 bits set, log2 result is at least 128\n        r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7;\n        // If upper 64 bits of 128-bit half set, add 64 to result\n        r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6;\n        // If upper 32 bits of 64-bit half set, add 32 to result\n        r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5;\n        // If upper 16 bits of 32-bit half set, add 16 to result\n        r |= SafeCast.toUint((x >> r) > 0xffff) << 4;\n        // Add 1 if upper 8 bits of 16-bit half set, and divide accumulated result by 8\n        return (r >> 3) | SafeCast.toUint((x >> r) > 0xff);\n    }\n\n    /**\n     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n     * Returns 0 if given 0.\n     */\n    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n        unchecked {\n            uint256 result = log256(value);\n            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value);\n        }\n    }\n\n    /**\n     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.\n     */\n    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {\n        return uint8(rounding) % 2 == 1;\n    }\n}\n"},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)\n// This file was procedurally generated from scripts/generate/templates/SafeCast.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Wrappers over Solidity's uintXX/intXX/bool 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 */\nlibrary SafeCast {\n    /**\n     * @dev Value doesn't fit in an uint of `bits` size.\n     */\n    error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);\n\n    /**\n     * @dev An int value doesn't fit in an uint of `bits` size.\n     */\n    error SafeCastOverflowedIntToUint(int256 value);\n\n    /**\n     * @dev Value doesn't fit in an int of `bits` size.\n     */\n    error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);\n\n    /**\n     * @dev An uint value doesn't fit in an int of `bits` size.\n     */\n    error SafeCastOverflowedUintToInt(uint256 value);\n\n    /**\n     * @dev Returns the downcasted uint248 from uint256, reverting on\n     * overflow (when the input is greater than largest uint248).\n     *\n     * Counterpart to Solidity's `uint248` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 248 bits\n     */\n    function toUint248(uint256 value) internal pure returns (uint248) {\n        if (value > type(uint248).max) {\n            revert SafeCastOverflowedUintDowncast(248, value);\n        }\n        return uint248(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint240 from uint256, reverting on\n     * overflow (when the input is greater than largest uint240).\n     *\n     * Counterpart to Solidity's `uint240` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 240 bits\n     */\n    function toUint240(uint256 value) internal pure returns (uint240) {\n        if (value > type(uint240).max) {\n            revert SafeCastOverflowedUintDowncast(240, value);\n        }\n        return uint240(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint232 from uint256, reverting on\n     * overflow (when the input is greater than largest uint232).\n     *\n     * Counterpart to Solidity's `uint232` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 232 bits\n     */\n    function toUint232(uint256 value) internal pure returns (uint232) {\n        if (value > type(uint232).max) {\n            revert SafeCastOverflowedUintDowncast(232, value);\n        }\n        return uint232(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        if (value > type(uint224).max) {\n            revert SafeCastOverflowedUintDowncast(224, value);\n        }\n        return uint224(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint216 from uint256, reverting on\n     * overflow (when the input is greater than largest uint216).\n     *\n     * Counterpart to Solidity's `uint216` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 216 bits\n     */\n    function toUint216(uint256 value) internal pure returns (uint216) {\n        if (value > type(uint216).max) {\n            revert SafeCastOverflowedUintDowncast(216, value);\n        }\n        return uint216(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        if (value > type(uint208).max) {\n            revert SafeCastOverflowedUintDowncast(208, value);\n        }\n        return uint208(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint200 from uint256, reverting on\n     * overflow (when the input is greater than largest uint200).\n     *\n     * Counterpart to Solidity's `uint200` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 200 bits\n     */\n    function toUint200(uint256 value) internal pure returns (uint200) {\n        if (value > type(uint200).max) {\n            revert SafeCastOverflowedUintDowncast(200, value);\n        }\n        return uint200(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint192 from uint256, reverting on\n     * overflow (when the input is greater than largest uint192).\n     *\n     * Counterpart to Solidity's `uint192` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 192 bits\n     */\n    function toUint192(uint256 value) internal pure returns (uint192) {\n        if (value > type(uint192).max) {\n            revert SafeCastOverflowedUintDowncast(192, value);\n        }\n        return uint192(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint184 from uint256, reverting on\n     * overflow (when the input is greater than largest uint184).\n     *\n     * Counterpart to Solidity's `uint184` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 184 bits\n     */\n    function toUint184(uint256 value) internal pure returns (uint184) {\n        if (value > type(uint184).max) {\n            revert SafeCastOverflowedUintDowncast(184, value);\n        }\n        return uint184(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint176 from uint256, reverting on\n     * overflow (when the input is greater than largest uint176).\n     *\n     * Counterpart to Solidity's `uint176` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 176 bits\n     */\n    function toUint176(uint256 value) internal pure returns (uint176) {\n        if (value > type(uint176).max) {\n            revert SafeCastOverflowedUintDowncast(176, value);\n        }\n        return uint176(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint168 from uint256, reverting on\n     * overflow (when the input is greater than largest uint168).\n     *\n     * Counterpart to Solidity's `uint168` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 168 bits\n     */\n    function toUint168(uint256 value) internal pure returns (uint168) {\n        if (value > type(uint168).max) {\n            revert SafeCastOverflowedUintDowncast(168, value);\n        }\n        return uint168(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint160 from uint256, reverting on\n     * overflow (when the input is greater than largest uint160).\n     *\n     * Counterpart to Solidity's `uint160` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 160 bits\n     */\n    function toUint160(uint256 value) internal pure returns (uint160) {\n        if (value > type(uint160).max) {\n            revert SafeCastOverflowedUintDowncast(160, value);\n        }\n        return uint160(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint152 from uint256, reverting on\n     * overflow (when the input is greater than largest uint152).\n     *\n     * Counterpart to Solidity's `uint152` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 152 bits\n     */\n    function toUint152(uint256 value) internal pure returns (uint152) {\n        if (value > type(uint152).max) {\n            revert SafeCastOverflowedUintDowncast(152, value);\n        }\n        return uint152(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint144 from uint256, reverting on\n     * overflow (when the input is greater than largest uint144).\n     *\n     * Counterpart to Solidity's `uint144` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 144 bits\n     */\n    function toUint144(uint256 value) internal pure returns (uint144) {\n        if (value > type(uint144).max) {\n            revert SafeCastOverflowedUintDowncast(144, value);\n        }\n        return uint144(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint136 from uint256, reverting on\n     * overflow (when the input is greater than largest uint136).\n     *\n     * Counterpart to Solidity's `uint136` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 136 bits\n     */\n    function toUint136(uint256 value) internal pure returns (uint136) {\n        if (value > type(uint136).max) {\n            revert SafeCastOverflowedUintDowncast(136, value);\n        }\n        return uint136(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        if (value > type(uint128).max) {\n            revert SafeCastOverflowedUintDowncast(128, value);\n        }\n        return uint128(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint120 from uint256, reverting on\n     * overflow (when the input is greater than largest uint120).\n     *\n     * Counterpart to Solidity's `uint120` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 120 bits\n     */\n    function toUint120(uint256 value) internal pure returns (uint120) {\n        if (value > type(uint120).max) {\n            revert SafeCastOverflowedUintDowncast(120, value);\n        }\n        return uint120(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint112 from uint256, reverting on\n     * overflow (when the input is greater than largest uint112).\n     *\n     * Counterpart to Solidity's `uint112` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 112 bits\n     */\n    function toUint112(uint256 value) internal pure returns (uint112) {\n        if (value > type(uint112).max) {\n            revert SafeCastOverflowedUintDowncast(112, value);\n        }\n        return uint112(value);\n    }\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        if (value > type(uint104).max) {\n            revert SafeCastOverflowedUintDowncast(104, value);\n        }\n        return uint104(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        if (value > type(uint96).max) {\n            revert SafeCastOverflowedUintDowncast(96, value);\n        }\n        return uint96(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint88 from uint256, reverting on\n     * overflow (when the input is greater than largest uint88).\n     *\n     * Counterpart to Solidity's `uint88` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 88 bits\n     */\n    function toUint88(uint256 value) internal pure returns (uint88) {\n        if (value > type(uint88).max) {\n            revert SafeCastOverflowedUintDowncast(88, value);\n        }\n        return uint88(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint80 from uint256, reverting on\n     * overflow (when the input is greater than largest uint80).\n     *\n     * Counterpart to Solidity's `uint80` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 80 bits\n     */\n    function toUint80(uint256 value) internal pure returns (uint80) {\n        if (value > type(uint80).max) {\n            revert SafeCastOverflowedUintDowncast(80, value);\n        }\n        return uint80(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint72 from uint256, reverting on\n     * overflow (when the input is greater than largest uint72).\n     *\n     * Counterpart to Solidity's `uint72` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 72 bits\n     */\n    function toUint72(uint256 value) internal pure returns (uint72) {\n        if (value > type(uint72).max) {\n            revert SafeCastOverflowedUintDowncast(72, value);\n        }\n        return uint72(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        if (value > type(uint64).max) {\n            revert SafeCastOverflowedUintDowncast(64, value);\n        }\n        return uint64(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint56 from uint256, reverting on\n     * overflow (when the input is greater than largest uint56).\n     *\n     * Counterpart to Solidity's `uint56` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 56 bits\n     */\n    function toUint56(uint256 value) internal pure returns (uint56) {\n        if (value > type(uint56).max) {\n            revert SafeCastOverflowedUintDowncast(56, value);\n        }\n        return uint56(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint48 from uint256, reverting on\n     * overflow (when the input is greater than largest uint48).\n     *\n     * Counterpart to Solidity's `uint48` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 48 bits\n     */\n    function toUint48(uint256 value) internal pure returns (uint48) {\n        if (value > type(uint48).max) {\n            revert SafeCastOverflowedUintDowncast(48, value);\n        }\n        return uint48(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint40 from uint256, reverting on\n     * overflow (when the input is greater than largest uint40).\n     *\n     * Counterpart to Solidity's `uint40` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 40 bits\n     */\n    function toUint40(uint256 value) internal pure returns (uint40) {\n        if (value > type(uint40).max) {\n            revert SafeCastOverflowedUintDowncast(40, value);\n        }\n        return uint40(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        if (value > type(uint32).max) {\n            revert SafeCastOverflowedUintDowncast(32, value);\n        }\n        return uint32(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint24 from uint256, reverting on\n     * overflow (when the input is greater than largest uint24).\n     *\n     * Counterpart to Solidity's `uint24` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 24 bits\n     */\n    function toUint24(uint256 value) internal pure returns (uint24) {\n        if (value > type(uint24).max) {\n            revert SafeCastOverflowedUintDowncast(24, value);\n        }\n        return uint24(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        if (value > type(uint16).max) {\n            revert SafeCastOverflowedUintDowncast(16, value);\n        }\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        if (value > type(uint8).max) {\n            revert SafeCastOverflowedUintDowncast(8, value);\n        }\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        if (value < 0) {\n            revert SafeCastOverflowedIntToUint(value);\n        }\n        return uint256(value);\n    }\n\n    /**\n     * @dev Returns the downcasted int248 from int256, reverting on\n     * overflow (when the input is less than smallest int248 or\n     * greater than largest int248).\n     *\n     * Counterpart to Solidity's `int248` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 248 bits\n     */\n    function toInt248(int256 value) internal pure returns (int248 downcasted) {\n        downcasted = int248(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(248, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int240 from int256, reverting on\n     * overflow (when the input is less than smallest int240 or\n     * greater than largest int240).\n     *\n     * Counterpart to Solidity's `int240` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 240 bits\n     */\n    function toInt240(int256 value) internal pure returns (int240 downcasted) {\n        downcasted = int240(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(240, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int232 from int256, reverting on\n     * overflow (when the input is less than smallest int232 or\n     * greater than largest int232).\n     *\n     * Counterpart to Solidity's `int232` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 232 bits\n     */\n    function toInt232(int256 value) internal pure returns (int232 downcasted) {\n        downcasted = int232(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(232, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int224 from int256, reverting on\n     * overflow (when the input is less than smallest int224 or\n     * greater than largest int224).\n     *\n     * Counterpart to Solidity's `int224` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 224 bits\n     */\n    function toInt224(int256 value) internal pure returns (int224 downcasted) {\n        downcasted = int224(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(224, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int216 from int256, reverting on\n     * overflow (when the input is less than smallest int216 or\n     * greater than largest int216).\n     *\n     * Counterpart to Solidity's `int216` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 216 bits\n     */\n    function toInt216(int256 value) internal pure returns (int216 downcasted) {\n        downcasted = int216(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(216, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int208 from int256, reverting on\n     * overflow (when the input is less than smallest int208 or\n     * greater than largest int208).\n     *\n     * Counterpart to Solidity's `int208` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 208 bits\n     */\n    function toInt208(int256 value) internal pure returns (int208 downcasted) {\n        downcasted = int208(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(208, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int200 from int256, reverting on\n     * overflow (when the input is less than smallest int200 or\n     * greater than largest int200).\n     *\n     * Counterpart to Solidity's `int200` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 200 bits\n     */\n    function toInt200(int256 value) internal pure returns (int200 downcasted) {\n        downcasted = int200(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(200, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int192 from int256, reverting on\n     * overflow (when the input is less than smallest int192 or\n     * greater than largest int192).\n     *\n     * Counterpart to Solidity's `int192` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 192 bits\n     */\n    function toInt192(int256 value) internal pure returns (int192 downcasted) {\n        downcasted = int192(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(192, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int184 from int256, reverting on\n     * overflow (when the input is less than smallest int184 or\n     * greater than largest int184).\n     *\n     * Counterpart to Solidity's `int184` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 184 bits\n     */\n    function toInt184(int256 value) internal pure returns (int184 downcasted) {\n        downcasted = int184(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(184, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int176 from int256, reverting on\n     * overflow (when the input is less than smallest int176 or\n     * greater than largest int176).\n     *\n     * Counterpart to Solidity's `int176` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 176 bits\n     */\n    function toInt176(int256 value) internal pure returns (int176 downcasted) {\n        downcasted = int176(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(176, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int168 from int256, reverting on\n     * overflow (when the input is less than smallest int168 or\n     * greater than largest int168).\n     *\n     * Counterpart to Solidity's `int168` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 168 bits\n     */\n    function toInt168(int256 value) internal pure returns (int168 downcasted) {\n        downcasted = int168(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(168, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int160 from int256, reverting on\n     * overflow (when the input is less than smallest int160 or\n     * greater than largest int160).\n     *\n     * Counterpart to Solidity's `int160` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 160 bits\n     */\n    function toInt160(int256 value) internal pure returns (int160 downcasted) {\n        downcasted = int160(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(160, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int152 from int256, reverting on\n     * overflow (when the input is less than smallest int152 or\n     * greater than largest int152).\n     *\n     * Counterpart to Solidity's `int152` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 152 bits\n     */\n    function toInt152(int256 value) internal pure returns (int152 downcasted) {\n        downcasted = int152(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(152, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int144 from int256, reverting on\n     * overflow (when the input is less than smallest int144 or\n     * greater than largest int144).\n     *\n     * Counterpart to Solidity's `int144` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 144 bits\n     */\n    function toInt144(int256 value) internal pure returns (int144 downcasted) {\n        downcasted = int144(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(144, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int136 from int256, reverting on\n     * overflow (when the input is less than smallest int136 or\n     * greater than largest int136).\n     *\n     * Counterpart to Solidity's `int136` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 136 bits\n     */\n    function toInt136(int256 value) internal pure returns (int136 downcasted) {\n        downcasted = int136(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(136, value);\n        }\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    function toInt128(int256 value) internal pure returns (int128 downcasted) {\n        downcasted = int128(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(128, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int120 from int256, reverting on\n     * overflow (when the input is less than smallest int120 or\n     * greater than largest int120).\n     *\n     * Counterpart to Solidity's `int120` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 120 bits\n     */\n    function toInt120(int256 value) internal pure returns (int120 downcasted) {\n        downcasted = int120(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(120, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int112 from int256, reverting on\n     * overflow (when the input is less than smallest int112 or\n     * greater than largest int112).\n     *\n     * Counterpart to Solidity's `int112` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 112 bits\n     */\n    function toInt112(int256 value) internal pure returns (int112 downcasted) {\n        downcasted = int112(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(112, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int104 from int256, reverting on\n     * overflow (when the input is less than smallest int104 or\n     * greater than largest int104).\n     *\n     * Counterpart to Solidity's `int104` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 104 bits\n     */\n    function toInt104(int256 value) internal pure returns (int104 downcasted) {\n        downcasted = int104(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(104, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int96 from int256, reverting on\n     * overflow (when the input is less than smallest int96 or\n     * greater than largest int96).\n     *\n     * Counterpart to Solidity's `int96` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 96 bits\n     */\n    function toInt96(int256 value) internal pure returns (int96 downcasted) {\n        downcasted = int96(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(96, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int88 from int256, reverting on\n     * overflow (when the input is less than smallest int88 or\n     * greater than largest int88).\n     *\n     * Counterpart to Solidity's `int88` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 88 bits\n     */\n    function toInt88(int256 value) internal pure returns (int88 downcasted) {\n        downcasted = int88(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(88, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int80 from int256, reverting on\n     * overflow (when the input is less than smallest int80 or\n     * greater than largest int80).\n     *\n     * Counterpart to Solidity's `int80` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 80 bits\n     */\n    function toInt80(int256 value) internal pure returns (int80 downcasted) {\n        downcasted = int80(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(80, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int72 from int256, reverting on\n     * overflow (when the input is less than smallest int72 or\n     * greater than largest int72).\n     *\n     * Counterpart to Solidity's `int72` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 72 bits\n     */\n    function toInt72(int256 value) internal pure returns (int72 downcasted) {\n        downcasted = int72(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(72, value);\n        }\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    function toInt64(int256 value) internal pure returns (int64 downcasted) {\n        downcasted = int64(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(64, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int56 from int256, reverting on\n     * overflow (when the input is less than smallest int56 or\n     * greater than largest int56).\n     *\n     * Counterpart to Solidity's `int56` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 56 bits\n     */\n    function toInt56(int256 value) internal pure returns (int56 downcasted) {\n        downcasted = int56(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(56, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int48 from int256, reverting on\n     * overflow (when the input is less than smallest int48 or\n     * greater than largest int48).\n     *\n     * Counterpart to Solidity's `int48` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 48 bits\n     */\n    function toInt48(int256 value) internal pure returns (int48 downcasted) {\n        downcasted = int48(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(48, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int40 from int256, reverting on\n     * overflow (when the input is less than smallest int40 or\n     * greater than largest int40).\n     *\n     * Counterpart to Solidity's `int40` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 40 bits\n     */\n    function toInt40(int256 value) internal pure returns (int40 downcasted) {\n        downcasted = int40(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(40, value);\n        }\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    function toInt32(int256 value) internal pure returns (int32 downcasted) {\n        downcasted = int32(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(32, value);\n        }\n    }\n\n    /**\n     * @dev Returns the downcasted int24 from int256, reverting on\n     * overflow (when the input is less than smallest int24 or\n     * greater than largest int24).\n     *\n     * Counterpart to Solidity's `int24` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 24 bits\n     */\n    function toInt24(int256 value) internal pure returns (int24 downcasted) {\n        downcasted = int24(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(24, value);\n        }\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    function toInt16(int256 value) internal pure returns (int16 downcasted) {\n        downcasted = int16(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(16, value);\n        }\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    function toInt8(int256 value) internal pure returns (int8 downcasted) {\n        downcasted = int8(value);\n        if (downcasted != value) {\n            revert SafeCastOverflowedIntDowncast(8, value);\n        }\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        if (value > uint256(type(int256).max)) {\n            revert SafeCastOverflowedUintToInt(value);\n        }\n        return int256(value);\n    }\n\n    /**\n     * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump.\n     */\n    function toUint(bool b) internal pure returns (uint256 u) {\n        assembly (\"memory-safe\") {\n            u := iszero(iszero(b))\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)\n\npragma solidity ^0.8.20;\n\nimport {SafeCast} from \"./SafeCast.sol\";\n\n/**\n * @dev Standard signed math utilities missing in the Solidity language.\n */\nlibrary SignedMath {\n    /**\n     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n     *\n     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n     * one branch when needed, making this function more expensive.\n     */\n    function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {\n        unchecked {\n            // branchless ternary works because:\n            // b ^ (a ^ b) == a\n            // b ^ 0 == b\n            return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));\n        }\n    }\n\n    /**\n     * @dev Returns the largest of two signed numbers.\n     */\n    function max(int256 a, int256 b) internal pure returns (int256) {\n        return ternary(a > b, a, b);\n    }\n\n    /**\n     * @dev Returns the smallest of two signed numbers.\n     */\n    function min(int256 a, int256 b) internal pure returns (int256) {\n        return ternary(a < b, a, b);\n    }\n\n    /**\n     * @dev Returns the average of two signed numbers without overflow.\n     * The result is rounded towards zero.\n     */\n    function average(int256 a, int256 b) internal pure returns (int256) {\n        // Formula from the book \"Hacker's Delight\"\n        int256 x = (a & b) + ((a ^ b) >> 1);\n        return x + (int256(uint256(x) >> 255) & (a ^ b));\n    }\n\n    /**\n     * @dev Returns the absolute unsigned value of a signed value.\n     */\n    function abs(int256 n) internal pure returns (uint256) {\n        unchecked {\n            // Formula from the \"Bit Twiddling Hacks\" by Sean Eron Anderson.\n            // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift,\n            // taking advantage of the most significant (or \"sign\" bit) in two's complement representation.\n            // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result,\n            // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative).\n            int256 mask = n >> 255;\n\n            // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it.\n            return uint256((n + mask) ^ mask);\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Nonces.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)\npragma solidity ^0.8.20;\n\n/**\n * @dev Provides tracking nonces for addresses. Nonces will only increment.\n */\nabstract contract Nonces {\n    /**\n     * @dev The nonce used for an `account` is not the expected current nonce.\n     */\n    error InvalidAccountNonce(address account, uint256 currentNonce);\n\n    mapping(address account => uint256) private _nonces;\n\n    /**\n     * @dev Returns the next unused nonce for an address.\n     */\n    function nonces(address owner) public view virtual returns (uint256) {\n        return _nonces[owner];\n    }\n\n    /**\n     * @dev Consumes a nonce.\n     *\n     * Returns the current value and increments nonce.\n     */\n    function _useNonce(address owner) internal virtual returns (uint256) {\n        // For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be\n        // decremented or reset. This guarantees that the nonce never overflows.\n        unchecked {\n            // It is important to do x++ and not ++x here.\n            return _nonces[owner]++;\n        }\n    }\n\n    /**\n     * @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`.\n     */\n    function _useCheckedNonce(address owner, uint256 nonce) internal virtual {\n        uint256 current = _useNonce(owner);\n        if (nonce != current) {\n            revert InvalidAccountNonce(owner, current);\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Panic.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Helper library for emitting standardized panic codes.\n *\n * ```solidity\n * contract Example {\n *      using Panic for uint256;\n *\n *      // Use any of the declared internal constants\n *      function foo() { Panic.GENERIC.panic(); }\n *\n *      // Alternatively\n *      function foo() { Panic.panic(Panic.GENERIC); }\n * }\n * ```\n *\n * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].\n *\n * _Available since v5.1._\n */\n// slither-disable-next-line unused-state\nlibrary Panic {\n    /// @dev generic / unspecified error\n    uint256 internal constant GENERIC = 0x00;\n    /// @dev used by the assert() builtin\n    uint256 internal constant ASSERT = 0x01;\n    /// @dev arithmetic underflow or overflow\n    uint256 internal constant UNDER_OVERFLOW = 0x11;\n    /// @dev division or modulo by zero\n    uint256 internal constant DIVISION_BY_ZERO = 0x12;\n    /// @dev enum conversion error\n    uint256 internal constant ENUM_CONVERSION_ERROR = 0x21;\n    /// @dev invalid encoding in storage\n    uint256 internal constant STORAGE_ENCODING_ERROR = 0x22;\n    /// @dev empty array pop\n    uint256 internal constant EMPTY_ARRAY_POP = 0x31;\n    /// @dev array out of bounds access\n    uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32;\n    /// @dev resource error (too large allocation or too large array)\n    uint256 internal constant RESOURCE_ERROR = 0x41;\n    /// @dev calling invalid internal function\n    uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51;\n\n    /// @dev Reverts with a panic code. Recommended to use with\n    /// the internal constants with predefined codes.\n    function panic(uint256 code) internal pure {\n        assembly (\"memory-safe\") {\n            mstore(0x00, 0x4e487b71)\n            mstore(0x20, code)\n            revert(0x1c, 0x24)\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/ShortStrings.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.0) (utils/ShortStrings.sol)\n\npragma solidity ^0.8.20;\n\nimport {StorageSlot} from \"./StorageSlot.sol\";\n\n// | string  | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA   |\n// | length  | 0x                                                              BB |\ntype ShortString is bytes32;\n\n/**\n * @dev This library provides functions to convert short memory strings\n * into a `ShortString` type that can be used as an immutable variable.\n *\n * Strings of arbitrary length can be optimized using this library if\n * they are short enough (up to 31 bytes) by packing them with their\n * length (1 byte) in a single EVM word (32 bytes). Additionally, a\n * fallback mechanism can be used for every other case.\n *\n * Usage example:\n *\n * ```solidity\n * contract Named {\n *     using ShortStrings for *;\n *\n *     ShortString private immutable _name;\n *     string private _nameFallback;\n *\n *     constructor(string memory contractName) {\n *         _name = contractName.toShortStringWithFallback(_nameFallback);\n *     }\n *\n *     function name() external view returns (string memory) {\n *         return _name.toStringWithFallback(_nameFallback);\n *     }\n * }\n * ```\n */\nlibrary ShortStrings {\n    // Used as an identifier for strings longer than 31 bytes.\n    bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;\n\n    error StringTooLong(string str);\n    error InvalidShortString();\n\n    /**\n     * @dev Encode a string of at most 31 chars into a `ShortString`.\n     *\n     * This will trigger a `StringTooLong` error is the input string is too long.\n     */\n    function toShortString(string memory str) internal pure returns (ShortString) {\n        bytes memory bstr = bytes(str);\n        if (bstr.length > 31) {\n            revert StringTooLong(str);\n        }\n        return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));\n    }\n\n    /**\n     * @dev Decode a `ShortString` back to a \"normal\" string.\n     */\n    function toString(ShortString sstr) internal pure returns (string memory) {\n        uint256 len = byteLength(sstr);\n        // using `new string(len)` would work locally but is not memory safe.\n        string memory str = new string(32);\n        assembly (\"memory-safe\") {\n            mstore(str, len)\n            mstore(add(str, 0x20), sstr)\n        }\n        return str;\n    }\n\n    /**\n     * @dev Return the length of a `ShortString`.\n     */\n    function byteLength(ShortString sstr) internal pure returns (uint256) {\n        uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;\n        if (result > 31) {\n            revert InvalidShortString();\n        }\n        return result;\n    }\n\n    /**\n     * @dev Encode a string into a `ShortString`, or write it to storage if it is too long.\n     */\n    function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {\n        if (bytes(value).length < 32) {\n            return toShortString(value);\n        } else {\n            StorageSlot.getStringSlot(store).value = value;\n            return ShortString.wrap(FALLBACK_SENTINEL);\n        }\n    }\n\n    /**\n     * @dev Decode a string that was encoded to `ShortString` or written to storage using {toShortStringWithFallback}.\n     */\n    function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {\n        if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {\n            return toString(value);\n        } else {\n            return store;\n        }\n    }\n\n    /**\n     * @dev Return the length of a string that was encoded to `ShortString` or written to storage using\n     * {toShortStringWithFallback}.\n     *\n     * WARNING: This will return the \"byte length\" of the string. This may not reflect the actual length in terms of\n     * actual characters as the UTF-8 encoding of a single character can span over multiple bytes.\n     */\n    function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {\n        if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {\n            return byteLength(value);\n        } else {\n            return bytes(store).length;\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/StorageSlot.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Library for reading and writing primitive types to specific storage slots.\n *\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n * This library helps with reading and writing to such slots without the need for inline assembly.\n *\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n *\n * Example usage to set ERC-1967 implementation slot:\n * ```solidity\n * contract ERC1967 {\n *     // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.\n *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n *\n *     function _getImplementation() internal view returns (address) {\n *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n *     }\n *\n *     function _setImplementation(address newImplementation) internal {\n *         require(newImplementation.code.length > 0);\n *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n *     }\n * }\n * ```\n *\n * TIP: Consider using this library along with {SlotDerivation}.\n */\nlibrary StorageSlot {\n    struct AddressSlot {\n        address value;\n    }\n\n    struct BooleanSlot {\n        bool value;\n    }\n\n    struct Bytes32Slot {\n        bytes32 value;\n    }\n\n    struct Uint256Slot {\n        uint256 value;\n    }\n\n    struct Int256Slot {\n        int256 value;\n    }\n\n    struct StringSlot {\n        string value;\n    }\n\n    struct BytesSlot {\n        bytes value;\n    }\n\n    /**\n     * @dev Returns an `AddressSlot` with member `value` located at `slot`.\n     */\n    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns a `BooleanSlot` with member `value` located at `slot`.\n     */\n    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns a `Bytes32Slot` with member `value` located at `slot`.\n     */\n    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns a `Uint256Slot` with member `value` located at `slot`.\n     */\n    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns a `Int256Slot` with member `value` located at `slot`.\n     */\n    function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns a `StringSlot` with member `value` located at `slot`.\n     */\n    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\n     */\n    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := store.slot\n        }\n    }\n\n    /**\n     * @dev Returns a `BytesSlot` with member `value` located at `slot`.\n     */\n    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := slot\n        }\n    }\n\n    /**\n     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\n     */\n    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\n        assembly (\"memory-safe\") {\n            r.slot := store.slot\n        }\n    }\n}\n"},"@openzeppelin/contracts/utils/Strings.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (utils/Strings.sol)\n\npragma solidity ^0.8.20;\n\nimport {Math} from \"./math/Math.sol\";\nimport {SafeCast} from \"./math/SafeCast.sol\";\nimport {SignedMath} from \"./math/SignedMath.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n    using SafeCast for *;\n\n    bytes16 private constant HEX_DIGITS = \"0123456789abcdef\";\n    uint8 private constant ADDRESS_LENGTH = 20;\n    uint256 private constant SPECIAL_CHARS_LOOKUP =\n        (1 << 0x08) | // backspace\n            (1 << 0x09) | // tab\n            (1 << 0x0a) | // newline\n            (1 << 0x0c) | // form feed\n            (1 << 0x0d) | // carriage return\n            (1 << 0x22) | // double quote\n            (1 << 0x5c); // backslash\n\n    /**\n     * @dev The `value` string doesn't fit in the specified `length`.\n     */\n    error StringsInsufficientHexLength(uint256 value, uint256 length);\n\n    /**\n     * @dev The string being parsed contains characters that are not in scope of the given base.\n     */\n    error StringsInvalidChar();\n\n    /**\n     * @dev The string being parsed is not a properly formatted address.\n     */\n    error StringsInvalidAddressFormat();\n\n    /**\n     * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n     */\n    function toString(uint256 value) internal pure returns (string memory) {\n        unchecked {\n            uint256 length = Math.log10(value) + 1;\n            string memory buffer = new string(length);\n            uint256 ptr;\n            assembly (\"memory-safe\") {\n                ptr := add(add(buffer, 0x20), length)\n            }\n            while (true) {\n                ptr--;\n                assembly (\"memory-safe\") {\n                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))\n                }\n                value /= 10;\n                if (value == 0) break;\n            }\n            return buffer;\n        }\n    }\n\n    /**\n     * @dev Converts a `int256` to its ASCII `string` decimal representation.\n     */\n    function toStringSigned(int256 value) internal pure returns (string memory) {\n        return string.concat(value < 0 ? \"-\" : \"\", toString(SignedMath.abs(value)));\n    }\n\n    /**\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n     */\n    function toHexString(uint256 value) internal pure returns (string memory) {\n        unchecked {\n            return toHexString(value, Math.log256(value) + 1);\n        }\n    }\n\n    /**\n     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n     */\n    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n        uint256 localValue = value;\n        bytes memory buffer = new bytes(2 * length + 2);\n        buffer[0] = \"0\";\n        buffer[1] = \"x\";\n        for (uint256 i = 2 * length + 1; i > 1; --i) {\n            buffer[i] = HEX_DIGITS[localValue & 0xf];\n            localValue >>= 4;\n        }\n        if (localValue != 0) {\n            revert StringsInsufficientHexLength(value, length);\n        }\n        return string(buffer);\n    }\n\n    /**\n     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal\n     * representation.\n     */\n    function toHexString(address addr) internal pure returns (string memory) {\n        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);\n    }\n\n    /**\n     * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal\n     * representation, according to EIP-55.\n     */\n    function toChecksumHexString(address addr) internal pure returns (string memory) {\n        bytes memory buffer = bytes(toHexString(addr));\n\n        // hash the hex part of buffer (skip length + 2 bytes, length 40)\n        uint256 hashValue;\n        assembly (\"memory-safe\") {\n            hashValue := shr(96, keccak256(add(buffer, 0x22), 40))\n        }\n\n        for (uint256 i = 41; i > 1; --i) {\n            // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f)\n            if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) {\n                // case shift by xoring with 0x20\n                buffer[i] ^= 0x20;\n            }\n            hashValue >>= 4;\n        }\n        return string(buffer);\n    }\n\n    /**\n     * @dev Returns true if the two strings are equal.\n     */\n    function equal(string memory a, string memory b) internal pure returns (bool) {\n        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));\n    }\n\n    /**\n     * @dev Parse a decimal string and returns the value as a `uint256`.\n     *\n     * Requirements:\n     * - The string must be formatted as `[0-9]*`\n     * - The result must fit into an `uint256` type\n     */\n    function parseUint(string memory input) internal pure returns (uint256) {\n        return parseUint(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseUint-string} that parses a substring of `input` located between position `begin` (included) and\n     * `end` (excluded).\n     *\n     * Requirements:\n     * - The substring must be formatted as `[0-9]*`\n     * - The result must fit into an `uint256` type\n     */\n    function parseUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {\n        (bool success, uint256 value) = tryParseUint(input, begin, end);\n        if (!success) revert StringsInvalidChar();\n        return value;\n    }\n\n    /**\n     * @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.\n     *\n     * NOTE: This function will revert if the result does not fit in a `uint256`.\n     */\n    function tryParseUint(string memory input) internal pure returns (bool success, uint256 value) {\n        return _tryParseUintUncheckedBounds(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n     * character.\n     *\n     * NOTE: This function will revert if the result does not fit in a `uint256`.\n     */\n    function tryParseUint(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) internal pure returns (bool success, uint256 value) {\n        if (end > bytes(input).length || begin > end) return (false, 0);\n        return _tryParseUintUncheckedBounds(input, begin, end);\n    }\n\n    /**\n     * @dev Implementation of {tryParseUint-string-uint256-uint256} that does not check bounds. Caller should make sure that\n     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n     */\n    function _tryParseUintUncheckedBounds(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) private pure returns (bool success, uint256 value) {\n        bytes memory buffer = bytes(input);\n\n        uint256 result = 0;\n        for (uint256 i = begin; i < end; ++i) {\n            uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));\n            if (chr > 9) return (false, 0);\n            result *= 10;\n            result += chr;\n        }\n        return (true, result);\n    }\n\n    /**\n     * @dev Parse a decimal string and returns the value as a `int256`.\n     *\n     * Requirements:\n     * - The string must be formatted as `[-+]?[0-9]*`\n     * - The result must fit in an `int256` type.\n     */\n    function parseInt(string memory input) internal pure returns (int256) {\n        return parseInt(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and\n     * `end` (excluded).\n     *\n     * Requirements:\n     * - The substring must be formatted as `[-+]?[0-9]*`\n     * - The result must fit in an `int256` type.\n     */\n    function parseInt(string memory input, uint256 begin, uint256 end) internal pure returns (int256) {\n        (bool success, int256 value) = tryParseInt(input, begin, end);\n        if (!success) revert StringsInvalidChar();\n        return value;\n    }\n\n    /**\n     * @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if\n     * the result does not fit in a `int256`.\n     *\n     * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.\n     */\n    function tryParseInt(string memory input) internal pure returns (bool success, int256 value) {\n        return _tryParseIntUncheckedBounds(input, 0, bytes(input).length);\n    }\n\n    uint256 private constant ABS_MIN_INT256 = 2 ** 255;\n\n    /**\n     * @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n     * character or if the result does not fit in a `int256`.\n     *\n     * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.\n     */\n    function tryParseInt(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) internal pure returns (bool success, int256 value) {\n        if (end > bytes(input).length || begin > end) return (false, 0);\n        return _tryParseIntUncheckedBounds(input, begin, end);\n    }\n\n    /**\n     * @dev Implementation of {tryParseInt-string-uint256-uint256} that does not check bounds. Caller should make sure that\n     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n     */\n    function _tryParseIntUncheckedBounds(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) private pure returns (bool success, int256 value) {\n        bytes memory buffer = bytes(input);\n\n        // Check presence of a negative sign.\n        bytes1 sign = begin == end ? bytes1(0) : bytes1(_unsafeReadBytesOffset(buffer, begin)); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n        bool positiveSign = sign == bytes1(\"+\");\n        bool negativeSign = sign == bytes1(\"-\");\n        uint256 offset = (positiveSign || negativeSign).toUint();\n\n        (bool absSuccess, uint256 absValue) = tryParseUint(input, begin + offset, end);\n\n        if (absSuccess && absValue < ABS_MIN_INT256) {\n            return (true, negativeSign ? -int256(absValue) : int256(absValue));\n        } else if (absSuccess && negativeSign && absValue == ABS_MIN_INT256) {\n            return (true, type(int256).min);\n        } else return (false, 0);\n    }\n\n    /**\n     * @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as a `uint256`.\n     *\n     * Requirements:\n     * - The string must be formatted as `(0x)?[0-9a-fA-F]*`\n     * - The result must fit in an `uint256` type.\n     */\n    function parseHexUint(string memory input) internal pure returns (uint256) {\n        return parseHexUint(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseHexUint-string} that parses a substring of `input` located between position `begin` (included) and\n     * `end` (excluded).\n     *\n     * Requirements:\n     * - The substring must be formatted as `(0x)?[0-9a-fA-F]*`\n     * - The result must fit in an `uint256` type.\n     */\n    function parseHexUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {\n        (bool success, uint256 value) = tryParseHexUint(input, begin, end);\n        if (!success) revert StringsInvalidChar();\n        return value;\n    }\n\n    /**\n     * @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.\n     *\n     * NOTE: This function will revert if the result does not fit in a `uint256`.\n     */\n    function tryParseHexUint(string memory input) internal pure returns (bool success, uint256 value) {\n        return _tryParseHexUintUncheckedBounds(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an\n     * invalid character.\n     *\n     * NOTE: This function will revert if the result does not fit in a `uint256`.\n     */\n    function tryParseHexUint(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) internal pure returns (bool success, uint256 value) {\n        if (end > bytes(input).length || begin > end) return (false, 0);\n        return _tryParseHexUintUncheckedBounds(input, begin, end);\n    }\n\n    /**\n     * @dev Implementation of {tryParseHexUint-string-uint256-uint256} that does not check bounds. Caller should make sure that\n     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.\n     */\n    function _tryParseHexUintUncheckedBounds(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) private pure returns (bool success, uint256 value) {\n        bytes memory buffer = bytes(input);\n\n        // skip 0x prefix if present\n        bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(buffer, begin)) == bytes2(\"0x\"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n        uint256 offset = hasPrefix.toUint() * 2;\n\n        uint256 result = 0;\n        for (uint256 i = begin + offset; i < end; ++i) {\n            uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));\n            if (chr > 15) return (false, 0);\n            result *= 16;\n            unchecked {\n                // Multiplying by 16 is equivalent to a shift of 4 bits (with additional overflow check).\n                // This guarantees that adding a value < 16 will not cause an overflow, hence the unchecked.\n                result += chr;\n            }\n        }\n        return (true, result);\n    }\n\n    /**\n     * @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as an `address`.\n     *\n     * Requirements:\n     * - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`\n     */\n    function parseAddress(string memory input) internal pure returns (address) {\n        return parseAddress(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseAddress-string} that parses a substring of `input` located between position `begin` (included) and\n     * `end` (excluded).\n     *\n     * Requirements:\n     * - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`\n     */\n    function parseAddress(string memory input, uint256 begin, uint256 end) internal pure returns (address) {\n        (bool success, address value) = tryParseAddress(input, begin, end);\n        if (!success) revert StringsInvalidAddressFormat();\n        return value;\n    }\n\n    /**\n     * @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly\n     * formatted address. See {parseAddress-string} requirements.\n     */\n    function tryParseAddress(string memory input) internal pure returns (bool success, address value) {\n        return tryParseAddress(input, 0, bytes(input).length);\n    }\n\n    /**\n     * @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly\n     * formatted address. See {parseAddress-string-uint256-uint256} requirements.\n     */\n    function tryParseAddress(\n        string memory input,\n        uint256 begin,\n        uint256 end\n    ) internal pure returns (bool success, address value) {\n        if (end > bytes(input).length || begin > end) return (false, address(0));\n\n        bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(bytes(input), begin)) == bytes2(\"0x\"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty\n        uint256 expectedLength = 40 + hasPrefix.toUint() * 2;\n\n        // check that input is the correct length\n        if (end - begin == expectedLength) {\n            // length guarantees that this does not overflow, and value is at most type(uint160).max\n            (bool s, uint256 v) = _tryParseHexUintUncheckedBounds(input, begin, end);\n            return (s, address(uint160(v)));\n        } else {\n            return (false, address(0));\n        }\n    }\n\n    function _tryParseChr(bytes1 chr) private pure returns (uint8) {\n        uint8 value = uint8(chr);\n\n        // Try to parse `chr`:\n        // - Case 1: [0-9]\n        // - Case 2: [a-f]\n        // - Case 3: [A-F]\n        // - otherwise not supported\n        unchecked {\n            if (value > 47 && value < 58) value -= 48;\n            else if (value > 96 && value < 103) value -= 87;\n            else if (value > 64 && value < 71) value -= 55;\n            else return type(uint8).max;\n        }\n\n        return value;\n    }\n\n    /**\n     * @dev Escape special characters in JSON strings. This can be useful to prevent JSON injection in NFT metadata.\n     *\n     * WARNING: This function should only be used in double quoted JSON strings. Single quotes are not escaped.\n     *\n     * NOTE: This function escapes all unicode characters, and not just the ones in ranges defined in section 2.5 of\n     * RFC-4627 (U+0000 to U+001F, U+0022 and U+005C). ECMAScript's `JSON.parse` does recover escaped unicode\n     * characters that are not in this range, but other tooling may provide different results.\n     */\n    function escapeJSON(string memory input) internal pure returns (string memory) {\n        bytes memory buffer = bytes(input);\n        bytes memory output = new bytes(2 * buffer.length); // worst case scenario\n        uint256 outputLength = 0;\n\n        for (uint256 i; i < buffer.length; ++i) {\n            bytes1 char = bytes1(_unsafeReadBytesOffset(buffer, i));\n            if (((SPECIAL_CHARS_LOOKUP & (1 << uint8(char))) != 0)) {\n                output[outputLength++] = \"\\\\\";\n                if (char == 0x08) output[outputLength++] = \"b\";\n                else if (char == 0x09) output[outputLength++] = \"t\";\n                else if (char == 0x0a) output[outputLength++] = \"n\";\n                else if (char == 0x0c) output[outputLength++] = \"f\";\n                else if (char == 0x0d) output[outputLength++] = \"r\";\n                else if (char == 0x5c) output[outputLength++] = \"\\\\\";\n                else if (char == 0x22) {\n                    // solhint-disable-next-line quotes\n                    output[outputLength++] = '\"';\n                }\n            } else {\n                output[outputLength++] = char;\n            }\n        }\n        // write the actual length and deallocate unused memory\n        assembly (\"memory-safe\") {\n            mstore(output, outputLength)\n            mstore(0x40, add(output, shl(5, shr(5, add(outputLength, 63)))))\n        }\n\n        return string(output);\n    }\n\n    /**\n     * @dev Reads a bytes32 from a bytes array without bounds checking.\n     *\n     * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the\n     * assembly block as such would prevent some optimizations.\n     */\n    function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) {\n        // This is not memory safe in the general case, but all calls to this private function are within bounds.\n        assembly (\"memory-safe\") {\n            value := mload(add(add(buffer, 0x20), offset))\n        }\n    }\n}\n"},"contracts/Create3.sol":{"content":"// SPDX-License-Identifier: AGPL-3.0-only\r\n\r\npragma solidity >=0.8.20 <0.9.0;\r\n\r\n/// @notice Deploy to deterministic addresses without an initcode factor.\r\n/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/CREATE3.sol)\r\n/// @author 0xSequence (https://github.com/0xSequence/create3/blob/master/contracts/Create3.sol)\r\n\r\nlibrary Create3 {\r\n\r\n    //--------------------------------------------------------------------------------//\r\n    // Opcode     | Opcode + Arguments    | Description      | Stack View             //\r\n    //--------------------------------------------------------------------------------//\r\n    // 0x36       |  0x36                 | CALLDATASIZE     | size                   //\r\n    // 0x3d       |  0x3d                 | RETURNDATASIZE   | 0 size                 //\r\n    // 0x3d       |  0x3d                 | RETURNDATASIZE   | 0 0 size               //\r\n    // 0x37       |  0x37                 | CALLDATACOPY     |                        //\r\n    // 0x36       |  0x36                 | CALLDATASIZE     | size                   //\r\n    // 0x3d       |  0x3d                 | RETURNDATASIZE   | 0 size                 //\r\n    // 0x34       |  0x34                 | CALLVALUE        | value 0 size           //\r\n    // 0xf0       |  0xf0                    CREATE           | newContract            //\r\n    //--------------------------------------------------------------------------------//\r\n    // Opcode     | Opcode + Arguments    | Description      | Stack View             //\r\n    //--------------------------------------------------------------------------------//\r\n    // 0x67       |  0x67XXXXXXXXXXXXXXXX | PUSH8 bytecode   | bytecode               //\r\n    // 0x3d       |  0x3d                 | RETURNDATASIZE   | 0 bytecode             //\r\n    // 0x52       |  0x52                 | MSTORE           |                        //\r\n    // 0x60       |  0x6008               | PUSH1 08         | 8                      //\r\n    // 0x60       |  0x6018               | PUSH1 18         | 24 8                   //\r\n    // 0xf3       |  0xf3                 | RETURN           |                        //\r\n    //--------------------------------------------------------------------------------//\r\n    \r\n    bytes internal constant CREATE3_FACTORY_BYTECODE = hex\"67_36_3d_3d_37_36_3d_34_f0_3d_52_60_08_60_18_f3\";\r\n    bytes32 internal constant CREATE3_FACTORY_CODEHASH = keccak256(CREATE3_FACTORY_BYTECODE);\r\n\r\n    /// @notice Creates a new contract with given `_creationCode` and `_salt`\r\n    /// @param _salt Salt of the contract creation, resulting address will be derivated from this value only\r\n    /// @param _creationCode Creation code (constructor) of the contract to be deployed, this value doesn't affect the resulting address\r\n    /// @return addr of the deployed contract, reverts on error\r\n    function deploy(bytes32 _salt, bytes memory _creationCode)\r\n        internal \r\n        returns (address)\r\n    {\r\n        return deploy(_salt, _creationCode, 0);\r\n    }\r\n\r\n    /// @notice Creates a new contract with given `_creationCode`, `_salt` and `_value`. \r\n    /// @param _salt Salt of the contract creation, resulting address will be derivated from this value only\r\n    /// @param _creationCode Creation code (constructor) of the contract to be deployed, this value doesn't affect the resulting address\r\n    /// @param _value In WEI of ETH to be forwarded to child contract\r\n    /// @return _deployed The address of the deployed contract.\r\n    function deploy(bytes32 _salt, bytes memory _creationCode, uint256 _value)\r\n        internal\r\n        returns (address _deployed)\r\n    {\r\n        // Get target final address\r\n        _deployed = determineAddr(_salt);\r\n        if (_deployed.code.length != 0) revert(\"Create3: target already exists\");\r\n\r\n        // Create factory\r\n        address _factory;\r\n        bytes memory _factoryBytecode = CREATE3_FACTORY_BYTECODE;\r\n        /// @solidity memory-safe-assembly\r\n        assembly {\r\n            // Deploy a factory contract with our pre-made bytecode via CREATE2.\r\n            // We start 32 bytes into the code to avoid copying the byte length.\r\n            _factory := create2(0, add(_factoryBytecode, 32), mload(_factoryBytecode), _salt)\r\n        }\r\n        require(_factory != address(0), \"Create3: error creating factory\");       \r\n\r\n        // Use factory to deploy target\r\n        (bool _success, ) = _factory.call{value: _value}(_creationCode);\r\n        require(_success && _deployed.code.length != 0, \"Create3: error creating target\");\r\n    }\r\n\r\n    /// @notice Computes the resulting address of a contract deployed using address(this) and the given `_salt`\r\n    /// @param _salt Salt of the contract creation, resulting address will be derivated from this value only\r\n    /// @return addr of the deployed contract, reverts on error\r\n    /// @dev The address creation formula is: keccak256(rlp([keccak256(0xff ++ address(this) ++ _salt ++ keccak256(childBytecode))[12:], 0x01]))\r\n    function determineAddr(bytes32 _salt) internal view returns (address) {\r\n        address _factory = address(\r\n            uint160(\r\n                uint256(\r\n                    keccak256(\r\n                        abi.encodePacked(\r\n                            hex'ff',\r\n                            address(this),\r\n                            _salt,\r\n                            CREATE3_FACTORY_CODEHASH\r\n                        )\r\n                    )\r\n                )\r\n            )\r\n        );\r\n        return address(\r\n            uint160(\r\n                uint256(\r\n                    keccak256(\r\n                        abi.encodePacked(\r\n                            // 0xd6 = 0xc0 (short RLP prefix) + 0x16 (length of: 0x94 ++ _factory ++ 0x01)\r\n                            // 0x94 = 0x80 + 0x14 (0x14 = the length of an address, 20 bytes, in hex)\r\n                            hex\"d6_94\",\r\n                            _factory,\r\n                            // _factory's nonce on which the target is created: 0x1\r\n                            hex\"01\"\r\n                        )\r\n                    )\r\n                )\r\n            )\r\n        );\r\n    }\r\n\r\n}"},"contracts/IWrappedWIT.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.20 <0.9.0;\r\n\r\nimport \"witnet-solidity-bridge/contracts/WitOracle.sol\";\r\n\r\ninterface IWrappedWIT {\r\n\r\n    error Unauthorized();\r\n\r\n    event CuratorshipTransferred(address indexed evmPrevCurator, address indexed evmNewCurator);\r\n    event NewCustodianUnwrapper(string witCustodianUnwrapper);\r\n    event ReserveUpdate(uint256 value, Witnet.Timestamp timestamp, Witnet.TransactionHash witDrtHash);\r\n    event Wrapped(string witSender, address evmRecipient, uint256 value, Witnet.TransactionHash witVttHash);\r\n    event Unwrapped(address evmSender, string witRecipient, uint256 value, uint256 nonce);\r\n\r\n    struct WitOracleSettings {\r\n        uint16 minWitnesses;\r\n        uint16 baseFeeOverhead100;\r\n        uint64 unitaryRewardNanowits;\r\n        uint24 responseCallbackGasLimit;\r\n    }\r\n\r\n    enum WrappingStatus {\r\n        Unknown,\r\n        Awaiting,\r\n        Retry,\r\n        Done\r\n    }\r\n\r\n    /// --- Read-only methods -----------------------------------------------------------------------------------------\r\n    function evmCurator() external view returns (address);\r\n    function getWrapTransactionLastQueryId(Witnet.TransactionHash) external view returns (uint256);\r\n    function getWrapTransactionStatus(Witnet.TransactionHash) external view returns (WrappingStatus);\r\n    function getWrapTransactionStatuses(Witnet.TransactionHash[] calldata) external view returns (WrappingStatus[] memory);\r\n    function totalReserveSupply() external view returns (uint256);\r\n    function totalUnwraps() external view returns (uint256);\r\n    function totalWraps()   external view returns (uint256);\r\n    \r\n    function witCustodianWrapper() external view returns (string memory);\r\n    function witCustodianUnwrapper() external view returns (string memory);\r\n\r\n    function witOracleCrossChainRpcProviders() external view returns (string[] memory);\r\n    function witOracleEstimateWrappingFee(uint256) external view returns (uint256);\r\n    function witOracleProofOfReserveLastUpdate() external view returns (Witnet.Timestamp);\r\n    function witOracleProofOfReserveRadonBytecode() external view returns (bytes memory);\r\n    function witOracleProofOfReserveRadonHash() external view returns (Witnet.RadonHash);\r\n    function witOracleQuerySettings() external view returns (WitOracleSettings memory);\r\n    \r\n    /// --- Authoritative methods -------------------------------------------------------------------------------------\r\n    function settleWitOracleCrossChainRpcProviders(string[] calldata) external;\r\n    function settleWitOracleSettings(WitOracleSettings calldata) external;\r\n    function settleWitCustodianUnwrapper(string calldata) external;\r\n    function transferCuratorship(address) external;\r\n\r\n    // --- Permissionless state-modifying methods ---------------------------------------------------------------------\r\n    function wrap(Witnet.TransactionHash witTxHash) external payable returns (uint256 witOracleQueryId);\r\n    function unwrap(uint64, string calldata) external returns (uint256 evmUnwrapId);\r\n}\r\n"},"contracts/WrappedWIT.sol":{"content":"// SPDX-License-Identifier: MIT\r\n// Compatible with OpenZeppelin Contracts ^5.0.0\r\npragma solidity >=0.8.20 <0.9.0;\r\n\r\nimport {ERC20} from \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\r\nimport {ERC20Bridgeable} from \"@openzeppelin/community-contracts/contracts/token/ERC20/extensions/ERC20Bridgeable.sol\";\r\nimport {ERC20Permit} from \"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\";\r\nimport {Initializable} from \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\";\r\n\r\nimport \"witnet-solidity-bridge/contracts/WitOracle.sol\";\r\n\r\nimport {\r\n    IWitOracleRadonRequestModal,\r\n    IWitOracleRadonRequestTemplate,\r\n    IWitOracleRadonRequestFactory\r\n} from \"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol\";\r\n\r\nimport {IWitOracleConsumer} from \"witnet-solidity-bridge/contracts/interfaces/IWitOracleConsumer.sol\";\r\nimport {IWitOracleQueriableConsumer} from \"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableConsumer.sol\";\r\n\r\nimport {IWrappedWIT, WrappedWITLib} from \"./WrappedWITLib.sol\";\r\n\r\n/// @custom:security-contact info@witnet.foundation\r\ncontract WrappedWIT\r\n    is \r\n        ERC20,\r\n        ERC20Bridgeable,\r\n        ERC20Permit,\r\n        Initializable,\r\n        IWitOracleConsumer,\r\n        IWitOracleQueriableConsumer,\r\n        IWrappedWIT\r\n{\r\n    using Witnet for Witnet.Address;\r\n    using Witnet for Witnet.RadonHash;\r\n\r\n    uint256 internal constant _CANONICAL_CHAIN_ID = 1; // Ethereum Mainnet\r\n    uint8   internal constant _DECIMALS = 9;\r\n    address internal constant _SUPERCHAIN_TOKEN_BRIDGE = 0x4200000000000000000000000000000000000028; // Superchain bridge\r\n    \r\n    uint16 internal constant _WIT_ORACLE_REPORTS_MIN_MIN_WITNESSES = 3;\r\n    uint16 internal constant _WIT_ORACLE_QUERIABLE_CONSUMER_MAX_BASE_FEE_OVERHEAD = 50;\r\n    uint64 internal constant _WIT_ORACLE_QUERIABLE_CONSUMER_MIN_UNITARY_REWARD = 200_000_000; // 0.2 $WIT\r\n    uint24 internal constant _WIT_ORACLE_QUERIABLE_CONSUMER_MIN_RESPONSE_CALLBACK_GAS = 210_000;\r\n    \r\n    WitOracle public immutable witOracle;\r\n    IWitOracleRadonRequestModal public immutable witOracleCrossChainProofOfReserveTemplate;\r\n    IWitOracleRadonRequestModal public immutable witOracleCrossChainProofOfInclusionTemplate;\r\n    \r\n    Witnet.Address internal immutable __witCustodianWrapper;\r\n    bytes32 internal immutable __witCustodianWrapperBech32Hash;\r\n\r\n    modifier onlyCurator {\r\n        require(\r\n            _msgSender() == __storage().evmCurator, \r\n            Unauthorized()\r\n        ); _;\r\n    }\r\n\r\n    constructor(\r\n            IWitOracleRadonRequestFactory _witOracleRadonRequestFactory,\r\n            string memory _witCustodianBech32\r\n        )\r\n        ERC20(\"Wrapped WIT\", \"WIT\")\r\n        ERC20Permit(\"Wrapped/WIT\")\r\n    {\r\n        // Settle immutable parameters --------------------------------------------------------------------------------\r\n        __witCustodianWrapper = Witnet.fromBech32(_witCustodianBech32, block.chainid == _CANONICAL_CHAIN_ID);\r\n        __witCustodianWrapperBech32Hash = keccak256(bytes(_witCustodianBech32));\r\n\r\n        string[2][] memory _httpRequestHeaders = new string[2][](1);\r\n        _httpRequestHeaders[0] = [ \"Content-Type\", \"application/json;charset=UTF-8\" ];\r\n        witOracleCrossChainProofOfReserveTemplate = _witOracleRadonRequestFactory.buildRadonRequestModal(\r\n            IWitOracleRadonRequestFactory.DataSourceRequest({\r\n                method: Witnet.RadonRetrievalMethods.HttpPost,\r\n                body: '{\"jsonrpc\":\"2.0\",\"method\":\"getBalance2\",\"params\":{\"pkh\":\"\\\\1\\\\;\\\\2\\\\\"},\"id\":1}',\r\n                headers: _httpRequestHeaders,\r\n                script: // [RadonString] parseJSONMap()\r\n                        // [RadonMap]    getMap(\"result\")\r\n                        // [RadonArray]  values()\r\n                        hex\"83187782186666726573756c741869\" \r\n            }),\r\n            Witnet.RadonReducer({\r\n                opcode: Witnet.RadonReduceOpcodes.Mode,\r\n                filters: new Witnet.RadonFilter[](0)\r\n            })\r\n        );\r\n        witOracleCrossChainProofOfInclusionTemplate = _witOracleRadonRequestFactory.buildRadonRequestModal(\r\n            IWitOracleRadonRequestFactory.DataSourceRequest({\r\n                method: Witnet.RadonRetrievalMethods.HttpPost,\r\n                body: '{\"jsonrpc\":\"2.0\",\"method\":\"getValueTransfer\",\"params\":{\"hash\":\"\\\\1\\\\\",\"mode\":\"ethereal\",\"force\":true},\"id\":1}',\r\n                headers: _httpRequestHeaders,         \r\n                script: // [RadonString] parseJSONMap()\r\n                        // [RadonMap]    getMap(\"result\")\r\n                        // [RadonArray]  values()\r\n                        hex\"83187782186666726573756c741869\"\r\n            }),\r\n            Witnet.RadonReducer({\r\n                opcode: Witnet.RadonReduceOpcodes.Mode,\r\n                filters: new Witnet.RadonFilter[](0)\r\n            })\r\n        );\r\n\r\n        witOracle = WitOracle(IWitOracleAppliance(address(_witOracleRadonRequestFactory)).witOracle());\r\n    }\r\n\r\n    function initialize(\r\n            address _evmCurator,\r\n            string calldata _witCustodianUnwrapperBech32\r\n        ) \r\n        external \r\n        initializer\r\n    {\r\n        // Initialize authority --------\r\n        __storage().evmCurator = _evmCurator;\r\n        emit CuratorshipTransferred(address(0), _evmCurator);\r\n        \r\n        // Initialize authoritative parameters -------------------------------------------------------------\r\n        __storage().witOracleQuerySettings = WitOracleSettings({\r\n            minWitnesses: block.chainid == _CANONICAL_CHAIN_ID ? 12 : _WIT_ORACLE_REPORTS_MIN_MIN_WITNESSES,\r\n            baseFeeOverhead100: _WIT_ORACLE_QUERIABLE_CONSUMER_MAX_BASE_FEE_OVERHEAD / 10, \r\n            unitaryRewardNanowits: _WIT_ORACLE_QUERIABLE_CONSUMER_MIN_UNITARY_REWARD,\r\n            responseCallbackGasLimit: _WIT_ORACLE_QUERIABLE_CONSUMER_MIN_RESPONSE_CALLBACK_GAS\r\n        });\r\n        string[] memory _witOracleRpcProviders = new string[](1);\r\n        _witOracleRpcProviders[0] = (\r\n            block.chainid == _CANONICAL_CHAIN_ID \r\n                ? \"https://rpc-01.witnet.io\" \r\n                : \"https://rpc-testnet.witnet.io\"\r\n        );\r\n        __storage().witOracleCrossChainRpcProviders = _witOracleRpcProviders;\r\n\r\n        // Settle Wit/ Unwrapper address and formally verify parameterized Radon assets:\r\n        __settleWitCustodianUnwrapper(_witCustodianUnwrapperBech32);\r\n    }\r\n\r\n \r\n    /// ===============================================================================================================\r\n    /// --- ERC20 -----------------------------------------------------------------------------------------------------\r\n\r\n    function decimals() override public pure returns (uint8) {\r\n        return _DECIMALS;\r\n    }\r\n\r\n\r\n    /// ===============================================================================================================\r\n    /// --- ERC20Bridgeable -------------------------------------------------------------------------------------------\r\n\r\n    function _checkTokenBridge(address caller) override internal pure {\r\n        if (caller != _SUPERCHAIN_TOKEN_BRIDGE) revert Unauthorized();\r\n    }\r\n\r\n\r\n    /// ===============================================================================================================\r\n    /// --- Wrapped/WIT read-only methods -----------------------------------------------------------------------------\r\n    \r\n    function evmCurator() override external view returns (address) {\r\n        return __storage().evmCurator;\r\n    }\r\n\r\n    function getWrapTransactionLastQueryId(Witnet.TransactionHash _witnetValueTransferTransactionHash)\r\n        override external view \r\n        returns (uint256)\r\n    {\r\n        return __storage().witOracleWrappingTransactionLastQueryId[_witnetValueTransferTransactionHash];\r\n    }\r\n\r\n    function getWrapTransactionStatus(Witnet.TransactionHash _witnetValueTransferTransactionHash) \r\n        override public view \r\n        returns (WrappingStatus)\r\n    {\r\n        uint256 _witOracleLastQueryId = __storage().witOracleWrappingTransactionLastQueryId[\r\n            _witnetValueTransferTransactionHash\r\n        ];\r\n        if (_witOracleLastQueryId == 0) {\r\n            return WrappingStatus.Unknown;\r\n        \r\n        } else if (_witOracleLastQueryId == WrappedWITLib._WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED) {\r\n            return WrappingStatus.Done;\r\n        \r\n        } else {\r\n            return (\r\n                witOracle.getQueryStatus(_witOracleLastQueryId) == Witnet.QueryStatus.Posted\r\n                ? WrappingStatus.Awaiting\r\n                : WrappingStatus.Retry\r\n            );\r\n        }\r\n    }\r\n\r\n    function getWrapTransactionStatuses(Witnet.TransactionHash[] calldata _hashes)\r\n        override external view\r\n        returns (WrappingStatus[] memory _statuses)\r\n    {\r\n        _statuses = new WrappingStatus[](_hashes.length);\r\n        for (uint _ix = 0; _ix < _hashes.length; ++ _ix) {\r\n            _statuses[_ix] = getWrapTransactionStatus(_hashes[_ix]);\r\n        }\r\n    }\r\n\r\n    function totalReserveSupply() override external view returns (uint256) {\r\n        return __storage().evmLastReserveNanowits;\r\n    }\r\n\r\n    function totalUnwraps() override external view returns (uint256) {\r\n        return __storage().evmUnwraps;\r\n    }\r\n    \r\n    function totalWraps() override external view returns (uint256) {\r\n        return __storage().evmWraps;\r\n    }\r\n\r\n    function witCustodianWrapper() override public view returns (string memory) {\r\n        return __witCustodianWrapper.toBech32(block.chainid == _CANONICAL_CHAIN_ID);\r\n    }\r\n\r\n    function witCustodianUnwrapper() override public view returns (string memory) {\r\n        return __storage().witCustodianUnwrapper.toBech32(block.chainid == _CANONICAL_CHAIN_ID);\r\n    }\r\n\r\n    function witOracleCrossChainRpcProviders() override external view returns (string[] memory) {\r\n        return __storage().witOracleCrossChainRpcProviders;\r\n    }\r\n\r\n    function witOracleEstimateWrappingFee(uint256 evmGasPrice) override external view returns (uint256) {\r\n        return WrappedWITLib.witOracleEstimateWrappingFee(\r\n            witOracle, \r\n            evmGasPrice\r\n        );\r\n    }\r\n\r\n    function witOracleProofOfReserveLastUpdate() override external view returns (Witnet.Timestamp) {\r\n        return __storage().evmLastReserveTimestamp;\r\n    }\r\n\r\n    function witOracleProofOfReserveRadonBytecode() override external view returns (bytes memory) {\r\n        return witOracle\r\n            .registry()\r\n            .lookupRadonRequestBytecode(\r\n                __storage().witOracleProofOfReserveRadonHash\r\n            );\r\n    }\r\n\r\n    function witOracleProofOfReserveRadonHash() override external view returns (Witnet.RadonHash) {\r\n        return __storage().witOracleProofOfReserveRadonHash;\r\n    }\r\n\r\n    function witOracleQuerySettings() override external view returns (WitOracleSettings memory) {\r\n        return __storage().witOracleQuerySettings;\r\n    }\r\n\r\n\r\n    /// ===============================================================================================================\r\n    /// --- Wrapped/WIT authoritative methods -------------------------------------------------------------------------\r\n\r\n    function settleWitOracleCrossChainRpcProviders(string[] memory _witRpcProviders)\r\n        external\r\n        onlyCurator\r\n    {\r\n        assert(_witRpcProviders.length > 0);\r\n        __storage().witOracleCrossChainRpcProviders = _witRpcProviders;\r\n        __formallyVerifyRadonAssets(\r\n            _witRpcProviders, \r\n            __storage().witCustodianUnwrapper.toBech32(block.chainid == _CANONICAL_CHAIN_ID)\r\n        );\r\n    }\r\n\r\n    function settleWitOracleSettings(WitOracleSettings calldata _settings)\r\n        external\r\n        onlyCurator\r\n    {\r\n        assert(\r\n            _settings.minWitnesses >= _WIT_ORACLE_REPORTS_MIN_MIN_WITNESSES\r\n                && _settings.baseFeeOverhead100 <= _WIT_ORACLE_QUERIABLE_CONSUMER_MAX_BASE_FEE_OVERHEAD\r\n                && _settings.unitaryRewardNanowits >= _WIT_ORACLE_QUERIABLE_CONSUMER_MIN_UNITARY_REWARD\r\n                && _settings.responseCallbackGasLimit >= _WIT_ORACLE_QUERIABLE_CONSUMER_MIN_RESPONSE_CALLBACK_GAS\r\n        );\r\n        __storage().witOracleQuerySettings = _settings;\r\n    }\r\n\r\n    function settleWitCustodianUnwrapper(string calldata _witCustodianUnwrapperBech32)\r\n        external\r\n        onlyCurator\r\n    {\r\n        __settleWitCustodianUnwrapper(_witCustodianUnwrapperBech32);\r\n    }\r\n\r\n    function transferCuratorship(address _newCurator)\r\n        external \r\n        onlyCurator\r\n    {\r\n        assert(_newCurator != address(0));\r\n        emit CuratorshipTransferred(__storage().evmCurator, _newCurator);\r\n        __storage().evmCurator = _newCurator;\r\n    }\r\n\r\n    \r\n    /// ===============================================================================================================\r\n    /// --- Wrapped/WIT permissionless wrap/unwrap operations ---------------------------------------------------------\r\n\r\n    function wrap(Witnet.TransactionHash _witnetValueTransferTransactionHash)\r\n        override public payable\r\n        returns (uint256 _witOracleQueryId)\r\n    {\r\n        _witOracleQueryId = WrappedWITLib.witOracleQueryWitnetValueTransferProofOfInclusion(\r\n            witOracle,\r\n            witOracleCrossChainProofOfInclusionTemplate,\r\n            _witnetValueTransferTransactionHash\r\n        );\r\n        require(\r\n            _witOracleQueryId != WrappedWITLib._WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED, \r\n            \"already minted\"\r\n        );\r\n    }\r\n\r\n    function unwrap(uint64 value, string calldata witRecipientBech32)\r\n        override external\r\n        returns (uint256 evmUnwrapId)\r\n    {\r\n        require(\r\n            balanceOf(_msgSender()) >= value,\r\n            \"not enough balance\"\r\n        );\r\n        uint64 _evmLastReserveNanowits = __storage().evmLastReserveNanowits;\r\n         require(\r\n            value <= _evmLastReserveNanowits,\r\n            \"cannot unwrap that much\"\r\n        );\r\n        Witnet.Address _recipient = Witnet.fromBech32(\r\n            witRecipientBech32, \r\n            block.chainid == _CANONICAL_CHAIN_ID\r\n        );\r\n        require(\r\n            !_recipient.eq(__witCustodianWrapper),\r\n            \"invalid recipient\"\r\n        );\r\n\r\n        // immediate reduction of reserve supply:\r\n        __storage().evmLastReserveNanowits = _evmLastReserveNanowits - value;\r\n\r\n        // immediate burning of wrapped wit tokens:\r\n        _burn(_msgSender(), value);\r\n\r\n        // increment unwrap id:\r\n        evmUnwrapId = ++ __storage().evmUnwraps;\r\n\r\n        // emit events\r\n        emit Unwrapped(\r\n            _msgSender(), \r\n            witRecipientBech32, \r\n            value, \r\n            evmUnwrapId\r\n        );\r\n    }\r\n\r\n    \r\n    /// ===============================================================================================================\r\n    /// --- Implementation of IWitOracleQueriableConsumer -------------------------------------------------------------\r\n\r\n    /// @notice Determines if Wit/Oracle query results can be reported from the given address.\r\n    function reportableFrom(address _from) override public view returns (bool) {\r\n        return address(_from) == address(witOracle);\r\n    }\r\n\r\n    /// @notice Method called from the WitOracle as soon as the specified `queryId` gets reported from the Witnet blockchain.\r\n    /// @param queryId The unique identifier of the Witnet query being reported.\r\n    /// @param queryResult Abi-encoded Witnet.DataResult containing the CBOR-encoded query's result, and metadata.\r\n    function reportWitOracleQueryResult(\r\n            uint256 queryId,\r\n            bytes calldata queryResult\r\n        ) \r\n        override external \r\n    {\r\n        _require(reportableFrom(msg.sender), \"invalid oracle\");\r\n\r\n        try WrappedWITLib.processWitOracleQueryResult(\r\n            queryId, \r\n            queryResult\r\n        \r\n        ) returns (\r\n            Witnet.TransactionHash _witValueTransferTransactionHash,\r\n            string memory _witRecipientBech32,\r\n            string memory _witWrapperBech32,\r\n            address _evmRecipient,\r\n            uint64 _value\r\n        ) {\r\n            _require(\r\n                keccak256(bytes(_witRecipientBech32)) == __witCustodianWrapperBech32Hash,\r\n                \"invalid custodian\"\r\n            );\r\n\r\n            // mint newly wrapped tokens:\r\n            _mint(_evmRecipient, _value);\r\n\r\n            // emit events:\r\n            emit Wrapped(\r\n                _witWrapperBech32, \r\n                _evmRecipient, \r\n                _value, \r\n                _witValueTransferTransactionHash\r\n            );\r\n\r\n        } catch Error(string memory _reason) {\r\n            _revert(_reason);\r\n        \r\n        } catch (bytes memory) {\r\n            _revertUnhandled();\r\n        }\r\n    }\r\n\r\n\r\n    /// ===============================================================================================================\r\n    /// --- Implementation of IWitOracleConsumer ----------------------------------------------------------------------\r\n\r\n    /// @notice Process canonical Proof-of-Reserve reports from the Wit/Oracle blockchain, permissionlessly.    \r\n    function pushDataReport(\r\n            Witnet.DataPushReport calldata report, \r\n            bytes calldata proof\r\n        )\r\n        override external\r\n    {\r\n        _require(\r\n            report.queryParams.witCommitteeSize >= __storage().witOracleQuerySettings.minWitnesses,\r\n            \"insufficient witnesses\"\r\n        );\r\n        \r\n        _require(\r\n            report.queryRadHash.eq(__storage().witOracleProofOfReserveRadonHash),\r\n            \"invalid radon hash\"\r\n        );\r\n\r\n        // Ask the Wit/Oracle to validate and parse the posted query's result: \r\n        Witnet.DataResult memory _witOracleProofOfReserve = witOracle\r\n            .pushDataReport(\r\n                report,\r\n                proof\r\n            );\r\n\r\n        // Parse expected integer from the posted query's result:\r\n        try WrappedWITLib.parseWitOracleProofOfReserve(\r\n            _witOracleProofOfReserve\r\n        \r\n        ) returns (\r\n            uint64 _totalReserve\r\n        \r\n        ) {\r\n            emit ReserveUpdate(\r\n                _totalReserve, \r\n                _witOracleProofOfReserve.timestamp,\r\n                _witOracleProofOfReserve.drTxHash \r\n            );\r\n            __storage().evmLastReserveNanowits = _totalReserve;\r\n            __storage().evmLastReserveTimestamp = _witOracleProofOfReserve.timestamp;\r\n\r\n        } catch Error(string memory _reason) {\r\n            _revert(_reason);\r\n        \r\n        } catch (bytes memory) {\r\n            _revertUnhandled();\r\n        }\r\n    }\r\n\r\n\r\n    /// ===============================================================================================================\r\n    /// --- Internal methods ------------------------------------------------------------------------------------------\r\n\r\n    /// @dev Formally verify cross-chain Radon request for notarizing custodian's proofs of reserve.\r\n    function __formallyVerifyRadonAssets(\r\n            string[] memory _witRpcProviders,\r\n            string memory _witCustodianUnwrapperBech32\r\n        )\r\n        internal\r\n    {    \r\n        string[] memory _commonArgs = new string[](2);\r\n        _commonArgs[0] = witCustodianWrapper();\r\n        _commonArgs[1] = _witCustodianUnwrapperBech32;\r\n        __storage().witOracleProofOfReserveRadonHash = witOracleCrossChainProofOfReserveTemplate\r\n            .verifyRadonRequest(\r\n                _commonArgs,\r\n                _witRpcProviders\r\n            );\r\n    }\r\n\r\n    function _require(bool condition, string memory reason) internal pure {\r\n        if (!condition) {\r\n            _revert(reason);\r\n        }\r\n    }\r\n\r\n    function _revert(string memory reason) internal pure {\r\n        revert(\r\n            string(abi.encodePacked(\r\n                \"WrappedWIT: \",\r\n                reason\r\n            ))\r\n        );\r\n    }\r\n\r\n    function _revertUnhandled() internal pure {\r\n        _revert(\"unhandled exception\");\r\n    }\r\n\r\n    function __settleWitCustodianUnwrapper(string memory _witCustodianUnwrapperBech32)\r\n        internal\r\n    {\r\n        require(\r\n            keccak256(bytes(_witCustodianUnwrapperBech32)) != __witCustodianWrapperBech32Hash,\r\n            \"unacceptable unwrapper\"\r\n        );\r\n        emit NewCustodianUnwrapper(_witCustodianUnwrapperBech32);\r\n        __storage().witCustodianUnwrapper = Witnet.fromBech32(_witCustodianUnwrapperBech32, block.chainid == _CANONICAL_CHAIN_ID);\r\n        __formallyVerifyRadonAssets(\r\n            __storage().witOracleCrossChainRpcProviders,\r\n            _witCustodianUnwrapperBech32\r\n        );\r\n    }\r\n\r\n    function __storage() internal pure returns (WrappedWITLib.Storage storage) {\r\n        return WrappedWITLib.data();\r\n    }\r\n}\r\n"},"contracts/WrappedWITDeployer.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.20 <0.9.0;\r\n\r\nimport \"@openzeppelin/contracts/access/Ownable2Step.sol\";\r\n\r\nimport {Create3} from \"./Create3.sol\";\r\n\r\n/// @notice CREATE3 (EIP-3171) contract factory for deploying both canonical \r\n/// @notice and bridged versions of the Wrapped/WIT ERC-20 token.\r\ncontract WrappedWITDeployer is Ownable2Step {\r\n\r\n    constructor() Ownable(msg.sender) {}\r\n\r\n    /// @notice Deploy canonical version of the WrappedWIT token.\r\n    /// @param salt Salt that determines the address of the new contract.\r\n    /// @param creationCode Creation bytecode of the canonical implementation of the Wrapped/WIT token.\r\n    /// @param evmRadonRequestFactory Radon Request Factory artifact address (bound to the Wit/Oracle bridge contract).\r\n    /// @param evmAuthority EVM address that will be granted permissions for altering authoritative settings.\r\n    /// @param witCustodianBech32 Immutable WIT/ Custodian cold wallet address. \r\n    /// @param witUnwrapperBech32 WIT/ Custodian hot wallet address. \r\n    function deployCanonical(\r\n            uint256 salt, \r\n            bytes calldata creationCode,\r\n            address evmRadonRequestFactory,\r\n            address evmAuthority,\r\n            string memory witCustodianBech32,\r\n            string memory witUnwrapperBech32\r\n        )\r\n        virtual public\r\n        onlyOwner\r\n        returns (address _deployed)\r\n    {\r\n        _deployed = Create3.deploy(\r\n            bytes32(salt),\r\n            abi.encodePacked(\r\n                creationCode,\r\n                abi.encode(\r\n                    evmRadonRequestFactory,\r\n                    witCustodianBech32\r\n                )\r\n            )\r\n        );\r\n        (bool _success,) = _deployed.call(abi.encodeWithSignature(\r\n            \"initialize(address,string)\",\r\n            evmAuthority,\r\n            witUnwrapperBech32\r\n        ));\r\n        require(_success, \"initialization failed\");\r\n    }\r\n\r\n    /// @notice Deploy immutable bridged version of the WrappedWIT token.\r\n    /// @param salt Salt that determines the address of the new contract.\r\n    /// @param creationCode Creation bytecode of some bridged implementation of the Wrapped/WIT token. \r\n    function deployBridged(\r\n            uint256 salt,\r\n            bytes calldata creationCode\r\n        )\r\n        virtual public\r\n        onlyOwner\r\n        returns (address)\r\n    {\r\n        return Create3.deploy(\r\n            bytes32(salt),\r\n            creationCode\r\n        );\r\n    }\r\n\r\n    /// @notice Computes the resulting address of a contract deployed using address(this) and the given `salt`.\r\n    /// @param salt Salt that determines the address of the new contract.\r\n    /// @return addr of the deployed contract, reverts on error\r\n    function determineAddr(uint256 salt)\r\n        virtual public view\r\n        returns (address)\r\n    {\r\n        return Create3.determineAddr(bytes32(salt));\r\n    }\r\n}\r\n"},"contracts/WrappedWITLib.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.20 <0.9.0;\r\n\r\nimport \"./IWrappedWIT.sol\";\r\nimport {IWitOracleRadonRequestModal} from \"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol\";\r\n\r\n/// @title Witnet Request Board base data model library\r\n/// @author The Witnet Foundation.\r\nlibrary WrappedWITLib {  \r\n\r\n    using Witnet for Witnet.DataResult;\r\n    using Witnet for Witnet.Timestamp;\r\n    using WitnetCBOR for WitnetCBOR.CBOR;\r\n    \r\n    bytes32 internal constant _WRAPPED_WIT_STORAGE_SLOT =\r\n        /* keccak256(\"io.witnet.tokens.WIT\") */\r\n        0x6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58f9;\r\n\r\n    uint256 internal constant _PERCENT_FACTOR = 100;\r\n    uint24  internal constant _WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_GAS_LIMIT = 220_000; \r\n    uint256 internal constant _WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED = type(uint256).max;\r\n    uint16  internal constant _WIT_ORACLE_QUERIABLE_CONSUMER_MAX_RESULT_SIZE = 256;\r\n\r\n    struct Storage {\r\n        address evmCurator; uint32 _0; \r\n        Witnet.Timestamp evmLastReserveTimestamp;\r\n        uint64  evmLastReserveNanowits; \r\n        uint64  evmUnwraps; \r\n        uint64  evmWraps;\r\n        Witnet.Address witCustodianUnwrapper;\r\n        IWrappedWIT.WitOracleSettings witOracleQuerySettings;\r\n        string[] witOracleCrossChainRpcProviders;\r\n        Witnet.RadonHash witOracleProofOfReserveRadonHash;\r\n        \r\n        mapping (Witnet.TransactionHash => uint256) witOracleWrappingTransactionLastQueryId;\r\n        mapping (uint256 => Witnet.TransactionHash) witOracleWrappingQueryTransactionHash;\r\n    }\r\n\r\n    \r\n    // ================================================================================================================\r\n    // --- Public functions -------------------------------------------------------------------------------------------\r\n\r\n    function parseWitOracleProofOfReserve(Witnet.DataResult memory witOracleProofOfReserve)\r\n        external view\r\n        returns (uint64)\r\n    {\r\n        uint64[] memory _witBalance;\r\n        if (witOracleProofOfReserve.status == Witnet.ResultStatus.NoErrors) {\r\n            _witBalance = witOracleProofOfReserve.fetchUint64Array();\r\n        }\r\n        require(\r\n            witOracleProofOfReserve.status == Witnet.ResultStatus.NoErrors\r\n                && witOracleProofOfReserve.timestamp.gt(data().evmLastReserveTimestamp)\r\n                && _witBalance.length == 3,\r\n            \"invalid report\"\r\n        );\r\n        return (\r\n            _witBalance[0]\r\n                + _witBalance[1]\r\n                + _witBalance[2]\r\n        );\r\n    }\r\n\r\n    function processWitOracleQueryResult(\r\n            uint256 witOracleQueryId,\r\n            bytes calldata witOracleQueryResult\r\n        )\r\n        external\r\n        returns (\r\n            Witnet.TransactionHash _witValueTransferTransactionHash,\r\n            string memory _witRecipientBech32,\r\n            string memory _witWrapperBech32,\r\n            address _evmRecipient,\r\n            uint64 _value\r\n        )\r\n    {\r\n        _witValueTransferTransactionHash = data().witOracleWrappingQueryTransactionHash[witOracleQueryId];\r\n\r\n        // Check that the query id actually refers to a wit/wrap tx that's being validated:\r\n        require(\r\n            Witnet.TransactionHash.unwrap(_witValueTransferTransactionHash) != bytes32(0), \r\n            \"invalid query id\"\r\n        );\r\n\r\n        // Check that the Wit/wrap tx being reported has not yet been validated:\r\n        require(\r\n            data().witOracleWrappingTransactionLastQueryId[_witValueTransferTransactionHash]\r\n                != _WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED, \r\n            \"wit/wrap tx already minted\"\r\n        );\r\n\r\n        // Deserialize the query's result data:\r\n        Witnet.DataResult memory _witOracleQueryResult = abi.decode(witOracleQueryResult, (Witnet.DataResult));\r\n        \r\n        // Check that the query was successfully solved:\r\n        require(\r\n            _witOracleQueryResult.status == Witnet.ResultStatus.NoErrors,\r\n            \"query solved with errors\"\r\n        );\r\n        \r\n        // Check that the query result contains an heterogenous array of values:\r\n        require(\r\n            _witOracleQueryResult.dataType == Witnet.RadonDataTypes.Array, \r\n            \"invalid query result\"\r\n        );\r\n            \r\n        // Avoid double-spending by marking the Witnet value transfer hash as already parsed and processed:\r\n        data().witOracleWrappingTransactionLastQueryId[_witValueTransferTransactionHash] = _WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED;\r\n\r\n        // Try to parse Witnet Value Transfer metadata being reported:\r\n        WitnetCBOR.CBOR[] memory _metadata = _witOracleQueryResult.fetchCborArray();\r\n        /**\r\n         * [\r\n         *   0 -> finalized: uint8,\r\n         *   1 -> metadata: string,\r\n         *   2 -> recipient: string,\r\n         *   3 -> sender: string,\r\n         *   4 -> timestamp: uint64,\r\n         *   5 -> value: uint64,\r\n         * ]\r\n         **/\r\n\r\n        // Revert if the referred Witnet transaction is reported to not be finalized just yet:\r\n        require(_metadata[0].readUint() == 1, \"unfinalized query result\");\r\n        \r\n        // Parse data result:\r\n        _witRecipientBech32 = _metadata[2].readString();\r\n        _witWrapperBech32 = _metadata[3].readString();\r\n        _evmRecipient = Witnet.toAddress(\r\n            Witnet.parseHexString(\r\n                _metadata[1].readString()\r\n            )\r\n        );\r\n        Witnet.Timestamp _valueTimestamp = Witnet.Timestamp.wrap(_metadata[4].readUint());\r\n        _value = _metadata[5].readUint();\r\n        \r\n        // Increase count of validated wrap transactions:\r\n        data().evmWraps ++;\r\n        \r\n        // Also increase the burnable supply, only if the VTT's inclusion timestamp is fresher than last PoR's timestamp:\r\n        if (_valueTimestamp.gt(data().evmLastReserveTimestamp)) {\r\n            data().evmLastReserveNanowits += _value;\r\n        }\r\n    }\r\n\r\n    function witOracleQueryWitnetValueTransferProofOfInclusion(\r\n            WitOracle witOracle, \r\n            IWitOracleRadonRequestModal witOracleCrossChainProofOfInclusionTemplate,\r\n            Witnet.TransactionHash witValueTransferTransactionHash\r\n        ) \r\n        external \r\n        returns (uint256 _witQueryId)\r\n    {\r\n        _witQueryId = data().witOracleWrappingTransactionLastQueryId[witValueTransferTransactionHash];\r\n        if (\r\n            _witQueryId != _WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED\r\n        ) {\r\n            string[] memory _commonArgs = new string[](1);\r\n            _commonArgs[0] = Witnet.toHexString(Witnet.TransactionHash.unwrap(witValueTransferTransactionHash));\r\n            Witnet.RadonHash _radonHash = witOracleCrossChainProofOfInclusionTemplate\r\n                .verifyRadonRequest(\r\n                    _commonArgs,\r\n                    data().witOracleCrossChainRpcProviders\r\n                );\r\n            _witQueryId = IWitOracleQueriable(witOracle).queryDataWithCallback{\r\n                value: msg.value\r\n            }(\r\n                _radonHash,\r\n                Witnet.QuerySLA({\r\n                    witCommitteeSize: data().witOracleQuerySettings.minWitnesses,\r\n                    witUnitaryReward: data().witOracleQuerySettings.unitaryRewardNanowits,\r\n                    witResultMaxSize: _WIT_ORACLE_QUERIABLE_CONSUMER_MAX_RESULT_SIZE\r\n                }),\r\n                Witnet.QueryCallback({\r\n                    consumer: address(this),\r\n                    gasLimit: data().witOracleQuerySettings.responseCallbackGasLimit\r\n                })\r\n            );\r\n            data().witOracleWrappingTransactionLastQueryId[witValueTransferTransactionHash] = _witQueryId;\r\n            data().witOracleWrappingQueryTransactionHash[_witQueryId] = witValueTransferTransactionHash;\r\n        }\r\n    }\r\n\r\n\r\n    // ================================================================================================================\r\n    // --- Internal functions -----------------------------------------------------------------------------------------\r\n\r\n    function data() internal pure returns (Storage storage _ptr) {\r\n        assembly {\r\n            _ptr.slot := _WRAPPED_WIT_STORAGE_SLOT\r\n        }\r\n    }\r\n\r\n    function witOracleEstimateWrappingFee(WitOracle witOracle, uint256 evmGasPrice) internal view returns (uint256) {\r\n        return (\r\n            (_PERCENT_FACTOR + data().witOracleQuerySettings.baseFeeOverhead100)\r\n                * witOracle.estimateBaseFeeWithCallback(\r\n                    evmGasPrice, \r\n                    _WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_GAS_LIMIT\r\n                )\r\n        ) / _PERCENT_FACTOR;\r\n    }\r\n}"},"contracts/WrappedWITSuperchain.sol":{"content":"// SPDX-License-Identifier: MIT\r\n// Compatible with OpenZeppelin Contracts ^5.0.0\r\npragma solidity >=0.8.20 <0.9.0;\r\n\r\nimport {ERC20} from \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\r\nimport {ERC20Bridgeable} from \"@openzeppelin/community-contracts/contracts/token/ERC20/extensions/ERC20Bridgeable.sol\";\r\nimport {ERC20Permit} from \"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\";\r\n\r\ncontract WrappedWITSuperchain is ERC20, ERC20Bridgeable, ERC20Permit {\r\n    \r\n    address internal constant SUPERCHAIN_TOKEN_BRIDGE = 0x4200000000000000000000000000000000000028;\r\n    error Unauthorized();\r\n\r\n    constructor() ERC20(\"Wrapped WIT\", \"WIT\") ERC20Permit(\"Wrapped/WIT\") {}\r\n\r\n    /**\r\n     * @dev Checks if the caller is the predeployed SuperchainTokenBridge. Reverts otherwise.\r\n     *\r\n     * IMPORTANT: The predeployed SuperchainTokenBridge is only available on chains in the Superchain.\r\n     */\r\n    function _checkTokenBridge(address caller) internal pure override {\r\n        if (caller != SUPERCHAIN_TOKEN_BRIDGE) revert Unauthorized();\r\n    }\r\n\r\n    \r\n    /// ===============================================================================================================\r\n    /// --- ERC20 -----------------------------------------------------------------------------------------------------\r\n\r\n    function decimals() override public pure returns (uint8) {\r\n        return 9;\r\n    }\r\n}\r\n"},"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity ^0.8.0;\r\n\r\nabstract contract IWitAppliance {\r\n\r\n    /// @notice Returns the name of the actual contract implementing the logic of this Witnet appliance.\r\n    function class() virtual public view returns (string memory);\r\n\r\n    /// @notice Returns the ERC-165 id of the minimal functionality expected for this appliance.\r\n    function specs() virtual external view returns (bytes4);\r\n\r\n    function _require(bool _condition, string memory _message) virtual internal view {\r\n        if (!_condition) {\r\n            _revert(_message);\r\n        }\r\n    }\r\n\r\n    function _revert(string memory _message) virtual internal view {\r\n        revert(\r\n            string(abi.encodePacked(\r\n                class(),\r\n                \": \",\r\n                _message\r\n            ))\r\n        );\r\n    }\r\n\r\n}\r\n"},"witnet-solidity-bridge/contracts/interfaces/IWitOracle.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.0 <0.9.0;\r\n\r\nimport \"./IWitOracleRadonRegistry.sol\";\r\n\r\ninterface IWitOracle {\r\n\r\n    error InvalidDataReport();\r\n    \r\n    event WitOracleReport(\r\n            address indexed evmOrigin, \r\n            address indexed evmConsumer, \r\n            address evmReporter,\r\n            Witnet.TransactionHash witDrTxHash,\r\n            Witnet.RadonHash queryRadHash,\r\n            Witnet.QuerySLA  queryParams,\r\n            Witnet.Timestamp resultTimestamp,\r\n            bytes resultCborBytes\r\n        );\r\n\r\n    /// @notice Uniquely identifies the WitOracle instance and the chain on which it's deployed.\r\n    function channel() external view returns (bytes4);\r\n\r\n    /// @notice Verify the data report (as provided by Wit/Kermit API) is well-formed and authentic,\r\n    /// returning the parsed Witnet.DataResult if so, or reverting otherwise.\r\n    function parseDataReport(Witnet.DataPushReport calldata report, bytes calldata proof) external view returns (Witnet.DataResult memory);\r\n\r\n    /// @notice Same as `parseDataReport` but on certain implementations it may store roll-up information \r\n    /// that will contribute to reduce the cost of verifying and/or rolling-up future data reports.\r\n    /// Emits `DataReport` if report is authentic. \r\n    function pushDataReport(Witnet.DataPushReport calldata report, bytes calldata proof) external returns (Witnet.DataResult memory);\r\n\r\n    /// @notice Returns the WitOracleRadonRegistry in which Witnet-compliant Radon requests\r\n    /// @notice can be formally verified and forever registered as a away to let smart contracts\r\n    /// and users to track actual data sources and offchain computations applied on data updates\r\n    /// safely reported from the Wit/Oracle blockchain. \r\n    function registry() external view returns (IWitOracleRadonRegistry);\r\n}\r\n"},"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity ^0.8.0;\r\n\r\nimport \"./IWitAppliance.sol\";\r\n\r\nabstract contract IWitOracleAppliance\r\n    is\r\n        IWitAppliance\r\n{\r\n    /// @notice Returns the WitOracle address that this appliance is bound to.\r\n    function witOracle() virtual external view returns (address);\r\n}\r\n"},"witnet-solidity-bridge/contracts/interfaces/IWitOracleConsumer.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.0 <0.9.0;\r\n\r\nimport \"./IWitOracle.sol\";\r\n\r\ninterface IWitOracleConsumer {\r\n\r\n    /// @notice Accepts a data report from the Wit/oracle blockchain that ought to be\r\n    /// verified by the WitOracle contract pointed out by `witOracle()`. \r\n    /// @dev The referred `witOracle()` contract emits a `IWitOracle.DataReport` for\r\n    /// every `Witnet.DataPushReport` proven to be authentic. \r\n    function pushDataReport(Witnet.DataPushReport calldata report, bytes calldata proof) external;\r\n}\r\n"},"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriable.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.0 <0.9.0;\r\n\r\nimport \"../libs/Witnet.sol\";\r\n\r\ninterface IWitOracleQueriable {\r\n    \r\n    /// @notice Removes all query data from storage. Pays back reward on expired queries.\r\n    /// @dev Fails if the query is not in a final status, or not called from the actual requester.\r\n    /// @param queryId The unique query identifier.\r\n    function deleteQuery(uint256 queryId) external returns (Witnet.QueryEvmReward);\r\n\r\n    /// @notice Estimate the minimum reward required for posting a data request.\r\n    /// @param evmGasPrice Expected gas price to pay upon posting the data request.\r\n    function estimateBaseFee(uint256 evmGasPrice) external view returns (uint256);\r\n    \r\n    /// @notice Estimate the minimum reward required for posting a data request with a callback.\r\n    /// @param evmGasPrice Expected gas price to pay upon posting the data request.\r\n    /// @param callbackGas Maximum gas to be spent when reporting the data request result.\r\n    function estimateBaseFeeWithCallback(uint256 evmGasPrice, uint24 callbackGas) external view returns (uint256);\r\n\r\n    /// @notice Estimate the extra reward (i.e. over the base fee) to be paid when posting a new\r\n    /// @notice data query in order to avoid getting provable \"too low incentives\" results from\r\n    /// @notice the Wit/Oracle blockchain. \r\n    /// @dev The extra fee gets calculated in proportion to:\r\n    /// @param evmGasPrice Tentative EVM gas price at the moment the query result is ready.\r\n    /// @param evmWitPrice  Tentative nanoWit price in Wei at the moment the query is solved on the Wit/Oracle blockchain.\r\n    /// @param querySLA The query SLA data security parameters as required for the Wit/Oracle blockchain. \r\n    function estimateExtraFee(uint256 evmGasPrice, uint256 evmWitPrice, Witnet.QuerySLA calldata querySLA) external view returns (uint256);\r\n\r\n    /// @notice Returns next query id to be generated by the Witnet Request Board.\r\n    function getNextQueryId() external view returns (Witnet.QueryId);\r\n\r\n    /// @notice Gets the whole Query data contents, if any, no matter its current status.\r\n    function getQuery(uint256 queryId) external view returns (Witnet.Query memory);\r\n\r\n    /// @notice Gets the current EVM reward the reporter can claim, if not done yet.\r\n    function getQueryEvmReward(uint256) external view returns (Witnet.QueryEvmReward);\r\n\r\n    /// @notice Retrieves the RAD hash and SLA parameters of the given query.\r\n    function getQueryRequest(uint256) external view returns (Witnet.QueryRequest memory);\r\n\r\n    /// @notice Retrieves the whole `Witnet.QueryResponse` record referred to a previously posted Witnet Data Request.\r\n    function getQueryResponse(uint256) external view returns (Witnet.QueryResponse memory);\r\n\r\n    function getQueryResult(uint256) external view returns (Witnet.DataResult memory);\r\n    function getQueryResultStatus(uint256) external view returns (Witnet.ResultStatus);\r\n    function getQueryResultStatusDescription(uint256) external view returns (string memory);\r\n\r\n    /// @notice Gets current status of given query.\r\n    function getQueryStatus(uint256) external view returns (Witnet.QueryStatus);\r\n    function getQueryStatusString(uint256) external view returns (string memory);\r\n    \r\n    /// @notice Get current status of all given query ids.\r\n    function getQueryStatusBatch(uint256[] calldata) external view returns (Witnet.QueryStatus[] memory);\r\n\r\n    /// @notice Request real world data from the Wit/Oracle sidechain. \r\n    /// @notice The paid fee is escrowed as a reward for the reporter that eventually relays back \r\n    /// @notice a valid query result from the Wit/Oracle sidechain.\r\n    /// @notice Query results are CBOR-encoded, and can contain either some     data, or an error.\r\n    /// @dev Reasons to revert:\r\n    /// @dev - the data request's RAD hash was not previously verified into the WitOracleRadonRegistry contract;\r\n    /// @dev - invalid query SLA parameters were provided;\r\n    /// @dev - insufficient value is paid as reward.\r\n    /// @param radonHash The unique hash of the Radon Request to be solved by Wit/Oracle sidechain. \r\n    function queryData(\r\n            Witnet.RadonHash radonHash,\r\n            Witnet.QuerySLA calldata\r\n        )\r\n        external payable returns (uint256);\r\n\r\n    /// @notice Request real world data from the Wit/Oracle sidechain. \r\n    /// @notice The paid fee is escrowed as a reward for the reporter that eventually relays back \r\n    /// @notice a valid query result from the Wit/Oracle sidechain.\r\n    /// @notice The Witnet-provable result will be reported directly to the requesting contract. \r\n    /// @notice Query results are CBOR-encoded, and can contain either some data, or an error.\r\n    /// @dev Reasons to revert:\r\n    /// @dev - the data request's RAD hash was not previously verified into the Radon Registry;\r\n    /// @dev - invalid query SLA parameters were provided;\r\n    /// @dev - insufficient value is paid as reward.\r\n    /// @dev - passed `consumer` is not a contract implementing the IWitOracleQueriableConsumer interface;\r\n    /// @param radonHash The unique hash of the Radon Request to be solved by Wit/Oracle sidechain. \r\n    function queryDataWithCallback(\r\n            Witnet.RadonHash radonHash, \r\n            Witnet.QuerySLA calldata, \r\n            Witnet.QueryCallback calldata\r\n        )\r\n        external payable returns (uint256);\r\n\r\n    /// @notice Increments the reward of a previously posted request by adding the transaction value to it.\r\n    function upgradeQueryEvmReward(uint256) external payable;\r\n}"},"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableConsumer.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity ^0.8.0;\r\n\r\nimport \"./IWitOracleQueriable.sol\";\r\n\r\ninterface IWitOracleQueriableConsumer {\r\n\r\n    /// @notice Method to be called from the WitOracle contract as soon as the given Witnet `queryId`\r\n    /// @notice gets reported.\r\n    /// @dev It should revert if called from any other address different to the WitOracle being used\r\n    /// @dev by the WitOracleQueriableConsumer contract. \r\n    /// @param queryId The unique identifier of the Witnet query being reported.\r\n    /// @param queryResult Abi-encoded Witnet.DataResult containing the CBOR-encoded query's result, and metadata.\r\n    function reportWitOracleQueryResult(\r\n            uint256 queryId,\r\n            bytes calldata queryResult\r\n        ) external;\r\n\r\n    /// @notice Determines if Witnet queries can be reported from given address.\r\n    /// @dev In practice, must only be true on the WitOracle address that's being used by\r\n    /// @dev the WitOracleQueriableConsumer to post queries. \r\n    function reportableFrom(address) external view returns (bool);\r\n}\r\n"},"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableEvents.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.0 <0.9.0;\r\n\r\nimport \"../libs/Witnet.sol\";\r\n\r\ninterface IWitOracleQueriableEvents {\r\n\r\n    /// Emitted every time a new query containing some verified data request is posted to the WitOracle.\r\n    event WitOracleQuery(\r\n        address indexed evmRequester,\r\n        uint256 evmGasPrice,\r\n        uint256 evmReward,\r\n        Witnet.QueryId queryId, \r\n        Witnet.RadonHash radonHash,\r\n        Witnet.QuerySLA radonParams\r\n    );\r\n\r\n    /// Emitted when the reward of some not-yet reported query gets upgraded.\r\n    event WitOracleQueryUpgrade(\r\n        Witnet.QueryId queryId,\r\n        address evmSender,\r\n        uint256 evmGasPrice,\r\n        uint256 evmReward\r\n    );\r\n\r\n\r\n    /// Emitted when a query with no callback gets reported into the WRB.\r\n    event WitOracleQueryReport(\r\n        Witnet.QueryId queryId, \r\n        uint256 evmGasPrice\r\n    );\r\n\r\n    event WitOracleQueryReportDispute(\r\n        Witnet.QueryId queryId,\r\n        address evmDisputer\r\n    );\r\n\r\n    /// Emitted when a query with a callback gets successfully reported into the WRB.\r\n    event WitOracleQueryReportDelivery(\r\n        Witnet.QueryId queryId, \r\n        address evmConsumer,\r\n        uint256 evmGasPrice, \r\n        uint256 evmCallbackGas\r\n    );\r\n\r\n    /// Emitted when a query with a callback cannot get reported into the WRB.\r\n    event WitOracleResportDeliveryFailed(\r\n        Witnet.QueryId queryId, \r\n        address evmConsumer,\r\n        uint256 evmGasPrice, \r\n        uint256 evmCallbackActualGas, \r\n        string  evmCallbackRevertReason,\r\n        bytes   resultCborBytes\r\n    );\r\n}\r\n"},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistry.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.0 <0.9.0;\r\n\r\nimport \"../libs/Witnet.sol\";\r\n\r\ninterface IWitOracleRadonRegistry {\r\n\r\n    /// @notice Returns the Witnet-compliant DRO bytecode for some data request object \r\n    /// made out of the given Radon Request and Radon SLA security parameters. \r\n    function bytecodeOf(\r\n            Witnet.RadonHash radonRequestHash, \r\n            Witnet.QuerySLA calldata queryParams\r\n        ) external view returns (bytes memory);\r\n    \r\n    /// @notice Returns the Witnet-compliant DRO bytecode for some data request object \r\n    /// made out of the given RAD bytecode and Radon SLA security parameters. \r\n    function bytecodeOf(\r\n            bytes calldata radonRequestBytecode, \r\n            Witnet.QuerySLA calldata queryParams\r\n        ) external view returns (bytes memory);\r\n\r\n    /// @notice Returns the hash of the given Witnet-compliant bytecode. Returned value\r\n    /// can be used to trace back in the Witnet blockchain all past resolutions \r\n    /// of the given data request payload.\r\n    function hashOf(bytes calldata) external view returns (Witnet.RadonHash);\r\n\r\n    /// @notice Tells whether the specified Radon Reducer has been formally verified into the registry.\r\n    function isVerifiedRadonReducer(bytes32) external view returns (bool);\r\n    \r\n    /// @notice Tells whether the given Radon Hash has been formally verified into the registry.\r\n    function isVerifiedRadonRequest(Witnet.RadonHash) external view returns (bool);\r\n    \r\n    /// @notice Tells whether the specified Radon Retrieval has been formally verified into the registry.\r\n    function isVerifiedRadonRetrieval(bytes32) external view returns (bool);\r\n    \r\n    /// @notice Returns the whole Witnet.RadonReducer metadata struct for the given hash.\r\n    /// @dev Reverts if unknown.\r\n    function lookupRadonReducer(bytes32 hash) external view returns (Witnet.RadonReducer memory);\r\n\r\n    // /// @notice Returns the whole Witnet.RadonRequest metadata struct for the given RAD hash value. \r\n    // /// @dev Reverts if unknown.\r\n    // function lookupRadonRequest(Witnet.RadonHash radonRequestHash) external view returns (Witnet.RadonRequest memory);\r\n\r\n    /// @notice Returns the Witnet-compliant RAD bytecode for some Radon Request \r\n    /// identified by its unique RAD hash. \r\n    function lookupRadonRequestBytecode(Witnet.RadonHash radonRequestHash) external view returns (bytes memory);\r\n\r\n    /// @notice Returns the Tally reducer that is applied to aggregated values revealed by the witnessing nodes on the \r\n    /// Witnet blockchain. \r\n    /// @dev Reverts if unknown.\r\n    function lookupRadonRequestCrowdAttestationTally(Witnet.RadonHash radonRequestHash) external view returns (Witnet.RadonReducer memory);\r\n    \r\n    /// @notice Returns the deterministic data type returned by successful resolutions of the given Radon Request. \r\n    /// @dev Reverts if unknown.\r\n    function lookupRadonRequestResultDataType(Witnet.RadonHash radonRequestHash) external view returns (Witnet.RadonDataTypes);\r\n\r\n    /// @notice Returns introspective metadata for the index-th data source of some pre-verified Radon Request. \r\n    /// @dev Reverts if out of range.\r\n    // function lookupRadonRequestRetrievalByIndex(Witnet.RadonHash radonRequestHash, uint256 index) external view returns (Witnet.RadonRetrieval memory);\r\n\r\n    /// @notice Returns an array (one or more items) containing the introspective metadata of the given Radon Request's \r\n    /// data sources (i.e. Radon Retrievals). \r\n    /// @dev Reverts if unknown.\r\n    function lookupRadonRequestRetrievals(Witnet.RadonHash radonRequestHash) external view returns (Witnet.RadonRetrieval[] memory);\r\n\r\n    /// @notice Returns the Aggregate reducer that is applied to the data extracted from the data sources \r\n    /// (i.e. Radon Retrievals) whenever the given Radon Request gets solved on the Witnet blockchain. \r\n    /// @dev Reverts if unknown.\r\n    function lookupRadonRequestRetrievalsAggregator(Witnet.RadonHash radonRequestHash) external view returns (Witnet.RadonReducer memory);\r\n\r\n    function lookupRadonRequestRetrievalsCount(Witnet.RadonHash radonRequestHash) external view returns (uint8);\r\n\r\n    /// @notice Returns introspective metadata of some previously verified Radon Retrieval (i.e. public data source). \r\n    ///@dev Reverts if unknown.\r\n    function lookupRadonRetrieval(bytes32 hash) external view returns (Witnet.RadonRetrieval memory);\r\n    \r\n    /// @notice Returns the number of indexed parameters required to be fulfilled when \r\n    /// eventually using the given Radon Retrieval. \r\n    /// @dev Reverts if unknown.\r\n    function lookupRadonRetrievalArgsCount(bytes32 hash) external view returns (uint8);\r\n\r\n    /// @notice Returns the type of the data that would be retrieved by the given Radon Retrieval \r\n    /// (i.e. public data source). \r\n    /// @dev Reverts if unknown.\r\n    function lookupRadonRetrievalResultDataType(bytes32 hash) external view returns (Witnet.RadonDataTypes);\r\n\r\n    /// @notice Verifies and registers the given sequence of dataset filters and reducing function to be \r\n    /// potentially used as either Aggregate or Tally reducers within the resolution workflow\r\n    /// of Radon Requests in the Wit/Oracle blockchain. Returns a unique hash that identifies the \r\n    /// given Radon Reducer in the registry. \r\n    /// @dev Reverts if unsupported reducing or filtering methods are specified.\r\n    function verifyRadonReducer(Witnet.RadonReducer calldata reducer) external returns (bytes32 hash);\r\n    \r\n    /// @notice Verifies and registers the specified Radon Request out of the given data sources (i.e. retrievals)\r\n    /// and the aggregate and tally Radon Reducers. Returns a unique RAD hash that identifies the \r\n    /// verified Radon Request. \r\n    /// @dev Reverts if:\r\n    /// - unverified retrievals are passed;\r\n    /// - retrievals return different data types;\r\n    /// - any of passed retrievals is parameterized;\r\n    /// - unsupported reducers are passed.\r\n    function verifyRadonRequest(\r\n            bytes32[] calldata radonRetrieveHashes,\r\n            Witnet.RadonReducer calldata dataSourcesAggregator,\r\n            Witnet.RadonReducer calldata crowsAttestationTally\r\n        ) external returns (Witnet.RadonHash radonRequestHash);\r\n\r\n    /// @notice Verifies and registers the specified Radon Request out of the given data sources (i.e. retrievals), \r\n    /// data sources parameters (if required), and some pre-verified aggregate and tally Radon Reducers. \r\n    /// Returns a unique RAD hash that identifies the verified Radon Request.\r\n    /// @dev Reverts if:\r\n    /// - unverified retrievals are passed;\r\n    /// - retrievals return different data types;\r\n    /// - ranks of passed args don't match with those required by each given retrieval;\r\n    /// - unverified reducers are passed.\r\n    function verifyRadonRequest(\r\n            bytes32[] calldata retrieveHashes,\r\n            bytes32 aggregateReducerHash,\r\n            bytes32 tallyReducerHash\r\n        ) external returns (Witnet.RadonHash radonRequestHash);\r\n\r\n    /// @notice Verifies and registers the specified Radon Request out of the given data sources (i.e. retrievals), \r\n    /// data sources parameters (if required), and the aggregate and tally Radon Reducers. Returns a unique \r\n    /// RAD hash that identifies the verified Radon Request.\r\n    /// @dev Reverts if:\r\n    /// - unverified retrievals are passed;\r\n    /// - retrievals return different data types;\r\n    /// - ranks of passed args don't match with those required by each given retrieval;\r\n    /// - unsupported reducers are passed.\r\n    function verifyRadonRequest(\r\n            bytes32[] calldata radonRetrieveHashes,\r\n            string[][] calldata radonRetrieveArgs,\r\n            Witnet.RadonReducer calldata dataSourcesAggregator,\r\n            Witnet.RadonReducer calldata crowdAttestationTally\r\n        ) external returns (Witnet.RadonHash radonRequestHash);\r\n\r\n    /// @notice Verifies and registers the specified Radon Request out of a single modal retrieval where first \r\n    /// parameter corresponds to data provider's URL, an array of data providers (i.e. URLs), and an array\r\n    /// of parmeter values common to all data providers. Some pre-verified aggregate and tally Radon Reducers\r\n    /// must also be provided. Returns a unique RAD hash that identifies the verified Radon Request.\r\n    /// @dev Reverts if:\r\n    /// - unverified retrieval is passed;\r\n    /// - ranks of passed args don't match with those expected by given retrieval, after replacing the data provider URL.\r\n    /// - unverified reducers are passed.\r\n    function verifyRadonRequest(\r\n            bytes32[] calldata radonRetrieveHashes,\r\n            string[][] calldata radonRetrieveArgs,\r\n            bytes32 dataSourcesAggregatorHash,\r\n            bytes32 crowdAttestationTallyHash\r\n        ) external returns (Witnet.RadonHash radonRequestHash);\r\n\r\n    function verifyRadonRequest(\r\n            bytes32 commonRetrieveHash,\r\n            string[] calldata commonRetrieveArgs,\r\n            string[] calldata dataProviders,\r\n            bytes32 dataSourcesAggregatorHash,\r\n            bytes32 crowdAttestationTallyHash\r\n        ) external returns (Witnet.RadonHash radonRequestHash);\r\n\r\n    /// @notice Verifies and registers the specified Radon Retrieval (i.e. public data source) into this registry contract. \r\n    /// Returns a unique retrieval hash that identifies the verified Radon Retrieval.\r\n    /// All parameters but the retrieval method are parameterizable by using embedded wildcard \\x\\ substrings (with x='0'..'9').\r\n    /// @dev Reverts if:\r\n    /// - unsupported retrieval method is given;\r\n    /// - no URL is provided Http/* requests;\r\n    /// - non-empty strings given on RNG reqs.\r\n    function verifyRadonRetrieval(\r\n            Witnet.RadonRetrievalMethods requestMethod,\r\n            string calldata requestURL,\r\n            string calldata requestBody,\r\n            string[2][] calldata requestHeaders,\r\n            bytes calldata requestRadonScript\r\n        ) external returns (bytes32 hash);\r\n\r\n//     /// Verifies a new Radon Retrieval by specifying the value to the highest indexed parameter of an already existing one.\r\n//     /// Returns the unique hash that identifies the resulting Radon Retrieval.\r\n//     /// Reverts if an unverified retrieval hash is passed.\r\n//     function verifyRadonRetrieval(\r\n//             bytes32 retrieveHash,\r\n//             string calldata lastArgValue\r\n//         ) external returns (bytes32 hash);\r\n// }\r\n}"},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistryEvents.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.0 <0.9.0;\r\n\r\nimport \"../libs/Witnet.sol\";\r\n\r\ninterface IWitOracleRadonRegistryEvents {\r\n\r\n    /// Emitted every time a new Radon Reducer gets successfully verified and\r\n    /// stored into the WitOracleRadonRegistry.\r\n    event NewRadonReducer(bytes32 hash);\r\n\r\n    /// Emitted every time a new Radon Retrieval gets successfully verified and\r\n    /// stored into the WitOracleRadonRegistry.\r\n    event NewRadonRetrieval(bytes32 hash);\r\n\r\n    /// Emitted every time a new Radon Request gets successfully verified and\r\n    /// stored into the WitOracleRadonRegistry.\r\n    event NewRadonRequest(Witnet.RadonHash radonHash);\r\n}\r\n"},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestFactory.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.0 <0.9.0;\r\n\r\nimport \"./IWitOracleRadonRequestModal.sol\";\r\nimport \"./IWitOracleRadonRequestTemplate.sol\";\r\n\r\ninterface IWitOracleRadonRequestFactory {\r\n\r\n    event NewRadonRequestModal(address witOracleRadonRequestModal);\r\n    event NewRadonRequestTemplate(address witOracleRadonRequestTemplate);\r\n\r\n    struct DataSource {\r\n        string url;\r\n        DataSourceRequest request;\r\n    }\r\n\r\n    struct DataSourceRequest {\r\n        Witnet.RadonRetrievalMethods method;\r\n        string body;\r\n        string[2][] headers;\r\n        bytes script;\r\n    }\r\n\r\n    function buildRadonRequestModal(\r\n            DataSourceRequest calldata commonDataRequest,\r\n            Witnet.RadonReducer calldata crowdAttestationTally\r\n        )\r\n        external returns (IWitOracleRadonRequestModal);\r\n\r\n    function buildRadonRequestTemplate(\r\n            bytes32[] calldata dataRetrieveHashes,\r\n            Witnet.RadonReducer calldata dataSourcesAggregator,\r\n            Witnet.RadonReducer calldata crowdAttestationTally\r\n        ) external returns (IWitOracleRadonRequestTemplate);\r\n        \r\n    function buildRadonRequestTemplate(\r\n            DataSource[] calldata dataSources,\r\n            Witnet.RadonReducer calldata dataSourcesAggregator,\r\n            Witnet.RadonReducer calldata crowdAttestationTally\r\n        )\r\n        external returns (IWitOracleRadonRequestTemplate);\r\n}\r\n"},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestModal.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.0 <0.9.0;\r\n\r\nimport \"../libs/Witnet.sol\";\r\n\r\ninterface IWitOracleRadonRequestModal {\r\n\r\n    function getCrowdAttestationTally() external view returns (Witnet.RadonReducer memory);\r\n    function getDataResultType() external view returns (Witnet.RadonDataTypes); \r\n    function getDataSourcesAggregator() external view returns (Witnet.RadonReducer memory);\r\n    function getDataSourcesArgsCount() external view returns (uint8);\r\n    function getRadonModalRetrieval() external view returns (Witnet.RadonRetrieval memory);\r\n\r\n    function verifyRadonRequest(string[] calldata commonRetrievalArgs, string[] calldata dataProviders) external returns (Witnet.RadonHash);\r\n    function witOracle() external view returns (address);\r\n}\r\n"},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestTemplate.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.0 <0.9.0;\r\n\r\nimport \"../libs/Witnet.sol\";\r\n\r\ninterface IWitOracleRadonRequestTemplate {\r\n\r\n    function getCrowdAttestationTally() external view returns (Witnet.RadonReducer memory);\r\n    function getDataResultType() external view returns (Witnet.RadonDataTypes); \r\n    function getDataSources() external view returns (Witnet.RadonRetrieval[] memory);\r\n    function getDataSourcesAggregator() external view returns (Witnet.RadonReducer memory);\r\n    function getDataSourcesArgsCount() external view returns (uint8[] memory);\r\n    \r\n    /// Verifies into the bounded WitOracle's registry the actual bytecode \r\n    /// and RAD hash of the Witnet-compliant Radon Request that gets provably \r\n    /// made out of the data sources, aggregate and tally Radon Reducers that \r\n    /// compose this WitOracleRequestTemplate. While no WitOracleRequest instance is \r\n    /// actually constructed, the returned value will be accepted as a valid\r\n    /// RAD hash on the witOracle() contract from now on. \r\n    /// Reverts if:\r\n    /// - the ranks of passed array don't match either the number of this \r\n    ///   template's data sources, or the number of required parameters by \r\n    ///   each one of those.\r\n    /// @dev This method requires less gas than buildWitOracleRequest(string[][]), and \r\n    /// @dev it's usually preferred when data requests built out of this template\r\n    /// @dev are intended to be used just once in lifetime.    \r\n    function verifyRadonRequest(string[][] calldata args) external returns (Witnet.RadonHash);\r\n\r\n    function witOracle() external view returns (address);\r\n}\r\n"},"witnet-solidity-bridge/contracts/libs/Bech32.sol":{"content":"// SPDX-License-Identifier: MIT\r\n// Stratonet Contracts (last updated v1.0.0) (utils/Bech32.sol)\r\n\r\npragma solidity ^0.8.0;\r\n\r\n/**\r\n * @dev Collection of functions related to the Bech32 address generation\r\n */\r\nlibrary Bech32 {\r\n    bytes constant ALPHABET = \"qpzry9x8gf2tvdw0s3jn54khce6mua7l\";\r\n    bytes constant ALPHABET_REV = hex\"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0fff0a1115141a1e0705ffffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\";\r\n    bytes constant ALPHABET_REV_LOWER_ONLY = hex\"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0fff0a1115141a1e0705ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\";\r\n\r\n    // 0f <= 0: 48      | 30\r\n    // 0a <= 2: 50      | 32\r\n    // 11 <= 3: 51      | 33\r\n    // 15 <= 4: 52      | 34\r\n    // 14 <= 5: 53      | 35\r\n    // 1a <= 6: 54      | 36\r\n    // 1e <= 7: 55      | 37\r\n    // 07 <= 8: 56      | 38\r\n    // 05 <= 9: 57      | 39\r\n    \r\n    // 1d <= a: 97, 65  | 61, 41\r\n    // 18 <= c: 99, 67  | 63, 43\r\n    // 0d <= d: 100, 68 | 64, 44\r\n    // 19 <= e: 101, 69 | 65, 45\r\n    // 09 <= f: 102, 70 | 66, 46\r\n    // 08 <= g: 103, 71 | 67, 47\r\n    // 17 <= h: 104, 72 | 68, 48\r\n    // 12 <= j: 106, 74 | 6A, 4A\r\n    // 16 <= k: 107, 75 | 6B, 4B\r\n    // 1f <= l: 108, 76 | 6C, 4C\r\n    // 1b <= m: 109, 77 | 6D, 4D\r\n    // 13 <= n: 110, 78 | 6E, 4E\r\n    \r\n    // 01 <= p: 112, 80 | 70, 50\r\n    // 00 <= q: 113, 81 | 71, 51\r\n    // 03 <= r: 114, 82 | 72, 52\r\n    // 10 <= s: 115, 83 | 73, 53\r\n    // 0b <= t: 116, 84 | 74, 54\r\n    // 1c <= u: 117, 85 | 75, 55\r\n    // 0c <= v: 118, 86 | 76, 56\r\n    // 0e <= w: 119, 87 | 77, 57\r\n    // 06 <= x: 120, 88 | 78, 58\r\n    // 04 <= y: 121, 89 | 79, 59\r\n    // 02 <= z: 122, 90 | 7A, 5A\r\n    \r\n    uint32 constant ENC_BECH32 = 1;\r\n    uint32 constant ENC_BECH32M = 0x2bc830a3;\r\n\r\n\r\n    function toBech32(\r\n        address addr,\r\n        string memory prefix\r\n    ) internal pure returns (string memory) {\r\n        return toBech32(abi.encodePacked(addr), prefix);\r\n    }\r\n\r\n    function toBech32(\r\n        bytes memory data,\r\n        string memory prefix\r\n    ) internal pure returns (string memory) {\r\n        bytes memory hrp = abi.encodePacked(prefix);\r\n        bytes memory input = convertBits(data, 8, 5, true);\r\n        return encode(hrp, input, ENC_BECH32);\r\n    }\r\n\r\n    function toBech32(\r\n        address addr,\r\n        string memory prefix,\r\n        uint8 version\r\n    ) internal pure returns (string memory) {\r\n        return toBech32(abi.encodePacked(addr), prefix, version);\r\n    }\r\n\r\n    function toBech32(\r\n        bytes memory data,\r\n        string memory prefix,\r\n        uint8 version\r\n    ) internal pure returns (string memory) {\r\n        bytes memory hrp = abi.encodePacked(prefix);\r\n        bytes memory input = convertBits(data, 8, 5, true);\r\n        uint32 enc = ENC_BECH32;\r\n        if (version > 0) {\r\n            enc = ENC_BECH32M;\r\n        }\r\n        bytes memory inputWithV = abi.encodePacked(bytes1(version), input);\r\n        return encode(hrp, inputWithV, enc);\r\n    }\r\n\r\n    function fromBech32(\r\n        string memory bechAddr\r\n    ) internal pure returns (address) {\r\n        (, uint8[] memory data) = decode(\r\n            abi.encodePacked(bechAddr),\r\n            ENC_BECH32\r\n        );\r\n        bytes memory input = convertBits(data, 5, 8, false);\r\n        return getAddressFromBytes(input);\r\n    }\r\n\r\n    function fromBech32(\r\n        string memory bechAddr,\r\n        string memory prefix\r\n    ) internal pure returns (address) {\r\n        (bytes memory dHrp, uint8[] memory data) = decode(\r\n            abi.encodePacked(bechAddr),\r\n            ENC_BECH32\r\n        );\r\n        _requireHrpMatch(abi.encodePacked(prefix), dHrp);\r\n        bytes memory input = convertBits(data, 5, 8, false);\r\n        return getAddressFromBytes(input);\r\n    }\r\n\r\n    function fromBech32WithVersion(\r\n        string memory bechAddr,\r\n        string memory prefix,\r\n        uint32 enc\r\n    ) internal pure returns (uint8, bytes memory) {\r\n        (bytes memory dHrp, uint8[] memory data) = decode(\r\n            abi.encodePacked(bechAddr),\r\n            enc\r\n        );\r\n        _requireHrpMatch(abi.encodePacked(prefix), dHrp);\r\n        require(!(data.length < 1 || data[0] > 16), \"Bech32: wrong version\");\r\n        uint8[] memory dataNoV = new uint8[](data.length - 1);\r\n        for (uint8 i = 1; i < data.length; ++i) {\r\n            dataNoV[i - 1] = data[i];\r\n        }\r\n        bytes memory input = convertBits(dataNoV, 5, 8, false);\r\n        require(\r\n            input.length >= 2 && input.length <= 40,\r\n            \"Bech32: wrong bits length\"\r\n        );\r\n        require(\r\n            !(data[0] == 0 && input.length != 20 && input.length != 32),\r\n            \"Bech32: wrong bits length for version\"\r\n        );\r\n        return (uint8(data[0]), input);\r\n    }\r\n\r\n    function _requireHrpMatch(\r\n        bytes memory hrp1,\r\n        bytes memory hrp2\r\n    ) internal pure {\r\n        require(keccak256(hrp1) == keccak256(hrp2), \"Bech32: hrp mismatch\");\r\n    }\r\n\r\n    function getAddressFromBytes(\r\n        bytes memory data\r\n    ) internal pure returns (address) {\r\n        require(data.length == 20, \"Bech32: invalid data length\");\r\n\r\n        address addr;\r\n        assembly {\r\n            addr := mload(add(data, 20))\r\n        }\r\n        return addr;\r\n    }\r\n\r\n    function encode(\r\n        bytes memory hrp,\r\n        bytes memory input,\r\n        uint32 enc\r\n    ) internal pure returns (string memory) {\r\n        unchecked {\r\n            uint8[] memory checksum = createChecksum(hrp, input, enc);\r\n            bytes memory result = new bytes(hrp.length + input.length + checksum.length + 1);\r\n            for (uint i; i < hrp.length; ++ i) {\r\n                result[i] = hrp[i];\r\n            }\r\n            result[hrp.length] = bytes1(\"1\");\r\n            uint offset = hrp.length + 1;\r\n            for (uint i; i < input.length; ++ i) {\r\n                uint8 _data = uint8(input[i]);\r\n                if (_data < ALPHABET.length) {\r\n                    result[i + offset] = ALPHABET[_data];\r\n                }\r\n            }\r\n            offset += input.length;\r\n            for (uint i; i < checksum.length; ++ i) {\r\n                uint8 _data = uint8(checksum[i]);\r\n                if (_data < ALPHABET.length) {\r\n                    result[i + offset] = ALPHABET[_data];\r\n                }\r\n            }\r\n            return string(result);\r\n        }\r\n    }\r\n\r\n    function decode(bytes memory bechStr, uint32 enc) \r\n        internal pure \r\n        returns (bytes memory hrp, uint8[] memory data)\r\n    {\r\n        unchecked {\r\n            uint pos;\r\n            require(\r\n                bechStr.length <= 90, \r\n                \"Bech32: invalid string length\"\r\n            );\r\n            for (uint p = 0; p < bechStr.length; ++ p) {\r\n                uint8 charAt = uint8(bechStr[p]);\r\n                require(\r\n                    charAt >= 33 \r\n                        && charAt <= 126, \r\n                    \"Bech32: wrong char\"\r\n                );\r\n                if (charAt == uint8(bytes1(\"1\"))) {\r\n                    require(\r\n                        pos == 0 \r\n                            && p >= 1 \r\n                            && p + 7 <= bechStr.length, \r\n                        \"Bech32: wrong pos of 1\"\r\n                    );\r\n                    pos = p;\r\n                }\r\n            }\r\n            hrp = new bytes(pos);\r\n            for (uint i; i < pos; ++ i) {\r\n                hrp[i] = bechStr[i]; \r\n            }\r\n            data = new uint8[](bechStr.length - pos - 1);\r\n            for (uint i; i < data.length; ++ i) {\r\n                bytes1 charAt = ALPHABET_REV_LOWER_ONLY[uint8(bechStr[i + pos + 1])];\r\n                require(charAt != 0xff, \"Bech32: byte not in alphabet\");\r\n                data[i] = uint8(charAt);\r\n            }\r\n            require(\r\n                verifyChecksum(hrp, data, enc), \r\n                \"Bech32: wrong checksum\"\r\n            );\r\n            uint dataLength = data.length - 6;\r\n            assembly {\r\n                mstore(data, dataLength)\r\n            }\r\n        }\r\n    }\r\n\r\n    function hrpExpand(\r\n        bytes memory hrp\r\n    ) internal pure returns (uint8[] memory ret) {\r\n        unchecked {\r\n            ret = new uint8[](hrp.length + hrp.length + 1);\r\n            for (uint p; p < hrp.length; ++ p) {\r\n                ret[p] = uint8(hrp[p]) >> 5;\r\n                ret[p + hrp.length + 1] = uint8(hrp[p]) & 31;\r\n            }\r\n        }\r\n    }\r\n\r\n    function polymod(uint32[] memory values) internal pure returns (uint32) {\r\n        uint32 chk = 1;\r\n        uint32[5] memory GEN = [\r\n            0x3b6a57b2,\r\n            0x26508e6d,\r\n            0x1ea119fa,\r\n            0x3d4233dd,\r\n            0x2a1462b3\r\n        ];\r\n\r\n        unchecked {\r\n            for (uint32 i = 0; i < values.length; ++i) {\r\n                uint32 top = chk >> 25;\r\n                chk = (uint32(chk & 0x1ffffff) << 5) ^ uint32(values[i]);\r\n                for (uint32 j = 0; j < 5; ++j) {\r\n                    if (((top >> j) & 1) == 1) {\r\n                        chk ^= GEN[j];\r\n                    }\r\n                }\r\n            }\r\n        }\r\n\r\n        return chk;\r\n    }\r\n\r\n    function createChecksum(\r\n        bytes memory hrp,\r\n        bytes memory data,\r\n        uint32 enc\r\n    ) internal pure returns (uint8[] memory res) {\r\n        unchecked {\r\n            uint8[] memory values = hrpExpand(hrp);\r\n            uint32[] memory comb = new uint32[](values.length + data.length + 6);\r\n\r\n            for (uint i; i < values.length + data.length; ++ i) {\r\n                if (i < values.length) {\r\n                    comb[i] = uint32(values[i]);\r\n                } else {\r\n                    comb[i] = uint32(uint8(data[i - values.length]));\r\n                }\r\n            }\r\n            \r\n            res = new uint8[](6);\r\n            uint32 mod = polymod(comb) ^ enc;\r\n            for (uint p = 0; p < 6; ++ p) {\r\n                res[p] = uint8((mod >> (5 * (5 - p))) & 31);\r\n            }\r\n        }\r\n    }\r\n\r\n    function verifyChecksum(\r\n        bytes memory hrp,\r\n        uint8[] memory data,\r\n        uint32 enc\r\n    ) internal pure returns (bool) {\r\n        unchecked {\r\n            uint8[] memory ehrp = hrpExpand(hrp);\r\n            uint32[] memory cData = new uint32[](ehrp.length + data.length);\r\n            for (uint i; i < ehrp.length; ++ i) {\r\n                cData[i] = uint32(ehrp[i]);\r\n            }\r\n            for (uint i; i < data.length; ++ i) {\r\n                cData[i + ehrp.length] = uint32(data[i]);\r\n            }\r\n            return polymod(cData) == enc;\r\n        }\r\n    }\r\n\r\n    function convertBits(\r\n        bytes memory data,\r\n        uint frombits,\r\n        uint tobits,\r\n        bool pad\r\n    ) internal pure returns (bytes memory) {\r\n        uint8[] memory dataBits = new uint8[](data.length);\r\n\r\n        for (uint32 p = 0; p < dataBits.length; ++p) {\r\n            dataBits[p] = uint8(data[p]);\r\n        }\r\n\r\n        return _convertBits(dataBits, frombits, tobits, pad);\r\n    }\r\n\r\n    function convertBits(\r\n        uint8[] memory data,\r\n        uint frombits,\r\n        uint tobits,\r\n        bool pad\r\n    ) internal pure returns (bytes memory) {\r\n        return _convertBits(data, frombits, tobits, pad);\r\n    }\r\n\r\n    function _convertBits(\r\n        uint8[] memory dataBits,\r\n        uint frombits,\r\n        uint tobits,\r\n        bool pad\r\n    ) internal pure returns (bytes memory ret) {\r\n        uint acc = 0;\r\n        uint bits = 0;\r\n\r\n        uint maxv = (1 << tobits) - 1;\r\n\r\n        unchecked {\r\n            for (uint p; p < dataBits.length; ++p) {\r\n                uint8 value = dataBits[p];\r\n                require(\r\n                    value >= 0 && (value >> frombits) == 0,\r\n                    \"Bech32: value must be non-negative and fit in frombits\"\r\n                );\r\n\r\n                acc = (acc << frombits) | value;\r\n                bits += frombits;\r\n\r\n                while (bits >= tobits) {\r\n                    bits -= tobits;\r\n                    ret = abi.encodePacked(\r\n                        ret,\r\n                        bytes1(uint8((acc >> bits) & maxv))\r\n                    );\r\n                }\r\n            }\r\n        }\r\n\r\n        if (pad) {\r\n            if (bits > 0) {\r\n                ret = abi.encodePacked(\r\n                    ret,\r\n                    bytes1(uint8((acc << (tobits - bits)) & maxv))\r\n                );\r\n            }\r\n        } else {\r\n            require(\r\n                bits < frombits || ((acc << (tobits - bits)) & maxv) == 0,\r\n                \"Bech32: invalid padding or value size\"\r\n            );\r\n        }\r\n    }\r\n}"},"witnet-solidity-bridge/contracts/libs/Secp256k1.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >= 0.8.17;\r\n\r\n/**\r\n * @title Secp256k1 public key recovery Library\r\n * @dev Library providing arithmetic operations over signed `secpk256k1` signed message due to recover the signer public key EC point in `Solidity`.\r\n * @author cyphered.eth\r\n */\r\nlibrary Secp256k1 {\r\n    // Elliptic curve Constants\r\n    uint256 private constant U255_MAX_PLUS_1 =\r\n        57896044618658097711785492504343953926634992332820282019728792003956564819968;\r\n\r\n    // Curve Constants\r\n    uint256 private constant A = 0;\r\n    uint256 private constant B = 7;\r\n    uint256 private constant GX = 0x79BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B16F81798;\r\n    uint256 private constant GY = 0x483ADA7726A3C4655DA4FBFC0E1108A8FD17B448A68554199C47D08FFB10D4B8;\r\n    uint256 private constant P = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F;\r\n    uint256 private constant N = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141;\r\n\r\n    /// @dev recovers signer public key point value.\r\n    /// @param digest hashed message\r\n    /// @param v recovery\r\n    /// @param r first 32 bytes of signature\r\n    /// @param v last 32 bytes of signature\r\n    /// @return (x, y) EC point\r\n    function recover(\r\n        uint256 digest,\r\n        uint8 v,\r\n        uint256 r,\r\n        uint256 s\r\n    ) internal pure returns (uint256, uint256) {\r\n        uint256 x = addmod(r, P * (v >> 1), P);\r\n        if (x > P || s > N || r > N || s == 0 || r == 0 || v > 1) {\r\n            return (0, 0);\r\n        }\r\n        uint256 rInv = invMod(r, N);\r\n\r\n        uint256 y2 = addmod(mulmod(x, mulmod(x, x, P), P), addmod(mulmod(x, A, P), B, P), P);\r\n        y2 = expMod(y2, (P + 1) / 4);\r\n        uint256 y = ((y2 + v + 2) & 1 == 0) ? y2 : P - y2;\r\n\r\n        (uint256 qx, uint256 qy, uint256 qz) = jacMul(mulmod(rInv, N - digest, N), GX, GY, 1);\r\n        (uint256 qx2, uint256 qy2, uint256 qz2) = jacMul(mulmod(rInv, s, N), x, y, 1);\r\n        (uint256 qx3, uint256 qy3) = ecAdd(qx, qy, qz, qx2, qy2, qz2);\r\n\r\n        return (qx3, qy3);\r\n    }\r\n\r\n    /// @dev Modular exponentiation, b^e % P.\r\n    /// Source: https://github.com/witnet/elliptic-curve-solidity/blob/master/contracts/EllipticCurve.sol\r\n    /// Source: https://github.com/androlo/standard-contracts/blob/master/contracts/src/crypto/ECCMath.sol\r\n    /// @param _base base\r\n    /// @param _exp exponent\r\n    /// @return r such that r = b**e (mod P)\r\n    function expMod(uint256 _base, uint256 _exp) internal pure returns (uint256) {\r\n        if (_base == 0) return 0;\r\n        if (_exp == 0) return 1;\r\n\r\n        uint256 r = 1;\r\n        uint256 bit = U255_MAX_PLUS_1;\r\n        assembly {\r\n            for {\r\n\r\n            } gt(bit, 0) {\r\n\r\n            } {\r\n                r := mulmod(mulmod(r, r, P), exp(_base, iszero(iszero(and(_exp, bit)))), P)\r\n                r := mulmod(mulmod(r, r, P), exp(_base, iszero(iszero(and(_exp, div(bit, 2))))), P)\r\n                r := mulmod(mulmod(r, r, P), exp(_base, iszero(iszero(and(_exp, div(bit, 4))))), P)\r\n                r := mulmod(mulmod(r, r, P), exp(_base, iszero(iszero(and(_exp, div(bit, 8))))), P)\r\n                bit := div(bit, 16)\r\n            }\r\n        }\r\n\r\n        return r;\r\n    }\r\n\r\n    /// @dev Adds two points (x1, y1, z1) and (x2 y2, z2).\r\n    /// Source: https://github.com/witnet/elliptic-curve-solidity/blob/master/contracts/EllipticCurve.sol\r\n    /// @param _x1 coordinate x of P1\r\n    /// @param _y1 coordinate y of P1\r\n    /// @param _z1 coordinate z of P1\r\n    /// @param _x2 coordinate x of square\r\n    /// @param _y2 coordinate y of square\r\n    /// @param _z2 coordinate z of square\r\n    /// @return (qx, qy, qz) P1+square in Jacobian\r\n    function jacAdd(\r\n        uint256 _x1,\r\n        uint256 _y1,\r\n        uint256 _z1,\r\n        uint256 _x2,\r\n        uint256 _y2,\r\n        uint256 _z2\r\n    )\r\n        internal\r\n        pure\r\n        returns (\r\n            uint256,\r\n            uint256,\r\n            uint256\r\n        )\r\n    {\r\n        if (_x1 == 0 && _y1 == 0) return (_x2, _y2, _z2);\r\n        if (_x2 == 0 && _y2 == 0) return (_x1, _y1, _z1);\r\n\r\n        // We follow the equations described in https://pdfs.semanticscholar.org/5c64/29952e08025a9649c2b0ba32518e9a7fb5c2.pdf Section 5\r\n        uint256[4] memory zs; // z1^2, z1^3, z2^2, z2^3\r\n        zs[0] = mulmod(_z1, _z1, P);\r\n        zs[1] = mulmod(_z1, zs[0], P);\r\n        zs[2] = mulmod(_z2, _z2, P);\r\n        zs[3] = mulmod(_z2, zs[2], P);\r\n\r\n        // u1, s1, u2, s2\r\n        zs = [mulmod(_x1, zs[2], P), mulmod(_y1, zs[3], P), mulmod(_x2, zs[0], P), mulmod(_y2, zs[1], P)];\r\n\r\n        // In case of zs[0] == zs[2] && zs[1] == zs[3], double function should be used\r\n        require(zs[0] != zs[2] || zs[1] != zs[3], 'Use jacDouble function instead');\r\n\r\n        uint256[4] memory hr;\r\n        //h\r\n        hr[0] = addmod(zs[2], P - zs[0], P);\r\n        //r\r\n        hr[1] = addmod(zs[3], P - zs[1], P);\r\n        //h^2\r\n        hr[2] = mulmod(hr[0], hr[0], P);\r\n        // h^3\r\n        hr[3] = mulmod(hr[2], hr[0], P);\r\n        // qx = -h^3  -2u1h^2+r^2\r\n        uint256 qx = addmod(mulmod(hr[1], hr[1], P), P - hr[3], P);\r\n        qx = addmod(qx, P - mulmod(2, mulmod(zs[0], hr[2], P), P), P);\r\n        // qy = -s1*z1*h^3+r(u1*h^2 -x^3)\r\n        uint256 qy = mulmod(hr[1], addmod(mulmod(zs[0], hr[2], P), P - qx, P), P);\r\n        qy = addmod(qy, P - mulmod(zs[1], hr[3], P), P);\r\n        // qz = h*z1*z2\r\n        uint256 qz = mulmod(hr[0], mulmod(_z1, _z2, P), P);\r\n        return (qx, qy, qz);\r\n    }\r\n\r\n    /// @dev Multiply point (x, y, z) times d.\r\n    /// Source: https://github.com/witnet/elliptic-curve-solidity/blob/master/contracts/EllipticCurve.sol\r\n    /// @param _d scalar to multiply\r\n    /// @param _x coordinate x of P1\r\n    /// @param _y coordinate y of P1\r\n    /// @param _z coordinate z of P1\r\n    /// @return (qx, qy, qz) d*P1 in Jacobian\r\n    function jacMul(\r\n        uint256 _d,\r\n        uint256 _x,\r\n        uint256 _y,\r\n        uint256 _z\r\n    )\r\n        internal\r\n        pure\r\n        returns (\r\n            uint256,\r\n            uint256,\r\n            uint256\r\n        )\r\n    {\r\n        // Early return in case that `_d == 0`\r\n        if (_d == 0) {\r\n            return (_x, _y, _z);\r\n        }\r\n\r\n        uint256 remaining = _d;\r\n        uint256 qx = 0;\r\n        uint256 qy = 0;\r\n        uint256 qz = 1;\r\n\r\n        // Double and add algorithm\r\n        while (remaining != 0) {\r\n            if ((remaining & 1) != 0) {\r\n                (qx, qy, qz) = jacAdd(qx, qy, qz, _x, _y, _z);\r\n            }\r\n            remaining = remaining / 2;\r\n            (_x, _y, _z) = jacDouble(_x, _y, _z);\r\n        }\r\n        return (qx, qy, qz);\r\n    }\r\n\r\n    /// @dev Doubles a points (x, y, z).\r\n    /// Source: https://github.com/witnet/elliptic-curve-solidity/blob/master/contracts/EllipticCurve.sol\r\n    /// @param _x coordinate x of P1\r\n    /// @param _y coordinate y of P1\r\n    /// @param _z coordinate z of P1\r\n    /// @return (qx, qy, qz) 2P in Jacobian\r\n    function jacDouble(\r\n        uint256 _x,\r\n        uint256 _y,\r\n        uint256 _z\r\n    )\r\n        internal\r\n        pure\r\n        returns (\r\n            uint256,\r\n            uint256,\r\n            uint256\r\n        )\r\n    {\r\n        if (_z == 0) return (_x, _y, _z);\r\n\r\n        // We follow the equations described in https://pdfs.semanticscholar.org/5c64/29952e08025a9649c2b0ba32518e9a7fb5c2.pdf Section 5\r\n        // Note: there is a bug in the paper regarding the m parameter, M=3*(x1^2)+a*(z1^4)\r\n        // x, y, z at this point represent the squares of _x, _y, _z\r\n        uint256 x = mulmod(_x, _x, P); //x1^2\r\n        uint256 y = mulmod(_y, _y, P); //y1^2\r\n        uint256 z = mulmod(_z, _z, P); //z1^2\r\n\r\n        // s\r\n        uint256 s = mulmod(4, mulmod(_x, y, P), P);\r\n        // m\r\n        uint256 m = addmod(mulmod(3, x, P), mulmod(A, mulmod(z, z, P), P), P);\r\n\r\n        // x, y, z at this point will be reassigned and rather represent qx, qy, qz from the paper\r\n        // This allows to reduce the gas cost and stack footprint of the algorithm\r\n        // qx\r\n        x = addmod(mulmod(m, m, P), P - addmod(s, s, P), P);\r\n        // qy = -8*y1^4 + M(S-T)\r\n        y = addmod(mulmod(m, addmod(s, P - x, P), P), P - mulmod(8, mulmod(y, y, P), P), P);\r\n        // qz = 2*y1*z1\r\n        z = mulmod(2, mulmod(_y, _z, P), P);\r\n\r\n        return (x, y, z);\r\n    }\r\n\r\n    /// @dev Add two points (x1, y1) and (x2, y2) in affine coordinates.\r\n    /// Source: https://github.com/witnet/elliptic-curve-solidity/blob/master/contracts/EllipticCurve.sol\r\n    /// @param _x1 coordinate x of P1\r\n    /// @param _y1 coordinate y of P1\r\n    /// @param _x2 coordinate x of P2\r\n    /// @param _y2 coordinate y of P2\r\n    /// @return (qx, qy) = P1+P2 in affine coordinates\r\n    function ecAdd(\r\n        uint256 _x1,\r\n        uint256 _y1,\r\n        uint256 _z1,\r\n        uint256 _x2,\r\n        uint256 _y2,\r\n        uint256 _z2\r\n    ) internal pure returns (uint256, uint256) {\r\n        uint256 x = 0;\r\n        uint256 y = 0;\r\n        uint256 z = 0;\r\n\r\n        // Double if x1==x2 else add\r\n        if (_x1 == _x2) {\r\n            // y1 = -y2 mod p\r\n            if (addmod(_y1, _y2, P) == 0) {\r\n                return (0, 0);\r\n            } else {\r\n                // P1 = P2\r\n                (x, y, z) = jacDouble(_x1, _y1, _z1);\r\n            }\r\n        } else {\r\n            (x, y, z) = jacAdd(_x1, _y1, _z1, _x2, _y2, _z2);\r\n        }\r\n        // Get back to affine\r\n        return toAffine(x, y, z);\r\n    }\r\n\r\n    /// @dev Converts a point (x, y, z) expressed in Jacobian coordinates to affine coordinates (x', y', 1).\r\n    /// Source: https://github.com/witnet/elliptic-curve-solidity/blob/master/contracts/EllipticCurve.sol\r\n    /// @param _x coordinate x\r\n    /// @param _y coordinate y\r\n    /// @param _z coordinate z\r\n    /// @return (x', y') affine coordinates\r\n    function toAffine(\r\n        uint256 _x,\r\n        uint256 _y,\r\n        uint256 _z\r\n    ) internal pure returns (uint256, uint256) {\r\n        uint256 zInv = invMod(_z, P);\r\n        uint256 zInv2 = mulmod(zInv, zInv, P);\r\n        uint256 x2 = mulmod(_x, zInv2, P);\r\n        uint256 y2 = mulmod(_y, mulmod(zInv, zInv2, P), P);\r\n\r\n        return (x2, y2);\r\n    }\r\n\r\n    /// @dev Modular euclidean inverse of a number (mod p).\r\n    /// Source: https://github.com/witnet/elliptic-curve-solidity/blob/master/contracts/EllipticCurve.sol\r\n    /// @param _x The number\r\n    /// @param _pp The modulus\r\n    /// @return q such that x*q = 1 (mod _pp)\r\n    function invMod(uint256 _x, uint256 _pp) internal pure returns (uint256) {\r\n        require(_x != 0 && _x != _pp && _pp != 0, 'Invalid number');\r\n        uint256 q = 0;\r\n        uint256 newT = 1;\r\n        uint256 r = _pp;\r\n        uint256 t;\r\n        while (_x != 0) {\r\n            t = r / _x;\r\n            (q, newT) = (newT, addmod(q, (_pp - mulmod(t, newT, _pp)), _pp));\r\n            (r, _x) = (_x, r - t * _x);\r\n        }\r\n\r\n        return q;\r\n    }\r\n}"},"witnet-solidity-bridge/contracts/libs/Witnet.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.0 <0.9.0;\r\n\r\nimport \"./Bech32.sol\";\r\nimport \"./Secp256k1.sol\";\r\nimport \"./WitnetCBOR.sol\";\r\n\r\nlibrary Witnet {\r\n\r\n    using Bech32 for Witnet.Address;\r\n    using WitnetBuffer for WitnetBuffer.Buffer;\r\n    using WitnetCBOR for WitnetCBOR.CBOR;\r\n    using WitnetCBOR for WitnetCBOR.CBOR[];\r\n\r\n    type Address is bytes20;\r\n\r\n    type BlockNumber is uint64;\r\n    \r\n    type QueryEvmReward is uint72;\r\n    type QueryHash is bytes15;\r\n    type QueryId is uint64;\r\n\r\n    type RadonHash is bytes32;\r\n    type ServiceProvider is bytes20;\r\n    \r\n    type Timestamp is uint64;\r\n    type TransactionHash is bytes32;\r\n\r\n    uint32  constant internal WIT_1_GENESIS_TIMESTAMP = 0; // TBD    \r\n    uint32  constant internal WIT_1_SECS_PER_EPOCH = 45;\r\n\r\n    uint32  constant internal WIT_2_GENESIS_BEACON_INDEX = 0;       // TBD\r\n    uint32  constant internal WIT_2_GENESIS_BEACON_PREV_INDEX = 0;  // TBD\r\n    bytes24 constant internal WIT_2_GENESIS_BEACON_PREV_ROOT = 0;   // TBD\r\n    bytes16 constant internal WIT_2_GENESIS_BEACON_DDR_TALLIES_MERKLE_ROOT = 0;  // TBD\r\n    bytes16 constant internal WIT_2_GENESIS_BEACON_DRO_TALLIES_MERKLE_ROOT = 0;  // TBD\r\n    uint256 constant internal WIT_2_GENESIS_BEACON_NEXT_COMMITTEE_AGG_PUBKEY_0 = 0; // TBD\r\n    uint256 constant internal WIT_2_GENESIS_BEACON_NEXT_COMMITTEE_AGG_PUBKEY_1 = 0; // TBD\r\n    uint256 constant internal WIT_2_GENESIS_BEACON_NEXT_COMMITTEE_AGG_PUBKEY_2 = 0; // TBD\r\n    uint256 constant internal WIT_2_GENESIS_BEACON_NEXT_COMMITTEE_AGG_PUBKEY_3 = 0; // TBD\r\n    uint32  constant internal WIT_2_GENESIS_EPOCH = 0;      // TBD\r\n    uint32  constant internal WIT_2_GENESIS_TIMESTAMP = 0;  // TBD\r\n    uint32  constant internal WIT_2_SECS_PER_EPOCH = 20;    // TBD\r\n    uint32  constant internal WIT_2_FAST_FORWARD_COMMITTEE_SIZE = 64; // TBD\r\n\r\n\r\n    function channel(address wrb) internal view returns (bytes4) {\r\n        return bytes4(keccak256(abi.encode(address(wrb), block.chainid)));\r\n    }\r\n\r\n    struct Beacon {\r\n        uint32  index;\r\n        uint32  prevIndex;\r\n        bytes24 prevRoot;\r\n        bytes16 ddrTalliesMerkleRoot;\r\n        bytes16 droTalliesMerkleRoot;\r\n        uint256[4] nextCommitteeAggPubkey;\r\n    }\r\n\r\n    struct DataPullReport {\r\n        QueryId queryId;\r\n        QueryHash queryHash;           // KECCAK256(channel | blockhash(block.number - 1) | ...)\r\n        bytes witDrRelayerSignature;   // ECDSA.signature(queryHash)\r\n        BlockNumber witDrResultEpoch;\r\n        bytes witDrResultCborBytes;\r\n        TransactionHash witDrTxHash;\r\n    }\r\n\r\n    struct DataPushReport {\r\n        TransactionHash witDrTxHash;\r\n        RadonHash queryRadHash;\r\n        QuerySLA  queryParams;\r\n        Timestamp resultTimestamp;\r\n        bytes resultCborBytes;\r\n    }\r\n\r\n    /// Data struct containing the Witnet-provided result to a Data Request.\r\n    struct DataResult {\r\n        ResultStatus    status;\r\n        RadonDataTypes  dataType;\r\n        TransactionHash drTxHash;\r\n        Timestamp       timestamp;\r\n        WitnetCBOR.CBOR value;\r\n    }\r\n\r\n    struct FastForward {\r\n        Beacon beacon;\r\n        uint256[2] committeeAggSignature;\r\n        uint256[4][] committeeMissingPubkeys;\r\n    }\r\n\r\n    /// Struct containing both request and response data related to every query posted to the Witnet Request Board\r\n    struct Query {\r\n        QueryRequest request;\r\n        QueryResponse response;\r\n        QuerySLA slaParams;      // Minimum Service-Level parameters to be committed by the Witnet blockchain.\r\n        QueryHash hash;          // Unique query hash determined by payload, WRB instance, chain id and EVM's previous block hash.\r\n        QueryEvmReward reward;   // EVM amount in wei eventually to be paid to the legit reporter.\r\n        BlockNumber checkpoint;\r\n    }\r\n\r\n    /// Possible status of a Witnet query.\r\n    enum QueryStatus {\r\n        Unknown,\r\n        Posted,\r\n        Reported,\r\n        Finalized,\r\n        Delayed,\r\n        Expired,\r\n        Disputed\r\n    }\r\n\r\n    struct QueryCallback {\r\n        address consumer;               // consumer contract address to which the query result will be reported\r\n        uint24  gasLimit;               // expected max amount of gas required by the callback method in the consumer contract\r\n    }\r\n\r\n    /// Data kept in EVM-storage for every Request posted to the Witnet Request Board.\r\n    struct QueryRequest {\r\n        address   requester;              // EVM address from which the request was posted.\r\n        uint24    callbackGas; uint72 _0; // Max callback gas limit upon response, if a callback is required.\r\n        bytes     radonBytecode;          // Optional: Witnet Data Request bytecode to be solved by the Witnet blockchain.\r\n        RadonHash radonHash;           // Optional: Previously verified hash of the Witnet Data Request to be solved.\r\n    }\r\n\r\n    /// QueryResponse metadata and result as resolved by the Witnet blockchain.\r\n    struct QueryResponse {\r\n        address reporter; uint32 _0;    // EVM address from which the Data Request result was reported.\r\n        Timestamp resultTimestamp;      // Unix timestamp (seconds) at which the data request was resolved in the Witnet blockchain.\r\n        TransactionHash resultDrTxHash; // Unique hash of the commit/reveal act in the Witnet blockchain that resolved the data request.\r\n        bytes resultCborBytes;          // CBOR-encode result to the request, as resolved in the Witnet blockchain.\r\n        address disputer;\r\n    }\r\n\r\n    /// Structure containing all possible SLA security parameters for Wit/2.1 Data Requests\r\n    struct QuerySLA {\r\n        uint16  witResultMaxSize; // max size permitted to whatever query result may come from the Wit/Oracle blockchain.\r\n        uint16  witCommitteeSize; // max number of eligibile witnesses in the Wit/Oracle blockchain for solving some query.\r\n        uint64  witUnitaryReward; // min fees in nanowits to be paid for getting the query solved and reported from the Wit/Oracle.\r\n    }\r\n\r\n    enum ResultStatus {\r\n        /// 0x00: No errors.\r\n        NoErrors,\r\n        \r\n        ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\r\n        /// Source-specific format error sub-codes ============================================================================\r\n        \r\n        /// 0x01: At least one of the source scripts is not a valid CBOR-encoded value.\r\n        SourceScriptNotCBOR, \r\n        \r\n        /// 0x02: The CBOR value decoded from a source script is not an Array.\r\n        SourceScriptNotArray,\r\n        \r\n        /// 0x03: The Array value decoded form a source script is not a valid Data Request.\r\n        SourceScriptNotRADON,\r\n        \r\n        /// 0x04: The request body of at least one data source was not properly formated.\r\n        SourceRequestBody,\r\n        \r\n        /// 0x05: The request headers of at least one data source was not properly formated.\r\n        SourceRequestHeaders,\r\n        \r\n        /// 0x06: The request URL of at least one data source was not properly formated.\r\n        SourceRequestURL,\r\n        \r\n        /// Unallocated\r\n        SourceFormat0x07, SourceFormat0x08, SourceFormat0x09, SourceFormat0x0A, SourceFormat0x0B, SourceFormat0x0C,\r\n        SourceFormat0x0D, SourceFormat0x0E, SourceFormat0x0F, \r\n        \r\n        \r\n        ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\r\n        /// Complexity error sub-codes ========================================================================================\r\n        \r\n        /// 0x10: The request contains too many sources.\r\n        RequestTooManySources,\r\n        \r\n        /// 0x11: The script contains too many calls.\r\n        ScriptTooManyCalls,\r\n        \r\n        /// Unallocated\r\n        Complexity0x12, Complexity0x13, Complexity0x14, Complexity0x15, Complexity0x16, Complexity0x17, Complexity0x18,\r\n        Complexity0x19, Complexity0x1A, Complexity0x1B, Complexity0x1C, Complexity0x1D, Complexity0x1E, Complexity0x1F,\r\n\r\n        \r\n        ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\r\n        /// Lack of support error sub-codes ===================================================================================\r\n        \r\n        /// 0x20: Some Radon operator code was found that is not supported (1+ args).\r\n        UnsupportedOperator,\r\n        \r\n        /// 0x21: Some Radon filter opcode is not currently supported (1+ args).\r\n        UnsupportedFilter,\r\n        \r\n        /// 0x22: Some Radon request type is not currently supported (1+ args).\r\n        UnsupportedHashFunction,\r\n        \r\n        /// 0x23: Some Radon reducer opcode is not currently supported (1+ args)\r\n        UnsupportedReducer,\r\n        \r\n        /// 0x24: Some Radon hash function is not currently supported (1+ args).\r\n        UnsupportedRequestType, \r\n        \r\n        /// 0x25: Some Radon encoding function is not currently supported (1+ args).\r\n        UnsupportedEncodingFunction,\r\n        \r\n        /// Unallocated\r\n        Operator0x26, Operator0x27, \r\n        \r\n        /// 0x28: Wrong number (or type) of arguments were passed to some Radon operator.\r\n        WrongArguments,\r\n        \r\n        /// Unallocated\r\n        Operator0x29, Operator0x2A, Operator0x2B, Operator0x2C, Operator0x2D, Operator0x2E, Operator0x2F,\r\n        \r\n        \r\n        ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\r\n        /// Retrieve-specific circumstantial error sub-codes ================================================================================\r\n        /// 0x30: A majority of data sources returned an HTTP status code other than 200 (1+ args):\r\n        HttpErrors,\r\n        \r\n        /// 0x31: A majority of data sources timed out:\r\n        RetrievalsTimeout,\r\n        \r\n        /// Unallocated\r\n        RetrieveCircumstance0x32, RetrieveCircumstance0x33, RetrieveCircumstance0x34, RetrieveCircumstance0x35,\r\n        RetrieveCircumstance0x36, RetrieveCircumstance0x37, RetrieveCircumstance0x38, RetrieveCircumstance0x39,\r\n        RetrieveCircumstance0x3A, RetrieveCircumstance0x3B, RetrieveCircumstance0x3C, RetrieveCircumstance0x3D,\r\n        RetrieveCircumstance0x3E, RetrieveCircumstance0x3F,\r\n        \r\n        \r\n        ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\r\n        /// Scripting-specific runtime error sub-code =========================================================================\r\n        /// 0x40: Math operator caused an underflow.\r\n        MathUnderflow,\r\n        \r\n        /// 0x41: Math operator caused an overflow.\r\n        MathOverflow,\r\n        \r\n        /// 0x42: Math operator tried to divide by zero.\r\n        MathDivisionByZero,            \r\n        \r\n        /// 0x43: Wrong input to subscript call.\r\n        WrongSubscriptInput,\r\n        \r\n        /// 0x44: Value cannot be extracted from input binary buffer.\r\n        BufferIsNotValue,\r\n        \r\n        /// 0x45: Value cannot be decoded from expected type.\r\n        Decode,\r\n        \r\n        /// 0x46: Unexpected empty array.\r\n        EmptyArray,\r\n        \r\n        /// 0x47: Value cannot be encoded to expected type.\r\n        Encode,\r\n        \r\n        /// 0x48: Failed to filter input values (1+ args).\r\n        Filter,\r\n        \r\n        /// 0x49: Failed to hash input value.\r\n        Hash,\r\n        \r\n        /// 0x4A: Mismatching array ranks.\r\n        MismatchingArrays,\r\n        \r\n        /// 0x4B: Failed to process non-homogenous array.\r\n        NonHomegeneousArray,\r\n        \r\n        /// 0x4C: Failed to parse syntax of some input value, or argument.\r\n        Parse,\r\n        \r\n        /// 0x4D: Parsing logic limits were exceeded.\r\n        ParseOverflow,\r\n        \r\n        /// Unallocated\r\n        ScriptError0x4E, ScriptError0x4F,\r\n    \r\n        \r\n        ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\r\n        /// Actual first-order result error codes =============================================================================\r\n        \r\n        /// 0x50: Not enough reveals were received in due time:\r\n        InsufficientReveals,\r\n        \r\n        /// 0x51: No actual reveal majority was reached on tally stage:\r\n        InsufficientMajority,\r\n        \r\n        /// 0x52: Not enough commits were received before tally stage:\r\n        InsufficientCommits,\r\n        \r\n        /// 0x53: Generic error during tally execution (to be deprecated after WIP #0028)\r\n        TallyExecution,\r\n        \r\n        /// 0x54: A majority of data sources could either be temporarily unresponsive or failing to report the requested data:\r\n        CircumstantialFailure,\r\n        \r\n        /// 0x55: At least one data source is inconsistent when queried through multiple transports at once:\r\n        InconsistentSources,\r\n        \r\n        /// 0x56: Any one of the (multiple) Retrieve, Aggregate or Tally scripts were badly formated:\r\n        MalformedDataRequest,\r\n        \r\n        /// 0x57: Values returned from a majority of data sources don't match the expected schema:\r\n        MalformedQueryResponses,\r\n        \r\n        /// Unallocated:    \r\n        OtherError0x58, OtherError0x59, OtherError0x5A, OtherError0x5B, OtherError0x5C, OtherError0x5D, OtherError0x5E, \r\n        \r\n        /// 0x5F: Size of serialized tally result exceeds allowance:\r\n        OversizedTallyResult,\r\n\r\n        \r\n        ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\r\n        /// Inter-stage runtime error sub-codes ===============================================================================\r\n        \r\n        /// 0x60: Data aggregation reveals could not get decoded on the tally stage:\r\n        MalformedReveals,\r\n        \r\n        /// 0x61: The result to data aggregation could not get encoded:\r\n        EncodeReveals,  \r\n        \r\n        /// 0x62: A mode tie ocurred when calculating some mode value on the aggregation or the tally stage:\r\n        ModeTie, \r\n        \r\n        /// Unallocated:\r\n        OtherError0x63, OtherError0x64, OtherError0x65, OtherError0x66, OtherError0x67, OtherError0x68, OtherError0x69, \r\n        OtherError0x6A, OtherError0x6B, OtherError0x6C, OtherError0x6D, OtherError0x6E, OtherError0x6F,\r\n        \r\n        \r\n        ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\r\n        /// Runtime access error sub-codes ====================================================================================\r\n        \r\n        /// 0x70: Tried to access a value from an array using an index that is out of bounds (1+ args):\r\n        ArrayIndexOutOfBounds,\r\n        \r\n        /// 0x71: Tried to access a value from a map using a key that does not exist (1+ args):\r\n        MapKeyNotFound,\r\n        \r\n        /// 0X72: Tried to extract value from a map using a JSON Path that returns no values (+1 args):\r\n        JsonPathNotFound,\r\n        \r\n        /// Unallocated:\r\n        OtherError0x73, OtherError0x74, OtherError0x75, OtherError0x76, OtherError0x77, OtherError0x78, \r\n        OtherError0x79, OtherError0x7A, OtherError0x7B, OtherError0x7C, OtherError0x7D, OtherError0x7E, OtherError0x7F, \r\n        OtherError0x80, OtherError0x81, OtherError0x82, OtherError0x83, OtherError0x84, OtherError0x85, OtherError0x86, \r\n        OtherError0x87, OtherError0x88, OtherError0x89, OtherError0x8A, OtherError0x8B, OtherError0x8C, OtherError0x8D, \r\n        OtherError0x8E, OtherError0x8F, OtherError0x90, OtherError0x91, OtherError0x92, OtherError0x93, OtherError0x94, \r\n        OtherError0x95, OtherError0x96, OtherError0x97, OtherError0x98, OtherError0x99, OtherError0x9A, OtherError0x9B,\r\n        OtherError0x9C, OtherError0x9D, OtherError0x9E, OtherError0x9F, OtherError0xA0, OtherError0xA1, OtherError0xA2, \r\n        OtherError0xA3, OtherError0xA4, OtherError0xA5, OtherError0xA6, OtherError0xA7, OtherError0xA8, OtherError0xA9, \r\n        OtherError0xAA, OtherError0xAB, OtherError0xAC, OtherError0xAD, OtherError0xAE, OtherError0xAF, OtherError0xB0,\r\n        OtherError0xB1, OtherError0xB2, OtherError0xB3, OtherError0xB4, OtherError0xB5, OtherError0xB6, OtherError0xB7,\r\n        OtherError0xB8, OtherError0xB9, OtherError0xBA, OtherError0xBB, OtherError0xBC, OtherError0xBD, OtherError0xBE,\r\n        OtherError0xBF, OtherError0xC0, OtherError0xC1, OtherError0xC2, OtherError0xC3, OtherError0xC4, OtherError0xC5,\r\n        OtherError0xC6, OtherError0xC7, OtherError0xC8, OtherError0xC9, OtherError0xCA, OtherError0xCB, OtherError0xCC,\r\n        OtherError0xCD, OtherError0xCE, OtherError0xCF, OtherError0xD0, OtherError0xD1, OtherError0xD2, OtherError0xD3,\r\n        OtherError0xD4, OtherError0xD5, OtherError0xD6, OtherError0xD7, OtherError0xD8, OtherError0xD9, OtherError0xDA,\r\n        OtherError0xDB, OtherError0xDC, OtherError0xDD, OtherError0xDE, OtherError0xDF,\r\n        \r\n        \r\n        ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\r\n        /// Inter-client generic error codes ==================================================================================\r\n        /// Data requests that cannot be relayed into the Witnet blockchain should be reported\r\n        /// with one of these errors. \r\n        \r\n        /// 0xE0: Requests that cannot be parsed must always get this error as their result.\r\n        BridgeMalformedDataRequest,\r\n        \r\n        /// 0xE1: Witnesses exceeds 100\r\n        BridgePoorIncentives,\r\n        \r\n        /// 0xE2: The request is rejected on the grounds that it may cause the submitter to spend or stake an\r\n        /// amount of value that is unjustifiably high when compared with the reward they will be getting\r\n        BridgeOversizedTallyResult,\r\n        \r\n        /// Unallocated:\r\n        OtherError0xE3, OtherError0xE4, OtherError0xE5, OtherError0xE6, OtherError0xE7, OtherError0xE8, OtherError0xE9,\r\n        OtherError0xEA, OtherError0xEB, OtherError0xEC, OtherError0xED, OtherError0xEE, OtherError0xEF, \r\n        \r\n        \r\n        ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\r\n        /// Transient errors as determined by the Request Board contract ======================================================\r\n        \r\n        /// 0xF0: \r\n        BoardAwaitingResult,\r\n\r\n        /// 0xF1:\r\n        BoardFinalizingResult,\r\n\r\n        /// 0xF2:\r\n        BoardBeingDisputed,\r\n\r\n        /// Unallocated\r\n        OtherError0xF3, OtherError0xF4, OtherError0xF5, OtherError0xF6, OtherError0xF7,\r\n\r\n        \r\n        ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\r\n        /// Final errors as determined by the Request Board contract ==========================================================\r\n\r\n        /// 0xF8:\r\n        BoardAlreadyDelivered,\r\n\r\n        /// 0xF9:\r\n        BoardResolutionTimeout,\r\n\r\n        /// Unallocated:\r\n        OtherError0xFA, OtherError0xFB, OtherError0xFC, OtherError0xFD, OtherError0xFE,\r\n        \r\n        \r\n        ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////\r\n        /// 0xFF: Some tally error is not intercepted but it should (0+ args)\r\n        UnhandledIntercept\r\n    }\r\n\r\n    /// Possible types either processed by Witnet Radon Scripts or included within results to Witnet Data Requests.\r\n    enum RadonDataTypes {\r\n        /* 0x00 */ Any, \r\n        /* 0x01 */ Array,\r\n        /* 0x02 */ Bool,\r\n        /* 0x03 */ Bytes,\r\n        /* 0x04 */ Integer,\r\n        /* 0x05 */ Float,\r\n        /* 0x06 */ Map,\r\n        /* 0x07 */ String,\r\n        Unused0x08, Unused0x09, Unused0x0A, Unused0x0B,\r\n        Unused0x0C, Unused0x0D, Unused0x0E, Unused0x0F,\r\n        /* 0x10 */ Same,\r\n        /* 0x11 */ Inner,\r\n        /* 0x12 */ Match,\r\n        /* 0x13 */ Subscript\r\n    }\r\n\r\n    /// Structure defining some data filtering that can be applied at the Aggregation or the Tally stages\r\n    /// within a Witnet Data Request resolution workflow.\r\n    struct RadonFilter {\r\n        RadonFilterOpcodes opcode;\r\n        bytes cborArgs;\r\n    }\r\n\r\n    /// Filtering methods currently supported on the Witnet blockchain. \r\n    enum RadonFilterOpcodes {\r\n        /* 0x00 */ Reserved0x00, //GreaterThan,\r\n        /* 0x01 */ Reserved0x01, //LessThan,\r\n        /* 0x02 */ Reserved0x02, //Equals,\r\n        /* 0x03 */ Reserved0x03, //AbsoluteDeviation,\r\n        /* 0x04 */ Reserved0x04, //RelativeDeviation\r\n        /* 0x05 */ StandardDeviation,\r\n        /* 0x06 */ Reserved0x06, //Top,\r\n        /* 0x07 */ Reserved0x07, //Bottom,\r\n        /* 0x08 */ Mode,\r\n        /* 0x09 */ Reserved0x09  //LessOrEqualThan\r\n    }\r\n\r\n    /// Structure defining the array of filters and reducting function to be applied at either the Aggregation\r\n    /// or the Tally stages within a Witnet Data Request resolution workflow.\r\n    struct RadonReducer {\r\n        RadonReduceOpcodes opcode;\r\n        RadonFilter[] filters;\r\n    }\r\n\r\n    /// Reducting functions currently supported on the Witnet blockchain.\r\n    enum RadonReduceOpcodes {\r\n        /* 0x00 */ Reserved0x00, //Minimum,\r\n        /* 0x01 */ Reserved0x01, //Maximum,\r\n        /* 0x02 */ Mode,\r\n        /* 0x03 */ AverageMean,\r\n        /* 0x04 */ Reserved0x04, //AverageMeanWeighted,\r\n        /* 0x05 */ AverageMedian,\r\n        /* 0x06 */ Reserved0x06, //AverageMedianWeighted,\r\n        /* 0x07 */ StandardDeviation,\r\n        /* 0x08 */ Reserved0x08, //AverageDeviation,\r\n        /* 0x09 */ Reserved0x09, //MedianDeviation,\r\n        /* 0x0A */ Reserved0x10, //MaximumDeviation,\r\n        /* 0x0B */ ConcatenateAndHash\r\n    }\r\n    \r\n    /// Structure containing the Retrieve-Attestation-Delivery parts of a Witnet-compliant Data Request.\r\n    struct RadonRequest {\r\n        RadonRetrieval[] retrieve;\r\n        RadonReducer aggregate;\r\n        RadonReducer tally;\r\n    }\r\n\r\n    /// Structure containing all the parameters that fully describe a Witnet Radon Retrieval within a Witnet Data Request.\r\n    struct RadonRetrieval {\r\n        uint8 argsCount;\r\n        RadonRetrievalMethods method;\r\n        RadonDataTypes dataType;\r\n        string url;\r\n        string body;\r\n        string[2][] headers;\r\n        bytes radonScript;\r\n    }\r\n\r\n    /// Possible Radon retrieval methods that can be used within a Radon Retrieval. \r\n    enum RadonRetrievalMethods {\r\n        /* 0 */ Unknown,\r\n        /* 1 */ HttpGet,\r\n        /* 2 */ RNG,\r\n        /* 3 */ HttpPost,\r\n        /* 4 */ HttpHead\r\n    }\r\n\r\n    /// Structure containing all possible SLA security parameters of a Witnet-compliant Data Request.\r\n\r\n    struct RadonSLAv1 {\r\n        uint8 numWitnesses;\r\n        uint8 minConsensusPercentage;\r\n        uint64 witnessReward;\r\n        uint64 witnessCollateral;\r\n        uint64 minerCommitRevealFee;\r\n    }\r\n\r\n\r\n    /// =======================================================================\r\n    /// --- Witnet.Address helper functions -----------------------------------\r\n\r\n    function eq(Address a, Address b) internal pure returns (bool) {\r\n        return Address.unwrap(a) == Address.unwrap(b);\r\n    }\r\n\r\n    function fromBech32(string memory pkh, bool mainnet) internal pure returns (Address) {\r\n        require(bytes(pkh).length == (mainnet ? 42 : 43), \"Bech32: invalid length\");\r\n        return Address.wrap(bytes20(Bech32.fromBech32(pkh, mainnet ? \"wit\" : \"twit\")));\r\n    }\r\n\r\n    function toBech32(Address witAddress, bool mainnet) internal pure returns (string memory) {\r\n        return Bech32.toBech32(address(Address.unwrap(witAddress)), mainnet ? \"wit\" : \"twit\");\r\n    }\r\n\r\n    function isZero(Address a) internal pure returns (bool) {\r\n        return Address.unwrap(a) == bytes20(0);\r\n    }\r\n\r\n    \r\n    /// =======================================================================\r\n    /// --- Witnet.Beacon helper functions ------------------------------------\r\n\r\n    function equals(Beacon storage self, Beacon calldata other)\r\n        internal view returns (bool)\r\n    {\r\n        return (\r\n            root(self) == root(other)\r\n        );\r\n    }\r\n\r\n    function root(Beacon calldata self) internal pure returns (bytes24) {\r\n        return bytes24(keccak256(abi.encode(\r\n            self.index,\r\n            self.prevIndex,\r\n            self.prevRoot,\r\n            self.ddrTalliesMerkleRoot,\r\n            self.droTalliesMerkleRoot,\r\n            self.nextCommitteeAggPubkey\r\n        )));\r\n    }\r\n    \r\n    function root(Beacon storage self) internal view returns (bytes24) {\r\n        return bytes24(keccak256(abi.encode(\r\n            self.index,\r\n            self.prevIndex,\r\n            self.prevRoot,\r\n            self.ddrTalliesMerkleRoot,\r\n            self.droTalliesMerkleRoot,\r\n            self.nextCommitteeAggPubkey\r\n        )));\r\n    }\r\n\r\n    \r\n    /// =======================================================================\r\n    /// --- BlockNumber helper functions --------------------------------------\r\n\r\n    function egt(BlockNumber a, BlockNumber b) internal pure returns (bool) {\r\n        return BlockNumber.unwrap(a) >= BlockNumber.unwrap(b);\r\n    }\r\n\r\n    function elt(BlockNumber a, BlockNumber b) internal pure returns (bool) {\r\n        return BlockNumber.unwrap(a) <= BlockNumber.unwrap(b);\r\n    }\r\n\r\n    function gt(BlockNumber a, BlockNumber b) internal pure returns (bool) {\r\n        return BlockNumber.unwrap(a) > BlockNumber.unwrap(b);\r\n    }\r\n\r\n    function lt(BlockNumber a, BlockNumber b) internal pure returns (bool) {\r\n        return BlockNumber.unwrap(a) < BlockNumber.unwrap(b);\r\n    }\r\n\r\n    function isZero(BlockNumber b) internal pure returns (bool) {\r\n        return (BlockNumber.unwrap(b) == 0);\r\n    }\r\n\r\n\r\n    /// ===============================================================================================================\r\n    /// --- Data*Report helper methods --------------------------------------------------------------------------------\r\n\r\n    function queryRelayer(DataPullReport calldata self) internal pure returns (address) {\r\n        return recoverEvmAddr(\r\n            self.witDrRelayerSignature, \r\n            hashify(self.queryHash)\r\n        );\r\n    }\r\n\r\n    function tallyHash(DataPullReport calldata self) internal pure returns (bytes32) {\r\n        return keccak256(abi.encode(\r\n            self.queryHash,\r\n            self.witDrRelayerSignature,\r\n            self.witDrTxHash,\r\n            self.witDrResultEpoch,\r\n            self.witDrResultCborBytes\r\n        ));\r\n    }\r\n\r\n    function digest(DataPushReport calldata self) internal pure returns (bytes32) {\r\n        return keccak256(abi.encode(\r\n            self.witDrTxHash,\r\n            self.queryRadHash,\r\n            self.queryParams.witResultMaxSize,\r\n            self.queryParams.witCommitteeSize,\r\n            self.queryParams.witUnitaryReward,\r\n            self.resultTimestamp,\r\n            self.resultCborBytes\r\n        ));\r\n    }\r\n    \r\n    /// ========================================================================================================\r\n    /// --- 'DataResult' helper methods ------------------------------------------------------------------------\r\n\r\n    function noErrors(DataResult memory self) internal pure returns (bool) {\r\n        return self.status == ResultStatus.NoErrors;\r\n    }\r\n\r\n    function keepWaiting(DataResult memory self) internal pure returns (bool) {\r\n        return keepWaiting(self.status);\r\n    }\r\n\r\n    function hasErrors(DataResult memory self) internal pure returns (bool) {\r\n        return hasErrors(self.status);\r\n    }\r\n\r\n    modifier _checkDataType(DataResult memory self, RadonDataTypes expectedDataType) {\r\n        require(\r\n            !keepWaiting(self)\r\n                && self.dataType == expectedDataType\r\n            , \"cbor: cannot fetch data\"\r\n        ); _; \r\n        self.dataType = peekRadonDataType(self.value);\r\n    }\r\n\r\n    function fetchAddress(DataResult memory self) \r\n        internal pure \r\n        _checkDataType(self, RadonDataTypes.Bytes) \r\n        returns (address _res)\r\n    {\r\n        return toAddress(self.value.readBytes());\r\n    }\r\n\r\n    function fetchBool(DataResult memory self) \r\n        internal pure \r\n        _checkDataType(self, RadonDataTypes.Bool) \r\n        returns (bool)\r\n    {\r\n        return self.value.readBool();\r\n    }\r\n\r\n    function fetchBytes(DataResult memory self)\r\n        internal pure \r\n        _checkDataType(self, RadonDataTypes.Bytes) \r\n        returns (bytes memory)\r\n    {\r\n        return self.value.readBytes();\r\n    }\r\n\r\n    function fetchBytes4(DataResult memory self)\r\n        internal pure \r\n        _checkDataType(self, RadonDataTypes.Bytes) \r\n        returns (bytes4)\r\n    {\r\n        return toBytes4(self.value.readBytes());\r\n    }\r\n\r\n    function fetchBytes32(DataResult memory self)\r\n        internal pure \r\n        _checkDataType(self, RadonDataTypes.Bytes) \r\n        returns (bytes32)\r\n    {\r\n        return toBytes32(self.value.readBytes());\r\n    }\r\n\r\n    function fetchCborArray(DataResult memory self)\r\n        internal pure \r\n        _checkDataType(self, RadonDataTypes.Array) \r\n        returns (WitnetCBOR.CBOR[] memory)\r\n    {\r\n        return self.value.readArray();\r\n    }\r\n\r\n    /// @dev Decode a fixed16 (half-precision) numeric value from the Result's CBOR value.\r\n    /// @dev Due to the lack of support for floating or fixed point arithmetic in the EVM, this method offsets all values.\r\n    /// by 5 decimal orders so as to get a fixed precision of 5 decimal positions, which should be OK for most `fixed16`.\r\n    /// use cases. In other words, the output of this method is 10,000 times the actual value, encoded into an `int32`.\r\n    function fetchFloatFixed16(DataResult memory self)\r\n        internal pure \r\n        _checkDataType(self, RadonDataTypes.Float) \r\n        returns (int32)\r\n    {\r\n        return self.value.readFloat16();\r\n    }\r\n\r\n    /// @dev Decode an array of fixed16 values from the Result's CBOR value.\r\n    function fetchFloatFixed16Array(DataResult memory self)\r\n        internal pure\r\n        _checkDataType(self, RadonDataTypes.Array)\r\n        returns (int32[] memory)\r\n    {\r\n        return self.value.readFloat16Array();\r\n    }\r\n\r\n    /// @dev Decode a `int64` value from the DataResult's CBOR value.\r\n    function fetchInt(DataResult memory self)\r\n        internal pure\r\n        _checkDataType(self, RadonDataTypes.Integer)\r\n        returns (int64)\r\n    {\r\n        return self.value.readInt();\r\n    }\r\n\r\n    function fetchInt64Array(DataResult memory self)\r\n        internal pure\r\n        _checkDataType(self, RadonDataTypes.Array)\r\n        returns (int64[] memory)\r\n    {\r\n        return self.value.readIntArray();\r\n    }\r\n\r\n    function fetchString(DataResult memory self)\r\n        internal pure\r\n        _checkDataType(self, RadonDataTypes.String)\r\n        returns (string memory)\r\n    {\r\n        return self.value.readString();\r\n    }\r\n\r\n    function fetchStringArray(DataResult memory self)\r\n        internal pure\r\n        _checkDataType(self, RadonDataTypes.Array)\r\n        returns (string[] memory)\r\n    {\r\n        return self.value.readStringArray();\r\n    }\r\n\r\n    /// @dev Decode a `uint64` value from the DataResult's CBOR value.\r\n    function fetchUint(DataResult memory self)\r\n        internal pure\r\n        _checkDataType(self, RadonDataTypes.Integer)\r\n        returns (uint64)\r\n    {\r\n        return self.value.readUint();\r\n    }\r\n\r\n    function fetchUint64Array(DataResult memory self)\r\n        internal pure\r\n        _checkDataType(self, RadonDataTypes.Array)\r\n        returns (uint64[] memory)\r\n    {\r\n        return self.value.readUintArray();\r\n    }\r\n\r\n    bytes7 private constant _CBOR_MAJOR_TYPE_TO_RADON_DATA_TYPES_MAP = 0x04040307010600;\r\n    function peekRadonDataType(WitnetCBOR.CBOR memory cbor) internal pure returns (RadonDataTypes _type) {\r\n        _type = RadonDataTypes.Any;\r\n        if (!cbor.eof()) {\r\n            if (cbor.majorType <= 6) {\r\n                return RadonDataTypes(uint8(bytes1(_CBOR_MAJOR_TYPE_TO_RADON_DATA_TYPES_MAP[cbor.majorType])));\r\n            \r\n            } else if (cbor.majorType == 7) {\r\n                if (cbor.additionalInformation == 20 || cbor.additionalInformation == 21) {\r\n                    return RadonDataTypes.Bool;\r\n                \r\n                } else if (cbor.additionalInformation >= 25 && cbor.additionalInformation <= 27) {\r\n                    return RadonDataTypes.Float;\r\n                }\r\n            }\r\n        }\r\n    }\r\n\r\n\r\n    /// =======================================================================\r\n    /// --- FastForward helper functions --------------------------------------\r\n\r\n    function head(FastForward[] calldata rollup)\r\n        internal pure returns (Beacon calldata)\r\n    {\r\n        return rollup[rollup.length - 1].beacon;\r\n    }\r\n\r\n\r\n    /// ===============================================================================================================\r\n    /// --- Query* helper methods -------------------------------------------------------------------------------------\r\n\r\n    function equalOrGreaterThan(QuerySLA calldata self, QuerySLA storage stored) internal view returns (bool) {\r\n        return (\r\n                self.witCommitteeSize >= stored.witCommitteeSize\r\n                && self.witUnitaryReward >= stored.witUnitaryReward \r\n                && self.witResultMaxSize <= stored.witResultMaxSize\r\n        );\r\n    }\r\n\r\n    function hashify(QueryHash hash) internal pure returns (bytes32) {\r\n        return keccak256(abi.encode(QueryHash.unwrap(hash)));\r\n    }\r\n\r\n    function hashify(QueryId _queryId, Witnet.RadonHash _radHash, bytes32 _slaHash) internal view returns (Witnet.QueryHash) {\r\n        return Witnet.QueryHash.wrap(bytes15(\r\n            keccak256(abi.encode(\r\n                channel(address(this)), \r\n                blockhash(block.number - 1),\r\n                _queryId, Witnet.RadonHash.unwrap(_radHash), _slaHash\r\n            ))\r\n        ));\r\n    }\r\n\r\n    function hashify(QuerySLA memory querySLA) internal pure returns (bytes32) {\r\n        return keccak256(abi.encodePacked(\r\n            querySLA.witResultMaxSize,\r\n            querySLA.witCommitteeSize,\r\n            querySLA.witUnitaryReward\r\n        ));\r\n    }\r\n\r\n    function isValid(QuerySLA memory self) internal pure returns (bool) {\r\n        return (\r\n            self.witResultMaxSize >= 0\r\n                && self.witCommitteeSize > 0\r\n                && self.witUnitaryReward > 0\r\n        );\r\n    }\r\n\r\n    function isZero(QueryId a) internal pure returns (bool) {\r\n        return (QueryId.unwrap(a) == 0);\r\n    }\r\n\r\n    function toV1(QuerySLA calldata self) internal pure returns (RadonSLAv1 memory) {\r\n        return RadonSLAv1({\r\n            numWitnesses: uint8(self.witCommitteeSize),\r\n            minConsensusPercentage: 51,\r\n            witnessReward: self.witUnitaryReward,\r\n            witnessCollateral: self.witUnitaryReward * self.witCommitteeSize,\r\n            minerCommitRevealFee: self.witUnitaryReward / self.witCommitteeSize\r\n        });\r\n    }\r\n\r\n\r\n    /// ===============================================================================================================\r\n    /// --- RadonHash helper methods ----------------------------------------------------------------------------------\r\n\r\n    function eq(RadonHash a, RadonHash b) internal pure returns (bool) {\r\n        return RadonHash.unwrap(a) == RadonHash.unwrap(b);\r\n    }\r\n    \r\n    function isZero(RadonHash h) internal pure returns (bool) {\r\n        return RadonHash.unwrap(h) == bytes32(0);\r\n    }\r\n\r\n    \r\n    /// ===============================================================================================================\r\n    /// --- ResultStatus helper methods -------------------------------------------------------------------------------\r\n\r\n    function hasErrors(ResultStatus self) internal pure returns (bool) {\r\n        return (\r\n            self != ResultStatus.NoErrors\r\n                && !keepWaiting(self)\r\n        );\r\n    }\r\n\r\n    function isCircumstantial(ResultStatus self) internal pure returns (bool) {\r\n        return (self == ResultStatus.CircumstantialFailure);\r\n    }\r\n\r\n    function isRetriable(ResultStatus self) internal pure returns (bool) {\r\n        return (\r\n            lackOfConsensus(self)\r\n                || isCircumstantial(self)\r\n                || poorIncentives(self)\r\n        );\r\n    }\r\n\r\n    function keepWaiting(ResultStatus self) internal pure returns (bool) {\r\n        return (\r\n            self == ResultStatus.BoardAwaitingResult\r\n                || self == ResultStatus.BoardFinalizingResult\r\n        );\r\n    }\r\n\r\n    function lackOfConsensus(ResultStatus self) internal pure returns (bool) {\r\n        return (\r\n            self == ResultStatus.InsufficientCommits\r\n                || self == ResultStatus.InsufficientMajority\r\n                || self == ResultStatus.InsufficientReveals\r\n        );\r\n    }\r\n\r\n    function poorIncentives(ResultStatus self) internal pure returns (bool) {\r\n        return (\r\n            self == ResultStatus.OversizedTallyResult\r\n                || self == ResultStatus.InsufficientCommits\r\n                || self == ResultStatus.BridgePoorIncentives\r\n                || self == ResultStatus.BridgeOversizedTallyResult\r\n        );\r\n    }\r\n\r\n\r\n    /// ===============================================================================================================\r\n    /// --- Timestamp helper methods ----------------------------------------------------------------------------------\r\n\r\n    function gt(Timestamp a, Timestamp b) internal pure returns (bool) {\r\n        return Timestamp.unwrap(a) > Timestamp.unwrap(b);\r\n    }\r\n\r\n    function egt(Timestamp a, Timestamp b) internal pure returns (bool) {\r\n        return Timestamp.unwrap(a) >= Timestamp.unwrap(b);\r\n    }\r\n\r\n    function elt(Timestamp a, Timestamp b) internal pure returns (bool) {\r\n        return Timestamp.unwrap(a) <= Timestamp.unwrap(b);\r\n    }\r\n\r\n    function isZero(Timestamp t) internal pure returns (bool) {\r\n        return Timestamp.unwrap(t) == 0;\r\n    }\r\n\r\n\r\n    /// ===============================================================================================================\r\n    /// --- 'bytes*' helper methods -----------------------------------------------------------------------------------\r\n\r\n    function intoMemArray(bytes32[1] memory _values) internal pure returns (bytes32[] memory) {\r\n        return abi.decode(abi.encode(uint256(32), 1, _values), (bytes32[]));\r\n    }\r\n\r\n    function intoMemArray(bytes32[2] memory _values) internal pure returns (bytes32[] memory) {\r\n        return abi.decode(abi.encode(uint256(32), 2, _values), (bytes32[]));\r\n    }\r\n\r\n    function intoMemArray(bytes32[3] memory _values) internal pure returns (bytes32[] memory) {\r\n        return abi.decode(abi.encode(uint256(32), 3, _values), (bytes32[]));\r\n    }\r\n\r\n    function intoMemArray(bytes32[4] memory _values) internal pure returns (bytes32[] memory) {\r\n        return abi.decode(abi.encode(uint256(32), 4, _values), (bytes32[]));\r\n    }\r\n\r\n    function intoMemArray(bytes32[5] memory _values) internal pure returns (bytes32[] memory) {\r\n        return abi.decode(abi.encode(uint256(32), 5, _values), (bytes32[]));\r\n    }\r\n\r\n    function intoMemArray(bytes32[6] memory _values) internal pure returns (bytes32[] memory) {\r\n        return abi.decode(abi.encode(uint256(32), 6, _values), (bytes32[]));\r\n    }\r\n\r\n    function intoMemArray(bytes32[7] memory _values) internal pure returns (bytes32[] memory) {\r\n        return abi.decode(abi.encode(uint256(32), 7, _values), (bytes32[]));\r\n    }\r\n\r\n    function intoMemArray(bytes32[8] memory _values) internal pure returns (bytes32[] memory) {\r\n        return abi.decode(abi.encode(uint256(32), 8, _values), (bytes32[]));\r\n    }\r\n    \r\n    function merkleHash(bytes32 a, bytes32 b) internal pure returns (bytes32) {\r\n        return (a < b\r\n            ? _merkleHash(a, b)\r\n            : _merkleHash(b, a)\r\n        );\r\n    }\r\n\r\n    function merkleRoot(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32 _root) {\r\n        _root = leaf;\r\n        for (uint _ix = 0; _ix < proof.length; _ix ++) {\r\n            _root = merkleHash(_root, proof[_ix]);\r\n        }\r\n    }\r\n\r\n    function radHash(bytes calldata bytecode) internal pure returns (Witnet.RadonHash) {\r\n        return Witnet.RadonHash.wrap(keccak256(bytecode));\r\n    }\r\n\r\n    function recoverEvmAddr(bytes memory signature, bytes32 hash_)\r\n        internal pure \r\n        returns (address)\r\n    {\r\n        if (signature.length != 65) {\r\n            return (address(0));\r\n        }\r\n        bytes32 r;\r\n        bytes32 s;\r\n        uint8 v;\r\n        assembly {\r\n            r := mload(add(signature, 0x20))\r\n            s := mload(add(signature, 0x40))\r\n            v := byte(0, mload(add(signature, 0x60)))\r\n        }\r\n        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\r\n            return address(0);\r\n        }\r\n        if (v != 27 && v != 28) {\r\n            return address(0);\r\n        }\r\n        return ecrecover(hash_, v, r, s);\r\n    }\r\n\r\n    function verifyWitAddressAuthorization(\r\n            address evmAuthorized, \r\n            Address witSigner,\r\n            bytes memory witSignature\r\n        )\r\n        internal pure\r\n        returns (bool)\r\n    {\r\n        bytes32 _publicKeyX = recoverWitPublicKey(keccak256(abi.encodePacked(evmAuthorized)), witSignature);\r\n        bytes20 _witSigner = Address.unwrap(witSigner);\r\n        return (\r\n            _witSigner == bytes20(sha256(abi.encodePacked(bytes1(0x00), _publicKeyX)))\r\n                || _witSigner == bytes20(sha256(abi.encodePacked(bytes1(0x01), _publicKeyX)))\r\n                || _witSigner == bytes20(sha256(abi.encodePacked(bytes1(0x02), _publicKeyX)))\r\n                || _witSigner == bytes20(sha256(abi.encodePacked(bytes1(0x03), _publicKeyX)))\r\n        );\r\n    }\r\n\r\n    function recoverWitPublicKey(bytes32 evmDigest, bytes memory witSignature)\r\n        internal pure\r\n        returns (bytes32 _witPublicKey)\r\n    {\r\n        if (witSignature.length == 65) {\r\n            bytes32 r;\r\n            bytes32 s;\r\n            uint8 v;\r\n            assembly {\r\n                r := mload(add(witSignature, 0x20))\r\n                s := mload(add(witSignature, 0x40))\r\n                v := byte(0, mload(add(witSignature, 0x60)))\r\n            }\r\n            if (\r\n                uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0\r\n                    && (v == 27 || v == 28)\r\n            ) {\r\n                (uint256 x,) = Secp256k1.recover(uint256(evmDigest), v - 27, uint256(r), uint256(s));\r\n                _witPublicKey = bytes32(x);\r\n            }\r\n        }\r\n    }\r\n\r\n    function toAddress(bytes memory _value) internal pure returns (address) {\r\n        return address(toBytes20(_value));\r\n    }\r\n\r\n    function toBytes4(bytes memory _value) internal pure returns (bytes4) {\r\n        return bytes4(toFixedBytes(_value, 4));\r\n    }\r\n    \r\n    function toBytes20(bytes memory _value) internal pure returns (bytes20) {\r\n        return bytes20(toFixedBytes(_value, 20));\r\n    }\r\n    \r\n    function toBytes32(bytes memory _value) internal pure returns (bytes32) {\r\n        return toFixedBytes(_value, 32);\r\n    }\r\n\r\n    function toFixedBytes(bytes memory _value, uint8 _numBytes)\r\n        internal pure\r\n        returns (bytes32 _bytes32)\r\n    {\r\n        assert(_numBytes <= 32);\r\n        unchecked {\r\n            uint _len = _value.length > _numBytes ? _numBytes : _value.length;\r\n            for (uint _i = 0; _i < _len; _i ++) {\r\n                _bytes32 |= bytes32(_value[_i] & 0xff) >> (_i * 8);\r\n            }\r\n        }\r\n    }\r\n    \r\n    /// @notice Converts bytes32 into string.\r\n    function asAscii(bytes32 _bytes32)\r\n        internal pure\r\n        returns (string memory)\r\n    {\r\n        bytes memory _bytes = new bytes(_toStringLength(_bytes32));\r\n        for (uint _i = 0; _i < _bytes.length;) {\r\n            _bytes[_i] = _bytes32[_i];\r\n            unchecked {\r\n                _i ++;\r\n            }\r\n        }\r\n        return string(_bytes);\r\n    }\r\n\r\n    function toHexString(bytes32 _bytes32) \r\n        internal pure\r\n        returns (string memory)\r\n    {\r\n        bytes memory _bytes = new bytes(64);\r\n        for (uint8 _i; _i < _bytes.length;) {\r\n            _bytes[_i ++] = _toHexChar(uint8(_bytes32[_i / 2] >> 4));\r\n            _bytes[_i ++] = _toHexChar(uint8(_bytes32[_i / 2] & 0x0f));\r\n        }\r\n        return string(_bytes);\r\n    }\r\n\r\n\r\n    /// ===============================================================================================================\r\n    /// --- 'string' helper methods -----------------------------------------------------------------------------------\r\n\r\n    function toLowerCase(string memory str)\r\n        internal pure\r\n        returns (string memory)\r\n    {\r\n        bytes memory lowered = new bytes(bytes(str).length);\r\n        unchecked {\r\n            for (uint i = 0; i < lowered.length; i ++) {\r\n                uint8 char = uint8(bytes(str)[i]);\r\n                if (char >= 65 && char <= 90) {\r\n                    lowered[i] = bytes1(char + 32);\r\n                } else {\r\n                    lowered[i] = bytes1(char);\r\n                }\r\n            }\r\n        }\r\n        return string(lowered);\r\n    }\r\n\r\n    // Function to parse a hex string into a byte array\r\n    function parseHexString(string memory hexString) internal pure returns (bytes memory result) {\r\n        unchecked {\r\n            result = new bytes(bytes(hexString).length / 2);\r\n            for (uint256 i; i < result.length; i ++) {\r\n                uint8 byte1 = _hexCharToByte(uint8(bytes(hexString)[2 * i]));\r\n                uint8 byte2 = _hexCharToByte(uint8(bytes(hexString)[2 * i + 1]));\r\n                result[i] = bytes1(byte1 * 16 + byte2); // Combining the two hex digits into one byte\r\n            }\r\n        }\r\n    }\r\n\r\n    function tryUint(string memory str)\r\n        internal pure\r\n        returns (uint res, bool)\r\n    {\r\n        unchecked {\r\n            for (uint256 i = 0; i < bytes(str).length; i++) {\r\n                if (\r\n                    (uint8(bytes(str)[i]) - 48) < 0\r\n                        || (uint8(bytes(str)[i]) - 48) > 9\r\n                ) {\r\n                    return (0, false);\r\n                }\r\n                res += (uint8(bytes(str)[i]) - 48) * 10 ** (bytes(str).length - i - 1);\r\n            }\r\n            return (res, true);\r\n        }\r\n    }\r\n\r\n\r\n    /// ===============================================================================================================\r\n    /// --- 'uint*' helper methods ------------------------------------------------------------------------------------\r\n\r\n    function determineBeaconIndexFromEpoch(BlockNumber epoch) internal pure returns (uint64) {\r\n        return BlockNumber.unwrap(epoch) / 10;\r\n    }\r\n    \r\n    function determineBeaconIndexFromTimestamp(Timestamp timestamp) internal pure returns (uint64) {\r\n        return determineBeaconIndexFromEpoch(\r\n            determineEpochFromTimestamp(\r\n                timestamp\r\n            )\r\n        );\r\n    }\r\n\r\n    function determineEpochFromTimestamp(Timestamp timestamp) internal pure returns (BlockNumber) {\r\n        if (Timestamp.unwrap(timestamp) > WIT_2_GENESIS_TIMESTAMP) {\r\n            return BlockNumber.wrap(\r\n                WIT_2_GENESIS_EPOCH\r\n                    + (Timestamp.unwrap(timestamp) - WIT_2_GENESIS_TIMESTAMP)\r\n                        / WIT_2_SECS_PER_EPOCH\r\n            );\r\n        } else if (Timestamp.unwrap(timestamp) > WIT_1_GENESIS_TIMESTAMP) {\r\n            return BlockNumber.wrap(\r\n                (Timestamp.unwrap(timestamp) - WIT_1_GENESIS_TIMESTAMP)\r\n                    / WIT_1_SECS_PER_EPOCH\r\n            );\r\n        } else {\r\n            return BlockNumber.wrap(0);\r\n        }\r\n    }\r\n\r\n    function determineTimestampFromEpoch(BlockNumber epoch) internal pure returns (Timestamp) {\r\n        if (BlockNumber.unwrap(epoch) >= WIT_2_GENESIS_EPOCH) {\r\n            return Timestamp.wrap(\r\n                WIT_2_GENESIS_TIMESTAMP\r\n                    + (WIT_2_SECS_PER_EPOCH * (\r\n                        BlockNumber.unwrap(epoch)\r\n                            - WIT_2_GENESIS_EPOCH)\r\n                    )\r\n            );\r\n        } else return Timestamp.wrap(\r\n            WIT_1_GENESIS_TIMESTAMP\r\n                + (WIT_1_SECS_PER_EPOCH * BlockNumber.unwrap(epoch))\r\n        );\r\n    }\r\n\r\n    /// Generates a pseudo-random uint32 number uniformly distributed within the range `[0 .. range)`, based on\r\n    /// the given `nonce` and `seed` values. \r\n    function randomUniformUint32(uint32 range, uint256 nonce, bytes32 seed)\r\n        internal pure \r\n        returns (uint32) \r\n    {\r\n        uint256 _number = uint256(\r\n            keccak256(\r\n                abi.encode(seed, nonce)\r\n            )\r\n        ) & uint256(2 ** 224 - 1);\r\n        return uint32((_number * range) >> 224);\r\n    }\r\n\r\n    /// @notice Convert a `uint8` into a 2 characters long `string` representing its two less significant hexadecimal values.\r\n    function toHexString(uint8 _u)\r\n        internal pure\r\n        returns (string memory)\r\n    {\r\n        bytes memory b2 = new bytes(2);\r\n        uint8 d0 = uint8(_u / 16) + 48;\r\n        uint8 d1 = uint8(_u % 16) + 48;\r\n        if (d0 > 57)\r\n            d0 += 7;\r\n        if (d1 > 57)\r\n            d1 += 7;\r\n        b2[0] = bytes1(d0);\r\n        b2[1] = bytes1(d1);\r\n        return string(b2);\r\n    }\r\n\r\n    /// @notice Convert a `uint8` into a 1, 2 or 3 characters long `string` representing its.\r\n    /// three less significant decimal values.\r\n    function toString(uint8 _u)\r\n        internal pure\r\n        returns (string memory)\r\n    {\r\n        if (_u < 10) {\r\n            bytes memory b1 = new bytes(1);\r\n            b1[0] = bytes1(uint8(_u) + 48);\r\n            return string(b1);\r\n        } else if (_u < 100) {\r\n            bytes memory b2 = new bytes(2);\r\n            b2[0] = bytes1(uint8(_u / 10) + 48);\r\n            b2[1] = bytes1(uint8(_u % 10) + 48);\r\n            return string(b2);\r\n        } else {\r\n            bytes memory b3 = new bytes(3);\r\n            b3[0] = bytes1(uint8(_u / 100) + 48);\r\n            b3[1] = bytes1(uint8(_u % 100 / 10) + 48);\r\n            b3[2] = bytes1(uint8(_u % 10) + 48);\r\n            return string(b3);\r\n        }\r\n    }\r\n\r\n    /// @notice Convert a `uint` into a string` representing its value.\r\n    function toString(uint v)\r\n        internal pure \r\n        returns (string memory)\r\n    {\r\n        uint maxlength = 100;\r\n        bytes memory reversed = new bytes(maxlength);\r\n        uint i = 0;\r\n        do {\r\n            uint8 remainder = uint8(v % 10);\r\n            v = v / 10;\r\n            reversed[i ++] = bytes1(48 + remainder);\r\n        } while (v != 0);\r\n        bytes memory buf = new bytes(i);\r\n        for (uint j = 1; j <= i; j ++) {\r\n            buf[j - 1] = reversed[i - j];\r\n        }\r\n        return string(buf);\r\n    }\r\n\r\n\r\n    /// ===============================================================================================================\r\n    /// --- Witnet library private methods ----------------------------------------------------------------------------\r\n\r\n    function _hexCharToByte(uint8 hexChar) private pure returns (uint8) {\r\n        if (hexChar >= 0x30 && hexChar <= 0x39) {\r\n            return hexChar - 0x30; // '0'-'9' to 0-9\r\n        } else if (hexChar >= 0x41 && hexChar <= 0x46) {\r\n            return hexChar - 0x41 + 10; // 'A'-'F' to 10-15\r\n        } else if (hexChar >= 0x61 && hexChar <= 0x66) {\r\n            return hexChar - 0x61 + 10; // 'a'-'f' to 10-15\r\n        } else {\r\n            revert(\"Invalid hex character\");\r\n        }\r\n    }\r\n\r\n    function _merkleHash(bytes32 _a, bytes32 _b) private pure returns (bytes32 _hash) {\r\n        assembly {\r\n            mstore(0x0, _a)\r\n            mstore(0x20, _b)\r\n            _hash := keccak256(0x0, 0x40)\r\n        }\r\n    }\r\n\r\n    function _toHexChar(uint8 _uint8) private pure returns (bytes1) {\r\n        return _uint8 < 10 ? bytes1(_uint8 + 48) : bytes1(_uint8 + 87);\r\n    }\r\n\r\n    /// @dev Calculate length of string-equivalent to given bytes32.\r\n    function _toStringLength(bytes32 _bytes32)\r\n        private pure\r\n        returns (uint _length)\r\n    {\r\n        for (; _length < 32; ) {\r\n            if (_bytes32[_length] == 0) {\r\n                break;\r\n            }\r\n            unchecked {\r\n                _length ++;\r\n            }\r\n        }\r\n    }\r\n}\r\n"},"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.0 <0.9.0;\r\n\r\n/// @title A convenient wrapper around the `bytes memory` type that exposes a buffer-like interface\r\n/// @notice The buffer has an inner cursor that tracks the final offset of every read, i.e. any subsequent read will\r\n/// start with the byte that goes right after the last one in the previous read.\r\n/// @dev `uint32` is used here for `cursor` because `uint16` would only enable seeking up to 8KB, which could in some\r\n/// theoretical use cases be exceeded. Conversely, `uint32` supports up to 512MB, which cannot credibly be exceeded.\r\n/// @author The Witnet Foundation.\r\nlibrary WitnetBuffer {\r\n\r\n  error EmptyBuffer();\r\n  error IndexOutOfBounds(uint index, uint range);\r\n  error MissingArgs(uint expected, uint given);\r\n\r\n  /// Iterable bytes buffer.\r\n  struct Buffer {\r\n      bytes data;\r\n      uint cursor;\r\n  }\r\n\r\n  // Ensures we access an existing index in an array\r\n  modifier withinRange(uint index, uint _range) {\r\n    if (index > _range) {\r\n      revert IndexOutOfBounds(index, _range);\r\n    }\r\n    _;\r\n  }\r\n\r\n  /// @notice Concatenate undefinite number of bytes chunks.\r\n  /// @dev Faster than looping on `abi.encodePacked(output, _buffs[ix])`.\r\n  function concat(bytes[] memory _buffs)\r\n    internal pure\r\n    returns (bytes memory output)\r\n  {\r\n    unchecked {\r\n      uint destinationPointer;\r\n      uint destinationLength;\r\n      assembly {\r\n        // get safe scratch location\r\n        output := mload(0x40)\r\n        // set starting destination pointer\r\n        destinationPointer := add(output, 32)\r\n      }      \r\n      for (uint ix = 1; ix <= _buffs.length; ix ++) {  \r\n        uint source;\r\n        uint sourceLength;\r\n        uint sourcePointer;        \r\n        assembly {\r\n          // load source length pointer\r\n          source := mload(add(_buffs, mul(ix, 32)))\r\n          // load source length\r\n          sourceLength := mload(source)\r\n          // sets source memory pointer\r\n          sourcePointer := add(source, 32)\r\n        }\r\n        memcpy(\r\n          destinationPointer,\r\n          sourcePointer,\r\n          sourceLength\r\n        );\r\n        assembly {          \r\n          // increase total destination length\r\n          destinationLength := add(destinationLength, sourceLength)\r\n          // sets destination memory pointer\r\n          destinationPointer := add(destinationPointer, sourceLength)\r\n        }\r\n      }\r\n      assembly {\r\n        // protect output bytes\r\n        mstore(output, destinationLength)\r\n        // set final output length\r\n        mstore(0x40, add(mload(0x40), add(destinationLength, 32)))\r\n      }\r\n    }\r\n  }\r\n\r\n  function fork(WitnetBuffer.Buffer memory buffer)\r\n    internal pure\r\n    returns (WitnetBuffer.Buffer memory)\r\n  {\r\n    return Buffer(\r\n      buffer.data,\r\n      buffer.cursor\r\n    );\r\n  }\r\n\r\n  function mutate(\r\n      WitnetBuffer.Buffer memory buffer,\r\n      uint length,\r\n      bytes memory pokes\r\n    )\r\n    internal pure\r\n    withinRange(length, buffer.data.length - buffer.cursor + 1)\r\n  {\r\n    bytes[] memory parts = new bytes[](3);\r\n    parts[0] = peek(\r\n      buffer,\r\n      0,\r\n      buffer.cursor\r\n    );\r\n    parts[1] = pokes;\r\n    parts[2] = peek(\r\n      buffer,\r\n      buffer.cursor + length,\r\n      buffer.data.length - buffer.cursor - length\r\n    );\r\n    buffer.data = concat(parts);\r\n  }\r\n\r\n  /// @notice Read and consume the next byte from the buffer.\r\n  /// @param buffer An instance of `Buffer`.\r\n  /// @return The next byte in the buffer counting from the cursor position.\r\n  function next(Buffer memory buffer)\r\n    internal pure\r\n    withinRange(buffer.cursor, buffer.data.length)\r\n    returns (bytes1)\r\n  {\r\n    // Return the byte at the position marked by the cursor and advance the cursor all at once\r\n    return buffer.data[buffer.cursor ++];\r\n  }\r\n\r\n  function peek(\r\n      WitnetBuffer.Buffer memory buffer,\r\n      uint offset,\r\n      uint length\r\n    )\r\n    internal pure\r\n    withinRange(offset + length, buffer.data.length)\r\n    returns (bytes memory)\r\n  {\r\n    bytes memory data = buffer.data;\r\n    bytes memory peeks = new bytes(length);\r\n    uint destinationPointer;\r\n    uint sourcePointer;\r\n    assembly {\r\n      destinationPointer := add(peeks, 32)\r\n      sourcePointer := add(add(data, 32), offset)\r\n    }\r\n    memcpy(\r\n      destinationPointer,\r\n      sourcePointer,\r\n      length\r\n    );\r\n    return peeks;\r\n  }\r\n\r\n  // @notice Extract bytes array from buffer starting from current cursor.\r\n  /// @param buffer An instance of `Buffer`.\r\n  /// @param length How many bytes to peek from the Buffer.\r\n  // solium-disable-next-line security/no-assign-params\r\n  function peek(\r\n      WitnetBuffer.Buffer memory buffer,\r\n      uint length\r\n    )\r\n    internal pure\r\n    withinRange(length, buffer.data.length - buffer.cursor)\r\n    returns (bytes memory)\r\n  {\r\n    return peek(\r\n      buffer,\r\n      buffer.cursor,\r\n      length\r\n    );\r\n  }\r\n\r\n  /// @notice Read and consume a certain amount of bytes from the buffer.\r\n  /// @param buffer An instance of `Buffer`.\r\n  /// @param length How many bytes to read and consume from the buffer.\r\n  /// @return output A `bytes memory` containing the first `length` bytes from the buffer, counting from the cursor position.\r\n  function read(Buffer memory buffer, uint length)\r\n    internal pure\r\n    withinRange(buffer.cursor + length, buffer.data.length)\r\n    returns (bytes memory output)\r\n  {\r\n    // Create a new `bytes memory destination` value\r\n    output = new bytes(length);\r\n    // Early return in case that bytes length is 0\r\n    if (length > 0) {\r\n      bytes memory input = buffer.data;\r\n      uint offset = buffer.cursor;\r\n      // Get raw pointers for source and destination\r\n      uint sourcePointer;\r\n      uint destinationPointer;\r\n      assembly {\r\n        sourcePointer := add(add(input, 32), offset)\r\n        destinationPointer := add(output, 32)\r\n      }\r\n      // Copy `length` bytes from source to destination\r\n      memcpy(\r\n        destinationPointer,\r\n        sourcePointer,\r\n        length\r\n      );\r\n      // Move the cursor forward by `length` bytes\r\n      seek(\r\n        buffer,\r\n        length,\r\n        true\r\n      );\r\n    }\r\n  }\r\n  \r\n  /// @notice Read and consume the next 2 bytes from the buffer as an IEEE 754-2008 floating point number enclosed in an\r\n  /// `int32`.\r\n  /// @dev Due to the lack of support for floating or fixed point arithmetic in the EVM, this method offsets all values\r\n  /// by 5 decimal orders so as to get a fixed precision of 5 decimal positions, which should be OK for most `float16`\r\n  /// use cases. In other words, the integer output of this method is 10,000 times the actual value. The input bytes are\r\n  /// expected to follow the 16-bit base-2 format (a.k.a. `binary16`) in the IEEE 754-2008 standard.\r\n  /// @param buffer An instance of `Buffer`.\r\n  /// @return result The `int32` value of the next 4 bytes in the buffer counting from the cursor position.\r\n  function readFloat16(Buffer memory buffer)\r\n    internal pure\r\n    returns (int32 result)\r\n  {\r\n    uint32 value = readUint16(buffer);\r\n    // Get bit at position 0\r\n    uint32 sign = value & 0x8000;\r\n    // Get bits 1 to 5, then normalize to the [-15, 16] range so as to counterweight the IEEE 754 exponent bias\r\n    int32 exponent = (int32(value & 0x7c00) >> 10) - 15;\r\n    // Get bits 6 to 15\r\n    int32 fraction = int32(value & 0x03ff);\r\n    // Add 2^10 to the fraction if exponent is not -15\r\n    if (exponent != -15) {\r\n      fraction |= 0x400;\r\n    } else if (exponent == 16) {\r\n      revert(\r\n        string(abi.encodePacked(\r\n          \"WitnetBuffer.readFloat16: \",\r\n          sign != 0 ? \"negative\" : hex\"\",\r\n          \" infinity\"\r\n        ))\r\n      );\r\n    }\r\n    // Compute `2 ^ exponent · (1 + fraction / 1024)`\r\n    if (exponent >= 0) {\r\n      result = int32(int(\r\n        int(1 << uint256(int256(exponent)))\r\n          * 10000\r\n          * fraction\r\n      ) >> 10);\r\n    } else {\r\n      result = int32(int(\r\n        int(fraction)\r\n          * 10000\r\n          / int(1 << uint(int(- exponent)))\r\n      ) >> 10);\r\n    }\r\n    // Make the result negative if the sign bit is not 0\r\n    if (sign != 0) {\r\n      result *= -1;\r\n    }\r\n  }\r\n\r\n  /// @notice Consume the next 4 bytes from the buffer as an IEEE 754-2008 floating point number enclosed into an `int`.\r\n  /// @dev Due to the lack of support for floating or fixed point arithmetic in the EVM, this method offsets all values\r\n  /// by 9 decimal orders so as to get a fixed precision of 9 decimal positions, which should be OK for most `float32`\r\n  /// use cases. In other words, the integer output of this method is 10^9 times the actual value. The input bytes are\r\n  /// expected to follow the 64-bit base-2 format (a.k.a. `binary32`) in the IEEE 754-2008 standard.\r\n  /// @param buffer An instance of `Buffer`.\r\n  /// @return result The `int` value of the next 8 bytes in the buffer counting from the cursor position.\r\n  function readFloat32(Buffer memory buffer)\r\n    internal pure\r\n    returns (int result)\r\n  {\r\n    uint value = readUint32(buffer);\r\n    // Get bit at position 0\r\n    uint sign = value & 0x80000000;\r\n    // Get bits 1 to 8, then normalize to the [-127, 128] range so as to counterweight the IEEE 754 exponent bias\r\n    int exponent = (int(value & 0x7f800000) >> 23) - 127;\r\n    // Get bits 9 to 31\r\n    int fraction = int(value & 0x007fffff);\r\n    // Add 2^23 to the fraction if exponent is not -127\r\n    if (exponent != -127) {\r\n      fraction |= 0x800000;\r\n    } else if (exponent == 128) {\r\n      revert(\r\n        string(abi.encodePacked(\r\n          \"WitnetBuffer.readFloat32: \",\r\n          sign != 0 ? \"negative\" : hex\"\",\r\n          \" infinity\"\r\n        ))\r\n      );\r\n    }\r\n    // Compute `2 ^ exponent · (1 + fraction / 2^23)`\r\n    if (exponent >= 0) {\r\n      result = (\r\n        int(1 << uint(exponent))\r\n          * (10 ** 9)\r\n          * fraction\r\n      ) >> 23;\r\n    } else {\r\n      result = (\r\n        fraction \r\n          * (10 ** 9)\r\n          / int(1 << uint(-exponent)) \r\n      ) >> 23;\r\n    }\r\n    // Make the result negative if the sign bit is not 0\r\n    if (sign != 0) {\r\n      result *= -1;\r\n    }\r\n  }\r\n\r\n  /// @notice Consume the next 8 bytes from the buffer as an IEEE 754-2008 floating point number enclosed into an `int`.\r\n  /// @dev Due to the lack of support for floating or fixed point arithmetic in the EVM, this method offsets all values\r\n  /// by 15 decimal orders so as to get a fixed precision of 15 decimal positions, which should be OK for most `float64`\r\n  /// use cases. In other words, the integer output of this method is 10^15 times the actual value. The input bytes are\r\n  /// expected to follow the 64-bit base-2 format (a.k.a. `binary64`) in the IEEE 754-2008 standard.\r\n  /// @param buffer An instance of `Buffer`.\r\n  /// @return result The `int` value of the next 8 bytes in the buffer counting from the cursor position.\r\n  function readFloat64(Buffer memory buffer)\r\n    internal pure\r\n    returns (int result)\r\n  {\r\n    uint value = readUint64(buffer);\r\n    // Get bit at position 0\r\n    uint sign = value & 0x8000000000000000;\r\n    // Get bits 1 to 12, then normalize to the [-1023, 1024] range so as to counterweight the IEEE 754 exponent bias\r\n    int exponent = (int(value & 0x7ff0000000000000) >> 52) - 1023;\r\n    // Get bits 6 to 15\r\n    int fraction = int(value & 0x000fffffffffffff);\r\n    // Add 2^52 to the fraction if exponent is not -1023\r\n    if (exponent != -1023) {\r\n      fraction |= 0x10000000000000;\r\n    } else if (exponent == 1024) {\r\n      revert(\r\n        string(abi.encodePacked(\r\n          \"WitnetBuffer.readFloat64: \",\r\n          sign != 0 ? \"negative\" : hex\"\",\r\n          \" infinity\"\r\n        ))\r\n      );\r\n    }\r\n    // Compute `2 ^ exponent · (1 + fraction / 1024)`\r\n    if (exponent >= 0) {\r\n      result = (\r\n        int(1 << uint(exponent))\r\n          * (10 ** 15)\r\n          * fraction\r\n      ) >> 52;\r\n    } else {\r\n      result = (\r\n        fraction \r\n          * (10 ** 15)\r\n          / int(1 << uint(-exponent)) \r\n      ) >> 52;\r\n    }\r\n    // Make the result negative if the sign bit is not 0\r\n    if (sign != 0) {\r\n      result *= -1;\r\n    }\r\n  }\r\n\r\n  // Read a text string of a given length from a buffer. Returns a `bytes memory` value for the sake of genericness,\r\n  /// but it can be easily casted into a string with `string(result)`.\r\n  // solium-disable-next-line security/no-assign-params\r\n  function readText(\r\n      WitnetBuffer.Buffer memory buffer,\r\n      uint64 length\r\n    )\r\n    internal pure\r\n    returns (bytes memory text)\r\n  {\r\n    text = new bytes(length);\r\n    unchecked {\r\n      for (uint64 index = 0; index < length; index ++) {\r\n        uint8 char = readUint8(buffer);\r\n        if (char & 0x80 != 0) {\r\n          if (char < 0xe0) {\r\n            char = (char & 0x1f) << 6\r\n              | (readUint8(buffer) & 0x3f);\r\n            length -= 1;\r\n          } else if (char < 0xf0) {\r\n            char  = (char & 0x0f) << 12\r\n              | (readUint8(buffer) & 0x3f) << 6\r\n              | (readUint8(buffer) & 0x3f);\r\n            length -= 2;\r\n          } else {\r\n            char = (char & 0x0f) << 18\r\n              | (readUint8(buffer) & 0x3f) << 12\r\n              | (readUint8(buffer) & 0x3f) << 6  \r\n              | (readUint8(buffer) & 0x3f);\r\n            length -= 3;\r\n          }\r\n        }\r\n        text[index] = bytes1(char);\r\n      }\r\n      // Adjust text to actual length:\r\n      assembly {\r\n        mstore(text, length)\r\n      }\r\n    }\r\n  }\r\n\r\n  /// @notice Read and consume the next byte from the buffer as an `uint8`.\r\n  /// @param buffer An instance of `Buffer`.\r\n  /// @return value The `uint8` value of the next byte in the buffer counting from the cursor position.\r\n  function readUint8(Buffer memory buffer)\r\n    internal pure\r\n    withinRange(buffer.cursor, buffer.data.length)\r\n    returns (uint8 value)\r\n  {\r\n    bytes memory data = buffer.data;\r\n    uint offset = buffer.cursor;\r\n    assembly {\r\n      value := mload(add(add(data, 1), offset))\r\n    }\r\n    buffer.cursor ++;\r\n  }\r\n\r\n  /// @notice Read and consume the next 2 bytes from the buffer as an `uint16`.\r\n  /// @param buffer An instance of `Buffer`.\r\n  /// @return value The `uint16` value of the next 2 bytes in the buffer counting from the cursor position.\r\n  function readUint16(Buffer memory buffer)\r\n    internal pure\r\n    withinRange(buffer.cursor + 2, buffer.data.length)\r\n    returns (uint16 value)\r\n  {\r\n    bytes memory data = buffer.data;\r\n    uint offset = buffer.cursor;\r\n    assembly {\r\n      value := mload(add(add(data, 2), offset))\r\n    }\r\n    buffer.cursor += 2;\r\n  }\r\n\r\n  /// @notice Read and consume the next 4 bytes from the buffer as an `uint32`.\r\n  /// @param buffer An instance of `Buffer`.\r\n  /// @return value The `uint32` value of the next 4 bytes in the buffer counting from the cursor position.\r\n  function readUint32(Buffer memory buffer)\r\n    internal pure\r\n    withinRange(buffer.cursor + 4, buffer.data.length)\r\n    returns (uint32 value)\r\n  {\r\n    bytes memory data = buffer.data;\r\n    uint offset = buffer.cursor;\r\n    assembly {\r\n      value := mload(add(add(data, 4), offset))\r\n    }\r\n    buffer.cursor += 4;\r\n  }\r\n\r\n  /// @notice Read and consume the next 8 bytes from the buffer as an `uint64`.\r\n  /// @param buffer An instance of `Buffer`.\r\n  /// @return value The `uint64` value of the next 8 bytes in the buffer counting from the cursor position.\r\n  function readUint64(Buffer memory buffer)\r\n    internal pure\r\n    withinRange(buffer.cursor + 8, buffer.data.length)\r\n    returns (uint64 value)\r\n  {\r\n    bytes memory data = buffer.data;\r\n    uint offset = buffer.cursor;\r\n    assembly {\r\n      value := mload(add(add(data, 8), offset))\r\n    }\r\n    buffer.cursor += 8;\r\n  }\r\n\r\n  /// @notice Read and consume the next 16 bytes from the buffer as an `uint128`.\r\n  /// @param buffer An instance of `Buffer`.\r\n  /// @return value The `uint128` value of the next 16 bytes in the buffer counting from the cursor position.\r\n  function readUint128(Buffer memory buffer)\r\n    internal pure\r\n    withinRange(buffer.cursor + 16, buffer.data.length)\r\n    returns (uint128 value)\r\n  {\r\n    bytes memory data = buffer.data;\r\n    uint offset = buffer.cursor;\r\n    assembly {\r\n      value := mload(add(add(data, 16), offset))\r\n    }\r\n    buffer.cursor += 16;\r\n  }\r\n\r\n  /// @notice Read and consume the next 32 bytes from the buffer as an `uint256`.\r\n  /// @param buffer An instance of `Buffer`.\r\n  /// @return value The `uint256` value of the next 32 bytes in the buffer counting from the cursor position.\r\n  function readUint256(Buffer memory buffer)\r\n    internal pure\r\n    withinRange(buffer.cursor + 32, buffer.data.length)\r\n    returns (uint256 value)\r\n  {\r\n    bytes memory data = buffer.data;\r\n    uint offset = buffer.cursor;\r\n    assembly {\r\n      value := mload(add(add(data, 32), offset))\r\n    }\r\n    buffer.cursor += 32;\r\n  }\r\n\r\n  /// @notice Count number of required parameters for given bytes arrays\r\n  /// @dev Wildcard format: \"\\#\\\", with # in [\"0\"..\"9\"].\r\n  /// @param input Bytes array containing strings.\r\n  /// @param count Highest wildcard index found, plus 1.\r\n  function argsCountOf(bytes memory input)\r\n    internal pure\r\n    returns (uint8 count)\r\n  {\r\n    if (input.length < 3) {\r\n      return 0;\r\n    }\r\n    unchecked {\r\n      uint ix = 0; \r\n      uint length = input.length - 2;\r\n      for (; ix < length; ) {\r\n        if (\r\n          input[ix] == bytes1(\"\\\\\")\r\n            && input[ix + 2] == bytes1(\"\\\\\")\r\n            && input[ix + 1] >= bytes1(\"0\")\r\n            && input[ix + 1] <= bytes1(\"9\")\r\n        ) {\r\n          uint8 ax = uint8(uint8(input[ix + 1]) - uint8(bytes1(\"0\")) + 1);\r\n          if (ax > count) {\r\n            count = ax;\r\n          }\r\n          ix += 3;\r\n        } else {\r\n          ix ++;\r\n        }\r\n      }\r\n    }\r\n  }\r\n\r\n  /// @notice Replace indexed bytes-wildcards by correspondent substrings.\r\n  /// @dev Wildcard format: \"\\#\\\", with # in [\"0\"..\"9\"].\r\n  /// @param input Bytes array containing strings.\r\n  /// @param args Array of substring values for replacing indexed wildcards.\r\n  /// @return output Resulting bytes array after replacing all wildcards.\r\n  /// @return hits Total number of replaced wildcards.\r\n  function replace(bytes memory input, string[] memory args)\r\n    internal pure\r\n    returns (bytes memory output, uint hits)\r\n  {\r\n    uint ix = 0; uint lix = 0;\r\n    uint inputLength;\r\n    uint inputPointer;\r\n    uint outputLength;\r\n    uint outputPointer;    \r\n    uint source;\r\n    uint sourceLength;\r\n    uint sourcePointer;\r\n\r\n    if (input.length < 3) {\r\n      return (input, 0);\r\n    }\r\n    \r\n    assembly {\r\n      // set starting input pointer\r\n      inputPointer := add(input, 32)\r\n      // get safe output location\r\n      output := mload(0x40)\r\n      // set starting output pointer\r\n      outputPointer := add(output, 32)\r\n    }         \r\n\r\n    unchecked {\r\n      uint length = input.length - 2;\r\n      for (; ix < length; ) {\r\n        if (\r\n          input[ix] == bytes1(\"\\\\\")\r\n            && input[ix + 2] == bytes1(\"\\\\\")\r\n            && input[ix + 1] >= bytes1(\"0\")\r\n            && input[ix + 1] <= bytes1(\"9\")\r\n        ) {\r\n          inputLength = (ix - lix);\r\n          if (ix > lix) {\r\n            memcpy(\r\n              outputPointer,\r\n              inputPointer,\r\n              inputLength\r\n            );\r\n            inputPointer += inputLength + 3;\r\n            outputPointer += inputLength;\r\n          } else {\r\n            inputPointer += 3;\r\n          }\r\n          uint ax = uint(uint8(input[ix + 1]) - uint8(bytes1(\"0\")));\r\n          if (ax >= args.length) {\r\n            revert MissingArgs(ax + 1, args.length);\r\n          }\r\n          assembly {\r\n            source := mload(add(args, mul(32, add(ax, 1))))\r\n            sourceLength := mload(source)\r\n            sourcePointer := add(source, 32)      \r\n          }        \r\n          memcpy(\r\n            outputPointer,\r\n            sourcePointer,\r\n            sourceLength\r\n          );\r\n          outputLength += inputLength + sourceLength;\r\n          outputPointer += sourceLength;\r\n          ix += 3;\r\n          lix = ix;\r\n          hits ++;\r\n        } else {\r\n          ix ++;\r\n        }\r\n      }\r\n      ix = input.length;    \r\n    }\r\n    if (outputLength > 0) {\r\n      if (ix > lix ) {\r\n        memcpy(\r\n          outputPointer,\r\n          inputPointer,\r\n          ix - lix\r\n        );\r\n        outputLength += (ix - lix);\r\n      }\r\n      assembly {\r\n        // set final output length\r\n        mstore(output, outputLength)\r\n        // protect output bytes\r\n        mstore(0x40, add(mload(0x40), add(outputLength, 32)))\r\n      }\r\n    }\r\n    else {\r\n      return (input, 0);\r\n    }\r\n  }\r\n\r\n  /// @notice Replace indexed bytes-wildcard by given substring.\r\n  /// @dev Wildcard format: \"\\#\\\", with # in [\"0\"..\"9\"].\r\n  /// @param input Bytes array containing strings.\r\n  /// @param argIndex Index of the wildcard to be replaced.\r\n  /// @param argValue Replacing substring to be used.\r\n  /// @return output Resulting bytes array after replacing all wildcards.\r\n  /// @return hits Total number of replaced wildcards.\r\n  function replace(bytes memory input, uint8 argIndex, string memory argValue)\r\n    internal pure\r\n    returns (bytes memory output, uint hits)\r\n  {\r\n    uint ix = 0; uint lix = 0;\r\n    uint inputLength;\r\n    uint inputPointer;\r\n    uint outputLength;\r\n    uint outputPointer; \r\n    uint argValueLength;\r\n    uint argValuePointer;\r\n\r\n    if (input.length < 3) {\r\n      return (input, 0);\r\n    }\r\n    \r\n    assembly {\r\n      // set starting input pointer\r\n      inputPointer := add(input, 32)\r\n      // get safe output location\r\n      output := mload(0x40)\r\n      // set starting output pointer\r\n      outputPointer := add(output, 32)\r\n      // set pointer to arg value substring\r\n      argValuePointer := add(argValue, 32)\r\n      // set arg value substring length\r\n      argValueLength := mload(argValue)\r\n    }         \r\n\r\n    unchecked {\r\n      uint length = input.length - 2;\r\n      for (; ix < length; ) {\r\n        if (\r\n          input[ix] == bytes1(\"\\\\\")\r\n            && input[ix + 2] == bytes1(\"\\\\\")\r\n            && input[ix + 1] >= bytes1(\"0\")\r\n            && input[ix + 1] <= bytes1(\"9\")\r\n            && uint8(input[ix + 1]) - uint8(bytes1(\"0\")) == argIndex\r\n        ) {\r\n          inputLength = (ix - lix);\r\n          if (ix > lix) {\r\n            memcpy(\r\n              outputPointer,\r\n              inputPointer,\r\n              inputLength\r\n            );\r\n            inputPointer += inputLength + 3;\r\n            outputPointer += inputLength;\r\n          } else {\r\n            inputPointer += 3;\r\n          }\r\n          memcpy(\r\n            outputPointer,\r\n            argValuePointer,\r\n            argValueLength\r\n          );\r\n          outputLength += inputLength + argValueLength;\r\n          outputPointer += argValueLength;\r\n          ix += 3;\r\n          lix = ix;\r\n          hits ++;\r\n        } else {\r\n          ix ++;\r\n        }\r\n      }\r\n      ix = input.length;    \r\n    }\r\n    if (outputLength > 0) {\r\n      if (ix > lix ) {\r\n        memcpy(\r\n          outputPointer,\r\n          inputPointer,\r\n          ix - lix\r\n        );\r\n        outputLength += (ix - lix);\r\n      }\r\n      assembly {\r\n        // set final output length\r\n        mstore(output, outputLength)\r\n        // protect output bytes\r\n        mstore(0x40, add(mload(0x40), add(outputLength, 32)))\r\n      }\r\n    }\r\n    else {\r\n      return (input, 0);\r\n    }\r\n  }\r\n\r\n  /// @notice Replace indexed string wildcards by correspondent substrings.\r\n  /// @dev Wildcard format: \"\\#\\\", with # in [\"0\"..\"9\"].\r\n  /// @param input String potentially containing wildcards.\r\n  /// @param args Array of substring values for replacing indexed wildcards.\r\n  /// @return output Resulting string after replacing all wildcards.\r\n  function replace(string memory input, string[] memory args)\r\n    internal pure\r\n    returns (string memory)\r\n  {\r\n    (bytes memory _outputBytes, ) = replace(bytes(input), args);\r\n    return string(_outputBytes);\r\n  }\r\n\r\n  /// @notice Replace last indexed wildcard by given substring.\r\n  /// @dev Wildcard format: \"\\#\\\", with # in [\"0\"..\"9\"].\r\n  /// @param input String potentially containing wildcards.\r\n  /// @param argIndex Index of the wildcard to be replaced.\r\n  /// @param argValue Replacing string to be used.\r\n  /// @return output Resulting string after replacing all wildcards.\r\n  function replace(string memory input, uint8 argIndex, string memory argValue)\r\n    internal pure\r\n    returns (string memory)\r\n  {\r\n    (bytes memory _outputBytes, ) = replace(bytes(input), argIndex, argValue);\r\n    return string(_outputBytes);\r\n  }\r\n\r\n  /// @notice Move the inner cursor of the buffer to a relative or absolute position.\r\n  /// @param buffer An instance of `Buffer`.\r\n  /// @param offset How many bytes to move the cursor forward.\r\n  /// @param relative Whether to count `offset` from the last position of the cursor (`true`) or the beginning of the\r\n  /// buffer (`true`).\r\n  /// @return The final position of the cursor (will equal `offset` if `relative` is `false`).\r\n  // solium-disable-next-line security/no-assign-params\r\n  function seek(\r\n      Buffer memory buffer,\r\n      uint offset,\r\n      bool relative\r\n    )\r\n    internal pure\r\n    withinRange(offset, buffer.data.length)\r\n    returns (uint)\r\n  {\r\n    // Deal with relative offsets\r\n    if (relative) {\r\n      offset += buffer.cursor;\r\n    }\r\n    buffer.cursor = offset;\r\n    return offset;\r\n  }\r\n\r\n  /// @notice Move the inner cursor a number of bytes forward.\r\n  /// @dev This is a simple wrapper around the relative offset case of `seek()`.\r\n  /// @param buffer An instance of `Buffer`.\r\n  /// @param relativeOffset How many bytes to move the cursor forward.\r\n  /// @return The final position of the cursor.\r\n  function seek(\r\n      Buffer memory buffer,\r\n      uint relativeOffset\r\n    )\r\n    internal pure\r\n    returns (uint)\r\n  {\r\n    return seek(\r\n      buffer,\r\n      relativeOffset,\r\n      true\r\n    );\r\n  }\r\n\r\n  /// @notice Copy bytes from one memory address into another.\r\n  /// @dev This function was borrowed from Nick Johnson's `solidity-stringutils` lib, and reproduced here under the terms\r\n  /// of [Apache License 2.0](https://github.com/Arachnid/solidity-stringutils/blob/master/LICENSE).\r\n  /// @param dest Address of the destination memory.\r\n  /// @param src Address to the source memory.\r\n  /// @param len How many bytes to copy.\r\n  // solium-disable-next-line security/no-assign-params\r\n  function memcpy(\r\n      uint dest,\r\n      uint src,\r\n      uint len\r\n    )\r\n    private pure\r\n  {\r\n    unchecked {\r\n      // Copy word-length chunks while possible\r\n      for (; len >= 32; len -= 32) {\r\n        assembly {\r\n          mstore(dest, mload(src))\r\n        }\r\n        dest += 32;\r\n        src += 32;\r\n      }\r\n      if (len > 0) {\r\n        // Copy remaining bytes\r\n        uint _mask = 256 ** (32 - len) - 1;\r\n        assembly {\r\n          let srcpart := and(mload(src), not(_mask))\r\n          let destpart := and(mload(dest), _mask)\r\n          mstore(dest, or(destpart, srcpart))\r\n        }\r\n      }\r\n    }\r\n  }\r\n\r\n}"},"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.0 <0.9.0;\r\n\r\nimport \"./WitnetBuffer.sol\";\r\n\r\n/// @title A minimalistic implementation of “RFC 7049 Concise Binary Object Representation”\r\n/// @notice This library leverages a buffer-like structure for step-by-step decoding of bytes so as to minimize\r\n/// the gas cost of decoding them into a useful native type.\r\n/// @dev Most of the logic has been borrowed from Patrick Gansterer’s cbor.js library: https://github.com/paroga/cbor-js\r\n/// @author The Witnet Foundation.\r\n\r\nlibrary WitnetCBOR {\r\n\r\n  using WitnetBuffer for WitnetBuffer.Buffer;\r\n  using WitnetCBOR for WitnetCBOR.CBOR;\r\n\r\n  /// Data struct following the RFC-7049 standard: Concise Binary Object Representation.\r\n  struct CBOR {\r\n      WitnetBuffer.Buffer buffer;\r\n      uint8 initialByte;\r\n      uint8 majorType;\r\n      uint8 additionalInformation;\r\n      uint64 len;\r\n      uint64 tag;\r\n  }\r\n\r\n  uint8 internal constant MAJOR_TYPE_INT = 0;\r\n  uint8 internal constant MAJOR_TYPE_NEGATIVE_INT = 1;\r\n  uint8 internal constant MAJOR_TYPE_BYTES = 2;\r\n  uint8 internal constant MAJOR_TYPE_STRING = 3;\r\n  uint8 internal constant MAJOR_TYPE_ARRAY = 4;\r\n  uint8 internal constant MAJOR_TYPE_MAP = 5;\r\n  uint8 internal constant MAJOR_TYPE_TAG = 6;\r\n  uint8 internal constant MAJOR_TYPE_CONTENT_FREE = 7;\r\n\r\n  uint32 internal constant UINT32_MAX = type(uint32).max;\r\n  uint64 internal constant UINT64_MAX = type(uint64).max;\r\n  \r\n  error EmptyArray();\r\n  error InvalidLengthEncoding(uint length);\r\n  error UnexpectedMajorType(uint read, uint expected);\r\n  error UnsupportedPrimitive(uint primitive);\r\n  error UnsupportedMajorType(uint unexpected);  \r\n\r\n  modifier isMajorType(\r\n      WitnetCBOR.CBOR memory cbor,\r\n      uint8 expected\r\n  ) {\r\n    if (cbor.majorType != expected) {\r\n      revert UnexpectedMajorType(cbor.majorType, expected);\r\n    }\r\n    _;\r\n  }\r\n\r\n  modifier notEmpty(WitnetBuffer.Buffer memory buffer) {\r\n    if (buffer.data.length == 0) {\r\n      revert WitnetBuffer.EmptyBuffer();\r\n    }\r\n    _;\r\n  }\r\n\r\n  function eof(CBOR memory cbor)\r\n    internal pure\r\n    returns (bool)\r\n  {\r\n    return cbor.buffer.cursor >= cbor.buffer.data.length;\r\n  }\r\n\r\n  /// @notice Decode a CBOR structure from raw bytes.\r\n  /// @dev This is the main factory for CBOR instances, which can be later decoded into native EVM types.\r\n  /// @param bytecode Raw bytes representing a CBOR-encoded value.\r\n  /// @return A `CBOR` instance containing a partially decoded value.\r\n  function fromBytes(bytes memory bytecode)\r\n    internal pure\r\n    returns (CBOR memory)\r\n  {\r\n    WitnetBuffer.Buffer memory buffer = WitnetBuffer.Buffer(bytecode, 0);\r\n    return fromBuffer(buffer);\r\n  }\r\n\r\n  /// @notice Decode a CBOR structure from raw bytes.\r\n  /// @dev This is an alternate factory for CBOR instances, which can be later decoded into native EVM types.\r\n  /// @param buffer A Buffer structure representing a CBOR-encoded value.\r\n  /// @return A `CBOR` instance containing a partially decoded value.\r\n  function fromBuffer(WitnetBuffer.Buffer memory buffer)\r\n    internal pure\r\n    notEmpty(buffer)\r\n    returns (CBOR memory)\r\n  {\r\n    uint8 initialByte;\r\n    uint8 majorType = 255;\r\n    uint8 additionalInformation;\r\n    uint64 tag = UINT64_MAX;\r\n    uint256 len;\r\n    bool isTagged = true;\r\n    while (isTagged) {\r\n      // Extract basic CBOR properties from input bytes\r\n      initialByte = buffer.readUint8();\r\n      len ++;\r\n      majorType = initialByte >> 5;\r\n      additionalInformation = initialByte & 0x1f;\r\n      // Early CBOR tag parsing.\r\n      if (majorType == MAJOR_TYPE_TAG) {\r\n        uint _cursor = buffer.cursor;\r\n        tag = readLength(buffer, additionalInformation);\r\n        len += buffer.cursor - _cursor;\r\n      } else {\r\n        isTagged = false;\r\n      }\r\n    }\r\n    if (majorType > MAJOR_TYPE_CONTENT_FREE) {\r\n      revert UnsupportedMajorType(majorType);\r\n    }\r\n    return CBOR(\r\n      buffer,\r\n      initialByte,\r\n      majorType,\r\n      additionalInformation,\r\n      uint64(len),\r\n      tag\r\n    );\r\n  }\r\n\r\n  function fork(WitnetCBOR.CBOR memory self)\r\n    internal pure\r\n    returns (WitnetCBOR.CBOR memory)\r\n  {\r\n    return CBOR({\r\n      buffer: self.buffer.fork(),\r\n      initialByte: self.initialByte,\r\n      majorType: self.majorType,\r\n      additionalInformation: self.additionalInformation,\r\n      len: self.len,\r\n      tag: self.tag\r\n    });\r\n  }\r\n\r\n  function settle(CBOR memory self)\r\n      internal pure\r\n      returns (WitnetCBOR.CBOR memory)\r\n  {\r\n    if (!self.eof()) {\r\n      return fromBuffer(self.buffer);\r\n    } else {\r\n      return self;\r\n    }\r\n  }\r\n\r\n  function skip(CBOR memory self)\r\n      internal pure\r\n      returns (WitnetCBOR.CBOR memory)\r\n  {\r\n    if (\r\n      self.majorType == MAJOR_TYPE_INT\r\n        || self.majorType == MAJOR_TYPE_NEGATIVE_INT\r\n        || (\r\n          self.majorType == MAJOR_TYPE_CONTENT_FREE \r\n            && self.additionalInformation >= 25\r\n            && self.additionalInformation <= 27\r\n        )\r\n    ) {\r\n      self.buffer.cursor += self.peekLength();\r\n    } else if (\r\n        self.majorType == MAJOR_TYPE_STRING\r\n          || self.majorType == MAJOR_TYPE_BYTES\r\n    ) {\r\n      uint64 len = readLength(self.buffer, self.additionalInformation);\r\n      self.buffer.cursor += len;\r\n    } else if (\r\n      self.majorType == MAJOR_TYPE_ARRAY\r\n        || self.majorType == MAJOR_TYPE_MAP\r\n    ) { \r\n      self.len = readLength(self.buffer, self.additionalInformation);      \r\n    } else if (\r\n       self.majorType != MAJOR_TYPE_CONTENT_FREE\r\n        || (\r\n          self.additionalInformation != 20\r\n            && self.additionalInformation != 21\r\n        )\r\n    ) {\r\n      revert(\"WitnetCBOR.skip: unsupported major type\");\r\n    }\r\n    return self;\r\n  }\r\n\r\n  function peekLength(CBOR memory self)\r\n    internal pure\r\n    returns (uint64)\r\n  {\r\n    if (self.additionalInformation < 24) {\r\n      return 0;\r\n    } else if (self.additionalInformation < 28) {\r\n      return uint64(1 << (self.additionalInformation - 24));\r\n    } else {\r\n      revert InvalidLengthEncoding(self.additionalInformation);\r\n    }\r\n  }\r\n\r\n  function readArray(CBOR memory self)\r\n    internal pure\r\n    isMajorType(self, MAJOR_TYPE_ARRAY)\r\n    returns (CBOR[] memory items)\r\n  {\r\n    // read array's length and move self cursor forward to the first array element:\r\n    uint64 len = readLength(self.buffer, self.additionalInformation);\r\n    items = new CBOR[](len + 1);\r\n    for (uint ix = 0; ix < len; ix ++) {\r\n      // settle next element in the array:\r\n      self = self.settle();\r\n      // fork it and added to the list of items to be returned:\r\n      items[ix] = self.fork();\r\n      if (self.majorType == MAJOR_TYPE_ARRAY) {\r\n        CBOR[] memory _subitems = self.readArray();\r\n        // move forward to the first element after inner array:\r\n        self = _subitems[_subitems.length - 1];\r\n      } else if (self.majorType == MAJOR_TYPE_MAP) {\r\n        CBOR[] memory _subitems = self.readMap();\r\n        // move forward to the first element after inner map:\r\n        self = _subitems[_subitems.length - 1];\r\n      } else {\r\n        // move forward to the next element:\r\n        self.skip();\r\n      }\r\n    }\r\n    // return self cursor as extra item at the end of the list,\r\n    // as to optimize recursion when jumping over nested arrays:\r\n    items[len] = self;\r\n  }\r\n\r\n  function readMap(CBOR memory self)\r\n    internal pure\r\n    isMajorType(self, MAJOR_TYPE_MAP)\r\n    returns (CBOR[] memory items)\r\n  {\r\n    // read number of items within the map and move self cursor forward to the first inner element:\r\n    uint64 len = readLength(self.buffer, self.additionalInformation) * 2;\r\n    items = new CBOR[](len + 1);\r\n    for (uint ix = 0; ix < len; ix ++) {\r\n      // settle next element in the array:\r\n      self = self.settle();\r\n      // fork it and added to the list of items to be returned:\r\n      items[ix] = self.fork();\r\n      if (ix % 2 == 0 && self.majorType != MAJOR_TYPE_STRING) {\r\n        revert UnexpectedMajorType(self.majorType, MAJOR_TYPE_STRING);\r\n      } else if (self.majorType == MAJOR_TYPE_ARRAY || self.majorType == MAJOR_TYPE_MAP) {\r\n        CBOR[] memory _subitems = (self.majorType == MAJOR_TYPE_ARRAY\r\n            ? self.readArray()\r\n            : self.readMap()\r\n        );\r\n        // move forward to the first element after inner array or map:\r\n        self = _subitems[_subitems.length - 1];\r\n      } else {\r\n        // move forward to the next element:\r\n        self.skip();\r\n      }\r\n    }\r\n    // return self cursor as extra item at the end of the list,\r\n    // as to optimize recursion when jumping over nested arrays:\r\n    items[len] = self;\r\n  }\r\n\r\n  /// Reads the length of the settle CBOR item from a buffer, consuming a different number of bytes depending on the\r\n  /// value of the `additionalInformation` argument.\r\n  function readLength(\r\n      WitnetBuffer.Buffer memory buffer,\r\n      uint8 additionalInformation\r\n    ) \r\n    internal pure\r\n    returns (uint64)\r\n  {\r\n    if (additionalInformation < 24) {\r\n      return additionalInformation;\r\n    }\r\n    if (additionalInformation == 24) {\r\n      return buffer.readUint8();\r\n    }\r\n    if (additionalInformation == 25) {\r\n      return buffer.readUint16();\r\n    }\r\n    if (additionalInformation == 26) {\r\n      return buffer.readUint32();\r\n    }\r\n    if (additionalInformation == 27) {\r\n      return buffer.readUint64();\r\n    }\r\n    if (additionalInformation == 31) {\r\n      return UINT64_MAX;\r\n    }\r\n    revert InvalidLengthEncoding(additionalInformation);\r\n  }\r\n\r\n  /// @notice Read a `CBOR` structure into a native `bool` value.\r\n  /// @param cbor An instance of `CBOR`.\r\n  /// @return The value represented by the input, as a `bool` value.\r\n  function readBool(CBOR memory cbor)\r\n    internal pure\r\n    isMajorType(cbor, MAJOR_TYPE_CONTENT_FREE)\r\n    returns (bool)\r\n  {\r\n    if (cbor.additionalInformation == 20) {\r\n      return false;\r\n    } else if (cbor.additionalInformation == 21) {\r\n      return true;\r\n    } else {\r\n      revert UnsupportedPrimitive(cbor.additionalInformation);\r\n    }\r\n  }\r\n\r\n  /// @notice Decode a `CBOR` structure into a native `bytes` value.\r\n  /// @param cbor An instance of `CBOR`.\r\n  /// @return output The value represented by the input, as a `bytes` value.   \r\n  function readBytes(CBOR memory cbor)\r\n    internal pure\r\n    isMajorType(cbor, MAJOR_TYPE_BYTES)\r\n    returns (bytes memory output)\r\n  {\r\n    cbor.len = readLength(\r\n      cbor.buffer,\r\n      cbor.additionalInformation\r\n    );\r\n    if (cbor.len == UINT32_MAX) {\r\n      // These checks look repetitive but the equivalent loop would be more expensive.\r\n      uint32 length = uint32(_readIndefiniteStringLength(\r\n        cbor.buffer,\r\n        cbor.majorType\r\n      ));\r\n      if (length < UINT32_MAX) {\r\n        output = abi.encodePacked(cbor.buffer.read(length));\r\n        length = uint32(_readIndefiniteStringLength(\r\n          cbor.buffer,\r\n          cbor.majorType\r\n        ));\r\n        if (length < UINT32_MAX) {\r\n          output = abi.encodePacked(\r\n            output,\r\n            cbor.buffer.read(length)\r\n          );\r\n        }\r\n      }\r\n    } else {\r\n      return cbor.buffer.read(uint32(cbor.len));\r\n    }\r\n  }\r\n\r\n  /// @notice Decode a `CBOR` structure into a `fixed16` value.\r\n  /// @dev Due to the lack of support for floating or fixed point arithmetic in the EVM, this method offsets all values\r\n  /// by 5 decimal orders so as to get a fixed precision of 5 decimal positions, which should be OK for most `fixed16`\r\n  /// use cases. In other words, the output of this method is 10,000 times the actual value, encoded into an `int32`.\r\n  /// @param cbor An instance of `CBOR`.\r\n  /// @return The value represented by the input, as an `int128` value.\r\n  function readFloat16(CBOR memory cbor)\r\n    internal pure\r\n    isMajorType(cbor, MAJOR_TYPE_CONTENT_FREE)\r\n    returns (int32)\r\n  {\r\n    if (cbor.additionalInformation == 25) {\r\n      return cbor.buffer.readFloat16();\r\n    } else {\r\n      revert UnsupportedPrimitive(cbor.additionalInformation);\r\n    }\r\n  }\r\n\r\n  /// @notice Decode a `CBOR` structure into a `fixed32` value.\r\n  /// @dev Due to the lack of support for floating or fixed point arithmetic in the EVM, this method offsets all values\r\n  /// by 9 decimal orders so as to get a fixed precision of 9 decimal positions, which should be OK for most `fixed64`\r\n  /// use cases. In other words, the output of this method is 10^9 times the actual value, encoded into an `int`.\r\n  /// @param cbor An instance of `CBOR`.\r\n  /// @return The value represented by the input, as an `int` value.\r\n  function readFloat32(CBOR memory cbor)\r\n    internal pure\r\n    isMajorType(cbor, MAJOR_TYPE_CONTENT_FREE)\r\n    returns (int)\r\n  {\r\n    if (cbor.additionalInformation == 26) {\r\n      return cbor.buffer.readFloat32();\r\n    } else {\r\n      revert UnsupportedPrimitive(cbor.additionalInformation);\r\n    }\r\n  }\r\n\r\n  /// @notice Decode a `CBOR` structure into a `fixed64` value.\r\n  /// @dev Due to the lack of support for floating or fixed point arithmetic in the EVM, this method offsets all values\r\n  /// by 15 decimal orders so as to get a fixed precision of 15 decimal positions, which should be OK for most `fixed64`\r\n  /// use cases. In other words, the output of this method is 10^15 times the actual value, encoded into an `int`.\r\n  /// @param cbor An instance of `CBOR`.\r\n  /// @return The value represented by the input, as an `int` value.\r\n  function readFloat64(CBOR memory cbor)\r\n    internal pure\r\n    isMajorType(cbor, MAJOR_TYPE_CONTENT_FREE)\r\n    returns (int)\r\n  {\r\n    if (cbor.additionalInformation == 27) {\r\n      return cbor.buffer.readFloat64();\r\n    } else {\r\n      revert UnsupportedPrimitive(cbor.additionalInformation);\r\n    }\r\n  }\r\n\r\n  /// @notice Decode a `CBOR` structure into a native `int128[]` value whose inner values follow the same convention \r\n  /// @notice as explained in `decodeFixed16`.\r\n  /// @param cbor An instance of `CBOR`.\r\n  function readFloat16Array(CBOR memory cbor)\r\n    internal pure\r\n    isMajorType(cbor, MAJOR_TYPE_ARRAY)\r\n    returns (int32[] memory values)\r\n  {\r\n    uint64 length = readLength(cbor.buffer, cbor.additionalInformation);\r\n    if (length < UINT64_MAX) {\r\n      values = new int32[](length);\r\n      for (uint64 i = 0; i < length; ) {\r\n        CBOR memory item = fromBuffer(cbor.buffer);\r\n        values[i] = readFloat16(item);\r\n        unchecked {\r\n          i ++;\r\n        }\r\n      }\r\n    } else {\r\n      revert InvalidLengthEncoding(length);\r\n    }\r\n  }\r\n\r\n  /// @notice Decode a `CBOR` structure into a native `int128` value.\r\n  /// @param cbor An instance of `CBOR`.\r\n  /// @return The value represented by the input, as an `int128` value.\r\n  function readInt(CBOR memory cbor)\r\n    internal pure\r\n    returns (int64)\r\n  {\r\n    if (cbor.majorType == 1) {\r\n      uint64 _value = readLength(\r\n        cbor.buffer,\r\n        cbor.additionalInformation\r\n      );\r\n      return int64(-1) - int64(uint64(_value));\r\n    } else if (cbor.majorType == 0) {\r\n      // Any `uint64` can be safely casted to `int128`, so this method supports majorType 1 as well so as to have offer\r\n      // a uniform API for positive and negative numbers\r\n      return int64(readUint(cbor));\r\n    }\r\n    else {\r\n      revert UnexpectedMajorType(cbor.majorType, 1);\r\n    }\r\n  }\r\n\r\n  /// @notice Decode a `CBOR` structure into a native `int[]` value.\r\n  /// @param cbor instance of `CBOR`.\r\n  /// @return array The value represented by the input, as an `int[]` value.\r\n  function readIntArray(CBOR memory cbor)\r\n    internal pure\r\n    isMajorType(cbor, MAJOR_TYPE_ARRAY)\r\n    returns (int64[] memory array)\r\n  {\r\n    uint64 length = readLength(cbor.buffer, cbor.additionalInformation);\r\n    if (length < UINT64_MAX) {\r\n      array = new int64[](length);\r\n      for (uint i = 0; i < length; ) {\r\n        CBOR memory item = fromBuffer(cbor.buffer);\r\n        array[i] = readInt(item);\r\n        unchecked {\r\n          i ++;\r\n        }\r\n      }\r\n    } else {\r\n      revert InvalidLengthEncoding(length);\r\n    }\r\n  }\r\n\r\n  /// @notice Decode a `CBOR` structure into a native `string` value.\r\n  /// @param cbor An instance of `CBOR`.\r\n  /// @return text The value represented by the input, as a `string` value.\r\n  function readString(CBOR memory cbor)\r\n    internal pure\r\n    isMajorType(cbor, MAJOR_TYPE_STRING)\r\n    returns (string memory text)\r\n  {\r\n    cbor.len = readLength(cbor.buffer, cbor.additionalInformation);\r\n    if (cbor.len == UINT64_MAX) {\r\n      bool _done;\r\n      while (!_done) {\r\n        uint64 length = _readIndefiniteStringLength(\r\n          cbor.buffer,\r\n          cbor.majorType\r\n        );\r\n        if (length < UINT64_MAX) {\r\n          text = string(abi.encodePacked(\r\n            text,\r\n            cbor.buffer.readText(length / 4)\r\n          ));\r\n        } else {\r\n          _done = true;\r\n        }\r\n      }\r\n    } else {\r\n      return string(cbor.buffer.readText(cbor.len));\r\n    }\r\n  }\r\n\r\n  /// @notice Decode a `CBOR` structure into a native `string[]` value.\r\n  /// @param cbor An instance of `CBOR`.\r\n  /// @return strings The value represented by the input, as an `string[]` value.\r\n  function readStringArray(CBOR memory cbor)\r\n    internal pure\r\n    isMajorType(cbor, MAJOR_TYPE_ARRAY)\r\n    returns (string[] memory strings)\r\n  {\r\n    uint length = readLength(cbor.buffer, cbor.additionalInformation);\r\n    if (length < UINT64_MAX) {\r\n      strings = new string[](length);\r\n      for (uint i = 0; i < length; ) {\r\n        CBOR memory item = fromBuffer(cbor.buffer);\r\n        strings[i] = readString(item);\r\n        unchecked {\r\n          i ++;\r\n        }\r\n      }\r\n    } else {\r\n      revert InvalidLengthEncoding(length);\r\n    }\r\n  }\r\n\r\n  /// @notice Decode a `CBOR` structure into a native `uint64` value.\r\n  /// @param cbor An instance of `CBOR`.\r\n  /// @return The value represented by the input, as an `uint64` value.\r\n  function readUint(CBOR memory cbor)\r\n    internal pure\r\n    isMajorType(cbor, MAJOR_TYPE_INT)\r\n    returns (uint64)\r\n  {\r\n    return readLength(\r\n      cbor.buffer,\r\n      cbor.additionalInformation\r\n    );\r\n  }\r\n\r\n  /// @notice Decode a `CBOR` structure into a native `uint64[]` value.\r\n  /// @param cbor An instance of `CBOR`.\r\n  /// @return values The value represented by the input, as an `uint64[]` value.\r\n  function readUintArray(CBOR memory cbor)\r\n    internal pure\r\n    isMajorType(cbor, MAJOR_TYPE_ARRAY)\r\n    returns (uint64[] memory values)\r\n  {\r\n    uint64 length = readLength(cbor.buffer, cbor.additionalInformation);\r\n    if (length < UINT64_MAX) {\r\n      values = new uint64[](length);\r\n      for (uint ix = 0; ix < length; ) {\r\n        CBOR memory item = fromBuffer(cbor.buffer);\r\n        values[ix] = readUint(item);\r\n        unchecked {\r\n          ix ++;\r\n        }\r\n      }\r\n    } else {\r\n      revert InvalidLengthEncoding(length);\r\n    }\r\n  }  \r\n\r\n  /// Read the length of a CBOR indifinite-length item (arrays, maps, byte strings and text) from a buffer, consuming\r\n  /// as many bytes as specified by the first byte.\r\n  function _readIndefiniteStringLength(\r\n      WitnetBuffer.Buffer memory buffer,\r\n      uint8 majorType\r\n    )\r\n    private pure\r\n    returns (uint64 len)\r\n  {\r\n    uint8 initialByte = buffer.readUint8();\r\n    if (initialByte == 0xff) {\r\n      return UINT64_MAX;\r\n    }\r\n    len = readLength(\r\n      buffer,\r\n      initialByte & 0x1f\r\n    );\r\n    if (len >= UINT64_MAX) {\r\n      revert InvalidLengthEncoding(len);\r\n    } else if (majorType != (initialByte >> 5)) {\r\n      revert UnexpectedMajorType((initialByte >> 5), majorType);\r\n    }\r\n  }\r\n \r\n}"},"witnet-solidity-bridge/contracts/WitOracle.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.0 <0.9.0;\r\n\r\nimport \"./interfaces/IWitOracle.sol\";\r\nimport \"./interfaces/IWitOracleAppliance.sol\";\r\nimport \"./interfaces/IWitOracleQueriable.sol\";\r\nimport \"./interfaces/IWitOracleQueriableEvents.sol\";\r\n\r\n/// @title Witnet Request Board functionality base contract.\r\n/// @author The Witnet Foundation.\r\nabstract contract WitOracle\r\n    is\r\n        IWitAppliance,\r\n        IWitOracle,\r\n        IWitOracleQueriable,\r\n        IWitOracleQueriableEvents\r\n{\r\n    function specs() virtual override external pure returns (bytes4) {\r\n        return (\r\n            type(IWitOracle).interfaceId\r\n                ^ type(IWitOracleQueriable).interfaceId\r\n        );\r\n    }\r\n}\r\n"},"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol":{"content":"// SPDX-License-Identifier: MIT\r\n\r\npragma solidity >=0.8.0 <0.9.0;\r\n\r\nimport \"./interfaces/IWitOracleAppliance.sol\";\r\nimport \"./interfaces/IWitOracleRadonRegistryEvents.sol\";\r\nimport \"./interfaces/IWitOracleRadonRequestFactory.sol\";\r\n\r\nabstract contract WitOracleRadonRequestFactory\r\n    is\r\n        IWitOracleAppliance, \r\n        IWitOracleRadonRegistryEvents,\r\n        IWitOracleRadonRequestFactory\r\n{\r\n    function specs() virtual override external pure returns (bytes4) {\r\n        return (\r\n            type(WitOracleRadonRequestFactory).interfaceId\r\n        );\r\n    }\r\n}\r\n"}},"settings":{"evmVersion":"paris","optimizer":{"enabled":true,"runs":200},"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"],"":["ast"]}}}},"output":{"sources":{"@openzeppelin/community-contracts/contracts/interfaces/IERC7802.sol":{"ast":{"absolutePath":"@openzeppelin/community-contracts/contracts/interfaces/IERC7802.sol","exportedSymbols":{"IERC165":[4209],"IERC7802":[41]},"id":42,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"32:24:0"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"@openzeppelin/contracts/utils/introspection/IERC165.sol","id":3,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":42,"sourceUnit":4210,"src":"58:80:0","symbolAliases":[{"foreign":{"id":2,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4209,"src":"66:7:0","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":5,"name":"IERC165","nameLocations":["248:7:0"],"nodeType":"IdentifierPath","referencedDeclaration":4209,"src":"248:7:0"},"id":6,"nodeType":"InheritanceSpecifier","src":"248:7:0"}],"canonicalName":"IERC7802","contractDependencies":[],"contractKind":"interface","documentation":{"id":4,"nodeType":"StructuredDocumentation","src":"140:86:0","text":"@title IERC7802\n @notice Defines the interface for crosschain ERC20 transfers."},"fullyImplemented":false,"id":41,"linearizedBaseContracts":[41,4209],"name":"IERC7802","nameLocation":"236:8:0","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":7,"nodeType":"StructuredDocumentation","src":"262:272:0","text":"@notice Emitted when a crosschain transfer mints tokens.\n @param to       Address of the account tokens are being minted for.\n @param amount   Amount of tokens minted.\n @param sender   Address of the caller (msg.sender) who invoked crosschainMint."},"eventSelector":"de22baff038e3a3e08407cbdf617deed74e869a7ba517df611e33131c6e6ea04","id":15,"name":"CrosschainMint","nameLocation":"545:14:0","nodeType":"EventDefinition","parameters":{"id":14,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"576:2:0","nodeType":"VariableDeclaration","scope":15,"src":"560:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8,"name":"address","nodeType":"ElementaryTypeName","src":"560:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":11,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"588:6:0","nodeType":"VariableDeclaration","scope":15,"src":"580:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10,"name":"uint256","nodeType":"ElementaryTypeName","src":"580:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"612:6:0","nodeType":"VariableDeclaration","scope":15,"src":"596:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":12,"name":"address","nodeType":"ElementaryTypeName","src":"596:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"559:60:0"},"src":"539:81:0"},{"anonymous":false,"documentation":{"id":16,"nodeType":"StructuredDocumentation","src":"626:273:0","text":"@notice Emitted when a crosschain transfer burns tokens.\n @param from     Address of the account tokens are being burned from.\n @param amount   Amount of tokens burned.\n @param sender   Address of the caller (msg.sender) who invoked crosschainBurn."},"eventSelector":"b90795a66650155983e242cac3e1ac1a4dc26f8ed2987f3ce416a34e00111fd4","id":24,"name":"CrosschainBurn","nameLocation":"910:14:0","nodeType":"EventDefinition","parameters":{"id":23,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"941:4:0","nodeType":"VariableDeclaration","scope":24,"src":"925:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":17,"name":"address","nodeType":"ElementaryTypeName","src":"925:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":20,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"955:6:0","nodeType":"VariableDeclaration","scope":24,"src":"947:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19,"name":"uint256","nodeType":"ElementaryTypeName","src":"947:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":22,"indexed":true,"mutability":"mutable","name":"sender","nameLocation":"979:6:0","nodeType":"VariableDeclaration","scope":24,"src":"963:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":21,"name":"address","nodeType":"ElementaryTypeName","src":"963:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"924:62:0"},"src":"904:83:0"},{"documentation":{"id":25,"nodeType":"StructuredDocumentation","src":"993:153:0","text":"@notice Mint tokens through a crosschain transfer.\n @param _to     Address to mint tokens to.\n @param _amount Amount of tokens to mint."},"functionSelector":"18bf5077","id":32,"implemented":false,"kind":"function","modifiers":[],"name":"crosschainMint","nameLocation":"1160:14:0","nodeType":"FunctionDefinition","parameters":{"id":30,"nodeType":"ParameterList","parameters":[{"constant":false,"id":27,"mutability":"mutable","name":"_to","nameLocation":"1183:3:0","nodeType":"VariableDeclaration","scope":32,"src":"1175:11:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":26,"name":"address","nodeType":"ElementaryTypeName","src":"1175:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":29,"mutability":"mutable","name":"_amount","nameLocation":"1196:7:0","nodeType":"VariableDeclaration","scope":32,"src":"1188:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":28,"name":"uint256","nodeType":"ElementaryTypeName","src":"1188:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1174:30:0"},"returnParameters":{"id":31,"nodeType":"ParameterList","parameters":[],"src":"1213:0:0"},"scope":41,"src":"1151:63:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":33,"nodeType":"StructuredDocumentation","src":"1220:155:0","text":"@notice Burn tokens through a crosschain transfer.\n @param _from   Address to burn tokens from.\n @param _amount Amount of tokens to burn."},"functionSelector":"2b8c49e3","id":40,"implemented":false,"kind":"function","modifiers":[],"name":"crosschainBurn","nameLocation":"1389:14:0","nodeType":"FunctionDefinition","parameters":{"id":38,"nodeType":"ParameterList","parameters":[{"constant":false,"id":35,"mutability":"mutable","name":"_from","nameLocation":"1412:5:0","nodeType":"VariableDeclaration","scope":40,"src":"1404:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":34,"name":"address","nodeType":"ElementaryTypeName","src":"1404:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":37,"mutability":"mutable","name":"_amount","nameLocation":"1427:7:0","nodeType":"VariableDeclaration","scope":40,"src":"1419:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":36,"name":"uint256","nodeType":"ElementaryTypeName","src":"1419:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1403:32:0"},"returnParameters":{"id":39,"nodeType":"ParameterList","parameters":[],"src":"1444:0:0"},"scope":41,"src":"1380:65:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":42,"src":"226:1221:0","usedErrors":[],"usedEvents":[15,24]}],"src":"32:1416:0"},"id":0},"@openzeppelin/community-contracts/contracts/token/ERC20/extensions/ERC20Bridgeable.sol":{"ast":{"absolutePath":"@openzeppelin/community-contracts/contracts/token/ERC20/extensions/ERC20Bridgeable.sol","exportedSymbols":{"ERC165":[4197],"ERC20":[1325],"ERC20Bridgeable":[146],"IERC165":[4209],"IERC7802":[41]},"id":147,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":43,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"33:24:1"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":45,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":147,"sourceUnit":1326,"src":"59:68:1","symbolAliases":[{"foreign":{"id":44,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1325,"src":"67:5:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","file":"@openzeppelin/contracts/utils/introspection/ERC165.sol","id":48,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":147,"sourceUnit":4198,"src":"128:87:1","symbolAliases":[{"foreign":{"id":46,"name":"ERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4197,"src":"136:6:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":47,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4209,"src":"144:7:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/community-contracts/contracts/interfaces/IERC7802.sol","file":"../../../interfaces/IERC7802.sol","id":50,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":147,"sourceUnit":42,"src":"216:58:1","symbolAliases":[{"foreign":{"id":49,"name":"IERC7802","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":41,"src":"224:8:1","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":52,"name":"ERC20","nameLocations":["637:5:1"],"nodeType":"IdentifierPath","referencedDeclaration":1325,"src":"637:5:1"},"id":53,"nodeType":"InheritanceSpecifier","src":"637:5:1"},{"baseName":{"id":54,"name":"ERC165","nameLocations":["644:6:1"],"nodeType":"IdentifierPath","referencedDeclaration":4197,"src":"644:6:1"},"id":55,"nodeType":"InheritanceSpecifier","src":"644:6:1"},{"baseName":{"id":56,"name":"IERC7802","nameLocations":["652:8:1"],"nodeType":"IdentifierPath","referencedDeclaration":41,"src":"652:8:1"},"id":57,"nodeType":"InheritanceSpecifier","src":"652:8:1"}],"canonicalName":"ERC20Bridgeable","contractDependencies":[],"contractKind":"contract","documentation":{"id":51,"nodeType":"StructuredDocumentation","src":"276:323:1","text":" @dev ERC20 extension that implements the standard token interface according to\n https://eips.ethereum.org/EIPS/eip-7802[ERC-7802].\n NOTE: To implement a crosschain gateway for a chain, consider using an implementation if {IERC7786} token\n bridge (e.g. {AxelarGatewaySource}, {AxelarGatewayDestination})."},"fullyImplemented":false,"id":146,"linearizedBaseContracts":[146,41,4197,4209,1325,715,1583,1403,1649],"name":"ERC20Bridgeable","nameLocation":"618:15:1","nodeType":"ContractDefinition","nodes":[{"body":{"id":66,"nodeType":"Block","src":"756:237:1","statements":[{"expression":{"arguments":[{"expression":{"id":61,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"964:3:1","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":62,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"968:6:1","memberName":"sender","nodeType":"MemberAccess","src":"964:10:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":60,"name":"_checkTokenBridge","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":145,"src":"946:17:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":63,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"946:29:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":64,"nodeType":"ExpressionStatement","src":"946:29:1"},{"id":65,"nodeType":"PlaceholderStatement","src":"985:1:1"}]},"documentation":{"id":58,"nodeType":"StructuredDocumentation","src":"667:57:1","text":"@dev Modifier to restrict access to the token bridge."},"id":67,"name":"onlyTokenBridge","nameLocation":"738:15:1","nodeType":"ModifierDefinition","parameters":{"id":59,"nodeType":"ParameterList","parameters":[],"src":"753:2:1"},"src":"729:264:1","virtual":false,"visibility":"internal"},{"baseFunctions":[4196,4208],"body":{"id":90,"nodeType":"Block","src":"1134:105:1","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":88,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":83,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":78,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":70,"src":"1151:11:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":80,"name":"IERC7802","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":41,"src":"1171:8:1","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC7802_$41_$","typeString":"type(contract IERC7802)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC7802_$41_$","typeString":"type(contract IERC7802)"}],"id":79,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1166:4:1","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":81,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1166:14:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC7802_$41","typeString":"type(contract IERC7802)"}},"id":82,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1181:11:1","memberName":"interfaceId","nodeType":"MemberAccess","src":"1166:26:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"1151:41:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":86,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":70,"src":"1220:11:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"}],"expression":{"id":84,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"1196:5:1","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC20Bridgeable_$146_$","typeString":"type(contract super ERC20Bridgeable)"}},"id":85,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1202:17:1","memberName":"supportsInterface","nodeType":"MemberAccess","referencedDeclaration":4196,"src":"1196:23:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes4_$returns$_t_bool_$","typeString":"function (bytes4) view returns (bool)"}},"id":87,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1196:36:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1151:81:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":77,"id":89,"nodeType":"Return","src":"1144:88:1"}]},"documentation":{"id":68,"nodeType":"StructuredDocumentation","src":"999:22:1","text":"@inheritdoc ERC165"},"functionSelector":"01ffc9a7","id":91,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"1035:17:1","nodeType":"FunctionDefinition","overrides":{"id":74,"nodeType":"OverrideSpecifier","overrides":[{"id":72,"name":"ERC165","nameLocations":["1102:6:1"],"nodeType":"IdentifierPath","referencedDeclaration":4197,"src":"1102:6:1"},{"id":73,"name":"IERC165","nameLocations":["1110:7:1"],"nodeType":"IdentifierPath","referencedDeclaration":4209,"src":"1110:7:1"}],"src":"1093:25:1"},"parameters":{"id":71,"nodeType":"ParameterList","parameters":[{"constant":false,"id":70,"mutability":"mutable","name":"interfaceId","nameLocation":"1060:11:1","nodeType":"VariableDeclaration","scope":91,"src":"1053:18:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":69,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1053:6:1","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1052:20:1"},"returnParameters":{"id":77,"nodeType":"ParameterList","parameters":[{"constant":false,"id":76,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":91,"src":"1128:4:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":75,"name":"bool","nodeType":"ElementaryTypeName","src":"1128:4:1","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1127:6:1"},"scope":146,"src":"1026:213:1","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[32],"body":{"id":114,"nodeType":"Block","src":"1427:87:1","statements":[{"expression":{"arguments":[{"id":103,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":94,"src":"1443:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":104,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":96,"src":"1447:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":102,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1165,"src":"1437:5:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":105,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1437:16:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":106,"nodeType":"ExpressionStatement","src":"1437:16:1"},{"eventCall":{"arguments":[{"id":108,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":94,"src":"1483:2:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":109,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":96,"src":"1487:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":110,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"1494:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":111,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1494:12:1","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"}],"id":107,"name":"CrosschainMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15,"src":"1468:14:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$__$","typeString":"function (address,uint256,address)"}},"id":112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1468:39:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":113,"nodeType":"EmitStatement","src":"1463:44:1"}]},"documentation":{"id":92,"nodeType":"StructuredDocumentation","src":"1245:86:1","text":" @dev See {IERC7802-crosschainMint}. Emits a {CrosschainMint} event."},"functionSelector":"18bf5077","id":115,"implemented":true,"kind":"function","modifiers":[{"id":100,"kind":"modifierInvocation","modifierName":{"id":99,"name":"onlyTokenBridge","nameLocations":["1411:15:1"],"nodeType":"IdentifierPath","referencedDeclaration":67,"src":"1411:15:1"},"nodeType":"ModifierInvocation","src":"1411:15:1"}],"name":"crosschainMint","nameLocation":"1345:14:1","nodeType":"FunctionDefinition","overrides":{"id":98,"nodeType":"OverrideSpecifier","overrides":[],"src":"1402:8:1"},"parameters":{"id":97,"nodeType":"ParameterList","parameters":[{"constant":false,"id":94,"mutability":"mutable","name":"to","nameLocation":"1368:2:1","nodeType":"VariableDeclaration","scope":115,"src":"1360:10:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":93,"name":"address","nodeType":"ElementaryTypeName","src":"1360:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":96,"mutability":"mutable","name":"value","nameLocation":"1380:5:1","nodeType":"VariableDeclaration","scope":115,"src":"1372:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":95,"name":"uint256","nodeType":"ElementaryTypeName","src":"1372:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1359:27:1"},"returnParameters":{"id":101,"nodeType":"ParameterList","parameters":[],"src":"1427:0:1"},"scope":146,"src":"1336:178:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[40],"body":{"id":138,"nodeType":"Block","src":"1704:91:1","statements":[{"expression":{"arguments":[{"id":127,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"1720:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":128,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":120,"src":"1726:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":126,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1198,"src":"1714:5:1","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1714:18:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":130,"nodeType":"ExpressionStatement","src":"1714:18:1"},{"eventCall":{"arguments":[{"id":132,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":118,"src":"1762:4:1","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":133,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":120,"src":"1768:5:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":134,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"1775:10:1","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":135,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1775:12:1","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"}],"id":131,"name":"CrosschainBurn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":24,"src":"1747:14:1","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_address_$returns$__$","typeString":"function (address,uint256,address)"}},"id":136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1747:41:1","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":137,"nodeType":"EmitStatement","src":"1742:46:1"}]},"documentation":{"id":116,"nodeType":"StructuredDocumentation","src":"1520:86:1","text":" @dev See {IERC7802-crosschainBurn}. Emits a {CrosschainBurn} event."},"functionSelector":"2b8c49e3","id":139,"implemented":true,"kind":"function","modifiers":[{"id":124,"kind":"modifierInvocation","modifierName":{"id":123,"name":"onlyTokenBridge","nameLocations":["1688:15:1"],"nodeType":"IdentifierPath","referencedDeclaration":67,"src":"1688:15:1"},"nodeType":"ModifierInvocation","src":"1688:15:1"}],"name":"crosschainBurn","nameLocation":"1620:14:1","nodeType":"FunctionDefinition","overrides":{"id":122,"nodeType":"OverrideSpecifier","overrides":[],"src":"1679:8:1"},"parameters":{"id":121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":118,"mutability":"mutable","name":"from","nameLocation":"1643:4:1","nodeType":"VariableDeclaration","scope":139,"src":"1635:12:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":117,"name":"address","nodeType":"ElementaryTypeName","src":"1635:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":120,"mutability":"mutable","name":"value","nameLocation":"1657:5:1","nodeType":"VariableDeclaration","scope":139,"src":"1649:13:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":119,"name":"uint256","nodeType":"ElementaryTypeName","src":"1649:7:1","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1634:29:1"},"returnParameters":{"id":125,"nodeType":"ParameterList","parameters":[],"src":"1704:0:1"},"scope":146,"src":"1611:184:1","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"documentation":{"id":140,"nodeType":"StructuredDocumentation","src":"1801:295:1","text":" @dev Checks if the caller is a trusted token bridge. MUST revert otherwise.\n Developers should implement this function using an access control mechanism that allows\n customizing the list of allowed senders. Consider using {AccessControl} or {AccessManaged}."},"id":145,"implemented":false,"kind":"function","modifiers":[],"name":"_checkTokenBridge","nameLocation":"2110:17:1","nodeType":"FunctionDefinition","parameters":{"id":143,"nodeType":"ParameterList","parameters":[{"constant":false,"id":142,"mutability":"mutable","name":"caller","nameLocation":"2136:6:1","nodeType":"VariableDeclaration","scope":145,"src":"2128:14:1","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":141,"name":"address","nodeType":"ElementaryTypeName","src":"2128:7:1","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2127:16:1"},"returnParameters":{"id":144,"nodeType":"ParameterList","parameters":[],"src":"2160:0:1"},"scope":146,"src":"2101:60:1","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":147,"src":"600:1563:1","usedErrors":[685,690,695,704,709,714],"usedEvents":[15,24,1337,1346]}],"src":"33:2131:1"},"id":1},"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","exportedSymbols":{"Initializable":[414]},"id":415,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":148,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"113:24:2"},{"abstract":true,"baseContracts":[],"canonicalName":"Initializable","contractDependencies":[],"contractKind":"contract","documentation":{"id":149,"nodeType":"StructuredDocumentation","src":"139:2209:2","text":" @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n case an upgrade adds a module that needs to be initialized.\n For example:\n [.hljs-theme-light.nopadding]\n ```solidity\n contract MyToken is ERC20Upgradeable {\n     function initialize() initializer public {\n         __ERC20_init(\"MyToken\", \"MTK\");\n     }\n }\n contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n     function initializeV2() reinitializer(2) public {\n         __ERC20Permit_init(\"MyToken\");\n     }\n }\n ```\n TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n [CAUTION]\n ====\n Avoid leaving a contract uninitialized.\n An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n [.hljs-theme-light.nopadding]\n ```\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor() {\n     _disableInitializers();\n }\n ```\n ===="},"fullyImplemented":true,"id":414,"linearizedBaseContracts":[414],"name":"Initializable","nameLocation":"2367:13:2","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Initializable.InitializableStorage","documentation":{"id":150,"nodeType":"StructuredDocumentation","src":"2387:293:2","text":" @dev Storage of the initializable contract.\n It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions\n when using with upgradeable contracts.\n @custom:storage-location erc7201:openzeppelin.storage.Initializable"},"id":157,"members":[{"constant":false,"id":153,"mutability":"mutable","name":"_initialized","nameLocation":"2820:12:2","nodeType":"VariableDeclaration","scope":157,"src":"2813:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":152,"name":"uint64","nodeType":"ElementaryTypeName","src":"2813:6:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":156,"mutability":"mutable","name":"_initializing","nameLocation":"2955:13:2","nodeType":"VariableDeclaration","scope":157,"src":"2950:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":155,"name":"bool","nodeType":"ElementaryTypeName","src":"2950:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"InitializableStorage","nameLocation":"2692:20:2","nodeType":"StructDefinition","scope":414,"src":"2685:290:2","visibility":"public"},{"constant":true,"id":160,"mutability":"constant","name":"INITIALIZABLE_STORAGE","nameLocation":"3123:21:2","nodeType":"VariableDeclaration","scope":414,"src":"3098:115:2","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":158,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3098:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307866306335376531363834306466303430663135303838646332663831666533393163333932336265633733653233613936363265666339633232396336613030","id":159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3147:66:2","typeDescriptions":{"typeIdentifier":"t_rational_108904022758810753673719992590105913556127789646572562039383141376366747609600_by_1","typeString":"int_const 1089...(70 digits omitted)...9600"},"value":"0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00"},"visibility":"private"},{"documentation":{"id":161,"nodeType":"StructuredDocumentation","src":"3220:60:2","text":" @dev The contract is already initialized."},"errorSelector":"f92ee8a9","id":163,"name":"InvalidInitialization","nameLocation":"3291:21:2","nodeType":"ErrorDefinition","parameters":{"id":162,"nodeType":"ParameterList","parameters":[],"src":"3312:2:2"},"src":"3285:30:2"},{"documentation":{"id":164,"nodeType":"StructuredDocumentation","src":"3321:57:2","text":" @dev The contract is not initializing."},"errorSelector":"d7e6bcf8","id":166,"name":"NotInitializing","nameLocation":"3389:15:2","nodeType":"ErrorDefinition","parameters":{"id":165,"nodeType":"ParameterList","parameters":[],"src":"3404:2:2"},"src":"3383:24:2"},{"anonymous":false,"documentation":{"id":167,"nodeType":"StructuredDocumentation","src":"3413:90:2","text":" @dev Triggered when the contract has been initialized or reinitialized."},"eventSelector":"c7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2","id":171,"name":"Initialized","nameLocation":"3514:11:2","nodeType":"EventDefinition","parameters":{"id":170,"nodeType":"ParameterList","parameters":[{"constant":false,"id":169,"indexed":false,"mutability":"mutable","name":"version","nameLocation":"3533:7:2","nodeType":"VariableDeclaration","scope":171,"src":"3526:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":168,"name":"uint64","nodeType":"ElementaryTypeName","src":"3526:6:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"3525:16:2"},"src":"3508:34:2"},{"body":{"id":253,"nodeType":"Block","src":"4092:1079:2","statements":[{"assignments":[176],"declarations":[{"constant":false,"id":176,"mutability":"mutable","name":"$","nameLocation":"4187:1:2","nodeType":"VariableDeclaration","scope":253,"src":"4158:30:2","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":175,"nodeType":"UserDefinedTypeName","pathNode":{"id":174,"name":"InitializableStorage","nameLocations":["4158:20:2"],"nodeType":"IdentifierPath","referencedDeclaration":157,"src":"4158:20:2"},"referencedDeclaration":157,"src":"4158:20:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"id":179,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":177,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":413,"src":"4191:24:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$157_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":178,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4191:26:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"4158:59:2"},{"assignments":[181],"declarations":[{"constant":false,"id":181,"mutability":"mutable","name":"isTopLevelCall","nameLocation":"4284:14:2","nodeType":"VariableDeclaration","scope":253,"src":"4279:19:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":180,"name":"bool","nodeType":"ElementaryTypeName","src":"4279:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":185,"initialValue":{"id":184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4301:16:2","subExpression":{"expression":{"id":182,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":176,"src":"4302:1:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":183,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4304:13:2","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":156,"src":"4302:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4279:38:2"},{"assignments":[187],"declarations":[{"constant":false,"id":187,"mutability":"mutable","name":"initialized","nameLocation":"4334:11:2","nodeType":"VariableDeclaration","scope":253,"src":"4327:18:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":186,"name":"uint64","nodeType":"ElementaryTypeName","src":"4327:6:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":190,"initialValue":{"expression":{"id":188,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":176,"src":"4348:1:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":189,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4350:12:2","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":153,"src":"4348:14:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"4327:35:2"},{"assignments":[192],"declarations":[{"constant":false,"id":192,"mutability":"mutable","name":"initialSetup","nameLocation":"4709:12:2","nodeType":"VariableDeclaration","scope":253,"src":"4704:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":191,"name":"bool","nodeType":"ElementaryTypeName","src":"4704:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":198,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":195,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":193,"name":"initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":187,"src":"4724:11:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":194,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4739:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4724:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":196,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":181,"src":"4744:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4724:34:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4704:54:2"},{"assignments":[200],"declarations":[{"constant":false,"id":200,"mutability":"mutable","name":"construction","nameLocation":"4773:12:2","nodeType":"VariableDeclaration","scope":253,"src":"4768:17:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":199,"name":"bool","nodeType":"ElementaryTypeName","src":"4768:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":213,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":201,"name":"initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":187,"src":"4788:11:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":202,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4803:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4788:16:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"arguments":[{"id":206,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4816:4:2","typeDescriptions":{"typeIdentifier":"t_contract$_Initializable_$414","typeString":"contract Initializable"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Initializable_$414","typeString":"contract Initializable"}],"id":205,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4808:7:2","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":204,"name":"address","nodeType":"ElementaryTypeName","src":"4808:7:2","typeDescriptions":{}}},"id":207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4808:13:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4822:4:2","memberName":"code","nodeType":"MemberAccess","src":"4808:18:2","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":209,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4827:6:2","memberName":"length","nodeType":"MemberAccess","src":"4808:25:2","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4837:1:2","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4808:30:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4788:50:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"4768:70:2"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4853:13:2","subExpression":{"id":214,"name":"initialSetup","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":192,"src":"4854:12:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4870:13:2","subExpression":{"id":216,"name":"construction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":200,"src":"4871:12:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4853:30:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":223,"nodeType":"IfStatement","src":"4849:91:2","trueBody":{"id":222,"nodeType":"Block","src":"4885:55:2","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":219,"name":"InvalidInitialization","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":163,"src":"4906:21:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":220,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4906:23:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":221,"nodeType":"RevertStatement","src":"4899:30:2"}]}},{"expression":{"id":228,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":224,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":176,"src":"4949:1:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":226,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"4951:12:2","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":153,"src":"4949:14:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"31","id":227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4966:1:2","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4949:18:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":229,"nodeType":"ExpressionStatement","src":"4949:18:2"},{"condition":{"id":230,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":181,"src":"4981:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":238,"nodeType":"IfStatement","src":"4977:67:2","trueBody":{"id":237,"nodeType":"Block","src":"4997:47:2","statements":[{"expression":{"id":235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":231,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":176,"src":"5011:1:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":233,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5013:13:2","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":156,"src":"5011:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":234,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5029:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"5011:22:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":236,"nodeType":"ExpressionStatement","src":"5011:22:2"}]}},{"id":239,"nodeType":"PlaceholderStatement","src":"5053:1:2"},{"condition":{"id":240,"name":"isTopLevelCall","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":181,"src":"5068:14:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":252,"nodeType":"IfStatement","src":"5064:101:2","trueBody":{"id":251,"nodeType":"Block","src":"5084:81:2","statements":[{"expression":{"id":245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":241,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":176,"src":"5098:1:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":243,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5100:13:2","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":156,"src":"5098:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":244,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5116:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"5098:23:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":246,"nodeType":"ExpressionStatement","src":"5098:23:2"},{"eventCall":{"arguments":[{"hexValue":"31","id":248,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5152:1:2","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":247,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":171,"src":"5140:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":249,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5140:14:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":250,"nodeType":"EmitStatement","src":"5135:19:2"}]}}]},"documentation":{"id":172,"nodeType":"StructuredDocumentation","src":"3548:516:2","text":" @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n `onlyInitializing` functions can be used to initialize parent contracts.\n Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any\n number of times. This behavior in the constructor can be useful during testing and is not expected to be used in\n production.\n Emits an {Initialized} event."},"id":254,"name":"initializer","nameLocation":"4078:11:2","nodeType":"ModifierDefinition","parameters":{"id":173,"nodeType":"ParameterList","parameters":[],"src":"4089:2:2"},"src":"4069:1102:2","virtual":false,"visibility":"internal"},{"body":{"id":300,"nodeType":"Block","src":"6289:392:2","statements":[{"assignments":[261],"declarations":[{"constant":false,"id":261,"mutability":"mutable","name":"$","nameLocation":"6384:1:2","nodeType":"VariableDeclaration","scope":300,"src":"6355:30:2","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":260,"nodeType":"UserDefinedTypeName","pathNode":{"id":259,"name":"InitializableStorage","nameLocations":["6355:20:2"],"nodeType":"IdentifierPath","referencedDeclaration":157,"src":"6355:20:2"},"referencedDeclaration":157,"src":"6355:20:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"id":264,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":262,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":413,"src":"6388:24:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$157_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":263,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6388:26:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"6355:59:2"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":265,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"6429:1:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":266,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6431:13:2","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":156,"src":"6429:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":267,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"6448:1:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":268,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6450:12:2","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":153,"src":"6448:14:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":269,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":257,"src":"6466:7:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"6448:25:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6429:44:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":276,"nodeType":"IfStatement","src":"6425:105:2","trueBody":{"id":275,"nodeType":"Block","src":"6475:55:2","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":272,"name":"InvalidInitialization","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":163,"src":"6496:21:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6496:23:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":274,"nodeType":"RevertStatement","src":"6489:30:2"}]}},{"expression":{"id":281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":277,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"6539:1:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":279,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6541:12:2","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":153,"src":"6539:14:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":280,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":257,"src":"6556:7:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"6539:24:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":282,"nodeType":"ExpressionStatement","src":"6539:24:2"},{"expression":{"id":287,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":283,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"6573:1:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":285,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6575:13:2","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":156,"src":"6573:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":286,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6591:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"6573:22:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":288,"nodeType":"ExpressionStatement","src":"6573:22:2"},{"id":289,"nodeType":"PlaceholderStatement","src":"6605:1:2"},{"expression":{"id":294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":290,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":261,"src":"6616:1:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":292,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6618:13:2","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":156,"src":"6616:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":293,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6634:5:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"6616:23:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":295,"nodeType":"ExpressionStatement","src":"6616:23:2"},{"eventCall":{"arguments":[{"id":297,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":257,"src":"6666:7:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":296,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":171,"src":"6654:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":298,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6654:20:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":299,"nodeType":"EmitStatement","src":"6649:25:2"}]},"documentation":{"id":255,"nodeType":"StructuredDocumentation","src":"5177:1068:2","text":" @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n used to initialize parent contracts.\n A reinitializer may be used after the original initialization step. This is essential to configure modules that\n are added through upgrades and that require initialization.\n When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n cannot be nested. If one is invoked in the context of another, execution will revert.\n Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n a contract, executing them in the right order is up to the developer or operator.\n WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.\n Emits an {Initialized} event."},"id":301,"name":"reinitializer","nameLocation":"6259:13:2","nodeType":"ModifierDefinition","parameters":{"id":258,"nodeType":"ParameterList","parameters":[{"constant":false,"id":257,"mutability":"mutable","name":"version","nameLocation":"6280:7:2","nodeType":"VariableDeclaration","scope":301,"src":"6273:14:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":256,"name":"uint64","nodeType":"ElementaryTypeName","src":"6273:6:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"6272:16:2"},"src":"6250:431:2","virtual":false,"visibility":"internal"},{"body":{"id":308,"nodeType":"Block","src":"6919:48:2","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":304,"name":"_checkInitializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":322,"src":"6929:18:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6929:20:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":306,"nodeType":"ExpressionStatement","src":"6929:20:2"},{"id":307,"nodeType":"PlaceholderStatement","src":"6959:1:2"}]},"documentation":{"id":302,"nodeType":"StructuredDocumentation","src":"6687:199:2","text":" @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n {initializer} and {reinitializer} modifiers, directly or indirectly."},"id":309,"name":"onlyInitializing","nameLocation":"6900:16:2","nodeType":"ModifierDefinition","parameters":{"id":303,"nodeType":"ParameterList","parameters":[],"src":"6916:2:2"},"src":"6891:76:2","virtual":false,"visibility":"internal"},{"body":{"id":321,"nodeType":"Block","src":"7134:89:2","statements":[{"condition":{"id":315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"7148:18:2","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":313,"name":"_isInitializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":390,"src":"7149:15:2","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bool_$","typeString":"function () view returns (bool)"}},"id":314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7149:17:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":320,"nodeType":"IfStatement","src":"7144:73:2","trueBody":{"id":319,"nodeType":"Block","src":"7168:49:2","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":316,"name":"NotInitializing","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":166,"src":"7189:15:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7189:17:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":318,"nodeType":"RevertStatement","src":"7182:24:2"}]}}]},"documentation":{"id":310,"nodeType":"StructuredDocumentation","src":"6973:104:2","text":" @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}."},"id":322,"implemented":true,"kind":"function","modifiers":[],"name":"_checkInitializing","nameLocation":"7091:18:2","nodeType":"FunctionDefinition","parameters":{"id":311,"nodeType":"ParameterList","parameters":[],"src":"7109:2:2"},"returnParameters":{"id":312,"nodeType":"ParameterList","parameters":[],"src":"7134:0:2"},"scope":414,"src":"7082:141:2","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":367,"nodeType":"Block","src":"7758:373:2","statements":[{"assignments":[328],"declarations":[{"constant":false,"id":328,"mutability":"mutable","name":"$","nameLocation":"7853:1:2","nodeType":"VariableDeclaration","scope":367,"src":"7824:30:2","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":327,"nodeType":"UserDefinedTypeName","pathNode":{"id":326,"name":"InitializableStorage","nameLocations":["7824:20:2"],"nodeType":"IdentifierPath","referencedDeclaration":157,"src":"7824:20:2"},"referencedDeclaration":157,"src":"7824:20:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"id":331,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":329,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":413,"src":"7857:24:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$157_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7857:26:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"nodeType":"VariableDeclarationStatement","src":"7824:59:2"},{"condition":{"expression":{"id":332,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":328,"src":"7898:1:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":333,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7900:13:2","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":156,"src":"7898:15:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":338,"nodeType":"IfStatement","src":"7894:76:2","trueBody":{"id":337,"nodeType":"Block","src":"7915:55:2","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":334,"name":"InvalidInitialization","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":163,"src":"7936:21:2","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":335,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7936:23:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":336,"nodeType":"RevertStatement","src":"7929:30:2"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":346,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":339,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":328,"src":"7983:1:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":340,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7985:12:2","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":153,"src":"7983:14:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":343,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8006:6:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":342,"name":"uint64","nodeType":"ElementaryTypeName","src":"8006:6:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":341,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8001:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":344,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8001:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":345,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8014:3:2","memberName":"max","nodeType":"MemberAccess","src":"8001:16:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"7983:34:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":366,"nodeType":"IfStatement","src":"7979:146:2","trueBody":{"id":365,"nodeType":"Block","src":"8019:106:2","statements":[{"expression":{"id":355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":347,"name":"$","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":328,"src":"8033:1:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":349,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"8035:12:2","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":153,"src":"8033:14:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"arguments":[{"id":352,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8055:6:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":351,"name":"uint64","nodeType":"ElementaryTypeName","src":"8055:6:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":350,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8050:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":353,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8050:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":354,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8063:3:2","memberName":"max","nodeType":"MemberAccess","src":"8050:16:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"8033:33:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":356,"nodeType":"ExpressionStatement","src":"8033:33:2"},{"eventCall":{"arguments":[{"expression":{"arguments":[{"id":360,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8102:6:2","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":359,"name":"uint64","nodeType":"ElementaryTypeName","src":"8102:6:2","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":358,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8097:4:2","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":361,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8097:12:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":362,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8110:3:2","memberName":"max","nodeType":"MemberAccess","src":"8097:16:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":357,"name":"Initialized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":171,"src":"8085:11:2","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint64_$returns$__$","typeString":"function (uint64)"}},"id":363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8085:29:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":364,"nodeType":"EmitStatement","src":"8080:34:2"}]}}]},"documentation":{"id":323,"nodeType":"StructuredDocumentation","src":"7229:475:2","text":" @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n through proxies.\n Emits an {Initialized} event the first time it is successfully executed."},"id":368,"implemented":true,"kind":"function","modifiers":[],"name":"_disableInitializers","nameLocation":"7718:20:2","nodeType":"FunctionDefinition","parameters":{"id":324,"nodeType":"ParameterList","parameters":[],"src":"7738:2:2"},"returnParameters":{"id":325,"nodeType":"ParameterList","parameters":[],"src":"7758:0:2"},"scope":414,"src":"7709:422:2","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":378,"nodeType":"Block","src":"8306:63:2","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":374,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":413,"src":"8323:24:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$157_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":375,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8323:26:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":376,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8350:12:2","memberName":"_initialized","nodeType":"MemberAccess","referencedDeclaration":153,"src":"8323:39:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":373,"id":377,"nodeType":"Return","src":"8316:46:2"}]},"documentation":{"id":369,"nodeType":"StructuredDocumentation","src":"8137:99:2","text":" @dev Returns the highest version that has been initialized. See {reinitializer}."},"id":379,"implemented":true,"kind":"function","modifiers":[],"name":"_getInitializedVersion","nameLocation":"8250:22:2","nodeType":"FunctionDefinition","parameters":{"id":370,"nodeType":"ParameterList","parameters":[],"src":"8272:2:2"},"returnParameters":{"id":373,"nodeType":"ParameterList","parameters":[{"constant":false,"id":372,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":379,"src":"8298:6:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":371,"name":"uint64","nodeType":"ElementaryTypeName","src":"8298:6:2","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8297:8:2"},"scope":414,"src":"8241:128:2","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":389,"nodeType":"Block","src":"8541:64:2","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":385,"name":"_getInitializableStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":413,"src":"8558:24:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_InitializableStorage_$157_storage_ptr_$","typeString":"function () pure returns (struct Initializable.InitializableStorage storage pointer)"}},"id":386,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8558:26:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage storage pointer"}},"id":387,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8585:13:2","memberName":"_initializing","nodeType":"MemberAccess","referencedDeclaration":156,"src":"8558:40:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":384,"id":388,"nodeType":"Return","src":"8551:47:2"}]},"documentation":{"id":380,"nodeType":"StructuredDocumentation","src":"8375:105:2","text":" @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}."},"id":390,"implemented":true,"kind":"function","modifiers":[],"name":"_isInitializing","nameLocation":"8494:15:2","nodeType":"FunctionDefinition","parameters":{"id":381,"nodeType":"ParameterList","parameters":[],"src":"8509:2:2"},"returnParameters":{"id":384,"nodeType":"ParameterList","parameters":[{"constant":false,"id":383,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":390,"src":"8535:4:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":382,"name":"bool","nodeType":"ElementaryTypeName","src":"8535:4:2","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"8534:6:2"},"scope":414,"src":"8485:120:2","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":398,"nodeType":"Block","src":"8896:45:2","statements":[{"expression":{"id":396,"name":"INITIALIZABLE_STORAGE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":160,"src":"8913:21:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":395,"id":397,"nodeType":"Return","src":"8906:28:2"}]},"documentation":{"id":391,"nodeType":"StructuredDocumentation","src":"8611:203:2","text":" @dev Pointer to storage slot. Allows integrators to override it with a custom storage location.\n NOTE: Consider following the ERC-7201 formula to derive storage locations."},"id":399,"implemented":true,"kind":"function","modifiers":[],"name":"_initializableStorageSlot","nameLocation":"8828:25:2","nodeType":"FunctionDefinition","parameters":{"id":392,"nodeType":"ParameterList","parameters":[],"src":"8853:2:2"},"returnParameters":{"id":395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":394,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":399,"src":"8887:7:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":393,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8887:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8886:9:2"},"scope":414,"src":"8819:122:2","stateMutability":"pure","virtual":true,"visibility":"internal"},{"body":{"id":412,"nodeType":"Block","src":"9161:115:2","statements":[{"assignments":[407],"declarations":[{"constant":false,"id":407,"mutability":"mutable","name":"slot","nameLocation":"9179:4:2","nodeType":"VariableDeclaration","scope":412,"src":"9171:12:2","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":406,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9171:7:2","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":410,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":408,"name":"_initializableStorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":399,"src":"9186:25:2","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_bytes32_$","typeString":"function () pure returns (bytes32)"}},"id":409,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9186:27:2","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"9171:42:2"},{"AST":{"nativeSrc":"9232:38:2","nodeType":"YulBlock","src":"9232:38:2","statements":[{"nativeSrc":"9246:14:2","nodeType":"YulAssignment","src":"9246:14:2","value":{"name":"slot","nativeSrc":"9256:4:2","nodeType":"YulIdentifier","src":"9256:4:2"},"variableNames":[{"name":"$.slot","nativeSrc":"9246:6:2","nodeType":"YulIdentifier","src":"9246:6:2"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":404,"isOffset":false,"isSlot":true,"src":"9246:6:2","suffix":"slot","valueSize":1},{"declaration":407,"isOffset":false,"isSlot":false,"src":"9256:4:2","valueSize":1}],"id":411,"nodeType":"InlineAssembly","src":"9223:47:2"}]},"documentation":{"id":400,"nodeType":"StructuredDocumentation","src":"8947:67:2","text":" @dev Returns a pointer to the storage namespace."},"id":413,"implemented":true,"kind":"function","modifiers":[],"name":"_getInitializableStorage","nameLocation":"9080:24:2","nodeType":"FunctionDefinition","parameters":{"id":401,"nodeType":"ParameterList","parameters":[],"src":"9104:2:2"},"returnParameters":{"id":405,"nodeType":"ParameterList","parameters":[{"constant":false,"id":404,"mutability":"mutable","name":"$","nameLocation":"9158:1:2","nodeType":"VariableDeclaration","scope":413,"src":"9129:30:2","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage"},"typeName":{"id":403,"nodeType":"UserDefinedTypeName","pathNode":{"id":402,"name":"InitializableStorage","nameLocations":["9129:20:2"],"nodeType":"IdentifierPath","referencedDeclaration":157,"src":"9129:20:2"},"referencedDeclaration":157,"src":"9129:20:2","typeDescriptions":{"typeIdentifier":"t_struct$_InitializableStorage_$157_storage_ptr","typeString":"struct Initializable.InitializableStorage"}},"visibility":"internal"}],"src":"9128:32:2"},"scope":414,"src":"9071:205:2","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":415,"src":"2349:6929:2","usedErrors":[163,166],"usedEvents":[171]}],"src":"113:9166:2"},"id":2},"@openzeppelin/contracts/access/Ownable.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/Ownable.sol","exportedSymbols":{"Context":[1649],"Ownable":[562]},"id":563,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":416,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"102:24:3"},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../utils/Context.sol","id":418,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":563,"sourceUnit":1650,"src":"128:45:3","symbolAliases":[{"foreign":{"id":417,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1649,"src":"136:7:3","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":420,"name":"Context","nameLocations":["692:7:3"],"nodeType":"IdentifierPath","referencedDeclaration":1649,"src":"692:7:3"},"id":421,"nodeType":"InheritanceSpecifier","src":"692:7:3"}],"canonicalName":"Ownable","contractDependencies":[],"contractKind":"contract","documentation":{"id":419,"nodeType":"StructuredDocumentation","src":"175:487:3","text":" @dev Contract module which provides a basic access control mechanism, where\n there is an account (an owner) that can be granted exclusive access to\n specific functions.\n The initial owner is set to the address provided by the deployer. This can\n later be changed with {transferOwnership}.\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":562,"linearizedBaseContracts":[562,1649],"name":"Ownable","nameLocation":"681:7:3","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":423,"mutability":"mutable","name":"_owner","nameLocation":"722:6:3","nodeType":"VariableDeclaration","scope":562,"src":"706:22:3","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":422,"name":"address","nodeType":"ElementaryTypeName","src":"706:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"documentation":{"id":424,"nodeType":"StructuredDocumentation","src":"735:85:3","text":" @dev The caller account is not authorized to perform an operation."},"errorSelector":"118cdaa7","id":428,"name":"OwnableUnauthorizedAccount","nameLocation":"831:26:3","nodeType":"ErrorDefinition","parameters":{"id":427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":426,"mutability":"mutable","name":"account","nameLocation":"866:7:3","nodeType":"VariableDeclaration","scope":428,"src":"858:15:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":425,"name":"address","nodeType":"ElementaryTypeName","src":"858:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"857:17:3"},"src":"825:50:3"},{"documentation":{"id":429,"nodeType":"StructuredDocumentation","src":"881:82:3","text":" @dev The owner is not a valid owner account. (eg. `address(0)`)"},"errorSelector":"1e4fbdf7","id":433,"name":"OwnableInvalidOwner","nameLocation":"974:19:3","nodeType":"ErrorDefinition","parameters":{"id":432,"nodeType":"ParameterList","parameters":[{"constant":false,"id":431,"mutability":"mutable","name":"owner","nameLocation":"1002:5:3","nodeType":"VariableDeclaration","scope":433,"src":"994:13:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":430,"name":"address","nodeType":"ElementaryTypeName","src":"994:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"993:15:3"},"src":"968:41:3"},{"anonymous":false,"eventSelector":"8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0","id":439,"name":"OwnershipTransferred","nameLocation":"1021:20:3","nodeType":"EventDefinition","parameters":{"id":438,"nodeType":"ParameterList","parameters":[{"constant":false,"id":435,"indexed":true,"mutability":"mutable","name":"previousOwner","nameLocation":"1058:13:3","nodeType":"VariableDeclaration","scope":439,"src":"1042:29:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":434,"name":"address","nodeType":"ElementaryTypeName","src":"1042:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":437,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"1089:8:3","nodeType":"VariableDeclaration","scope":439,"src":"1073:24:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":436,"name":"address","nodeType":"ElementaryTypeName","src":"1073:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1041:57:3"},"src":"1015:84:3"},{"body":{"id":464,"nodeType":"Block","src":"1259:153:3","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":445,"name":"initialOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":442,"src":"1273:12:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":448,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1297:1:3","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":447,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1289:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":446,"name":"address","nodeType":"ElementaryTypeName","src":"1289:7:3","typeDescriptions":{}}},"id":449,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1289:10:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1273:26:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":459,"nodeType":"IfStatement","src":"1269:95:3","trueBody":{"id":458,"nodeType":"Block","src":"1301:63:3","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":454,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1350:1:3","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":453,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1342:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":452,"name":"address","nodeType":"ElementaryTypeName","src":"1342:7:3","typeDescriptions":{}}},"id":455,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1342:10:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":451,"name":"OwnableInvalidOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":433,"src":"1322:19:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":456,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1322:31:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":457,"nodeType":"RevertStatement","src":"1315:38:3"}]}},{"expression":{"arguments":[{"id":461,"name":"initialOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":442,"src":"1392:12:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":460,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":561,"src":"1373:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":462,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1373:32:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":463,"nodeType":"ExpressionStatement","src":"1373:32:3"}]},"documentation":{"id":440,"nodeType":"StructuredDocumentation","src":"1105:115:3","text":" @dev Initializes the contract setting the address provided by the deployer as the initial owner."},"id":465,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":443,"nodeType":"ParameterList","parameters":[{"constant":false,"id":442,"mutability":"mutable","name":"initialOwner","nameLocation":"1245:12:3","nodeType":"VariableDeclaration","scope":465,"src":"1237:20:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":441,"name":"address","nodeType":"ElementaryTypeName","src":"1237:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1236:22:3"},"returnParameters":{"id":444,"nodeType":"ParameterList","parameters":[],"src":"1259:0:3"},"scope":562,"src":"1225:187:3","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":472,"nodeType":"Block","src":"1521:41:3","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":468,"name":"_checkOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":499,"src":"1531:11:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$__$","typeString":"function () view"}},"id":469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1531:13:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":470,"nodeType":"ExpressionStatement","src":"1531:13:3"},{"id":471,"nodeType":"PlaceholderStatement","src":"1554:1:3"}]},"documentation":{"id":466,"nodeType":"StructuredDocumentation","src":"1418:77:3","text":" @dev Throws if called by any account other than the owner."},"id":473,"name":"onlyOwner","nameLocation":"1509:9:3","nodeType":"ModifierDefinition","parameters":{"id":467,"nodeType":"ParameterList","parameters":[],"src":"1518:2:3"},"src":"1500:62:3","virtual":false,"visibility":"internal"},{"body":{"id":481,"nodeType":"Block","src":"1693:30:3","statements":[{"expression":{"id":479,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":423,"src":"1710:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":478,"id":480,"nodeType":"Return","src":"1703:13:3"}]},"documentation":{"id":474,"nodeType":"StructuredDocumentation","src":"1568:65:3","text":" @dev Returns the address of the current owner."},"functionSelector":"8da5cb5b","id":482,"implemented":true,"kind":"function","modifiers":[],"name":"owner","nameLocation":"1647:5:3","nodeType":"FunctionDefinition","parameters":{"id":475,"nodeType":"ParameterList","parameters":[],"src":"1652:2:3"},"returnParameters":{"id":478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":477,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":482,"src":"1684:7:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":476,"name":"address","nodeType":"ElementaryTypeName","src":"1684:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1683:9:3"},"scope":562,"src":"1638:85:3","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":498,"nodeType":"Block","src":"1841:117:3","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":490,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":486,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":482,"src":"1855:5:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":487,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1855:7:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":488,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"1866:10:3","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,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1866:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1855:23:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":497,"nodeType":"IfStatement","src":"1851:101:3","trueBody":{"id":496,"nodeType":"Block","src":"1880:72:3","statements":[{"errorCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":492,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"1928:10:3","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1928:12:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":491,"name":"OwnableUnauthorizedAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":428,"src":"1901:26:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1901:40:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":495,"nodeType":"RevertStatement","src":"1894:47:3"}]}}]},"documentation":{"id":483,"nodeType":"StructuredDocumentation","src":"1729:62:3","text":" @dev Throws if the sender is not the owner."},"id":499,"implemented":true,"kind":"function","modifiers":[],"name":"_checkOwner","nameLocation":"1805:11:3","nodeType":"FunctionDefinition","parameters":{"id":484,"nodeType":"ParameterList","parameters":[],"src":"1816:2:3"},"returnParameters":{"id":485,"nodeType":"ParameterList","parameters":[],"src":"1841:0:3"},"scope":562,"src":"1796:162:3","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":512,"nodeType":"Block","src":"2347:47:3","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":508,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2384:1:3","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":507,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2376:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":506,"name":"address","nodeType":"ElementaryTypeName","src":"2376:7:3","typeDescriptions":{}}},"id":509,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2376:10:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":505,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":561,"src":"2357:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2357:30:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":511,"nodeType":"ExpressionStatement","src":"2357:30:3"}]},"documentation":{"id":500,"nodeType":"StructuredDocumentation","src":"1964:324:3","text":" @dev Leaves the contract without owner. It will not be possible to call\n `onlyOwner` functions. Can only be called by the current owner.\n NOTE: Renouncing ownership will leave the contract without an owner,\n thereby disabling any functionality that is only available to the owner."},"functionSelector":"715018a6","id":513,"implemented":true,"kind":"function","modifiers":[{"id":503,"kind":"modifierInvocation","modifierName":{"id":502,"name":"onlyOwner","nameLocations":["2337:9:3"],"nodeType":"IdentifierPath","referencedDeclaration":473,"src":"2337:9:3"},"nodeType":"ModifierInvocation","src":"2337:9:3"}],"name":"renounceOwnership","nameLocation":"2302:17:3","nodeType":"FunctionDefinition","parameters":{"id":501,"nodeType":"ParameterList","parameters":[],"src":"2319:2:3"},"returnParameters":{"id":504,"nodeType":"ParameterList","parameters":[],"src":"2347:0:3"},"scope":562,"src":"2293:101:3","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":540,"nodeType":"Block","src":"2613:145:3","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":521,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":516,"src":"2627:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":524,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2647:1:3","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":523,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2639:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":522,"name":"address","nodeType":"ElementaryTypeName","src":"2639:7:3","typeDescriptions":{}}},"id":525,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2639:10:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2627:22:3","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":535,"nodeType":"IfStatement","src":"2623:91:3","trueBody":{"id":534,"nodeType":"Block","src":"2651:63:3","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":530,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2700:1:3","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":529,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2692:7:3","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":528,"name":"address","nodeType":"ElementaryTypeName","src":"2692:7:3","typeDescriptions":{}}},"id":531,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2692:10:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":527,"name":"OwnableInvalidOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":433,"src":"2672:19:3","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":532,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2672:31:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":533,"nodeType":"RevertStatement","src":"2665:38:3"}]}},{"expression":{"arguments":[{"id":537,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":516,"src":"2742:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":536,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":561,"src":"2723:18:3","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2723:28:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":539,"nodeType":"ExpressionStatement","src":"2723:28:3"}]},"documentation":{"id":514,"nodeType":"StructuredDocumentation","src":"2400:138:3","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Can only be called by the current owner."},"functionSelector":"f2fde38b","id":541,"implemented":true,"kind":"function","modifiers":[{"id":519,"kind":"modifierInvocation","modifierName":{"id":518,"name":"onlyOwner","nameLocations":["2603:9:3"],"nodeType":"IdentifierPath","referencedDeclaration":473,"src":"2603:9:3"},"nodeType":"ModifierInvocation","src":"2603:9:3"}],"name":"transferOwnership","nameLocation":"2552:17:3","nodeType":"FunctionDefinition","parameters":{"id":517,"nodeType":"ParameterList","parameters":[{"constant":false,"id":516,"mutability":"mutable","name":"newOwner","nameLocation":"2578:8:3","nodeType":"VariableDeclaration","scope":541,"src":"2570:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":515,"name":"address","nodeType":"ElementaryTypeName","src":"2570:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2569:18:3"},"returnParameters":{"id":520,"nodeType":"ParameterList","parameters":[],"src":"2613:0:3"},"scope":562,"src":"2543:215:3","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":560,"nodeType":"Block","src":"2975:124:3","statements":[{"assignments":[548],"declarations":[{"constant":false,"id":548,"mutability":"mutable","name":"oldOwner","nameLocation":"2993:8:3","nodeType":"VariableDeclaration","scope":560,"src":"2985:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":547,"name":"address","nodeType":"ElementaryTypeName","src":"2985:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":550,"initialValue":{"id":549,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":423,"src":"3004:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2985:25:3"},{"expression":{"id":553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":551,"name":"_owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":423,"src":"3020:6:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":552,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":544,"src":"3029:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3020:17:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":554,"nodeType":"ExpressionStatement","src":"3020:17:3"},{"eventCall":{"arguments":[{"id":556,"name":"oldOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":548,"src":"3073:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":557,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":544,"src":"3083:8:3","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":555,"name":"OwnershipTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":439,"src":"3052:20:3","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3052:40:3","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":559,"nodeType":"EmitStatement","src":"3047:45:3"}]},"documentation":{"id":542,"nodeType":"StructuredDocumentation","src":"2764:143:3","text":" @dev Transfers ownership of the contract to a new account (`newOwner`).\n Internal function without access restriction."},"id":561,"implemented":true,"kind":"function","modifiers":[],"name":"_transferOwnership","nameLocation":"2921:18:3","nodeType":"FunctionDefinition","parameters":{"id":545,"nodeType":"ParameterList","parameters":[{"constant":false,"id":544,"mutability":"mutable","name":"newOwner","nameLocation":"2948:8:3","nodeType":"VariableDeclaration","scope":561,"src":"2940:16:3","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":543,"name":"address","nodeType":"ElementaryTypeName","src":"2940:7:3","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2939:18:3"},"returnParameters":{"id":546,"nodeType":"ParameterList","parameters":[],"src":"2975:0:3"},"scope":562,"src":"2912:187:3","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":563,"src":"663:2438:3","usedErrors":[428,433],"usedEvents":[439]}],"src":"102:3000:3"},"id":3},"@openzeppelin/contracts/access/Ownable2Step.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/access/Ownable2Step.sol","exportedSymbols":{"Ownable":[562],"Ownable2Step":[648]},"id":649,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":564,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"107:24:4"},{"absolutePath":"@openzeppelin/contracts/access/Ownable.sol","file":"./Ownable.sol","id":566,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":649,"sourceUnit":563,"src":"133:38:4","symbolAliases":[{"foreign":{"id":565,"name":"Ownable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":562,"src":"141:7:4","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":568,"name":"Ownable","nameLocations":["1018:7:4"],"nodeType":"IdentifierPath","referencedDeclaration":562,"src":"1018:7:4"},"id":569,"nodeType":"InheritanceSpecifier","src":"1018:7:4"}],"canonicalName":"Ownable2Step","contractDependencies":[],"contractKind":"contract","documentation":{"id":567,"nodeType":"StructuredDocumentation","src":"173:810:4","text":" @dev Contract module which provides access control mechanism, where\n there is an account (an owner) that can be granted exclusive access to\n specific functions.\n This extension of the {Ownable} contract includes a two-step mechanism to transfer\n ownership, where the new owner must call {acceptOwnership} in order to replace the\n old one. This can help prevent common mistakes, such as transfers of ownership to\n incorrect accounts, or to contracts that are unable to interact with the\n permission system.\n The initial owner is specified at deployment time in the constructor for `Ownable`. This\n can later be changed with {transferOwnership} and {acceptOwnership}.\n This module is used through inheritance. It will make available all functions\n from parent (Ownable)."},"fullyImplemented":true,"id":648,"linearizedBaseContracts":[648,562,1649],"name":"Ownable2Step","nameLocation":"1002:12:4","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":571,"mutability":"mutable","name":"_pendingOwner","nameLocation":"1048:13:4","nodeType":"VariableDeclaration","scope":648,"src":"1032:29:4","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":570,"name":"address","nodeType":"ElementaryTypeName","src":"1032:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"anonymous":false,"eventSelector":"38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e22700","id":577,"name":"OwnershipTransferStarted","nameLocation":"1074:24:4","nodeType":"EventDefinition","parameters":{"id":576,"nodeType":"ParameterList","parameters":[{"constant":false,"id":573,"indexed":true,"mutability":"mutable","name":"previousOwner","nameLocation":"1115:13:4","nodeType":"VariableDeclaration","scope":577,"src":"1099:29:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":572,"name":"address","nodeType":"ElementaryTypeName","src":"1099:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":575,"indexed":true,"mutability":"mutable","name":"newOwner","nameLocation":"1146:8:4","nodeType":"VariableDeclaration","scope":577,"src":"1130:24:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":574,"name":"address","nodeType":"ElementaryTypeName","src":"1130:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1098:57:4"},"src":"1068:88:4"},{"body":{"id":585,"nodeType":"Block","src":"1294:37:4","statements":[{"expression":{"id":583,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":571,"src":"1311:13:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":582,"id":584,"nodeType":"Return","src":"1304:20:4"}]},"documentation":{"id":578,"nodeType":"StructuredDocumentation","src":"1162:65:4","text":" @dev Returns the address of the pending owner."},"functionSelector":"e30c3978","id":586,"implemented":true,"kind":"function","modifiers":[],"name":"pendingOwner","nameLocation":"1241:12:4","nodeType":"FunctionDefinition","parameters":{"id":579,"nodeType":"ParameterList","parameters":[],"src":"1253:2:4"},"returnParameters":{"id":582,"nodeType":"ParameterList","parameters":[{"constant":false,"id":581,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":586,"src":"1285:7:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":580,"name":"address","nodeType":"ElementaryTypeName","src":"1285:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1284:9:4"},"scope":648,"src":"1232:99:4","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[541],"body":{"id":605,"nodeType":"Block","src":"1728:99:4","statements":[{"expression":{"id":597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":595,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":571,"src":"1738:13:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":596,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":589,"src":"1754:8:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1738:24:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":598,"nodeType":"ExpressionStatement","src":"1738:24:4"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":600,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":482,"src":"1802:5:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1802:7:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":602,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":589,"src":"1811:8:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":599,"name":"OwnershipTransferStarted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":577,"src":"1777:24:4","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1777:43:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":604,"nodeType":"EmitStatement","src":"1772:48:4"}]},"documentation":{"id":587,"nodeType":"StructuredDocumentation","src":"1337:307:4","text":" @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.\n Can only be called by the current owner.\n Setting `newOwner` to the zero address is allowed; this can be used to cancel an initiated ownership transfer."},"functionSelector":"f2fde38b","id":606,"implemented":true,"kind":"function","modifiers":[{"id":593,"kind":"modifierInvocation","modifierName":{"id":592,"name":"onlyOwner","nameLocations":["1718:9:4"],"nodeType":"IdentifierPath","referencedDeclaration":473,"src":"1718:9:4"},"nodeType":"ModifierInvocation","src":"1718:9:4"}],"name":"transferOwnership","nameLocation":"1658:17:4","nodeType":"FunctionDefinition","overrides":{"id":591,"nodeType":"OverrideSpecifier","overrides":[],"src":"1709:8:4"},"parameters":{"id":590,"nodeType":"ParameterList","parameters":[{"constant":false,"id":589,"mutability":"mutable","name":"newOwner","nameLocation":"1684:8:4","nodeType":"VariableDeclaration","scope":606,"src":"1676:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":588,"name":"address","nodeType":"ElementaryTypeName","src":"1676:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1675:18:4"},"returnParameters":{"id":594,"nodeType":"ParameterList","parameters":[],"src":"1728:0:4"},"scope":648,"src":"1649:178:4","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[561],"body":{"id":622,"nodeType":"Block","src":"2083:81:4","statements":[{"expression":{"id":614,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"2093:20:4","subExpression":{"id":613,"name":"_pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":571,"src":"2100:13:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":615,"nodeType":"ExpressionStatement","src":"2093:20:4"},{"expression":{"arguments":[{"id":619,"name":"newOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":609,"src":"2148:8:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":616,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2123:5:4","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_Ownable2Step_$648_$","typeString":"type(contract super Ownable2Step)"}},"id":618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2129:18:4","memberName":"_transferOwnership","nodeType":"MemberAccess","referencedDeclaration":561,"src":"2123:24:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":620,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2123:34:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":621,"nodeType":"ExpressionStatement","src":"2123:34:4"}]},"documentation":{"id":607,"nodeType":"StructuredDocumentation","src":"1833:173:4","text":" @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.\n Internal function without access restriction."},"id":623,"implemented":true,"kind":"function","modifiers":[],"name":"_transferOwnership","nameLocation":"2020:18:4","nodeType":"FunctionDefinition","overrides":{"id":611,"nodeType":"OverrideSpecifier","overrides":[],"src":"2074:8:4"},"parameters":{"id":610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":609,"mutability":"mutable","name":"newOwner","nameLocation":"2047:8:4","nodeType":"VariableDeclaration","scope":623,"src":"2039:16:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":608,"name":"address","nodeType":"ElementaryTypeName","src":"2039:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2038:18:4"},"returnParameters":{"id":612,"nodeType":"ParameterList","parameters":[],"src":"2083:0:4"},"scope":648,"src":"2011:153:4","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":646,"nodeType":"Block","src":"2286:187:4","statements":[{"assignments":[628],"declarations":[{"constant":false,"id":628,"mutability":"mutable","name":"sender","nameLocation":"2304:6:4","nodeType":"VariableDeclaration","scope":646,"src":"2296:14:4","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":627,"name":"address","nodeType":"ElementaryTypeName","src":"2296:7:4","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":631,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":629,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"2313:10:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2313:12:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2296:29:4"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":632,"name":"pendingOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":586,"src":"2339:12:4","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":633,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2339:14:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":634,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"2357:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2339:24:4","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":641,"nodeType":"IfStatement","src":"2335:96:4","trueBody":{"id":640,"nodeType":"Block","src":"2365:66:4","statements":[{"errorCall":{"arguments":[{"id":637,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"2413:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":636,"name":"OwnableUnauthorizedAccount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":428,"src":"2386:26:4","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":638,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2386:34:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":639,"nodeType":"RevertStatement","src":"2379:41:4"}]}},{"expression":{"arguments":[{"id":643,"name":"sender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":628,"src":"2459:6:4","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":642,"name":"_transferOwnership","nodeType":"Identifier","overloadedDeclarations":[623],"referencedDeclaration":623,"src":"2440:18:4","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":644,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2440:26:4","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":645,"nodeType":"ExpressionStatement","src":"2440:26:4"}]},"documentation":{"id":624,"nodeType":"StructuredDocumentation","src":"2170:69:4","text":" @dev The new owner accepts the ownership transfer."},"functionSelector":"79ba5097","id":647,"implemented":true,"kind":"function","modifiers":[],"name":"acceptOwnership","nameLocation":"2253:15:4","nodeType":"FunctionDefinition","parameters":{"id":625,"nodeType":"ParameterList","parameters":[],"src":"2268:2:4"},"returnParameters":{"id":626,"nodeType":"ParameterList","parameters":[],"src":"2286:0:4"},"scope":648,"src":"2244:229:4","stateMutability":"nonpayable","virtual":true,"visibility":"public"}],"scope":649,"src":"984:1491:4","usedErrors":[428,433],"usedEvents":[439,577]}],"src":"107:2369:4"},"id":4},"@openzeppelin/contracts/interfaces/IERC5267.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5267.sol","exportedSymbols":{"IERC5267":[673]},"id":674,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":650,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"107:25:5"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC5267","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":673,"linearizedBaseContracts":[673],"name":"IERC5267","nameLocation":"144:8:5","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":651,"nodeType":"StructuredDocumentation","src":"159:84:5","text":" @dev MAY be emitted to signal that the domain could have changed."},"eventSelector":"0a6387c9ea3628b88a633bb4f3b151770f70085117a15f9bf3787cda53f13d31","id":653,"name":"EIP712DomainChanged","nameLocation":"254:19:5","nodeType":"EventDefinition","parameters":{"id":652,"nodeType":"ParameterList","parameters":[],"src":"273:2:5"},"src":"248:28:5"},{"documentation":{"id":654,"nodeType":"StructuredDocumentation","src":"282:140:5","text":" @dev returns the fields and values that describe the domain separator used by this contract for EIP-712\n signature."},"functionSelector":"84b0196e","id":672,"implemented":false,"kind":"function","modifiers":[],"name":"eip712Domain","nameLocation":"436:12:5","nodeType":"FunctionDefinition","parameters":{"id":655,"nodeType":"ParameterList","parameters":[],"src":"448:2:5"},"returnParameters":{"id":671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":657,"mutability":"mutable","name":"fields","nameLocation":"518:6:5","nodeType":"VariableDeclaration","scope":672,"src":"511:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":656,"name":"bytes1","nodeType":"ElementaryTypeName","src":"511:6:5","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":659,"mutability":"mutable","name":"name","nameLocation":"552:4:5","nodeType":"VariableDeclaration","scope":672,"src":"538:18:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":658,"name":"string","nodeType":"ElementaryTypeName","src":"538:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":661,"mutability":"mutable","name":"version","nameLocation":"584:7:5","nodeType":"VariableDeclaration","scope":672,"src":"570:21:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":660,"name":"string","nodeType":"ElementaryTypeName","src":"570:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":663,"mutability":"mutable","name":"chainId","nameLocation":"613:7:5","nodeType":"VariableDeclaration","scope":672,"src":"605:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":662,"name":"uint256","nodeType":"ElementaryTypeName","src":"605:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":665,"mutability":"mutable","name":"verifyingContract","nameLocation":"642:17:5","nodeType":"VariableDeclaration","scope":672,"src":"634:25:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":664,"name":"address","nodeType":"ElementaryTypeName","src":"634:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":667,"mutability":"mutable","name":"salt","nameLocation":"681:4:5","nodeType":"VariableDeclaration","scope":672,"src":"673:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":666,"name":"bytes32","nodeType":"ElementaryTypeName","src":"673:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":670,"mutability":"mutable","name":"extensions","nameLocation":"716:10:5","nodeType":"VariableDeclaration","scope":672,"src":"699:27:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":668,"name":"uint256","nodeType":"ElementaryTypeName","src":"699:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":669,"nodeType":"ArrayTypeName","src":"699:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"497:239:5"},"scope":673,"src":"427:310:5","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":674,"src":"134:605:5","usedErrors":[],"usedEvents":[653]}],"src":"107:633:5"},"id":5},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","exportedSymbols":{"IERC1155Errors":[810],"IERC20Errors":[715],"IERC721Errors":[763]},"id":811,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":675,"literals":["solidity",">=","0.8",".4"],"nodeType":"PragmaDirective","src":"112:24:6"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":676,"nodeType":"StructuredDocumentation","src":"138:141:6","text":" @dev Standard ERC-20 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens."},"fullyImplemented":true,"id":715,"linearizedBaseContracts":[715],"name":"IERC20Errors","nameLocation":"290:12:6","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":677,"nodeType":"StructuredDocumentation","src":"309:309:6","text":" @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param balance Current balance for the interacting account.\n @param needed Minimum amount required to perform a transfer."},"errorSelector":"e450d38c","id":685,"name":"ERC20InsufficientBalance","nameLocation":"629:24:6","nodeType":"ErrorDefinition","parameters":{"id":684,"nodeType":"ParameterList","parameters":[{"constant":false,"id":679,"mutability":"mutable","name":"sender","nameLocation":"662:6:6","nodeType":"VariableDeclaration","scope":685,"src":"654:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":678,"name":"address","nodeType":"ElementaryTypeName","src":"654:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":681,"mutability":"mutable","name":"balance","nameLocation":"678:7:6","nodeType":"VariableDeclaration","scope":685,"src":"670:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":680,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":683,"mutability":"mutable","name":"needed","nameLocation":"695:6:6","nodeType":"VariableDeclaration","scope":685,"src":"687:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":682,"name":"uint256","nodeType":"ElementaryTypeName","src":"687:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"653:49:6"},"src":"623:80:6"},{"documentation":{"id":686,"nodeType":"StructuredDocumentation","src":"709:152:6","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"96c6fd1e","id":690,"name":"ERC20InvalidSender","nameLocation":"872:18:6","nodeType":"ErrorDefinition","parameters":{"id":689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":688,"mutability":"mutable","name":"sender","nameLocation":"899:6:6","nodeType":"VariableDeclaration","scope":690,"src":"891:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":687,"name":"address","nodeType":"ElementaryTypeName","src":"891:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"890:16:6"},"src":"866:41:6"},{"documentation":{"id":691,"nodeType":"StructuredDocumentation","src":"913:159:6","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"ec442f05","id":695,"name":"ERC20InvalidReceiver","nameLocation":"1083:20:6","nodeType":"ErrorDefinition","parameters":{"id":694,"nodeType":"ParameterList","parameters":[{"constant":false,"id":693,"mutability":"mutable","name":"receiver","nameLocation":"1112:8:6","nodeType":"VariableDeclaration","scope":695,"src":"1104:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":692,"name":"address","nodeType":"ElementaryTypeName","src":"1104:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1103:18:6"},"src":"1077:45:6"},{"documentation":{"id":696,"nodeType":"StructuredDocumentation","src":"1128:345:6","text":" @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.\n @param spender Address that may be allowed to operate on tokens without being their owner.\n @param allowance Amount of tokens a `spender` is allowed to operate with.\n @param needed Minimum amount required to perform a transfer."},"errorSelector":"fb8f41b2","id":704,"name":"ERC20InsufficientAllowance","nameLocation":"1484:26:6","nodeType":"ErrorDefinition","parameters":{"id":703,"nodeType":"ParameterList","parameters":[{"constant":false,"id":698,"mutability":"mutable","name":"spender","nameLocation":"1519:7:6","nodeType":"VariableDeclaration","scope":704,"src":"1511:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":697,"name":"address","nodeType":"ElementaryTypeName","src":"1511:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":700,"mutability":"mutable","name":"allowance","nameLocation":"1536:9:6","nodeType":"VariableDeclaration","scope":704,"src":"1528:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":699,"name":"uint256","nodeType":"ElementaryTypeName","src":"1528:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":702,"mutability":"mutable","name":"needed","nameLocation":"1555:6:6","nodeType":"VariableDeclaration","scope":704,"src":"1547:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":701,"name":"uint256","nodeType":"ElementaryTypeName","src":"1547:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1510:52:6"},"src":"1478:85:6"},{"documentation":{"id":705,"nodeType":"StructuredDocumentation","src":"1569:174:6","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"e602df05","id":709,"name":"ERC20InvalidApprover","nameLocation":"1754:20:6","nodeType":"ErrorDefinition","parameters":{"id":708,"nodeType":"ParameterList","parameters":[{"constant":false,"id":707,"mutability":"mutable","name":"approver","nameLocation":"1783:8:6","nodeType":"VariableDeclaration","scope":709,"src":"1775:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":706,"name":"address","nodeType":"ElementaryTypeName","src":"1775:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1774:18:6"},"src":"1748:45:6"},{"documentation":{"id":710,"nodeType":"StructuredDocumentation","src":"1799:195:6","text":" @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n @param spender Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"94280d62","id":714,"name":"ERC20InvalidSpender","nameLocation":"2005:19:6","nodeType":"ErrorDefinition","parameters":{"id":713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":712,"mutability":"mutable","name":"spender","nameLocation":"2033:7:6","nodeType":"VariableDeclaration","scope":714,"src":"2025:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":711,"name":"address","nodeType":"ElementaryTypeName","src":"2025:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2024:17:6"},"src":"1999:43:6"}],"scope":811,"src":"280:1764:6","usedErrors":[685,690,695,704,709,714],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC721Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":716,"nodeType":"StructuredDocumentation","src":"2046:143:6","text":" @dev Standard ERC-721 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens."},"fullyImplemented":true,"id":763,"linearizedBaseContracts":[763],"name":"IERC721Errors","nameLocation":"2200:13:6","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":717,"nodeType":"StructuredDocumentation","src":"2220:219:6","text":" @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.\n Used in balance queries.\n @param owner Address of the current owner of a token."},"errorSelector":"89c62b64","id":721,"name":"ERC721InvalidOwner","nameLocation":"2450:18:6","nodeType":"ErrorDefinition","parameters":{"id":720,"nodeType":"ParameterList","parameters":[{"constant":false,"id":719,"mutability":"mutable","name":"owner","nameLocation":"2477:5:6","nodeType":"VariableDeclaration","scope":721,"src":"2469:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":718,"name":"address","nodeType":"ElementaryTypeName","src":"2469:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2468:15:6"},"src":"2444:40:6"},{"documentation":{"id":722,"nodeType":"StructuredDocumentation","src":"2490:132:6","text":" @dev Indicates a `tokenId` whose `owner` is the zero address.\n @param tokenId Identifier number of a token."},"errorSelector":"7e273289","id":726,"name":"ERC721NonexistentToken","nameLocation":"2633:22:6","nodeType":"ErrorDefinition","parameters":{"id":725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":724,"mutability":"mutable","name":"tokenId","nameLocation":"2664:7:6","nodeType":"VariableDeclaration","scope":726,"src":"2656:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":723,"name":"uint256","nodeType":"ElementaryTypeName","src":"2656:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2655:17:6"},"src":"2627:46:6"},{"documentation":{"id":727,"nodeType":"StructuredDocumentation","src":"2679:289:6","text":" @dev Indicates an error related to the ownership over a particular token. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param tokenId Identifier number of a token.\n @param owner Address of the current owner of a token."},"errorSelector":"64283d7b","id":735,"name":"ERC721IncorrectOwner","nameLocation":"2979:20:6","nodeType":"ErrorDefinition","parameters":{"id":734,"nodeType":"ParameterList","parameters":[{"constant":false,"id":729,"mutability":"mutable","name":"sender","nameLocation":"3008:6:6","nodeType":"VariableDeclaration","scope":735,"src":"3000:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":728,"name":"address","nodeType":"ElementaryTypeName","src":"3000:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":731,"mutability":"mutable","name":"tokenId","nameLocation":"3024:7:6","nodeType":"VariableDeclaration","scope":735,"src":"3016:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":730,"name":"uint256","nodeType":"ElementaryTypeName","src":"3016:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":733,"mutability":"mutable","name":"owner","nameLocation":"3041:5:6","nodeType":"VariableDeclaration","scope":735,"src":"3033:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":732,"name":"address","nodeType":"ElementaryTypeName","src":"3033:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2999:48:6"},"src":"2973:75:6"},{"documentation":{"id":736,"nodeType":"StructuredDocumentation","src":"3054:152:6","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"73c6ac6e","id":740,"name":"ERC721InvalidSender","nameLocation":"3217:19:6","nodeType":"ErrorDefinition","parameters":{"id":739,"nodeType":"ParameterList","parameters":[{"constant":false,"id":738,"mutability":"mutable","name":"sender","nameLocation":"3245:6:6","nodeType":"VariableDeclaration","scope":740,"src":"3237:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":737,"name":"address","nodeType":"ElementaryTypeName","src":"3237:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3236:16:6"},"src":"3211:42:6"},{"documentation":{"id":741,"nodeType":"StructuredDocumentation","src":"3259:159:6","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"64a0ae92","id":745,"name":"ERC721InvalidReceiver","nameLocation":"3429:21:6","nodeType":"ErrorDefinition","parameters":{"id":744,"nodeType":"ParameterList","parameters":[{"constant":false,"id":743,"mutability":"mutable","name":"receiver","nameLocation":"3459:8:6","nodeType":"VariableDeclaration","scope":745,"src":"3451:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":742,"name":"address","nodeType":"ElementaryTypeName","src":"3451:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3450:18:6"},"src":"3423:46:6"},{"documentation":{"id":746,"nodeType":"StructuredDocumentation","src":"3475:247:6","text":" @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n @param operator Address that may be allowed to operate on tokens without being their owner.\n @param tokenId Identifier number of a token."},"errorSelector":"177e802f","id":752,"name":"ERC721InsufficientApproval","nameLocation":"3733:26:6","nodeType":"ErrorDefinition","parameters":{"id":751,"nodeType":"ParameterList","parameters":[{"constant":false,"id":748,"mutability":"mutable","name":"operator","nameLocation":"3768:8:6","nodeType":"VariableDeclaration","scope":752,"src":"3760:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":747,"name":"address","nodeType":"ElementaryTypeName","src":"3760:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":750,"mutability":"mutable","name":"tokenId","nameLocation":"3786:7:6","nodeType":"VariableDeclaration","scope":752,"src":"3778:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":749,"name":"uint256","nodeType":"ElementaryTypeName","src":"3778:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3759:35:6"},"src":"3727:68:6"},{"documentation":{"id":753,"nodeType":"StructuredDocumentation","src":"3801:174:6","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"a9fbf51f","id":757,"name":"ERC721InvalidApprover","nameLocation":"3986:21:6","nodeType":"ErrorDefinition","parameters":{"id":756,"nodeType":"ParameterList","parameters":[{"constant":false,"id":755,"mutability":"mutable","name":"approver","nameLocation":"4016:8:6","nodeType":"VariableDeclaration","scope":757,"src":"4008:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":754,"name":"address","nodeType":"ElementaryTypeName","src":"4008:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4007:18:6"},"src":"3980:46:6"},{"documentation":{"id":758,"nodeType":"StructuredDocumentation","src":"4032:197:6","text":" @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n @param operator Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"5b08ba18","id":762,"name":"ERC721InvalidOperator","nameLocation":"4240:21:6","nodeType":"ErrorDefinition","parameters":{"id":761,"nodeType":"ParameterList","parameters":[{"constant":false,"id":760,"mutability":"mutable","name":"operator","nameLocation":"4270:8:6","nodeType":"VariableDeclaration","scope":762,"src":"4262:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":759,"name":"address","nodeType":"ElementaryTypeName","src":"4262:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4261:18:6"},"src":"4234:46:6"}],"scope":811,"src":"2190:2092:6","usedErrors":[721,726,735,740,745,752,757,762],"usedEvents":[]},{"abstract":false,"baseContracts":[],"canonicalName":"IERC1155Errors","contractDependencies":[],"contractKind":"interface","documentation":{"id":764,"nodeType":"StructuredDocumentation","src":"4284:145:6","text":" @dev Standard ERC-1155 Errors\n Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens."},"fullyImplemented":true,"id":810,"linearizedBaseContracts":[810],"name":"IERC1155Errors","nameLocation":"4440:14:6","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":765,"nodeType":"StructuredDocumentation","src":"4461:361:6","text":" @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred.\n @param balance Current balance for the interacting account.\n @param needed Minimum amount required to perform a transfer.\n @param tokenId Identifier number of a token."},"errorSelector":"03dee4c5","id":775,"name":"ERC1155InsufficientBalance","nameLocation":"4833:26:6","nodeType":"ErrorDefinition","parameters":{"id":774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":767,"mutability":"mutable","name":"sender","nameLocation":"4868:6:6","nodeType":"VariableDeclaration","scope":775,"src":"4860:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":766,"name":"address","nodeType":"ElementaryTypeName","src":"4860:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":769,"mutability":"mutable","name":"balance","nameLocation":"4884:7:6","nodeType":"VariableDeclaration","scope":775,"src":"4876:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":768,"name":"uint256","nodeType":"ElementaryTypeName","src":"4876:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":771,"mutability":"mutable","name":"needed","nameLocation":"4901:6:6","nodeType":"VariableDeclaration","scope":775,"src":"4893:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":770,"name":"uint256","nodeType":"ElementaryTypeName","src":"4893:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":773,"mutability":"mutable","name":"tokenId","nameLocation":"4917:7:6","nodeType":"VariableDeclaration","scope":775,"src":"4909:15:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":772,"name":"uint256","nodeType":"ElementaryTypeName","src":"4909:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4859:66:6"},"src":"4827:99:6"},{"documentation":{"id":776,"nodeType":"StructuredDocumentation","src":"4932:152:6","text":" @dev Indicates a failure with the token `sender`. Used in transfers.\n @param sender Address whose tokens are being transferred."},"errorSelector":"01a83514","id":780,"name":"ERC1155InvalidSender","nameLocation":"5095:20:6","nodeType":"ErrorDefinition","parameters":{"id":779,"nodeType":"ParameterList","parameters":[{"constant":false,"id":778,"mutability":"mutable","name":"sender","nameLocation":"5124:6:6","nodeType":"VariableDeclaration","scope":780,"src":"5116:14:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":777,"name":"address","nodeType":"ElementaryTypeName","src":"5116:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5115:16:6"},"src":"5089:43:6"},{"documentation":{"id":781,"nodeType":"StructuredDocumentation","src":"5138:159:6","text":" @dev Indicates a failure with the token `receiver`. Used in transfers.\n @param receiver Address to which tokens are being transferred."},"errorSelector":"57f447ce","id":785,"name":"ERC1155InvalidReceiver","nameLocation":"5308:22:6","nodeType":"ErrorDefinition","parameters":{"id":784,"nodeType":"ParameterList","parameters":[{"constant":false,"id":783,"mutability":"mutable","name":"receiver","nameLocation":"5339:8:6","nodeType":"VariableDeclaration","scope":785,"src":"5331:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":782,"name":"address","nodeType":"ElementaryTypeName","src":"5331:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5330:18:6"},"src":"5302:47:6"},{"documentation":{"id":786,"nodeType":"StructuredDocumentation","src":"5355:256:6","text":" @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n @param operator Address that may be allowed to operate on tokens without being their owner.\n @param owner Address of the current owner of a token."},"errorSelector":"e237d922","id":792,"name":"ERC1155MissingApprovalForAll","nameLocation":"5622:28:6","nodeType":"ErrorDefinition","parameters":{"id":791,"nodeType":"ParameterList","parameters":[{"constant":false,"id":788,"mutability":"mutable","name":"operator","nameLocation":"5659:8:6","nodeType":"VariableDeclaration","scope":792,"src":"5651:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":787,"name":"address","nodeType":"ElementaryTypeName","src":"5651:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":790,"mutability":"mutable","name":"owner","nameLocation":"5677:5:6","nodeType":"VariableDeclaration","scope":792,"src":"5669:13:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":789,"name":"address","nodeType":"ElementaryTypeName","src":"5669:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5650:33:6"},"src":"5616:68:6"},{"documentation":{"id":793,"nodeType":"StructuredDocumentation","src":"5690:174:6","text":" @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n @param approver Address initiating an approval operation."},"errorSelector":"3e31884e","id":797,"name":"ERC1155InvalidApprover","nameLocation":"5875:22:6","nodeType":"ErrorDefinition","parameters":{"id":796,"nodeType":"ParameterList","parameters":[{"constant":false,"id":795,"mutability":"mutable","name":"approver","nameLocation":"5906:8:6","nodeType":"VariableDeclaration","scope":797,"src":"5898:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":794,"name":"address","nodeType":"ElementaryTypeName","src":"5898:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5897:18:6"},"src":"5869:47:6"},{"documentation":{"id":798,"nodeType":"StructuredDocumentation","src":"5922:197:6","text":" @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n @param operator Address that may be allowed to operate on tokens without being their owner."},"errorSelector":"ced3e100","id":802,"name":"ERC1155InvalidOperator","nameLocation":"6130:22:6","nodeType":"ErrorDefinition","parameters":{"id":801,"nodeType":"ParameterList","parameters":[{"constant":false,"id":800,"mutability":"mutable","name":"operator","nameLocation":"6161:8:6","nodeType":"VariableDeclaration","scope":802,"src":"6153:16:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":799,"name":"address","nodeType":"ElementaryTypeName","src":"6153:7:6","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6152:18:6"},"src":"6124:47:6"},{"documentation":{"id":803,"nodeType":"StructuredDocumentation","src":"6177:280:6","text":" @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.\n Used in batch transfers.\n @param idsLength Length of the array of token identifiers\n @param valuesLength Length of the array of token amounts"},"errorSelector":"5b059991","id":809,"name":"ERC1155InvalidArrayLength","nameLocation":"6468:25:6","nodeType":"ErrorDefinition","parameters":{"id":808,"nodeType":"ParameterList","parameters":[{"constant":false,"id":805,"mutability":"mutable","name":"idsLength","nameLocation":"6502:9:6","nodeType":"VariableDeclaration","scope":809,"src":"6494:17:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":804,"name":"uint256","nodeType":"ElementaryTypeName","src":"6494:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":807,"mutability":"mutable","name":"valuesLength","nameLocation":"6521:12:6","nodeType":"VariableDeclaration","scope":809,"src":"6513:20:6","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":806,"name":"uint256","nodeType":"ElementaryTypeName","src":"6513:7:6","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6493:41:6"},"src":"6462:73:6"}],"scope":811,"src":"4430:2107:6","usedErrors":[775,780,785,792,797,802,809],"usedEvents":[]}],"src":"112:6426:6"},"id":6},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","exportedSymbols":{"Context":[1649],"ERC20":[1325],"IERC20":[1403],"IERC20Errors":[715],"IERC20Metadata":[1583]},"id":1326,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":812,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"105:24:7"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"./IERC20.sol","id":814,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1326,"sourceUnit":1404,"src":"131:36:7","symbolAliases":[{"foreign":{"id":813,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1403,"src":"139:6:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","file":"./extensions/IERC20Metadata.sol","id":816,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1326,"sourceUnit":1584,"src":"168:63:7","symbolAliases":[{"foreign":{"id":815,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1583,"src":"176:14:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","file":"../../utils/Context.sol","id":818,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1326,"sourceUnit":1650,"src":"232:48:7","symbolAliases":[{"foreign":{"id":817,"name":"Context","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1649,"src":"240:7:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/draft-IERC6093.sol","file":"../../interfaces/draft-IERC6093.sol","id":820,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1326,"sourceUnit":811,"src":"281:65:7","symbolAliases":[{"foreign":{"id":819,"name":"IERC20Errors","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":715,"src":"289:12:7","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":822,"name":"Context","nameLocations":["1133:7:7"],"nodeType":"IdentifierPath","referencedDeclaration":1649,"src":"1133:7:7"},"id":823,"nodeType":"InheritanceSpecifier","src":"1133:7:7"},{"baseName":{"id":824,"name":"IERC20","nameLocations":["1142:6:7"],"nodeType":"IdentifierPath","referencedDeclaration":1403,"src":"1142:6:7"},"id":825,"nodeType":"InheritanceSpecifier","src":"1142:6:7"},{"baseName":{"id":826,"name":"IERC20Metadata","nameLocations":["1150:14:7"],"nodeType":"IdentifierPath","referencedDeclaration":1583,"src":"1150:14:7"},"id":827,"nodeType":"InheritanceSpecifier","src":"1150:14:7"},{"baseName":{"id":828,"name":"IERC20Errors","nameLocations":["1166:12:7"],"nodeType":"IdentifierPath","referencedDeclaration":715,"src":"1166:12:7"},"id":829,"nodeType":"InheritanceSpecifier","src":"1166:12:7"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":821,"nodeType":"StructuredDocumentation","src":"348:757:7","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 TIP: For a detailed writeup see our guide\n https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n to implement supply mechanisms].\n The default value of {decimals} is 18. To change this, you should override\n this function so it returns a different value.\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 ERC-20\n applications."},"fullyImplemented":true,"id":1325,"linearizedBaseContracts":[1325,715,1583,1403,1649],"name":"ERC20","nameLocation":"1124:5:7","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":833,"mutability":"mutable","name":"_balances","nameLocation":"1229:9:7","nodeType":"VariableDeclaration","scope":1325,"src":"1185:53:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":832,"keyName":"account","keyNameLocation":"1201:7:7","keyType":{"id":830,"name":"address","nodeType":"ElementaryTypeName","src":"1193:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1185:35:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":831,"name":"uint256","nodeType":"ElementaryTypeName","src":"1212:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"constant":false,"id":839,"mutability":"mutable","name":"_allowances","nameLocation":"1317:11:7","nodeType":"VariableDeclaration","scope":1325,"src":"1245:83:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":838,"keyName":"account","keyNameLocation":"1261:7:7","keyType":{"id":834,"name":"address","nodeType":"ElementaryTypeName","src":"1253:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1245:63:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":837,"keyName":"spender","keyNameLocation":"1288:7:7","keyType":{"id":835,"name":"address","nodeType":"ElementaryTypeName","src":"1280:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"1272:35:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":836,"name":"uint256","nodeType":"ElementaryTypeName","src":"1299:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":841,"mutability":"mutable","name":"_totalSupply","nameLocation":"1351:12:7","nodeType":"VariableDeclaration","scope":1325,"src":"1335:28:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":840,"name":"uint256","nodeType":"ElementaryTypeName","src":"1335:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":843,"mutability":"mutable","name":"_name","nameLocation":"1385:5:7","nodeType":"VariableDeclaration","scope":1325,"src":"1370:20:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":842,"name":"string","nodeType":"ElementaryTypeName","src":"1370:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":845,"mutability":"mutable","name":"_symbol","nameLocation":"1411:7:7","nodeType":"VariableDeclaration","scope":1325,"src":"1396:22:7","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":844,"name":"string","nodeType":"ElementaryTypeName","src":"1396:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":861,"nodeType":"Block","src":"1638:57:7","statements":[{"expression":{"id":855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":853,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":843,"src":"1648:5:7","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":854,"name":"name_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":848,"src":"1656:5:7","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1648:13:7","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":856,"nodeType":"ExpressionStatement","src":"1648:13:7"},{"expression":{"id":859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":857,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":845,"src":"1671:7:7","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":858,"name":"symbol_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":850,"src":"1681:7:7","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"1671:17:7","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":860,"nodeType":"ExpressionStatement","src":"1671:17:7"}]},"documentation":{"id":846,"nodeType":"StructuredDocumentation","src":"1425:152:7","text":" @dev Sets the values for {name} and {symbol}.\n Both values are immutable: they can only be set once during construction."},"id":862,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":851,"nodeType":"ParameterList","parameters":[{"constant":false,"id":848,"mutability":"mutable","name":"name_","nameLocation":"1608:5:7","nodeType":"VariableDeclaration","scope":862,"src":"1594:19:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":847,"name":"string","nodeType":"ElementaryTypeName","src":"1594:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":850,"mutability":"mutable","name":"symbol_","nameLocation":"1629:7:7","nodeType":"VariableDeclaration","scope":862,"src":"1615:21:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":849,"name":"string","nodeType":"ElementaryTypeName","src":"1615:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1593:44:7"},"returnParameters":{"id":852,"nodeType":"ParameterList","parameters":[],"src":"1638:0:7"},"scope":1325,"src":"1582:113:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[1570],"body":{"id":870,"nodeType":"Block","src":"1820:29:7","statements":[{"expression":{"id":868,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":843,"src":"1837:5:7","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":867,"id":869,"nodeType":"Return","src":"1830:12:7"}]},"documentation":{"id":863,"nodeType":"StructuredDocumentation","src":"1701:54:7","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":871,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"1769:4:7","nodeType":"FunctionDefinition","parameters":{"id":864,"nodeType":"ParameterList","parameters":[],"src":"1773:2:7"},"returnParameters":{"id":867,"nodeType":"ParameterList","parameters":[{"constant":false,"id":866,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":871,"src":"1805:13:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":865,"name":"string","nodeType":"ElementaryTypeName","src":"1805:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1804:15:7"},"scope":1325,"src":"1760:89:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1576],"body":{"id":879,"nodeType":"Block","src":"2024:31:7","statements":[{"expression":{"id":877,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":845,"src":"2041:7:7","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":876,"id":878,"nodeType":"Return","src":"2034:14:7"}]},"documentation":{"id":872,"nodeType":"StructuredDocumentation","src":"1855:102:7","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":880,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"1971:6:7","nodeType":"FunctionDefinition","parameters":{"id":873,"nodeType":"ParameterList","parameters":[],"src":"1977:2:7"},"returnParameters":{"id":876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":875,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":880,"src":"2009:13:7","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":874,"name":"string","nodeType":"ElementaryTypeName","src":"2009:6:7","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2008:15:7"},"scope":1325,"src":"1962:93:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1582],"body":{"id":888,"nodeType":"Block","src":"2744:26:7","statements":[{"expression":{"hexValue":"3138","id":886,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2761:2:7","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":885,"id":887,"nodeType":"Return","src":"2754:9:7"}]},"documentation":{"id":881,"nodeType":"StructuredDocumentation","src":"2061:622:7","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 default value returned by this function, unless\n it's 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":889,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"2697:8:7","nodeType":"FunctionDefinition","parameters":{"id":882,"nodeType":"ParameterList","parameters":[],"src":"2705:2:7"},"returnParameters":{"id":885,"nodeType":"ParameterList","parameters":[{"constant":false,"id":884,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":889,"src":"2737:5:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":883,"name":"uint8","nodeType":"ElementaryTypeName","src":"2737:5:7","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"2736:7:7"},"scope":1325,"src":"2688:82:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1352],"body":{"id":897,"nodeType":"Block","src":"2864:36:7","statements":[{"expression":{"id":895,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":841,"src":"2881:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":894,"id":896,"nodeType":"Return","src":"2874:19:7"}]},"documentation":{"id":890,"nodeType":"StructuredDocumentation","src":"2776:22:7","text":"@inheritdoc IERC20"},"functionSelector":"18160ddd","id":898,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"2812:11:7","nodeType":"FunctionDefinition","parameters":{"id":891,"nodeType":"ParameterList","parameters":[],"src":"2823:2:7"},"returnParameters":{"id":894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":893,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":898,"src":"2855:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":892,"name":"uint256","nodeType":"ElementaryTypeName","src":"2855:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2854:9:7"},"scope":1325,"src":"2803:97:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1360],"body":{"id":910,"nodeType":"Block","src":"3007:42:7","statements":[{"expression":{"baseExpression":{"id":906,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":833,"src":"3024:9:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":908,"indexExpression":{"id":907,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":901,"src":"3034:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3024:18:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":905,"id":909,"nodeType":"Return","src":"3017:25:7"}]},"documentation":{"id":899,"nodeType":"StructuredDocumentation","src":"2906:22:7","text":"@inheritdoc IERC20"},"functionSelector":"70a08231","id":911,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"2942:9:7","nodeType":"FunctionDefinition","parameters":{"id":902,"nodeType":"ParameterList","parameters":[{"constant":false,"id":901,"mutability":"mutable","name":"account","nameLocation":"2960:7:7","nodeType":"VariableDeclaration","scope":911,"src":"2952:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":900,"name":"address","nodeType":"ElementaryTypeName","src":"2952:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2951:17:7"},"returnParameters":{"id":905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":904,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":911,"src":"2998:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":903,"name":"uint256","nodeType":"ElementaryTypeName","src":"2998:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2997:9:7"},"scope":1325,"src":"2933:116:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1370],"body":{"id":934,"nodeType":"Block","src":"3319:103:7","statements":[{"assignments":[922],"declarations":[{"constant":false,"id":922,"mutability":"mutable","name":"owner","nameLocation":"3337:5:7","nodeType":"VariableDeclaration","scope":934,"src":"3329:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":921,"name":"address","nodeType":"ElementaryTypeName","src":"3329:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":925,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":923,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"3345:10:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":924,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3345:12:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3329:28:7"},{"expression":{"arguments":[{"id":927,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":922,"src":"3377:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":928,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":914,"src":"3384:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":929,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":916,"src":"3388: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":926,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1055,"src":"3367:9:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":930,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3367:27:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":931,"nodeType":"ExpressionStatement","src":"3367:27:7"},{"expression":{"hexValue":"74727565","id":932,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3411:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":920,"id":933,"nodeType":"Return","src":"3404:11:7"}]},"documentation":{"id":912,"nodeType":"StructuredDocumentation","src":"3055:184:7","text":" @dev See {IERC20-transfer}.\n Requirements:\n - `to` cannot be the zero address.\n - the caller must have a balance of at least `value`."},"functionSelector":"a9059cbb","id":935,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"3253:8:7","nodeType":"FunctionDefinition","parameters":{"id":917,"nodeType":"ParameterList","parameters":[{"constant":false,"id":914,"mutability":"mutable","name":"to","nameLocation":"3270:2:7","nodeType":"VariableDeclaration","scope":935,"src":"3262:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":913,"name":"address","nodeType":"ElementaryTypeName","src":"3262:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":916,"mutability":"mutable","name":"value","nameLocation":"3282:5:7","nodeType":"VariableDeclaration","scope":935,"src":"3274:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":915,"name":"uint256","nodeType":"ElementaryTypeName","src":"3274:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3261:27:7"},"returnParameters":{"id":920,"nodeType":"ParameterList","parameters":[{"constant":false,"id":919,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":935,"src":"3313:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":918,"name":"bool","nodeType":"ElementaryTypeName","src":"3313:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3312:6:7"},"scope":1325,"src":"3244:178:7","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1380],"body":{"id":951,"nodeType":"Block","src":"3544:51:7","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":945,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":839,"src":"3561:11:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":947,"indexExpression":{"id":946,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":938,"src":"3573:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3561:18:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":949,"indexExpression":{"id":948,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":940,"src":"3580:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3561:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":944,"id":950,"nodeType":"Return","src":"3554:34:7"}]},"documentation":{"id":936,"nodeType":"StructuredDocumentation","src":"3428:22:7","text":"@inheritdoc IERC20"},"functionSelector":"dd62ed3e","id":952,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3464:9:7","nodeType":"FunctionDefinition","parameters":{"id":941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":938,"mutability":"mutable","name":"owner","nameLocation":"3482:5:7","nodeType":"VariableDeclaration","scope":952,"src":"3474:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":937,"name":"address","nodeType":"ElementaryTypeName","src":"3474:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":940,"mutability":"mutable","name":"spender","nameLocation":"3497:7:7","nodeType":"VariableDeclaration","scope":952,"src":"3489:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":939,"name":"address","nodeType":"ElementaryTypeName","src":"3489:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3473:32:7"},"returnParameters":{"id":944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":943,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":952,"src":"3535:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":942,"name":"uint256","nodeType":"ElementaryTypeName","src":"3535:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3534:9:7"},"scope":1325,"src":"3455:140:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1390],"body":{"id":975,"nodeType":"Block","src":"3981:107:7","statements":[{"assignments":[963],"declarations":[{"constant":false,"id":963,"mutability":"mutable","name":"owner","nameLocation":"3999:5:7","nodeType":"VariableDeclaration","scope":975,"src":"3991:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":962,"name":"address","nodeType":"ElementaryTypeName","src":"3991:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":966,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":964,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"4007:10:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":965,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4007:12:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3991:28:7"},{"expression":{"arguments":[{"id":968,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":963,"src":"4038:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":969,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":955,"src":"4045:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":970,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":957,"src":"4054: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":967,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[1216,1276],"referencedDeclaration":1216,"src":"4029:8:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4029:31:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":972,"nodeType":"ExpressionStatement","src":"4029:31:7"},{"expression":{"hexValue":"74727565","id":973,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4077:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":961,"id":974,"nodeType":"Return","src":"4070:11:7"}]},"documentation":{"id":953,"nodeType":"StructuredDocumentation","src":"3601:296:7","text":" @dev See {IERC20-approve}.\n NOTE: If `value` is the maximum `uint256`, the allowance is not updated on\n `transferFrom`. This is semantically equivalent to an infinite approval.\n Requirements:\n - `spender` cannot be the zero address."},"functionSelector":"095ea7b3","id":976,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"3911:7:7","nodeType":"FunctionDefinition","parameters":{"id":958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":955,"mutability":"mutable","name":"spender","nameLocation":"3927:7:7","nodeType":"VariableDeclaration","scope":976,"src":"3919:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":954,"name":"address","nodeType":"ElementaryTypeName","src":"3919:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":957,"mutability":"mutable","name":"value","nameLocation":"3944:5:7","nodeType":"VariableDeclaration","scope":976,"src":"3936:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":956,"name":"uint256","nodeType":"ElementaryTypeName","src":"3936:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3918:32:7"},"returnParameters":{"id":961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":960,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":976,"src":"3975:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":959,"name":"bool","nodeType":"ElementaryTypeName","src":"3975:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3974:6:7"},"scope":1325,"src":"3902:186:7","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1402],"body":{"id":1007,"nodeType":"Block","src":"4773:151:7","statements":[{"assignments":[989],"declarations":[{"constant":false,"id":989,"mutability":"mutable","name":"spender","nameLocation":"4791:7:7","nodeType":"VariableDeclaration","scope":1007,"src":"4783:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":988,"name":"address","nodeType":"ElementaryTypeName","src":"4783:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":992,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":990,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"4801:10:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4801:12:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4783:30:7"},{"expression":{"arguments":[{"id":994,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"4839:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":995,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":989,"src":"4845:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":996,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":983,"src":"4854: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":993,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1324,"src":"4823:15:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":997,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4823:37:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":998,"nodeType":"ExpressionStatement","src":"4823:37:7"},{"expression":{"arguments":[{"id":1000,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"4880:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1001,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":981,"src":"4886:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1002,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":983,"src":"4890: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":999,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1055,"src":"4870:9:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1003,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4870:26:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1004,"nodeType":"ExpressionStatement","src":"4870:26:7"},{"expression":{"hexValue":"74727565","id":1005,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4913:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":987,"id":1006,"nodeType":"Return","src":"4906:11:7"}]},"documentation":{"id":977,"nodeType":"StructuredDocumentation","src":"4094:581:7","text":" @dev See {IERC20-transferFrom}.\n Skips emitting an {Approval} event indicating an allowance update. This is not\n required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].\n NOTE: Does not update the allowance if the current allowance\n is the maximum `uint256`.\n Requirements:\n - `from` and `to` cannot be the zero address.\n - `from` must have a balance of at least `value`.\n - the caller must have allowance for ``from``'s tokens of at least\n `value`."},"functionSelector":"23b872dd","id":1008,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"4689:12:7","nodeType":"FunctionDefinition","parameters":{"id":984,"nodeType":"ParameterList","parameters":[{"constant":false,"id":979,"mutability":"mutable","name":"from","nameLocation":"4710:4:7","nodeType":"VariableDeclaration","scope":1008,"src":"4702:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":978,"name":"address","nodeType":"ElementaryTypeName","src":"4702:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":981,"mutability":"mutable","name":"to","nameLocation":"4724:2:7","nodeType":"VariableDeclaration","scope":1008,"src":"4716:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":980,"name":"address","nodeType":"ElementaryTypeName","src":"4716:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":983,"mutability":"mutable","name":"value","nameLocation":"4736:5:7","nodeType":"VariableDeclaration","scope":1008,"src":"4728:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":982,"name":"uint256","nodeType":"ElementaryTypeName","src":"4728:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4701:41:7"},"returnParameters":{"id":987,"nodeType":"ParameterList","parameters":[{"constant":false,"id":986,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1008,"src":"4767:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":985,"name":"bool","nodeType":"ElementaryTypeName","src":"4767:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4766:6:7"},"scope":1325,"src":"4680:244:7","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1054,"nodeType":"Block","src":"5366:231:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1018,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1011,"src":"5380:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1021,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5396:1:7","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":1020,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5388:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1019,"name":"address","nodeType":"ElementaryTypeName","src":"5388:7:7","typeDescriptions":{}}},"id":1022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5388:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5380:18:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1032,"nodeType":"IfStatement","src":"5376:86:7","trueBody":{"id":1031,"nodeType":"Block","src":"5400:62:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1027,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5448:1:7","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":1026,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5440:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1025,"name":"address","nodeType":"ElementaryTypeName","src":"5440:7:7","typeDescriptions":{}}},"id":1028,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5440:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1024,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":690,"src":"5421:18:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":1029,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5421:30:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1030,"nodeType":"RevertStatement","src":"5414:37:7"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1033,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1013,"src":"5475:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1036,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5489:1:7","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":1035,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5481:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1034,"name":"address","nodeType":"ElementaryTypeName","src":"5481:7:7","typeDescriptions":{}}},"id":1037,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5481:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5475:16:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1047,"nodeType":"IfStatement","src":"5471:86:7","trueBody":{"id":1046,"nodeType":"Block","src":"5493:64:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1042,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5543:1:7","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":1041,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5535:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1040,"name":"address","nodeType":"ElementaryTypeName","src":"5535:7:7","typeDescriptions":{}}},"id":1043,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5535:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1039,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":695,"src":"5514:20:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":1044,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5514:32:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1045,"nodeType":"RevertStatement","src":"5507:39:7"}]}},{"expression":{"arguments":[{"id":1049,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1011,"src":"5574:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1050,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1013,"src":"5580:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1051,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1015,"src":"5584: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":1048,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1132,"src":"5566:7:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1052,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5566:24:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1053,"nodeType":"ExpressionStatement","src":"5566:24:7"}]},"documentation":{"id":1009,"nodeType":"StructuredDocumentation","src":"4930:362:7","text":" @dev Moves a `value` amount of tokens from `from` to `to`.\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 NOTE: This function is not virtual, {_update} should be overridden instead."},"id":1055,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"5306:9:7","nodeType":"FunctionDefinition","parameters":{"id":1016,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1011,"mutability":"mutable","name":"from","nameLocation":"5324:4:7","nodeType":"VariableDeclaration","scope":1055,"src":"5316:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1010,"name":"address","nodeType":"ElementaryTypeName","src":"5316:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1013,"mutability":"mutable","name":"to","nameLocation":"5338:2:7","nodeType":"VariableDeclaration","scope":1055,"src":"5330:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1012,"name":"address","nodeType":"ElementaryTypeName","src":"5330:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1015,"mutability":"mutable","name":"value","nameLocation":"5350:5:7","nodeType":"VariableDeclaration","scope":1055,"src":"5342:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1014,"name":"uint256","nodeType":"ElementaryTypeName","src":"5342:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5315:41:7"},"returnParameters":{"id":1017,"nodeType":"ParameterList","parameters":[],"src":"5366:0:7"},"scope":1325,"src":"5297:300:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1131,"nodeType":"Block","src":"5987:1032:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1065,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1058,"src":"6001:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1068,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6017:1:7","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":1067,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6009:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1066,"name":"address","nodeType":"ElementaryTypeName","src":"6009:7:7","typeDescriptions":{}}},"id":1069,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6009:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6001:18:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1102,"nodeType":"Block","src":"6175:362:7","statements":[{"assignments":[1077],"declarations":[{"constant":false,"id":1077,"mutability":"mutable","name":"fromBalance","nameLocation":"6197:11:7","nodeType":"VariableDeclaration","scope":1102,"src":"6189:19:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1076,"name":"uint256","nodeType":"ElementaryTypeName","src":"6189:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1081,"initialValue":{"baseExpression":{"id":1078,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":833,"src":"6211:9:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1080,"indexExpression":{"id":1079,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1058,"src":"6221:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6211:15:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6189:37:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1082,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1077,"src":"6244:11:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1083,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"6258:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6244:19:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1092,"nodeType":"IfStatement","src":"6240:115:7","trueBody":{"id":1091,"nodeType":"Block","src":"6265:90:7","statements":[{"errorCall":{"arguments":[{"id":1086,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1058,"src":"6315:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1087,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1077,"src":"6321:11:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1088,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"6334:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1085,"name":"ERC20InsufficientBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":685,"src":"6290:24:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":1089,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6290:50:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1090,"nodeType":"RevertStatement","src":"6283:57:7"}]}},{"id":1101,"nodeType":"UncheckedBlock","src":"6368:159:7","statements":[{"expression":{"id":1099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1093,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":833,"src":"6475:9:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1095,"indexExpression":{"id":1094,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1058,"src":"6485:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6475:15:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1096,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1077,"src":"6493:11:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1097,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"6507:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6493:19:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6475:37:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1100,"nodeType":"ExpressionStatement","src":"6475:37:7"}]}]},"id":1103,"nodeType":"IfStatement","src":"5997:540:7","trueBody":{"id":1075,"nodeType":"Block","src":"6021:148:7","statements":[{"expression":{"id":1073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1071,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":841,"src":"6137:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1072,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"6153:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6137:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1074,"nodeType":"ExpressionStatement","src":"6137:21:7"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1104,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1060,"src":"6551:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1107,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6565:1:7","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":1106,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6557:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1105,"name":"address","nodeType":"ElementaryTypeName","src":"6557:7:7","typeDescriptions":{}}},"id":1108,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6557:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6551:16:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1123,"nodeType":"Block","src":"6766:206:7","statements":[{"id":1122,"nodeType":"UncheckedBlock","src":"6780:182:7","statements":[{"expression":{"id":1120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1116,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":833,"src":"6925:9:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1118,"indexExpression":{"id":1117,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1060,"src":"6935:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6925:13:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1119,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"6942:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6925:22:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1121,"nodeType":"ExpressionStatement","src":"6925:22:7"}]}]},"id":1124,"nodeType":"IfStatement","src":"6547:425:7","trueBody":{"id":1115,"nodeType":"Block","src":"6569:191:7","statements":[{"id":1114,"nodeType":"UncheckedBlock","src":"6583:167:7","statements":[{"expression":{"id":1112,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1110,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":841,"src":"6714:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":1111,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"6730:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6714:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1113,"nodeType":"ExpressionStatement","src":"6714:21:7"}]}]}},{"eventCall":{"arguments":[{"id":1126,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1058,"src":"6996:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1127,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1060,"src":"7002:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1128,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"7006: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":1125,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1337,"src":"6987:8:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6987:25:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1130,"nodeType":"EmitStatement","src":"6982:30:7"}]},"documentation":{"id":1056,"nodeType":"StructuredDocumentation","src":"5603:304:7","text":" @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n this function.\n Emits a {Transfer} event."},"id":1132,"implemented":true,"kind":"function","modifiers":[],"name":"_update","nameLocation":"5921:7:7","nodeType":"FunctionDefinition","parameters":{"id":1063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1058,"mutability":"mutable","name":"from","nameLocation":"5937:4:7","nodeType":"VariableDeclaration","scope":1132,"src":"5929:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1057,"name":"address","nodeType":"ElementaryTypeName","src":"5929:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1060,"mutability":"mutable","name":"to","nameLocation":"5951:2:7","nodeType":"VariableDeclaration","scope":1132,"src":"5943:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1059,"name":"address","nodeType":"ElementaryTypeName","src":"5943:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1062,"mutability":"mutable","name":"value","nameLocation":"5963:5:7","nodeType":"VariableDeclaration","scope":1132,"src":"5955:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1061,"name":"uint256","nodeType":"ElementaryTypeName","src":"5955:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5928:41:7"},"returnParameters":{"id":1064,"nodeType":"ParameterList","parameters":[],"src":"5987:0:7"},"scope":1325,"src":"5912:1107:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1164,"nodeType":"Block","src":"7418:152:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1145,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1140,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"7432:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1143,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7451:1:7","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":1142,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7443:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1141,"name":"address","nodeType":"ElementaryTypeName","src":"7443:7:7","typeDescriptions":{}}},"id":1144,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7443:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7432:21:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1154,"nodeType":"IfStatement","src":"7428:91:7","trueBody":{"id":1153,"nodeType":"Block","src":"7455:64:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7505:1:7","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":1148,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7497:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1147,"name":"address","nodeType":"ElementaryTypeName","src":"7497:7:7","typeDescriptions":{}}},"id":1150,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7497:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1146,"name":"ERC20InvalidReceiver","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":695,"src":"7476:20:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":1151,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7476:32:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1152,"nodeType":"RevertStatement","src":"7469:39:7"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":1158,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7544:1:7","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":1157,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7536:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1156,"name":"address","nodeType":"ElementaryTypeName","src":"7536:7:7","typeDescriptions":{}}},"id":1159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7536:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1160,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"7548:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1161,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1137,"src":"7557: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":1155,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1132,"src":"7528:7:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1162,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7528:35:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1163,"nodeType":"ExpressionStatement","src":"7528:35:7"}]},"documentation":{"id":1133,"nodeType":"StructuredDocumentation","src":"7025:332:7","text":" @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n Relies on the `_update` mechanism\n Emits a {Transfer} event with `from` set to the zero address.\n NOTE: This function is not virtual, {_update} should be overridden instead."},"id":1165,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"7371:5:7","nodeType":"FunctionDefinition","parameters":{"id":1138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1135,"mutability":"mutable","name":"account","nameLocation":"7385:7:7","nodeType":"VariableDeclaration","scope":1165,"src":"7377:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1134,"name":"address","nodeType":"ElementaryTypeName","src":"7377:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1137,"mutability":"mutable","name":"value","nameLocation":"7402:5:7","nodeType":"VariableDeclaration","scope":1165,"src":"7394:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1136,"name":"uint256","nodeType":"ElementaryTypeName","src":"7394:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7376:32:7"},"returnParameters":{"id":1139,"nodeType":"ParameterList","parameters":[],"src":"7418:0:7"},"scope":1325,"src":"7362:208:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1197,"nodeType":"Block","src":"7944:150:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1173,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1168,"src":"7958:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1176,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7977:1:7","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":1175,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7969:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1174,"name":"address","nodeType":"ElementaryTypeName","src":"7969:7:7","typeDescriptions":{}}},"id":1177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7969:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7958:21:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1187,"nodeType":"IfStatement","src":"7954:89:7","trueBody":{"id":1186,"nodeType":"Block","src":"7981:62:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1182,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8029:1:7","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":1181,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8021:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1180,"name":"address","nodeType":"ElementaryTypeName","src":"8021:7:7","typeDescriptions":{}}},"id":1183,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8021:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1179,"name":"ERC20InvalidSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":690,"src":"8002:18:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":1184,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8002:30:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1185,"nodeType":"RevertStatement","src":"7995:37:7"}]}},{"expression":{"arguments":[{"id":1189,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1168,"src":"8060:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":1192,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8077:1:7","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":1191,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8069:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1190,"name":"address","nodeType":"ElementaryTypeName","src":"8069:7:7","typeDescriptions":{}}},"id":1193,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8069:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1194,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1170,"src":"8081: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":1188,"name":"_update","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1132,"src":"8052:7:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1195,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8052:35:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1196,"nodeType":"ExpressionStatement","src":"8052:35:7"}]},"documentation":{"id":1166,"nodeType":"StructuredDocumentation","src":"7576:307:7","text":" @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n Relies on the `_update` mechanism.\n Emits a {Transfer} event with `to` set to the zero address.\n NOTE: This function is not virtual, {_update} should be overridden instead"},"id":1198,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"7897:5:7","nodeType":"FunctionDefinition","parameters":{"id":1171,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1168,"mutability":"mutable","name":"account","nameLocation":"7911:7:7","nodeType":"VariableDeclaration","scope":1198,"src":"7903:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1167,"name":"address","nodeType":"ElementaryTypeName","src":"7903:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1170,"mutability":"mutable","name":"value","nameLocation":"7928:5:7","nodeType":"VariableDeclaration","scope":1198,"src":"7920:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1169,"name":"uint256","nodeType":"ElementaryTypeName","src":"7920:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7902:32:7"},"returnParameters":{"id":1172,"nodeType":"ParameterList","parameters":[],"src":"7944:0:7"},"scope":1325,"src":"7888:206:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1215,"nodeType":"Block","src":"8704:54:7","statements":[{"expression":{"arguments":[{"id":1209,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1201,"src":"8723:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1210,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1203,"src":"8730:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1211,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1205,"src":"8739:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":1212,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"8746:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":1208,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[1216,1276],"referencedDeclaration":1276,"src":"8714:8:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":1213,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8714:37:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1214,"nodeType":"ExpressionStatement","src":"8714:37:7"}]},"documentation":{"id":1199,"nodeType":"StructuredDocumentation","src":"8100:525:7","text":" @dev Sets `value` 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.\n Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument."},"id":1216,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"8639:8:7","nodeType":"FunctionDefinition","parameters":{"id":1206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1201,"mutability":"mutable","name":"owner","nameLocation":"8656:5:7","nodeType":"VariableDeclaration","scope":1216,"src":"8648:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1200,"name":"address","nodeType":"ElementaryTypeName","src":"8648:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1203,"mutability":"mutable","name":"spender","nameLocation":"8671:7:7","nodeType":"VariableDeclaration","scope":1216,"src":"8663:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1202,"name":"address","nodeType":"ElementaryTypeName","src":"8663:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1205,"mutability":"mutable","name":"value","nameLocation":"8688:5:7","nodeType":"VariableDeclaration","scope":1216,"src":"8680:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1204,"name":"uint256","nodeType":"ElementaryTypeName","src":"8680:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8647:47:7"},"returnParameters":{"id":1207,"nodeType":"ParameterList","parameters":[],"src":"8704:0:7"},"scope":1325,"src":"8630:128:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1275,"nodeType":"Block","src":"9703:334:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1233,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1228,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1219,"src":"9717:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1231,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9734:1:7","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":1230,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9726:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1229,"name":"address","nodeType":"ElementaryTypeName","src":"9726:7:7","typeDescriptions":{}}},"id":1232,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9726:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9717:19:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1242,"nodeType":"IfStatement","src":"9713:89:7","trueBody":{"id":1241,"nodeType":"Block","src":"9738:64:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9788:1:7","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":1236,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9780:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1235,"name":"address","nodeType":"ElementaryTypeName","src":"9780:7:7","typeDescriptions":{}}},"id":1238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9780:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1234,"name":"ERC20InvalidApprover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":709,"src":"9759:20:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":1239,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9759:32:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1240,"nodeType":"RevertStatement","src":"9752:39:7"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1243,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1221,"src":"9815:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1246,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9834:1:7","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":1245,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9826:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1244,"name":"address","nodeType":"ElementaryTypeName","src":"9826:7:7","typeDescriptions":{}}},"id":1247,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9826:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9815:21:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1257,"nodeType":"IfStatement","src":"9811:90:7","trueBody":{"id":1256,"nodeType":"Block","src":"9838:63:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1252,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9887:1:7","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":1251,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9879:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1250,"name":"address","nodeType":"ElementaryTypeName","src":"9879:7:7","typeDescriptions":{}}},"id":1253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9879:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1249,"name":"ERC20InvalidSpender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":714,"src":"9859:19:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$returns$_t_error_$","typeString":"function (address) pure returns (error)"}},"id":1254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9859:31:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1255,"nodeType":"RevertStatement","src":"9852:38:7"}]}},{"expression":{"id":1264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":1258,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":839,"src":"9910:11:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":1261,"indexExpression":{"id":1259,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1219,"src":"9922:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9910:18:7","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1262,"indexExpression":{"id":1260,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1221,"src":"9929:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9910:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1263,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1223,"src":"9940:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9910:35:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1265,"nodeType":"ExpressionStatement","src":"9910:35:7"},{"condition":{"id":1266,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"9959:9:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1274,"nodeType":"IfStatement","src":"9955:76:7","trueBody":{"id":1273,"nodeType":"Block","src":"9970:61:7","statements":[{"eventCall":{"arguments":[{"id":1268,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1219,"src":"9998:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1269,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1221,"src":"10005:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1270,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1223,"src":"10014: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":1267,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1346,"src":"9989:8:7","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9989:31:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1272,"nodeType":"EmitStatement","src":"9984:36:7"}]}}]},"documentation":{"id":1217,"nodeType":"StructuredDocumentation","src":"8764:836:7","text":" @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n `Approval` event during `transferFrom` operations.\n Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n true using the following override:\n ```solidity\n function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n     super._approve(owner, spender, value, true);\n }\n ```\n Requirements are the same as {_approve}."},"id":1276,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"9614:8:7","nodeType":"FunctionDefinition","parameters":{"id":1226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1219,"mutability":"mutable","name":"owner","nameLocation":"9631:5:7","nodeType":"VariableDeclaration","scope":1276,"src":"9623:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1218,"name":"address","nodeType":"ElementaryTypeName","src":"9623:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1221,"mutability":"mutable","name":"spender","nameLocation":"9646:7:7","nodeType":"VariableDeclaration","scope":1276,"src":"9638:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1220,"name":"address","nodeType":"ElementaryTypeName","src":"9638:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1223,"mutability":"mutable","name":"value","nameLocation":"9663:5:7","nodeType":"VariableDeclaration","scope":1276,"src":"9655:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1222,"name":"uint256","nodeType":"ElementaryTypeName","src":"9655:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1225,"mutability":"mutable","name":"emitEvent","nameLocation":"9675:9:7","nodeType":"VariableDeclaration","scope":1276,"src":"9670:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1224,"name":"bool","nodeType":"ElementaryTypeName","src":"9670:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9622:63:7"},"returnParameters":{"id":1227,"nodeType":"ParameterList","parameters":[],"src":"9703:0:7"},"scope":1325,"src":"9605:432:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1323,"nodeType":"Block","src":"10408:387:7","statements":[{"assignments":[1287],"declarations":[{"constant":false,"id":1287,"mutability":"mutable","name":"currentAllowance","nameLocation":"10426:16:7","nodeType":"VariableDeclaration","scope":1323,"src":"10418:24:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1286,"name":"uint256","nodeType":"ElementaryTypeName","src":"10418:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1292,"initialValue":{"arguments":[{"id":1289,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1279,"src":"10455:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1290,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1281,"src":"10462:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1288,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":952,"src":"10445:9:7","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":1291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10445:25:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10418:52:7"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1293,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1287,"src":"10484:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":1296,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10508:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":1295,"name":"uint256","nodeType":"ElementaryTypeName","src":"10508:7:7","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":1294,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10503:4:7","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":1297,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10503:13:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":1298,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10517:3:7","memberName":"max","nodeType":"MemberAccess","src":"10503:17:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10484:36:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1322,"nodeType":"IfStatement","src":"10480:309:7","trueBody":{"id":1321,"nodeType":"Block","src":"10522:267:7","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1300,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1287,"src":"10540:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1301,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1283,"src":"10559:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10540:24:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1310,"nodeType":"IfStatement","src":"10536:130:7","trueBody":{"id":1309,"nodeType":"Block","src":"10566:100:7","statements":[{"errorCall":{"arguments":[{"id":1304,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1281,"src":"10618:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1305,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1287,"src":"10627:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1306,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1283,"src":"10645:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1303,"name":"ERC20InsufficientAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":704,"src":"10591:26:7","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256,uint256) pure returns (error)"}},"id":1307,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10591:60:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1308,"nodeType":"RevertStatement","src":"10584:67:7"}]}},{"id":1320,"nodeType":"UncheckedBlock","src":"10679:100:7","statements":[{"expression":{"arguments":[{"id":1312,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1279,"src":"10716:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1313,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1281,"src":"10723:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1314,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1287,"src":"10732:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1315,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1283,"src":"10751:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10732:24:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":1317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10758:5:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":1311,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[1216,1276],"referencedDeclaration":1276,"src":"10707:8:7","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_bool_$returns$__$","typeString":"function (address,address,uint256,bool)"}},"id":1318,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10707:57:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1319,"nodeType":"ExpressionStatement","src":"10707:57:7"}]}]}}]},"documentation":{"id":1277,"nodeType":"StructuredDocumentation","src":"10043:271:7","text":" @dev Updates `owner`'s allowance for `spender` based on spent `value`.\n Does not update the allowance value in case of infinite allowance.\n Revert if not enough allowance is available.\n Does not emit an {Approval} event."},"id":1324,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"10328:15:7","nodeType":"FunctionDefinition","parameters":{"id":1284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1279,"mutability":"mutable","name":"owner","nameLocation":"10352:5:7","nodeType":"VariableDeclaration","scope":1324,"src":"10344:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1278,"name":"address","nodeType":"ElementaryTypeName","src":"10344:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1281,"mutability":"mutable","name":"spender","nameLocation":"10367:7:7","nodeType":"VariableDeclaration","scope":1324,"src":"10359:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1280,"name":"address","nodeType":"ElementaryTypeName","src":"10359:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1283,"mutability":"mutable","name":"value","nameLocation":"10384:5:7","nodeType":"VariableDeclaration","scope":1324,"src":"10376:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1282,"name":"uint256","nodeType":"ElementaryTypeName","src":"10376:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10343:47:7"},"returnParameters":{"id":1285,"nodeType":"ParameterList","parameters":[],"src":"10408:0:7"},"scope":1325,"src":"10319:476:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":1326,"src":"1106:9691:7","usedErrors":[685,690,695,704,709,714],"usedEvents":[1337,1346]}],"src":"105:10693:7"},"id":7},"@openzeppelin/contracts/token/ERC20/IERC20.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","exportedSymbols":{"IERC20":[1403]},"id":1404,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1327,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"106:25:8"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":1328,"nodeType":"StructuredDocumentation","src":"133:71:8","text":" @dev Interface of the ERC-20 standard as defined in the ERC."},"fullyImplemented":false,"id":1403,"linearizedBaseContracts":[1403],"name":"IERC20","nameLocation":"215:6:8","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":1329,"nodeType":"StructuredDocumentation","src":"228:158:8","text":" @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero."},"eventSelector":"ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","id":1337,"name":"Transfer","nameLocation":"397:8:8","nodeType":"EventDefinition","parameters":{"id":1336,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1331,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"422:4:8","nodeType":"VariableDeclaration","scope":1337,"src":"406:20:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1330,"name":"address","nodeType":"ElementaryTypeName","src":"406:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1333,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"444:2:8","nodeType":"VariableDeclaration","scope":1337,"src":"428:18:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1332,"name":"address","nodeType":"ElementaryTypeName","src":"428:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1335,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"456:5:8","nodeType":"VariableDeclaration","scope":1337,"src":"448:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1334,"name":"uint256","nodeType":"ElementaryTypeName","src":"448:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"405:57:8"},"src":"391:72:8"},{"anonymous":false,"documentation":{"id":1338,"nodeType":"StructuredDocumentation","src":"469:148:8","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."},"eventSelector":"8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925","id":1346,"name":"Approval","nameLocation":"628:8:8","nodeType":"EventDefinition","parameters":{"id":1345,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1340,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"653:5:8","nodeType":"VariableDeclaration","scope":1346,"src":"637:21:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1339,"name":"address","nodeType":"ElementaryTypeName","src":"637:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1342,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"676:7:8","nodeType":"VariableDeclaration","scope":1346,"src":"660:23:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1341,"name":"address","nodeType":"ElementaryTypeName","src":"660:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1344,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"693:5:8","nodeType":"VariableDeclaration","scope":1346,"src":"685:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1343,"name":"uint256","nodeType":"ElementaryTypeName","src":"685:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"636:63:8"},"src":"622:78:8"},{"documentation":{"id":1347,"nodeType":"StructuredDocumentation","src":"706:65:8","text":" @dev Returns the value of tokens in existence."},"functionSelector":"18160ddd","id":1352,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"785:11:8","nodeType":"FunctionDefinition","parameters":{"id":1348,"nodeType":"ParameterList","parameters":[],"src":"796:2:8"},"returnParameters":{"id":1351,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1350,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1352,"src":"822:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1349,"name":"uint256","nodeType":"ElementaryTypeName","src":"822:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"821:9:8"},"scope":1403,"src":"776:55:8","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1353,"nodeType":"StructuredDocumentation","src":"837:71:8","text":" @dev Returns the value of tokens owned by `account`."},"functionSelector":"70a08231","id":1360,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"922:9:8","nodeType":"FunctionDefinition","parameters":{"id":1356,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1355,"mutability":"mutable","name":"account","nameLocation":"940:7:8","nodeType":"VariableDeclaration","scope":1360,"src":"932:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1354,"name":"address","nodeType":"ElementaryTypeName","src":"932:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"931:17:8"},"returnParameters":{"id":1359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1358,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1360,"src":"972:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1357,"name":"uint256","nodeType":"ElementaryTypeName","src":"972:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"971:9:8"},"scope":1403,"src":"913:68:8","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1361,"nodeType":"StructuredDocumentation","src":"987:213:8","text":" @dev Moves a `value` amount of tokens from the caller's account to `to`.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"a9059cbb","id":1370,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1214:8:8","nodeType":"FunctionDefinition","parameters":{"id":1366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1363,"mutability":"mutable","name":"to","nameLocation":"1231:2:8","nodeType":"VariableDeclaration","scope":1370,"src":"1223:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1362,"name":"address","nodeType":"ElementaryTypeName","src":"1223:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1365,"mutability":"mutable","name":"value","nameLocation":"1243:5:8","nodeType":"VariableDeclaration","scope":1370,"src":"1235:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1364,"name":"uint256","nodeType":"ElementaryTypeName","src":"1235:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1222:27:8"},"returnParameters":{"id":1369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1368,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1370,"src":"1268:4:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1367,"name":"bool","nodeType":"ElementaryTypeName","src":"1268:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1267:6:8"},"scope":1403,"src":"1205:69:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1371,"nodeType":"StructuredDocumentation","src":"1280:264:8","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":1380,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1558:9:8","nodeType":"FunctionDefinition","parameters":{"id":1376,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1373,"mutability":"mutable","name":"owner","nameLocation":"1576:5:8","nodeType":"VariableDeclaration","scope":1380,"src":"1568:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1372,"name":"address","nodeType":"ElementaryTypeName","src":"1568:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1375,"mutability":"mutable","name":"spender","nameLocation":"1591:7:8","nodeType":"VariableDeclaration","scope":1380,"src":"1583:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1374,"name":"address","nodeType":"ElementaryTypeName","src":"1583:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1567:32:8"},"returnParameters":{"id":1379,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1378,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1380,"src":"1623:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1377,"name":"uint256","nodeType":"ElementaryTypeName","src":"1623:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1622:9:8"},"scope":1403,"src":"1549:83:8","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1381,"nodeType":"StructuredDocumentation","src":"1638:667:8","text":" @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n 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":1390,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2319:7:8","nodeType":"FunctionDefinition","parameters":{"id":1386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1383,"mutability":"mutable","name":"spender","nameLocation":"2335:7:8","nodeType":"VariableDeclaration","scope":1390,"src":"2327:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1382,"name":"address","nodeType":"ElementaryTypeName","src":"2327:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1385,"mutability":"mutable","name":"value","nameLocation":"2352:5:8","nodeType":"VariableDeclaration","scope":1390,"src":"2344:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1384,"name":"uint256","nodeType":"ElementaryTypeName","src":"2344:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2326:32:8"},"returnParameters":{"id":1389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1388,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1390,"src":"2377:4:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1387,"name":"bool","nodeType":"ElementaryTypeName","src":"2377:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2376:6:8"},"scope":1403,"src":"2310:73:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1391,"nodeType":"StructuredDocumentation","src":"2389:297:8","text":" @dev Moves a `value` amount of tokens from `from` to `to` using the\n allowance mechanism. `value` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"23b872dd","id":1402,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2700:12:8","nodeType":"FunctionDefinition","parameters":{"id":1398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1393,"mutability":"mutable","name":"from","nameLocation":"2721:4:8","nodeType":"VariableDeclaration","scope":1402,"src":"2713:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1392,"name":"address","nodeType":"ElementaryTypeName","src":"2713:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1395,"mutability":"mutable","name":"to","nameLocation":"2735:2:8","nodeType":"VariableDeclaration","scope":1402,"src":"2727:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1394,"name":"address","nodeType":"ElementaryTypeName","src":"2727:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1397,"mutability":"mutable","name":"value","nameLocation":"2747:5:8","nodeType":"VariableDeclaration","scope":1402,"src":"2739:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1396,"name":"uint256","nodeType":"ElementaryTypeName","src":"2739:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2712:41:8"},"returnParameters":{"id":1401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1400,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1402,"src":"2772:4:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1399,"name":"bool","nodeType":"ElementaryTypeName","src":"2772:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2771:6:8"},"scope":1403,"src":"2691:87:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":1404,"src":"205:2575:8","usedErrors":[],"usedEvents":[1337,1346]}],"src":"106:2675:8"},"id":8},"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol","exportedSymbols":{"ECDSA":[3860],"EIP712":[4087],"ERC20":[1325],"ERC20Permit":[1557],"IERC20Permit":[1619],"Nonces":[1717]},"id":1558,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1405,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"122:24:9"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","file":"./IERC20Permit.sol","id":1407,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1558,"sourceUnit":1620,"src":"148:48:9","symbolAliases":[{"foreign":{"id":1406,"name":"IERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1619,"src":"156:12:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"../ERC20.sol","id":1409,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1558,"sourceUnit":1326,"src":"197:35:9","symbolAliases":[{"foreign":{"id":1408,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1325,"src":"205:5:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","file":"../../../utils/cryptography/ECDSA.sol","id":1411,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1558,"sourceUnit":3861,"src":"233:60:9","symbolAliases":[{"foreign":{"id":1410,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3860,"src":"241:5:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/EIP712.sol","file":"../../../utils/cryptography/EIP712.sol","id":1413,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1558,"sourceUnit":4088,"src":"294:62:9","symbolAliases":[{"foreign":{"id":1412,"name":"EIP712","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4087,"src":"302:6:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","file":"../../../utils/Nonces.sol","id":1415,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1558,"sourceUnit":1718,"src":"357:49:9","symbolAliases":[{"foreign":{"id":1414,"name":"Nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1717,"src":"365:6:9","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":1417,"name":"ERC20","nameLocations":["931:5:9"],"nodeType":"IdentifierPath","referencedDeclaration":1325,"src":"931:5:9"},"id":1418,"nodeType":"InheritanceSpecifier","src":"931:5:9"},{"baseName":{"id":1419,"name":"IERC20Permit","nameLocations":["938:12:9"],"nodeType":"IdentifierPath","referencedDeclaration":1619,"src":"938:12:9"},"id":1420,"nodeType":"InheritanceSpecifier","src":"938:12:9"},{"baseName":{"id":1421,"name":"EIP712","nameLocations":["952:6:9"],"nodeType":"IdentifierPath","referencedDeclaration":4087,"src":"952:6:9"},"id":1422,"nodeType":"InheritanceSpecifier","src":"952:6:9"},{"baseName":{"id":1423,"name":"Nonces","nameLocations":["960:6:9"],"nodeType":"IdentifierPath","referencedDeclaration":1717,"src":"960:6:9"},"id":1424,"nodeType":"InheritanceSpecifier","src":"960:6:9"}],"canonicalName":"ERC20Permit","contractDependencies":[],"contractKind":"contract","documentation":{"id":1416,"nodeType":"StructuredDocumentation","src":"408:489:9","text":" @dev Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n Adds the {permit} method, which can be used to change an account's ERC-20 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":true,"id":1557,"linearizedBaseContracts":[1557,1717,4087,673,1619,1325,715,1583,1403,1649],"name":"ERC20Permit","nameLocation":"916:11:9","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":1429,"mutability":"constant","name":"PERMIT_TYPEHASH","nameLocation":"998:15:9","nodeType":"VariableDeclaration","scope":1557,"src":"973:146:9","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1425,"name":"bytes32","nodeType":"ElementaryTypeName","src":"973:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"5065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529","id":1427,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1034:84:9","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":1426,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1024:9:9","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1428,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1024:95:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"documentation":{"id":1430,"nodeType":"StructuredDocumentation","src":"1126:52:9","text":" @dev Permit deadline has expired."},"errorSelector":"62791302","id":1434,"name":"ERC2612ExpiredSignature","nameLocation":"1189:23:9","nodeType":"ErrorDefinition","parameters":{"id":1433,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1432,"mutability":"mutable","name":"deadline","nameLocation":"1221:8:9","nodeType":"VariableDeclaration","scope":1434,"src":"1213:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1431,"name":"uint256","nodeType":"ElementaryTypeName","src":"1213:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1212:18:9"},"src":"1183:48:9"},{"documentation":{"id":1435,"nodeType":"StructuredDocumentation","src":"1237:45:9","text":" @dev Mismatched signature."},"errorSelector":"4b800e46","id":1441,"name":"ERC2612InvalidSigner","nameLocation":"1293:20:9","nodeType":"ErrorDefinition","parameters":{"id":1440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1437,"mutability":"mutable","name":"signer","nameLocation":"1322:6:9","nodeType":"VariableDeclaration","scope":1441,"src":"1314:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1436,"name":"address","nodeType":"ElementaryTypeName","src":"1314:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1439,"mutability":"mutable","name":"owner","nameLocation":"1338:5:9","nodeType":"VariableDeclaration","scope":1441,"src":"1330:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1438,"name":"address","nodeType":"ElementaryTypeName","src":"1330:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1313:31:9"},"src":"1287:58:9"},{"body":{"id":1451,"nodeType":"Block","src":"1627:2:9","statements":[]},"documentation":{"id":1442,"nodeType":"StructuredDocumentation","src":"1351:221:9","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 ERC-20 token name."},"id":1452,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":1447,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1444,"src":"1616:4:9","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"31","id":1448,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1622:3:9","typeDescriptions":{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""},"value":"1"}],"id":1449,"kind":"baseConstructorSpecifier","modifierName":{"id":1446,"name":"EIP712","nameLocations":["1609:6:9"],"nodeType":"IdentifierPath","referencedDeclaration":4087,"src":"1609:6:9"},"nodeType":"ModifierInvocation","src":"1609:17:9"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":1445,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1444,"mutability":"mutable","name":"name","nameLocation":"1603:4:9","nodeType":"VariableDeclaration","scope":1452,"src":"1589:18:9","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1443,"name":"string","nodeType":"ElementaryTypeName","src":"1589:6:9","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1588:20:9"},"returnParameters":{"id":1450,"nodeType":"ParameterList","parameters":[],"src":"1627:0:9"},"scope":1557,"src":"1577:52:9","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[1604],"body":{"id":1528,"nodeType":"Block","src":"1857:483:9","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1470,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"1871:5:9","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1877:9:9","memberName":"timestamp","nodeType":"MemberAccess","src":"1871:15:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1472,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1461,"src":"1889:8:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1871:26:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1479,"nodeType":"IfStatement","src":"1867:97:9","trueBody":{"id":1478,"nodeType":"Block","src":"1899:65:9","statements":[{"errorCall":{"arguments":[{"id":1475,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1461,"src":"1944:8:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1474,"name":"ERC2612ExpiredSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1434,"src":"1920:23:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":1476,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1920:33:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1477,"nodeType":"RevertStatement","src":"1913:40:9"}]}},{"assignments":[1481],"declarations":[{"constant":false,"id":1481,"mutability":"mutable","name":"structHash","nameLocation":"1982:10:9","nodeType":"VariableDeclaration","scope":1528,"src":"1974:18:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1480,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1974:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":1495,"initialValue":{"arguments":[{"arguments":[{"id":1485,"name":"PERMIT_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1429,"src":"2016:15:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1486,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1455,"src":"2033:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1487,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1457,"src":"2040:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1488,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1459,"src":"2049:5:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":1490,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1455,"src":"2066:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1489,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1691,"src":"2056:9:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":1491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2056:16:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1492,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1461,"src":"2074:8:9","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":1483,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2005:3:9","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1484,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2009:6:9","memberName":"encode","nodeType":"MemberAccess","src":"2005:10:9","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":1493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2005:78:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1482,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1995:9:9","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1995:89:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"1974:110:9"},{"assignments":[1497],"declarations":[{"constant":false,"id":1497,"mutability":"mutable","name":"hash","nameLocation":"2103:4:9","nodeType":"VariableDeclaration","scope":1528,"src":"2095:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1496,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2095:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":1501,"initialValue":{"arguments":[{"id":1499,"name":"structHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1481,"src":"2127:10:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1498,"name":"_hashTypedDataV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4020,"src":"2110:16:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32) view returns (bytes32)"}},"id":1500,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2110:28:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2095:43:9"},{"assignments":[1503],"declarations":[{"constant":false,"id":1503,"mutability":"mutable","name":"signer","nameLocation":"2157:6:9","nodeType":"VariableDeclaration","scope":1528,"src":"2149:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1502,"name":"address","nodeType":"ElementaryTypeName","src":"2149:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1511,"initialValue":{"arguments":[{"id":1506,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1497,"src":"2180:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1507,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1463,"src":"2186:1:9","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1508,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1465,"src":"2189:1:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1509,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1467,"src":"2192:1:9","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":1504,"name":"ECDSA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3860,"src":"2166:5:9","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_ECDSA_$3860_$","typeString":"type(library ECDSA)"}},"id":1505,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2172:7:9","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":3810,"src":"2166:13:9","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":1510,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2166:28:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2149:45:9"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1512,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1503,"src":"2208:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":1513,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1455,"src":"2218:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2208:15:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1521,"nodeType":"IfStatement","src":"2204:88:9","trueBody":{"id":1520,"nodeType":"Block","src":"2225:67:9","statements":[{"errorCall":{"arguments":[{"id":1516,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1503,"src":"2267:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1517,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1455,"src":"2275:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1515,"name":"ERC2612InvalidSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1441,"src":"2246:20:9","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_address_$returns$_t_error_$","typeString":"function (address,address) pure returns (error)"}},"id":1518,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2246:35:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1519,"nodeType":"RevertStatement","src":"2239:42:9"}]}},{"expression":{"arguments":[{"id":1523,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1455,"src":"2311:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1524,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1457,"src":"2318:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1525,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1459,"src":"2327:5:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1522,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[1216,1276],"referencedDeclaration":1216,"src":"2302:8:9","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2302:31:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1527,"nodeType":"ExpressionStatement","src":"2302:31:9"}]},"documentation":{"id":1453,"nodeType":"StructuredDocumentation","src":"1635:28:9","text":"@inheritdoc IERC20Permit"},"functionSelector":"d505accf","id":1529,"implemented":true,"kind":"function","modifiers":[],"name":"permit","nameLocation":"1677:6:9","nodeType":"FunctionDefinition","parameters":{"id":1468,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1455,"mutability":"mutable","name":"owner","nameLocation":"1701:5:9","nodeType":"VariableDeclaration","scope":1529,"src":"1693:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1454,"name":"address","nodeType":"ElementaryTypeName","src":"1693:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1457,"mutability":"mutable","name":"spender","nameLocation":"1724:7:9","nodeType":"VariableDeclaration","scope":1529,"src":"1716:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1456,"name":"address","nodeType":"ElementaryTypeName","src":"1716:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1459,"mutability":"mutable","name":"value","nameLocation":"1749:5:9","nodeType":"VariableDeclaration","scope":1529,"src":"1741:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1458,"name":"uint256","nodeType":"ElementaryTypeName","src":"1741:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1461,"mutability":"mutable","name":"deadline","nameLocation":"1772:8:9","nodeType":"VariableDeclaration","scope":1529,"src":"1764:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1460,"name":"uint256","nodeType":"ElementaryTypeName","src":"1764:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1463,"mutability":"mutable","name":"v","nameLocation":"1796:1:9","nodeType":"VariableDeclaration","scope":1529,"src":"1790:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1462,"name":"uint8","nodeType":"ElementaryTypeName","src":"1790:5:9","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1465,"mutability":"mutable","name":"r","nameLocation":"1815:1:9","nodeType":"VariableDeclaration","scope":1529,"src":"1807:9:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1464,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1807:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1467,"mutability":"mutable","name":"s","nameLocation":"1834:1:9","nodeType":"VariableDeclaration","scope":1529,"src":"1826:9:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1466,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1826:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1683:158:9"},"returnParameters":{"id":1469,"nodeType":"ParameterList","parameters":[],"src":"1857:0:9"},"scope":1557,"src":"1668:672:9","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1612,1676],"body":{"id":1545,"nodeType":"Block","src":"2479:43:9","statements":[{"expression":{"arguments":[{"id":1542,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1532,"src":"2509:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":1540,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"2496:5:9","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_ERC20Permit_$1557_$","typeString":"type(contract super ERC20Permit)"}},"id":1541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2502:6:9","memberName":"nonces","nodeType":"MemberAccess","referencedDeclaration":1676,"src":"2496:12:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2496:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1539,"id":1544,"nodeType":"Return","src":"2489:26:9"}]},"documentation":{"id":1530,"nodeType":"StructuredDocumentation","src":"2346:28:9","text":"@inheritdoc IERC20Permit"},"functionSelector":"7ecebe00","id":1546,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"2388:6:9","nodeType":"FunctionDefinition","overrides":{"id":1536,"nodeType":"OverrideSpecifier","overrides":[{"id":1534,"name":"IERC20Permit","nameLocations":["2439:12:9"],"nodeType":"IdentifierPath","referencedDeclaration":1619,"src":"2439:12:9"},{"id":1535,"name":"Nonces","nameLocations":["2453:6:9"],"nodeType":"IdentifierPath","referencedDeclaration":1717,"src":"2453:6:9"}],"src":"2430:30:9"},"parameters":{"id":1533,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1532,"mutability":"mutable","name":"owner","nameLocation":"2403:5:9","nodeType":"VariableDeclaration","scope":1546,"src":"2395:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1531,"name":"address","nodeType":"ElementaryTypeName","src":"2395:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2394:15:9"},"returnParameters":{"id":1539,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1538,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1546,"src":"2470:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1537,"name":"uint256","nodeType":"ElementaryTypeName","src":"2470:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2469:9:9"},"scope":1557,"src":"2379:143:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1618],"body":{"id":1555,"nodeType":"Block","src":"2682:44:9","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1552,"name":"_domainSeparatorV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3983,"src":"2699:18:9","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":1553,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2699:20:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":1551,"id":1554,"nodeType":"Return","src":"2692:27:9"}]},"documentation":{"id":1547,"nodeType":"StructuredDocumentation","src":"2528:28:9","text":"@inheritdoc IERC20Permit"},"functionSelector":"3644e515","id":1556,"implemented":true,"kind":"function","modifiers":[],"name":"DOMAIN_SEPARATOR","nameLocation":"2623:16:9","nodeType":"FunctionDefinition","parameters":{"id":1548,"nodeType":"ParameterList","parameters":[],"src":"2639:2:9"},"returnParameters":{"id":1551,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1550,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1556,"src":"2673:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1549,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2673:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2672:9:9"},"scope":1557,"src":"2614:112:9","stateMutability":"view","virtual":true,"visibility":"external"}],"scope":1558,"src":"898:1830:9","usedErrors":[685,690,695,704,709,714,1434,1441,1659,1783,1785,3523,3528,3533],"usedEvents":[653,1337,1346]}],"src":"122:2607:9"},"id":9},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol","exportedSymbols":{"IERC20":[1403],"IERC20Metadata":[1583]},"id":1584,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1559,"literals":["solidity",">=","0.6",".2"],"nodeType":"PragmaDirective","src":"125:24:10"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/IERC20.sol","file":"../IERC20.sol","id":1561,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1584,"sourceUnit":1404,"src":"151:37:10","symbolAliases":[{"foreign":{"id":1560,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1403,"src":"159:6:10","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":1563,"name":"IERC20","nameLocations":["306:6:10"],"nodeType":"IdentifierPath","referencedDeclaration":1403,"src":"306:6:10"},"id":1564,"nodeType":"InheritanceSpecifier","src":"306:6:10"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":1562,"nodeType":"StructuredDocumentation","src":"190:87:10","text":" @dev Interface for the optional metadata functions from the ERC-20 standard."},"fullyImplemented":false,"id":1583,"linearizedBaseContracts":[1583,1403],"name":"IERC20Metadata","nameLocation":"288:14:10","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1565,"nodeType":"StructuredDocumentation","src":"319:54:10","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":1570,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"387:4:10","nodeType":"FunctionDefinition","parameters":{"id":1566,"nodeType":"ParameterList","parameters":[],"src":"391:2:10"},"returnParameters":{"id":1569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1568,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1570,"src":"417:13:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1567,"name":"string","nodeType":"ElementaryTypeName","src":"417:6:10","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"416:15:10"},"scope":1583,"src":"378:54:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1571,"nodeType":"StructuredDocumentation","src":"438:56:10","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":1576,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"508:6:10","nodeType":"FunctionDefinition","parameters":{"id":1572,"nodeType":"ParameterList","parameters":[],"src":"514:2:10"},"returnParameters":{"id":1575,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1574,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1576,"src":"540:13:10","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1573,"name":"string","nodeType":"ElementaryTypeName","src":"540:6:10","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"539:15:10"},"scope":1583,"src":"499:56:10","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1577,"nodeType":"StructuredDocumentation","src":"561:65:10","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":1582,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"640:8:10","nodeType":"FunctionDefinition","parameters":{"id":1578,"nodeType":"ParameterList","parameters":[],"src":"648:2:10"},"returnParameters":{"id":1581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1580,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1582,"src":"674:5:10","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1579,"name":"uint8","nodeType":"ElementaryTypeName","src":"674:5:10","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"673:7:10"},"scope":1583,"src":"631:50:10","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1584,"src":"278:405:10","usedErrors":[],"usedEvents":[1337,1346]}],"src":"125:559:10"},"id":10},"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol","exportedSymbols":{"IERC20Permit":[1619]},"id":1620,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1585,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"123:25:11"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Permit","contractDependencies":[],"contractKind":"interface","documentation":{"id":1586,"nodeType":"StructuredDocumentation","src":"150:1965:11","text":" @dev Interface of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in\n https://eips.ethereum.org/EIPS/eip-2612[ERC-2612].\n Adds the {permit} method, which can be used to change an account's ERC-20 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 ==== Security Considerations\n There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n considered as an intention to spend the allowance in any specific way. The second is that because permits have\n built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n generally recommended is:\n ```solidity\n function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n     doThing(..., value);\n }\n function doThing(..., uint256 value) public {\n     token.safeTransferFrom(msg.sender, address(this), value);\n     ...\n }\n ```\n Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n {SafeERC20-safeTransferFrom}).\n Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n contracts should have entry points that don't rely on permit."},"fullyImplemented":false,"id":1619,"linearizedBaseContracts":[1619],"name":"IERC20Permit","nameLocation":"2126:12:11","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1587,"nodeType":"StructuredDocumentation","src":"2145:850:11","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].\n CAUTION: See Security Considerations above."},"functionSelector":"d505accf","id":1604,"implemented":false,"kind":"function","modifiers":[],"name":"permit","nameLocation":"3009:6:11","nodeType":"FunctionDefinition","parameters":{"id":1602,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1589,"mutability":"mutable","name":"owner","nameLocation":"3033:5:11","nodeType":"VariableDeclaration","scope":1604,"src":"3025:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1588,"name":"address","nodeType":"ElementaryTypeName","src":"3025:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1591,"mutability":"mutable","name":"spender","nameLocation":"3056:7:11","nodeType":"VariableDeclaration","scope":1604,"src":"3048:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1590,"name":"address","nodeType":"ElementaryTypeName","src":"3048:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1593,"mutability":"mutable","name":"value","nameLocation":"3081:5:11","nodeType":"VariableDeclaration","scope":1604,"src":"3073:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1592,"name":"uint256","nodeType":"ElementaryTypeName","src":"3073:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1595,"mutability":"mutable","name":"deadline","nameLocation":"3104:8:11","nodeType":"VariableDeclaration","scope":1604,"src":"3096:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1594,"name":"uint256","nodeType":"ElementaryTypeName","src":"3096:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1597,"mutability":"mutable","name":"v","nameLocation":"3128:1:11","nodeType":"VariableDeclaration","scope":1604,"src":"3122:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1596,"name":"uint8","nodeType":"ElementaryTypeName","src":"3122:5:11","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1599,"mutability":"mutable","name":"r","nameLocation":"3147:1:11","nodeType":"VariableDeclaration","scope":1604,"src":"3139:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1598,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3139:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1601,"mutability":"mutable","name":"s","nameLocation":"3166:1:11","nodeType":"VariableDeclaration","scope":1604,"src":"3158:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1600,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3158:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3015:158:11"},"returnParameters":{"id":1603,"nodeType":"ParameterList","parameters":[],"src":"3182:0:11"},"scope":1619,"src":"3000:183:11","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1605,"nodeType":"StructuredDocumentation","src":"3189:294:11","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":1612,"implemented":false,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"3497:6:11","nodeType":"FunctionDefinition","parameters":{"id":1608,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1607,"mutability":"mutable","name":"owner","nameLocation":"3512:5:11","nodeType":"VariableDeclaration","scope":1612,"src":"3504:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1606,"name":"address","nodeType":"ElementaryTypeName","src":"3504:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3503:15:11"},"returnParameters":{"id":1611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1610,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1612,"src":"3542:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1609,"name":"uint256","nodeType":"ElementaryTypeName","src":"3542:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3541:9:11"},"scope":1619,"src":"3488:63:11","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1613,"nodeType":"StructuredDocumentation","src":"3557:128:11","text":" @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}."},"functionSelector":"3644e515","id":1618,"implemented":false,"kind":"function","modifiers":[],"name":"DOMAIN_SEPARATOR","nameLocation":"3752:16:11","nodeType":"FunctionDefinition","parameters":{"id":1614,"nodeType":"ParameterList","parameters":[],"src":"3768:2:11"},"returnParameters":{"id":1617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1616,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1618,"src":"3794:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1615,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3794:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3793:9:11"},"scope":1619,"src":"3743:60:11","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1620,"src":"2116:1689:11","usedErrors":[],"usedEvents":[]}],"src":"123:3683:11"},"id":11},"@openzeppelin/contracts/utils/Context.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Context.sol","exportedSymbols":{"Context":[1649]},"id":1650,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1621,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:12"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":1622,"nodeType":"StructuredDocumentation","src":"127:496:12","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":1649,"linearizedBaseContracts":[1649],"name":"Context","nameLocation":"642:7:12","nodeType":"ContractDefinition","nodes":[{"body":{"id":1630,"nodeType":"Block","src":"718:34:12","statements":[{"expression":{"expression":{"id":1627,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"735:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1628,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"739:6:12","memberName":"sender","nodeType":"MemberAccess","src":"735:10:12","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":1626,"id":1629,"nodeType":"Return","src":"728:17:12"}]},"id":1631,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"665:10:12","nodeType":"FunctionDefinition","parameters":{"id":1623,"nodeType":"ParameterList","parameters":[],"src":"675:2:12"},"returnParameters":{"id":1626,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1625,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1631,"src":"709:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1624,"name":"address","nodeType":"ElementaryTypeName","src":"709:7:12","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"708:9:12"},"scope":1649,"src":"656:96:12","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1639,"nodeType":"Block","src":"825:32:12","statements":[{"expression":{"expression":{"id":1636,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"842:3:12","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"846:4:12","memberName":"data","nodeType":"MemberAccess","src":"842:8:12","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":1635,"id":1638,"nodeType":"Return","src":"835:15:12"}]},"id":1640,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"767:8:12","nodeType":"FunctionDefinition","parameters":{"id":1632,"nodeType":"ParameterList","parameters":[],"src":"775:2:12"},"returnParameters":{"id":1635,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1634,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1640,"src":"809:14:12","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":1633,"name":"bytes","nodeType":"ElementaryTypeName","src":"809:5:12","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"808:16:12"},"scope":1649,"src":"758:99:12","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1647,"nodeType":"Block","src":"935:25:12","statements":[{"expression":{"hexValue":"30","id":1645,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"952:1:12","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":1644,"id":1646,"nodeType":"Return","src":"945:8:12"}]},"id":1648,"implemented":true,"kind":"function","modifiers":[],"name":"_contextSuffixLength","nameLocation":"872:20:12","nodeType":"FunctionDefinition","parameters":{"id":1641,"nodeType":"ParameterList","parameters":[],"src":"892:2:12"},"returnParameters":{"id":1644,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1643,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1648,"src":"926:7:12","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1642,"name":"uint256","nodeType":"ElementaryTypeName","src":"926:7:12","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"925:9:12"},"scope":1649,"src":"863:97:12","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":1650,"src":"624:338:12","usedErrors":[],"usedEvents":[]}],"src":"101:862:12"},"id":12},"@openzeppelin/contracts/utils/Nonces.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Nonces.sol","exportedSymbols":{"Nonces":[1717]},"id":1718,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1651,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:13"},{"abstract":true,"baseContracts":[],"canonicalName":"Nonces","contractDependencies":[],"contractKind":"contract","documentation":{"id":1652,"nodeType":"StructuredDocumentation","src":"125:83:13","text":" @dev Provides tracking nonces for addresses. Nonces will only increment."},"fullyImplemented":true,"id":1717,"linearizedBaseContracts":[1717],"name":"Nonces","nameLocation":"227:6:13","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1653,"nodeType":"StructuredDocumentation","src":"240:90:13","text":" @dev The nonce used for an `account` is not the expected current nonce."},"errorSelector":"752d88c0","id":1659,"name":"InvalidAccountNonce","nameLocation":"341:19:13","nodeType":"ErrorDefinition","parameters":{"id":1658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1655,"mutability":"mutable","name":"account","nameLocation":"369:7:13","nodeType":"VariableDeclaration","scope":1659,"src":"361:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1654,"name":"address","nodeType":"ElementaryTypeName","src":"361:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1657,"mutability":"mutable","name":"currentNonce","nameLocation":"386:12:13","nodeType":"VariableDeclaration","scope":1659,"src":"378:20:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1656,"name":"uint256","nodeType":"ElementaryTypeName","src":"378:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"360:39:13"},"src":"335:65:13"},{"constant":false,"id":1663,"mutability":"mutable","name":"_nonces","nameLocation":"450:7:13","nodeType":"VariableDeclaration","scope":1717,"src":"406:51:13","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1662,"keyName":"account","keyNameLocation":"422:7:13","keyType":{"id":1660,"name":"address","nodeType":"ElementaryTypeName","src":"414:7:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"406:35:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1661,"name":"uint256","nodeType":"ElementaryTypeName","src":"433:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"private"},{"body":{"id":1675,"nodeType":"Block","src":"607:38:13","statements":[{"expression":{"baseExpression":{"id":1671,"name":"_nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1663,"src":"624:7:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1673,"indexExpression":{"id":1672,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1666,"src":"632:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"624:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1670,"id":1674,"nodeType":"Return","src":"617:21:13"}]},"documentation":{"id":1664,"nodeType":"StructuredDocumentation","src":"464:69:13","text":" @dev Returns the next unused nonce for an address."},"functionSelector":"7ecebe00","id":1676,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"547:6:13","nodeType":"FunctionDefinition","parameters":{"id":1667,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1666,"mutability":"mutable","name":"owner","nameLocation":"562:5:13","nodeType":"VariableDeclaration","scope":1676,"src":"554:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1665,"name":"address","nodeType":"ElementaryTypeName","src":"554:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"553:15:13"},"returnParameters":{"id":1670,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1669,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1676,"src":"598:7:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1668,"name":"uint256","nodeType":"ElementaryTypeName","src":"598:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"597:9:13"},"scope":1717,"src":"538:107:13","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":1690,"nodeType":"Block","src":"828:326:13","statements":[{"id":1689,"nodeType":"UncheckedBlock","src":"1031:117:13","statements":[{"expression":{"id":1687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1121:16:13","subExpression":{"baseExpression":{"id":1684,"name":"_nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1663,"src":"1121:7:13","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1686,"indexExpression":{"id":1685,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1679,"src":"1129:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"1121:14:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1683,"id":1688,"nodeType":"Return","src":"1114:23:13"}]}]},"documentation":{"id":1677,"nodeType":"StructuredDocumentation","src":"651:103:13","text":" @dev Consumes a nonce.\n Returns the current value and increments nonce."},"id":1691,"implemented":true,"kind":"function","modifiers":[],"name":"_useNonce","nameLocation":"768:9:13","nodeType":"FunctionDefinition","parameters":{"id":1680,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1679,"mutability":"mutable","name":"owner","nameLocation":"786:5:13","nodeType":"VariableDeclaration","scope":1691,"src":"778:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1678,"name":"address","nodeType":"ElementaryTypeName","src":"778:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"777:15:13"},"returnParameters":{"id":1683,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1682,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1691,"src":"819:7:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1681,"name":"uint256","nodeType":"ElementaryTypeName","src":"819:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"818:9:13"},"scope":1717,"src":"759:395:13","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1715,"nodeType":"Block","src":"1338:149:13","statements":[{"assignments":[1700],"declarations":[{"constant":false,"id":1700,"mutability":"mutable","name":"current","nameLocation":"1356:7:13","nodeType":"VariableDeclaration","scope":1715,"src":"1348:15:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1699,"name":"uint256","nodeType":"ElementaryTypeName","src":"1348:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1704,"initialValue":{"arguments":[{"id":1702,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1694,"src":"1376:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1701,"name":"_useNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1691,"src":"1366:9:13","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$_t_uint256_$","typeString":"function (address) returns (uint256)"}},"id":1703,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1366:16:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1348:34:13"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1705,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1696,"src":"1396:5:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":1706,"name":"current","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1700,"src":"1405:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1396:16:13","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1714,"nodeType":"IfStatement","src":"1392:89:13","trueBody":{"id":1713,"nodeType":"Block","src":"1414:67:13","statements":[{"errorCall":{"arguments":[{"id":1709,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1694,"src":"1455:5:13","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1710,"name":"current","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1700,"src":"1462:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1708,"name":"InvalidAccountNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1659,"src":"1435:19:13","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_address_$_t_uint256_$returns$_t_error_$","typeString":"function (address,uint256) pure returns (error)"}},"id":1711,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1435:35:13","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1712,"nodeType":"RevertStatement","src":"1428:42:13"}]}}]},"documentation":{"id":1692,"nodeType":"StructuredDocumentation","src":"1160:100:13","text":" @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`."},"id":1716,"implemented":true,"kind":"function","modifiers":[],"name":"_useCheckedNonce","nameLocation":"1274:16:13","nodeType":"FunctionDefinition","parameters":{"id":1697,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1694,"mutability":"mutable","name":"owner","nameLocation":"1299:5:13","nodeType":"VariableDeclaration","scope":1716,"src":"1291:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1693,"name":"address","nodeType":"ElementaryTypeName","src":"1291:7:13","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1696,"mutability":"mutable","name":"nonce","nameLocation":"1314:5:13","nodeType":"VariableDeclaration","scope":1716,"src":"1306:13:13","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1695,"name":"uint256","nodeType":"ElementaryTypeName","src":"1306:7:13","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1290:30:13"},"returnParameters":{"id":1698,"nodeType":"ParameterList","parameters":[],"src":"1338:0:13"},"scope":1717,"src":"1265:222:13","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":1718,"src":"209:1280:13","usedErrors":[1659],"usedEvents":[]}],"src":"99:1391:13"},"id":13},"@openzeppelin/contracts/utils/Panic.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","exportedSymbols":{"Panic":[1769]},"id":1770,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1719,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"99:24:14"},{"abstract":false,"baseContracts":[],"canonicalName":"Panic","contractDependencies":[],"contractKind":"library","documentation":{"id":1720,"nodeType":"StructuredDocumentation","src":"125:489:14","text":" @dev Helper library for emitting standardized panic codes.\n ```solidity\n contract Example {\n      using Panic for uint256;\n      // Use any of the declared internal constants\n      function foo() { Panic.GENERIC.panic(); }\n      // Alternatively\n      function foo() { Panic.panic(Panic.GENERIC); }\n }\n ```\n Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].\n _Available since v5.1._"},"fullyImplemented":true,"id":1769,"linearizedBaseContracts":[1769],"name":"Panic","nameLocation":"665:5:14","nodeType":"ContractDefinition","nodes":[{"constant":true,"documentation":{"id":1721,"nodeType":"StructuredDocumentation","src":"677:36:14","text":"@dev generic / unspecified error"},"id":1724,"mutability":"constant","name":"GENERIC","nameLocation":"744:7:14","nodeType":"VariableDeclaration","scope":1769,"src":"718:40:14","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1722,"name":"uint256","nodeType":"ElementaryTypeName","src":"718:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783030","id":1723,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"754:4:14","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0x00"},"visibility":"internal"},{"constant":true,"documentation":{"id":1725,"nodeType":"StructuredDocumentation","src":"764:37:14","text":"@dev used by the assert() builtin"},"id":1728,"mutability":"constant","name":"ASSERT","nameLocation":"832:6:14","nodeType":"VariableDeclaration","scope":1769,"src":"806:39:14","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1726,"name":"uint256","nodeType":"ElementaryTypeName","src":"806:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783031","id":1727,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"841:4:14","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"0x01"},"visibility":"internal"},{"constant":true,"documentation":{"id":1729,"nodeType":"StructuredDocumentation","src":"851:41:14","text":"@dev arithmetic underflow or overflow"},"id":1732,"mutability":"constant","name":"UNDER_OVERFLOW","nameLocation":"923:14:14","nodeType":"VariableDeclaration","scope":1769,"src":"897:47:14","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1730,"name":"uint256","nodeType":"ElementaryTypeName","src":"897:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783131","id":1731,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"940:4:14","typeDescriptions":{"typeIdentifier":"t_rational_17_by_1","typeString":"int_const 17"},"value":"0x11"},"visibility":"internal"},{"constant":true,"documentation":{"id":1733,"nodeType":"StructuredDocumentation","src":"950:35:14","text":"@dev division or modulo by zero"},"id":1736,"mutability":"constant","name":"DIVISION_BY_ZERO","nameLocation":"1016:16:14","nodeType":"VariableDeclaration","scope":1769,"src":"990:49:14","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1734,"name":"uint256","nodeType":"ElementaryTypeName","src":"990:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783132","id":1735,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1035:4:14","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"0x12"},"visibility":"internal"},{"constant":true,"documentation":{"id":1737,"nodeType":"StructuredDocumentation","src":"1045:30:14","text":"@dev enum conversion error"},"id":1740,"mutability":"constant","name":"ENUM_CONVERSION_ERROR","nameLocation":"1106:21:14","nodeType":"VariableDeclaration","scope":1769,"src":"1080:54:14","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1738,"name":"uint256","nodeType":"ElementaryTypeName","src":"1080:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783231","id":1739,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1130:4:14","typeDescriptions":{"typeIdentifier":"t_rational_33_by_1","typeString":"int_const 33"},"value":"0x21"},"visibility":"internal"},{"constant":true,"documentation":{"id":1741,"nodeType":"StructuredDocumentation","src":"1140:36:14","text":"@dev invalid encoding in storage"},"id":1744,"mutability":"constant","name":"STORAGE_ENCODING_ERROR","nameLocation":"1207:22:14","nodeType":"VariableDeclaration","scope":1769,"src":"1181:55:14","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1742,"name":"uint256","nodeType":"ElementaryTypeName","src":"1181:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783232","id":1743,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1232:4:14","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"visibility":"internal"},{"constant":true,"documentation":{"id":1745,"nodeType":"StructuredDocumentation","src":"1242:24:14","text":"@dev empty array pop"},"id":1748,"mutability":"constant","name":"EMPTY_ARRAY_POP","nameLocation":"1297:15:14","nodeType":"VariableDeclaration","scope":1769,"src":"1271:48:14","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1746,"name":"uint256","nodeType":"ElementaryTypeName","src":"1271:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783331","id":1747,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1315:4:14","typeDescriptions":{"typeIdentifier":"t_rational_49_by_1","typeString":"int_const 49"},"value":"0x31"},"visibility":"internal"},{"constant":true,"documentation":{"id":1749,"nodeType":"StructuredDocumentation","src":"1325:35:14","text":"@dev array out of bounds access"},"id":1752,"mutability":"constant","name":"ARRAY_OUT_OF_BOUNDS","nameLocation":"1391:19:14","nodeType":"VariableDeclaration","scope":1769,"src":"1365:52:14","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1750,"name":"uint256","nodeType":"ElementaryTypeName","src":"1365:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783332","id":1751,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1413:4:14","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"0x32"},"visibility":"internal"},{"constant":true,"documentation":{"id":1753,"nodeType":"StructuredDocumentation","src":"1423:65:14","text":"@dev resource error (too large allocation or too large array)"},"id":1756,"mutability":"constant","name":"RESOURCE_ERROR","nameLocation":"1519:14:14","nodeType":"VariableDeclaration","scope":1769,"src":"1493:47:14","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1754,"name":"uint256","nodeType":"ElementaryTypeName","src":"1493:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783431","id":1755,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1536:4:14","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"0x41"},"visibility":"internal"},{"constant":true,"documentation":{"id":1757,"nodeType":"StructuredDocumentation","src":"1546:42:14","text":"@dev calling invalid internal function"},"id":1760,"mutability":"constant","name":"INVALID_INTERNAL_FUNCTION","nameLocation":"1619:25:14","nodeType":"VariableDeclaration","scope":1769,"src":"1593:58:14","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1758,"name":"uint256","nodeType":"ElementaryTypeName","src":"1593:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30783531","id":1759,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1647:4:14","typeDescriptions":{"typeIdentifier":"t_rational_81_by_1","typeString":"int_const 81"},"value":"0x51"},"visibility":"internal"},{"body":{"id":1767,"nodeType":"Block","src":"1819:151:14","statements":[{"AST":{"nativeSrc":"1854:110:14","nodeType":"YulBlock","src":"1854:110:14","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1875:4:14","nodeType":"YulLiteral","src":"1875:4:14","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1881:10:14","nodeType":"YulLiteral","src":"1881:10:14","type":"","value":"0x4e487b71"}],"functionName":{"name":"mstore","nativeSrc":"1868:6:14","nodeType":"YulIdentifier","src":"1868:6:14"},"nativeSrc":"1868:24:14","nodeType":"YulFunctionCall","src":"1868:24:14"},"nativeSrc":"1868:24:14","nodeType":"YulExpressionStatement","src":"1868:24:14"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1912:4:14","nodeType":"YulLiteral","src":"1912:4:14","type":"","value":"0x20"},{"name":"code","nativeSrc":"1918:4:14","nodeType":"YulIdentifier","src":"1918:4:14"}],"functionName":{"name":"mstore","nativeSrc":"1905:6:14","nodeType":"YulIdentifier","src":"1905:6:14"},"nativeSrc":"1905:18:14","nodeType":"YulFunctionCall","src":"1905:18:14"},"nativeSrc":"1905:18:14","nodeType":"YulExpressionStatement","src":"1905:18:14"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1943:4:14","nodeType":"YulLiteral","src":"1943:4:14","type":"","value":"0x1c"},{"kind":"number","nativeSrc":"1949:4:14","nodeType":"YulLiteral","src":"1949:4:14","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1936:6:14","nodeType":"YulIdentifier","src":"1936:6:14"},"nativeSrc":"1936:18:14","nodeType":"YulFunctionCall","src":"1936:18:14"},"nativeSrc":"1936:18:14","nodeType":"YulExpressionStatement","src":"1936:18:14"}]},"evmVersion":"paris","externalReferences":[{"declaration":1763,"isOffset":false,"isSlot":false,"src":"1918:4:14","valueSize":1}],"flags":["memory-safe"],"id":1766,"nodeType":"InlineAssembly","src":"1829:135:14"}]},"documentation":{"id":1761,"nodeType":"StructuredDocumentation","src":"1658:113:14","text":"@dev Reverts with a panic code. Recommended to use with\n the internal constants with predefined codes."},"id":1768,"implemented":true,"kind":"function","modifiers":[],"name":"panic","nameLocation":"1785:5:14","nodeType":"FunctionDefinition","parameters":{"id":1764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1763,"mutability":"mutable","name":"code","nameLocation":"1799:4:14","nodeType":"VariableDeclaration","scope":1768,"src":"1791:12:14","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1762,"name":"uint256","nodeType":"ElementaryTypeName","src":"1791:7:14","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1790:14:14"},"returnParameters":{"id":1765,"nodeType":"ParameterList","parameters":[],"src":"1819:0:14"},"scope":1769,"src":"1776:194:14","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":1770,"src":"657:1315:14","usedErrors":[],"usedEvents":[]}],"src":"99:1874:14"},"id":14},"@openzeppelin/contracts/utils/ShortStrings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/ShortStrings.sol","exportedSymbols":{"ShortString":[1775],"ShortStrings":[1986],"StorageSlot":[2110]},"id":1987,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1771,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"106:24:15"},{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","file":"./StorageSlot.sol","id":1773,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":1987,"sourceUnit":2111,"src":"132:46:15","symbolAliases":[{"foreign":{"id":1772,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2110,"src":"140:11:15","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"canonicalName":"ShortString","id":1775,"name":"ShortString","nameLocation":"353:11:15","nodeType":"UserDefinedValueTypeDefinition","src":"348:28:15","underlyingType":{"id":1774,"name":"bytes32","nodeType":"ElementaryTypeName","src":"368:7:15","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"abstract":false,"baseContracts":[],"canonicalName":"ShortStrings","contractDependencies":[],"contractKind":"library","documentation":{"id":1776,"nodeType":"StructuredDocumentation","src":"378:876:15","text":" @dev This library provides functions to convert short memory strings\n into a `ShortString` type that can be used as an immutable variable.\n Strings of arbitrary length can be optimized using this library if\n they are short enough (up to 31 bytes) by packing them with their\n length (1 byte) in a single EVM word (32 bytes). Additionally, a\n fallback mechanism can be used for every other case.\n Usage example:\n ```solidity\n contract Named {\n     using ShortStrings for *;\n     ShortString private immutable _name;\n     string private _nameFallback;\n     constructor(string memory contractName) {\n         _name = contractName.toShortStringWithFallback(_nameFallback);\n     }\n     function name() external view returns (string memory) {\n         return _name.toStringWithFallback(_nameFallback);\n     }\n }\n ```"},"fullyImplemented":true,"id":1986,"linearizedBaseContracts":[1986],"name":"ShortStrings","nameLocation":"1263:12:15","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":1779,"mutability":"constant","name":"FALLBACK_SENTINEL","nameLocation":"1370:17:15","nodeType":"VariableDeclaration","scope":1986,"src":"1345:111:15","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1777,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1345:7:15","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307830303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030304646","id":1778,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1390:66:15","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0x00000000000000000000000000000000000000000000000000000000000000FF"},"visibility":"private"},{"errorSelector":"305a27a9","id":1783,"name":"StringTooLong","nameLocation":"1469:13:15","nodeType":"ErrorDefinition","parameters":{"id":1782,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1781,"mutability":"mutable","name":"str","nameLocation":"1490:3:15","nodeType":"VariableDeclaration","scope":1783,"src":"1483:10:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1780,"name":"string","nodeType":"ElementaryTypeName","src":"1483:6:15","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1482:12:15"},"src":"1463:32:15"},{"errorSelector":"b3512b0c","id":1785,"name":"InvalidShortString","nameLocation":"1506:18:15","nodeType":"ErrorDefinition","parameters":{"id":1784,"nodeType":"ParameterList","parameters":[],"src":"1524:2:15"},"src":"1500:27:15"},{"body":{"id":1828,"nodeType":"Block","src":"1786:208:15","statements":[{"assignments":[1795],"declarations":[{"constant":false,"id":1795,"mutability":"mutable","name":"bstr","nameLocation":"1809:4:15","nodeType":"VariableDeclaration","scope":1828,"src":"1796:17:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1794,"name":"bytes","nodeType":"ElementaryTypeName","src":"1796:5:15","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":1800,"initialValue":{"arguments":[{"id":1798,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1788,"src":"1822:3:15","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1797,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1816:5:15","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":1796,"name":"bytes","nodeType":"ElementaryTypeName","src":"1816:5:15","typeDescriptions":{}}},"id":1799,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1816:10:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"1796:30:15"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1801,"name":"bstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1795,"src":"1840:4:15","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1802,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1845:6:15","memberName":"length","nodeType":"MemberAccess","src":"1840:11:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3331","id":1803,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1854:2:15","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"1840:16:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1810,"nodeType":"IfStatement","src":"1836:72:15","trueBody":{"id":1809,"nodeType":"Block","src":"1858:50:15","statements":[{"errorCall":{"arguments":[{"id":1806,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1788,"src":"1893:3:15","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1805,"name":"StringTooLong","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1783,"src":"1879:13:15","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_string_memory_ptr_$returns$_t_error_$","typeString":"function (string memory) pure returns (error)"}},"id":1807,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1879:18:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1808,"nodeType":"RevertStatement","src":"1872:25:15"}]}},{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":1819,"name":"bstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1795,"src":"1965:4:15","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":1818,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1957:7:15","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":1817,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1957:7:15","typeDescriptions":{}}},"id":1820,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1957:13:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1816,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1949:7:15","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":1815,"name":"uint256","nodeType":"ElementaryTypeName","src":"1949:7:15","typeDescriptions":{}}},"id":1821,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1949:22:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"expression":{"id":1822,"name":"bstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1795,"src":"1974:4:15","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1823,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1979:6:15","memberName":"length","nodeType":"MemberAccess","src":"1974:11:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1949:36:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1814,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1941:7:15","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":1813,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1941:7:15","typeDescriptions":{}}},"id":1825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1941:45:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":1811,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1775,"src":"1924:11:15","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$1775_$","typeString":"type(ShortString)"}},"id":1812,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1936:4:15","memberName":"wrap","nodeType":"MemberAccess","src":"1924:16:15","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_ShortString_$1775_$","typeString":"function (bytes32) pure returns (ShortString)"}},"id":1826,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1924:63:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"functionReturnParameters":1793,"id":1827,"nodeType":"Return","src":"1917:70:15"}]},"documentation":{"id":1786,"nodeType":"StructuredDocumentation","src":"1533:170:15","text":" @dev Encode a string of at most 31 chars into a `ShortString`.\n This will trigger a `StringTooLong` error is the input string is too long."},"id":1829,"implemented":true,"kind":"function","modifiers":[],"name":"toShortString","nameLocation":"1717:13:15","nodeType":"FunctionDefinition","parameters":{"id":1789,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1788,"mutability":"mutable","name":"str","nameLocation":"1745:3:15","nodeType":"VariableDeclaration","scope":1829,"src":"1731:17:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1787,"name":"string","nodeType":"ElementaryTypeName","src":"1731:6:15","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1730:19:15"},"returnParameters":{"id":1793,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1792,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1829,"src":"1773:11:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"},"typeName":{"id":1791,"nodeType":"UserDefinedTypeName","pathNode":{"id":1790,"name":"ShortString","nameLocations":["1773:11:15"],"nodeType":"IdentifierPath","referencedDeclaration":1775,"src":"1773:11:15"},"referencedDeclaration":1775,"src":"1773:11:15","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"visibility":"internal"}],"src":"1772:13:15"},"scope":1986,"src":"1708:286:15","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1854,"nodeType":"Block","src":"2152:304:15","statements":[{"assignments":[1839],"declarations":[{"constant":false,"id":1839,"mutability":"mutable","name":"len","nameLocation":"2170:3:15","nodeType":"VariableDeclaration","scope":1854,"src":"2162:11:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1838,"name":"uint256","nodeType":"ElementaryTypeName","src":"2162:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1843,"initialValue":{"arguments":[{"id":1841,"name":"sstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1833,"src":"2187:4:15","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}],"id":1840,"name":"byteLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1887,"src":"2176:10:15","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$1775_$returns$_t_uint256_$","typeString":"function (ShortString) pure returns (uint256)"}},"id":1842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2176:16:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2162:30:15"},{"assignments":[1845],"declarations":[{"constant":false,"id":1845,"mutability":"mutable","name":"str","nameLocation":"2294:3:15","nodeType":"VariableDeclaration","scope":1854,"src":"2280:17:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1844,"name":"string","nodeType":"ElementaryTypeName","src":"2280:6:15","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":1850,"initialValue":{"arguments":[{"hexValue":"3332","id":1848,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2311:2:15","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"}],"id":1847,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2300:10:15","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"},"typeName":{"id":1846,"name":"string","nodeType":"ElementaryTypeName","src":"2304:6:15","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"id":1849,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2300:14:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"2280:34:15"},{"AST":{"nativeSrc":"2349:81:15","nodeType":"YulBlock","src":"2349:81:15","statements":[{"expression":{"arguments":[{"name":"str","nativeSrc":"2370:3:15","nodeType":"YulIdentifier","src":"2370:3:15"},{"name":"len","nativeSrc":"2375:3:15","nodeType":"YulIdentifier","src":"2375:3:15"}],"functionName":{"name":"mstore","nativeSrc":"2363:6:15","nodeType":"YulIdentifier","src":"2363:6:15"},"nativeSrc":"2363:16:15","nodeType":"YulFunctionCall","src":"2363:16:15"},"nativeSrc":"2363:16:15","nodeType":"YulExpressionStatement","src":"2363:16:15"},{"expression":{"arguments":[{"arguments":[{"name":"str","nativeSrc":"2403:3:15","nodeType":"YulIdentifier","src":"2403:3:15"},{"kind":"number","nativeSrc":"2408:4:15","nodeType":"YulLiteral","src":"2408:4:15","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2399:3:15","nodeType":"YulIdentifier","src":"2399:3:15"},"nativeSrc":"2399:14:15","nodeType":"YulFunctionCall","src":"2399:14:15"},{"name":"sstr","nativeSrc":"2415:4:15","nodeType":"YulIdentifier","src":"2415:4:15"}],"functionName":{"name":"mstore","nativeSrc":"2392:6:15","nodeType":"YulIdentifier","src":"2392:6:15"},"nativeSrc":"2392:28:15","nodeType":"YulFunctionCall","src":"2392:28:15"},"nativeSrc":"2392:28:15","nodeType":"YulExpressionStatement","src":"2392:28:15"}]},"evmVersion":"paris","externalReferences":[{"declaration":1839,"isOffset":false,"isSlot":false,"src":"2375:3:15","valueSize":1},{"declaration":1833,"isOffset":false,"isSlot":false,"src":"2415:4:15","valueSize":1},{"declaration":1845,"isOffset":false,"isSlot":false,"src":"2370:3:15","valueSize":1},{"declaration":1845,"isOffset":false,"isSlot":false,"src":"2403:3:15","valueSize":1}],"flags":["memory-safe"],"id":1851,"nodeType":"InlineAssembly","src":"2324:106:15"},{"expression":{"id":1852,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1845,"src":"2446:3:15","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":1837,"id":1853,"nodeType":"Return","src":"2439:10:15"}]},"documentation":{"id":1830,"nodeType":"StructuredDocumentation","src":"2000:73:15","text":" @dev Decode a `ShortString` back to a \"normal\" string."},"id":1855,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"2087:8:15","nodeType":"FunctionDefinition","parameters":{"id":1834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1833,"mutability":"mutable","name":"sstr","nameLocation":"2108:4:15","nodeType":"VariableDeclaration","scope":1855,"src":"2096:16:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"},"typeName":{"id":1832,"nodeType":"UserDefinedTypeName","pathNode":{"id":1831,"name":"ShortString","nameLocations":["2096:11:15"],"nodeType":"IdentifierPath","referencedDeclaration":1775,"src":"2096:11:15"},"referencedDeclaration":1775,"src":"2096:11:15","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"visibility":"internal"}],"src":"2095:18:15"},"returnParameters":{"id":1837,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1836,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1855,"src":"2137:13:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1835,"name":"string","nodeType":"ElementaryTypeName","src":"2137:6:15","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2136:15:15"},"scope":1986,"src":"2078:378:15","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1886,"nodeType":"Block","src":"2598:175:15","statements":[{"assignments":[1865],"declarations":[{"constant":false,"id":1865,"mutability":"mutable","name":"result","nameLocation":"2616:6:15","nodeType":"VariableDeclaration","scope":1886,"src":"2608:14:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1864,"name":"uint256","nodeType":"ElementaryTypeName","src":"2608:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1875,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":1870,"name":"sstr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1859,"src":"2652:4:15","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}],"expression":{"id":1868,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1775,"src":"2633:11:15","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$1775_$","typeString":"type(ShortString)"}},"id":1869,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2645:6:15","memberName":"unwrap","nodeType":"MemberAccess","src":"2633:18:15","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_ShortString_$1775_$returns$_t_bytes32_$","typeString":"function (ShortString) pure returns (bytes32)"}},"id":1871,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2633:24:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":1867,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2625:7:15","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":1866,"name":"uint256","nodeType":"ElementaryTypeName","src":"2625:7:15","typeDescriptions":{}}},"id":1872,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2625:33:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30784646","id":1873,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2661:4:15","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xFF"},"src":"2625:40:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2608:57:15"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1878,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1876,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1865,"src":"2679:6:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3331","id":1877,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2688:2:15","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"2679:11:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1883,"nodeType":"IfStatement","src":"2675:69:15","trueBody":{"id":1882,"nodeType":"Block","src":"2692:52:15","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":1879,"name":"InvalidShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1785,"src":"2713:18:15","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":1880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2713:20:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1881,"nodeType":"RevertStatement","src":"2706:27:15"}]}},{"expression":{"id":1884,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1865,"src":"2760:6:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1863,"id":1885,"nodeType":"Return","src":"2753:13:15"}]},"documentation":{"id":1856,"nodeType":"StructuredDocumentation","src":"2462:61:15","text":" @dev Return the length of a `ShortString`."},"id":1887,"implemented":true,"kind":"function","modifiers":[],"name":"byteLength","nameLocation":"2537:10:15","nodeType":"FunctionDefinition","parameters":{"id":1860,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1859,"mutability":"mutable","name":"sstr","nameLocation":"2560:4:15","nodeType":"VariableDeclaration","scope":1887,"src":"2548:16:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"},"typeName":{"id":1858,"nodeType":"UserDefinedTypeName","pathNode":{"id":1857,"name":"ShortString","nameLocations":["2548:11:15"],"nodeType":"IdentifierPath","referencedDeclaration":1775,"src":"2548:11:15"},"referencedDeclaration":1775,"src":"2548:11:15","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"visibility":"internal"}],"src":"2547:18:15"},"returnParameters":{"id":1863,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1862,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1887,"src":"2589:7:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1861,"name":"uint256","nodeType":"ElementaryTypeName","src":"2589:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2588:9:15"},"scope":1986,"src":"2528:245:15","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1926,"nodeType":"Block","src":"2996:231:15","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":1900,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1890,"src":"3016:5:15","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1899,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3010:5:15","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":1898,"name":"bytes","nodeType":"ElementaryTypeName","src":"3010:5:15","typeDescriptions":{}}},"id":1901,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3010:12:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3023:6:15","memberName":"length","nodeType":"MemberAccess","src":"3010:19:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3332","id":1903,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3032:2:15","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"3010:24:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1924,"nodeType":"Block","src":"3094:127:15","statements":[{"expression":{"id":1917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[{"id":1913,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1892,"src":"3134:5:15","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}],"expression":{"id":1910,"name":"StorageSlot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2110,"src":"3108:11:15","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_StorageSlot_$2110_$","typeString":"type(library StorageSlot)"}},"id":1912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3120:13:15","memberName":"getStringSlot","nodeType":"MemberAccess","referencedDeclaration":2087,"src":"3108:25:15","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_storage_ptr_$returns$_t_struct$_StringSlot_$2007_storage_ptr_$","typeString":"function (string storage pointer) pure returns (struct StorageSlot.StringSlot storage pointer)"}},"id":1914,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3108:32:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$2007_storage_ptr","typeString":"struct StorageSlot.StringSlot storage pointer"}},"id":1915,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3141:5:15","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":2006,"src":"3108:38:15","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1916,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1890,"src":"3149:5:15","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"3108:46:15","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"id":1918,"nodeType":"ExpressionStatement","src":"3108:46:15"},{"expression":{"arguments":[{"id":1921,"name":"FALLBACK_SENTINEL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1779,"src":"3192:17:15","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":1919,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1775,"src":"3175:11:15","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$1775_$","typeString":"type(ShortString)"}},"id":1920,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3187:4:15","memberName":"wrap","nodeType":"MemberAccess","src":"3175:16:15","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_ShortString_$1775_$","typeString":"function (bytes32) pure returns (ShortString)"}},"id":1922,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3175:35:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"functionReturnParameters":1897,"id":1923,"nodeType":"Return","src":"3168:42:15"}]},"id":1925,"nodeType":"IfStatement","src":"3006:215:15","trueBody":{"id":1909,"nodeType":"Block","src":"3036:52:15","statements":[{"expression":{"arguments":[{"id":1906,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1890,"src":"3071:5:15","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":1905,"name":"toShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1829,"src":"3057:13:15","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$returns$_t_userDefinedValueType$_ShortString_$1775_$","typeString":"function (string memory) pure returns (ShortString)"}},"id":1907,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3057:20:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"functionReturnParameters":1897,"id":1908,"nodeType":"Return","src":"3050:27:15"}]}}]},"documentation":{"id":1888,"nodeType":"StructuredDocumentation","src":"2779:103:15","text":" @dev Encode a string into a `ShortString`, or write it to storage if it is too long."},"id":1927,"implemented":true,"kind":"function","modifiers":[],"name":"toShortStringWithFallback","nameLocation":"2896:25:15","nodeType":"FunctionDefinition","parameters":{"id":1893,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1890,"mutability":"mutable","name":"value","nameLocation":"2936:5:15","nodeType":"VariableDeclaration","scope":1927,"src":"2922:19:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1889,"name":"string","nodeType":"ElementaryTypeName","src":"2922:6:15","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":1892,"mutability":"mutable","name":"store","nameLocation":"2958:5:15","nodeType":"VariableDeclaration","scope":1927,"src":"2943:20:15","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":1891,"name":"string","nodeType":"ElementaryTypeName","src":"2943:6:15","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2921:43:15"},"returnParameters":{"id":1897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1896,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1927,"src":"2983:11:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"},"typeName":{"id":1895,"nodeType":"UserDefinedTypeName","pathNode":{"id":1894,"name":"ShortString","nameLocations":["2983:11:15"],"nodeType":"IdentifierPath","referencedDeclaration":1775,"src":"2983:11:15"},"referencedDeclaration":1775,"src":"2983:11:15","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"visibility":"internal"}],"src":"2982:13:15"},"scope":1986,"src":"2887:340:15","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1953,"nodeType":"Block","src":"3477:158:15","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":1940,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1931,"src":"3510:5:15","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}],"expression":{"id":1938,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1775,"src":"3491:11:15","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$1775_$","typeString":"type(ShortString)"}},"id":1939,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3503:6:15","memberName":"unwrap","nodeType":"MemberAccess","src":"3491:18:15","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_ShortString_$1775_$returns$_t_bytes32_$","typeString":"function (ShortString) pure returns (bytes32)"}},"id":1941,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3491:25:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":1942,"name":"FALLBACK_SENTINEL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1779,"src":"3520:17:15","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3491:46:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1951,"nodeType":"Block","src":"3592:37:15","statements":[{"expression":{"id":1949,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1933,"src":"3613:5:15","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}},"functionReturnParameters":1937,"id":1950,"nodeType":"Return","src":"3606:12:15"}]},"id":1952,"nodeType":"IfStatement","src":"3487:142:15","trueBody":{"id":1948,"nodeType":"Block","src":"3539:47:15","statements":[{"expression":{"arguments":[{"id":1945,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1931,"src":"3569:5:15","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}],"id":1944,"name":"toString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1855,"src":"3560:8:15","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$1775_$returns$_t_string_memory_ptr_$","typeString":"function (ShortString) pure returns (string memory)"}},"id":1946,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3560:15:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":1937,"id":1947,"nodeType":"Return","src":"3553:22:15"}]}}]},"documentation":{"id":1928,"nodeType":"StructuredDocumentation","src":"3233:130:15","text":" @dev Decode a string that was encoded to `ShortString` or written to storage using {toShortStringWithFallback}."},"id":1954,"implemented":true,"kind":"function","modifiers":[],"name":"toStringWithFallback","nameLocation":"3377:20:15","nodeType":"FunctionDefinition","parameters":{"id":1934,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1931,"mutability":"mutable","name":"value","nameLocation":"3410:5:15","nodeType":"VariableDeclaration","scope":1954,"src":"3398:17:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"},"typeName":{"id":1930,"nodeType":"UserDefinedTypeName","pathNode":{"id":1929,"name":"ShortString","nameLocations":["3398:11:15"],"nodeType":"IdentifierPath","referencedDeclaration":1775,"src":"3398:11:15"},"referencedDeclaration":1775,"src":"3398:11:15","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"visibility":"internal"},{"constant":false,"id":1933,"mutability":"mutable","name":"store","nameLocation":"3432:5:15","nodeType":"VariableDeclaration","scope":1954,"src":"3417:20:15","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":1932,"name":"string","nodeType":"ElementaryTypeName","src":"3417:6:15","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3397:41:15"},"returnParameters":{"id":1937,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1936,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1954,"src":"3462:13:15","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1935,"name":"string","nodeType":"ElementaryTypeName","src":"3462:6:15","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3461:15:15"},"scope":1986,"src":"3368:267:15","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":1984,"nodeType":"Block","src":"4125:174:15","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":1970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":1967,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1958,"src":"4158:5:15","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}],"expression":{"id":1965,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1775,"src":"4139:11:15","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_ShortString_$1775_$","typeString":"type(ShortString)"}},"id":1966,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4151:6:15","memberName":"unwrap","nodeType":"MemberAccess","src":"4139:18:15","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_ShortString_$1775_$returns$_t_bytes32_$","typeString":"function (ShortString) pure returns (bytes32)"}},"id":1968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4139:25:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":1969,"name":"FALLBACK_SENTINEL","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1779,"src":"4168:17:15","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4139:46:15","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1982,"nodeType":"Block","src":"4242:51:15","statements":[{"expression":{"expression":{"arguments":[{"id":1978,"name":"store","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"4269:5:15","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage_ptr","typeString":"string storage pointer"}],"id":1977,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4263:5:15","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":1976,"name":"bytes","nodeType":"ElementaryTypeName","src":"4263:5:15","typeDescriptions":{}}},"id":1979,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4263:12:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes storage pointer"}},"id":1980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4276:6:15","memberName":"length","nodeType":"MemberAccess","src":"4263:19:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1964,"id":1981,"nodeType":"Return","src":"4256:26:15"}]},"id":1983,"nodeType":"IfStatement","src":"4135:158:15","trueBody":{"id":1975,"nodeType":"Block","src":"4187:49:15","statements":[{"expression":{"arguments":[{"id":1972,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1958,"src":"4219:5:15","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}],"id":1971,"name":"byteLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1887,"src":"4208:10:15","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$1775_$returns$_t_uint256_$","typeString":"function (ShortString) pure returns (uint256)"}},"id":1973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4208:17:15","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1964,"id":1974,"nodeType":"Return","src":"4201:24:15"}]}}]},"documentation":{"id":1955,"nodeType":"StructuredDocumentation","src":"3641:374:15","text":" @dev Return the length of a string that was encoded to `ShortString` or written to storage using\n {toShortStringWithFallback}.\n WARNING: This will return the \"byte length\" of the string. This may not reflect the actual length in terms of\n actual characters as the UTF-8 encoding of a single character can span over multiple bytes."},"id":1985,"implemented":true,"kind":"function","modifiers":[],"name":"byteLengthWithFallback","nameLocation":"4029:22:15","nodeType":"FunctionDefinition","parameters":{"id":1961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1958,"mutability":"mutable","name":"value","nameLocation":"4064:5:15","nodeType":"VariableDeclaration","scope":1985,"src":"4052:17:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"},"typeName":{"id":1957,"nodeType":"UserDefinedTypeName","pathNode":{"id":1956,"name":"ShortString","nameLocations":["4052:11:15"],"nodeType":"IdentifierPath","referencedDeclaration":1775,"src":"4052:11:15"},"referencedDeclaration":1775,"src":"4052:11:15","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"visibility":"internal"},{"constant":false,"id":1960,"mutability":"mutable","name":"store","nameLocation":"4086:5:15","nodeType":"VariableDeclaration","scope":1985,"src":"4071:20:15","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":1959,"name":"string","nodeType":"ElementaryTypeName","src":"4071:6:15","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4051:41:15"},"returnParameters":{"id":1964,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1963,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1985,"src":"4116:7:15","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1962,"name":"uint256","nodeType":"ElementaryTypeName","src":"4116:7:15","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4115:9:15"},"scope":1986,"src":"4020:279:15","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":1987,"src":"1255:3046:15","usedErrors":[1783,1785],"usedEvents":[]}],"src":"106:4196:15"},"id":15},"@openzeppelin/contracts/utils/StorageSlot.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/StorageSlot.sol","exportedSymbols":{"StorageSlot":[2110]},"id":2111,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":1988,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"193:24:16"},{"abstract":false,"baseContracts":[],"canonicalName":"StorageSlot","contractDependencies":[],"contractKind":"library","documentation":{"id":1989,"nodeType":"StructuredDocumentation","src":"219:1187:16","text":" @dev Library for reading and writing primitive types to specific storage slots.\n Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n This library helps with reading and writing to such slots without the need for inline assembly.\n The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n Example usage to set ERC-1967 implementation slot:\n ```solidity\n contract ERC1967 {\n     // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.\n     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n     function _getImplementation() internal view returns (address) {\n         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n     }\n     function _setImplementation(address newImplementation) internal {\n         require(newImplementation.code.length > 0);\n         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n     }\n }\n ```\n TIP: Consider using this library along with {SlotDerivation}."},"fullyImplemented":true,"id":2110,"linearizedBaseContracts":[2110],"name":"StorageSlot","nameLocation":"1415:11:16","nodeType":"ContractDefinition","nodes":[{"canonicalName":"StorageSlot.AddressSlot","id":1992,"members":[{"constant":false,"id":1991,"mutability":"mutable","name":"value","nameLocation":"1470:5:16","nodeType":"VariableDeclaration","scope":1992,"src":"1462:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1990,"name":"address","nodeType":"ElementaryTypeName","src":"1462:7:16","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"AddressSlot","nameLocation":"1440:11:16","nodeType":"StructDefinition","scope":2110,"src":"1433:49:16","visibility":"public"},{"canonicalName":"StorageSlot.BooleanSlot","id":1995,"members":[{"constant":false,"id":1994,"mutability":"mutable","name":"value","nameLocation":"1522:5:16","nodeType":"VariableDeclaration","scope":1995,"src":"1517:10:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1993,"name":"bool","nodeType":"ElementaryTypeName","src":"1517:4:16","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"name":"BooleanSlot","nameLocation":"1495:11:16","nodeType":"StructDefinition","scope":2110,"src":"1488:46:16","visibility":"public"},{"canonicalName":"StorageSlot.Bytes32Slot","id":1998,"members":[{"constant":false,"id":1997,"mutability":"mutable","name":"value","nameLocation":"1577:5:16","nodeType":"VariableDeclaration","scope":1998,"src":"1569:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1996,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1569:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"name":"Bytes32Slot","nameLocation":"1547:11:16","nodeType":"StructDefinition","scope":2110,"src":"1540:49:16","visibility":"public"},{"canonicalName":"StorageSlot.Uint256Slot","id":2001,"members":[{"constant":false,"id":2000,"mutability":"mutable","name":"value","nameLocation":"1632:5:16","nodeType":"VariableDeclaration","scope":2001,"src":"1624:13:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1999,"name":"uint256","nodeType":"ElementaryTypeName","src":"1624:7:16","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Uint256Slot","nameLocation":"1602:11:16","nodeType":"StructDefinition","scope":2110,"src":"1595:49:16","visibility":"public"},{"canonicalName":"StorageSlot.Int256Slot","id":2004,"members":[{"constant":false,"id":2003,"mutability":"mutable","name":"value","nameLocation":"1685:5:16","nodeType":"VariableDeclaration","scope":2004,"src":"1678:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":2002,"name":"int256","nodeType":"ElementaryTypeName","src":"1678:6:16","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"name":"Int256Slot","nameLocation":"1657:10:16","nodeType":"StructDefinition","scope":2110,"src":"1650:47:16","visibility":"public"},{"canonicalName":"StorageSlot.StringSlot","id":2007,"members":[{"constant":false,"id":2006,"mutability":"mutable","name":"value","nameLocation":"1738:5:16","nodeType":"VariableDeclaration","scope":2007,"src":"1731:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":2005,"name":"string","nodeType":"ElementaryTypeName","src":"1731:6:16","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"name":"StringSlot","nameLocation":"1710:10:16","nodeType":"StructDefinition","scope":2110,"src":"1703:47:16","visibility":"public"},{"canonicalName":"StorageSlot.BytesSlot","id":2010,"members":[{"constant":false,"id":2009,"mutability":"mutable","name":"value","nameLocation":"1789:5:16","nodeType":"VariableDeclaration","scope":2010,"src":"1783:11:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":2008,"name":"bytes","nodeType":"ElementaryTypeName","src":"1783:5:16","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"BytesSlot","nameLocation":"1763:9:16","nodeType":"StructDefinition","scope":2110,"src":"1756:45:16","visibility":"public"},{"body":{"id":2020,"nodeType":"Block","src":"1983:79:16","statements":[{"AST":{"nativeSrc":"2018:38:16","nodeType":"YulBlock","src":"2018:38:16","statements":[{"nativeSrc":"2032:14:16","nodeType":"YulAssignment","src":"2032:14:16","value":{"name":"slot","nativeSrc":"2042:4:16","nodeType":"YulIdentifier","src":"2042:4:16"},"variableNames":[{"name":"r.slot","nativeSrc":"2032:6:16","nodeType":"YulIdentifier","src":"2032:6:16"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":2017,"isOffset":false,"isSlot":true,"src":"2032:6:16","suffix":"slot","valueSize":1},{"declaration":2013,"isOffset":false,"isSlot":false,"src":"2042:4:16","valueSize":1}],"flags":["memory-safe"],"id":2019,"nodeType":"InlineAssembly","src":"1993:63:16"}]},"documentation":{"id":2011,"nodeType":"StructuredDocumentation","src":"1807:87:16","text":" @dev Returns an `AddressSlot` with member `value` located at `slot`."},"id":2021,"implemented":true,"kind":"function","modifiers":[],"name":"getAddressSlot","nameLocation":"1908:14:16","nodeType":"FunctionDefinition","parameters":{"id":2014,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2013,"mutability":"mutable","name":"slot","nameLocation":"1931:4:16","nodeType":"VariableDeclaration","scope":2021,"src":"1923:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2012,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1923:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1922:14:16"},"returnParameters":{"id":2018,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2017,"mutability":"mutable","name":"r","nameLocation":"1980:1:16","nodeType":"VariableDeclaration","scope":2021,"src":"1960:21:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1992_storage_ptr","typeString":"struct StorageSlot.AddressSlot"},"typeName":{"id":2016,"nodeType":"UserDefinedTypeName","pathNode":{"id":2015,"name":"AddressSlot","nameLocations":["1960:11:16"],"nodeType":"IdentifierPath","referencedDeclaration":1992,"src":"1960:11:16"},"referencedDeclaration":1992,"src":"1960:11:16","typeDescriptions":{"typeIdentifier":"t_struct$_AddressSlot_$1992_storage_ptr","typeString":"struct StorageSlot.AddressSlot"}},"visibility":"internal"}],"src":"1959:23:16"},"scope":2110,"src":"1899:163:16","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2031,"nodeType":"Block","src":"2243:79:16","statements":[{"AST":{"nativeSrc":"2278:38:16","nodeType":"YulBlock","src":"2278:38:16","statements":[{"nativeSrc":"2292:14:16","nodeType":"YulAssignment","src":"2292:14:16","value":{"name":"slot","nativeSrc":"2302:4:16","nodeType":"YulIdentifier","src":"2302:4:16"},"variableNames":[{"name":"r.slot","nativeSrc":"2292:6:16","nodeType":"YulIdentifier","src":"2292:6:16"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":2028,"isOffset":false,"isSlot":true,"src":"2292:6:16","suffix":"slot","valueSize":1},{"declaration":2024,"isOffset":false,"isSlot":false,"src":"2302:4:16","valueSize":1}],"flags":["memory-safe"],"id":2030,"nodeType":"InlineAssembly","src":"2253:63:16"}]},"documentation":{"id":2022,"nodeType":"StructuredDocumentation","src":"2068:86:16","text":" @dev Returns a `BooleanSlot` with member `value` located at `slot`."},"id":2032,"implemented":true,"kind":"function","modifiers":[],"name":"getBooleanSlot","nameLocation":"2168:14:16","nodeType":"FunctionDefinition","parameters":{"id":2025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2024,"mutability":"mutable","name":"slot","nameLocation":"2191:4:16","nodeType":"VariableDeclaration","scope":2032,"src":"2183:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2023,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2183:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2182:14:16"},"returnParameters":{"id":2029,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2028,"mutability":"mutable","name":"r","nameLocation":"2240:1:16","nodeType":"VariableDeclaration","scope":2032,"src":"2220:21:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$1995_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"},"typeName":{"id":2027,"nodeType":"UserDefinedTypeName","pathNode":{"id":2026,"name":"BooleanSlot","nameLocations":["2220:11:16"],"nodeType":"IdentifierPath","referencedDeclaration":1995,"src":"2220:11:16"},"referencedDeclaration":1995,"src":"2220:11:16","typeDescriptions":{"typeIdentifier":"t_struct$_BooleanSlot_$1995_storage_ptr","typeString":"struct StorageSlot.BooleanSlot"}},"visibility":"internal"}],"src":"2219:23:16"},"scope":2110,"src":"2159:163:16","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2042,"nodeType":"Block","src":"2503:79:16","statements":[{"AST":{"nativeSrc":"2538:38:16","nodeType":"YulBlock","src":"2538:38:16","statements":[{"nativeSrc":"2552:14:16","nodeType":"YulAssignment","src":"2552:14:16","value":{"name":"slot","nativeSrc":"2562:4:16","nodeType":"YulIdentifier","src":"2562:4:16"},"variableNames":[{"name":"r.slot","nativeSrc":"2552:6:16","nodeType":"YulIdentifier","src":"2552:6:16"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":2039,"isOffset":false,"isSlot":true,"src":"2552:6:16","suffix":"slot","valueSize":1},{"declaration":2035,"isOffset":false,"isSlot":false,"src":"2562:4:16","valueSize":1}],"flags":["memory-safe"],"id":2041,"nodeType":"InlineAssembly","src":"2513:63:16"}]},"documentation":{"id":2033,"nodeType":"StructuredDocumentation","src":"2328:86:16","text":" @dev Returns a `Bytes32Slot` with member `value` located at `slot`."},"id":2043,"implemented":true,"kind":"function","modifiers":[],"name":"getBytes32Slot","nameLocation":"2428:14:16","nodeType":"FunctionDefinition","parameters":{"id":2036,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2035,"mutability":"mutable","name":"slot","nameLocation":"2451:4:16","nodeType":"VariableDeclaration","scope":2043,"src":"2443:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2034,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2443:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2442:14:16"},"returnParameters":{"id":2040,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2039,"mutability":"mutable","name":"r","nameLocation":"2500:1:16","nodeType":"VariableDeclaration","scope":2043,"src":"2480:21:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$1998_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"},"typeName":{"id":2038,"nodeType":"UserDefinedTypeName","pathNode":{"id":2037,"name":"Bytes32Slot","nameLocations":["2480:11:16"],"nodeType":"IdentifierPath","referencedDeclaration":1998,"src":"2480:11:16"},"referencedDeclaration":1998,"src":"2480:11:16","typeDescriptions":{"typeIdentifier":"t_struct$_Bytes32Slot_$1998_storage_ptr","typeString":"struct StorageSlot.Bytes32Slot"}},"visibility":"internal"}],"src":"2479:23:16"},"scope":2110,"src":"2419:163:16","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2053,"nodeType":"Block","src":"2763:79:16","statements":[{"AST":{"nativeSrc":"2798:38:16","nodeType":"YulBlock","src":"2798:38:16","statements":[{"nativeSrc":"2812:14:16","nodeType":"YulAssignment","src":"2812:14:16","value":{"name":"slot","nativeSrc":"2822:4:16","nodeType":"YulIdentifier","src":"2822:4:16"},"variableNames":[{"name":"r.slot","nativeSrc":"2812:6:16","nodeType":"YulIdentifier","src":"2812:6:16"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":2050,"isOffset":false,"isSlot":true,"src":"2812:6:16","suffix":"slot","valueSize":1},{"declaration":2046,"isOffset":false,"isSlot":false,"src":"2822:4:16","valueSize":1}],"flags":["memory-safe"],"id":2052,"nodeType":"InlineAssembly","src":"2773:63:16"}]},"documentation":{"id":2044,"nodeType":"StructuredDocumentation","src":"2588:86:16","text":" @dev Returns a `Uint256Slot` with member `value` located at `slot`."},"id":2054,"implemented":true,"kind":"function","modifiers":[],"name":"getUint256Slot","nameLocation":"2688:14:16","nodeType":"FunctionDefinition","parameters":{"id":2047,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2046,"mutability":"mutable","name":"slot","nameLocation":"2711:4:16","nodeType":"VariableDeclaration","scope":2054,"src":"2703:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2045,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2703:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2702:14:16"},"returnParameters":{"id":2051,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2050,"mutability":"mutable","name":"r","nameLocation":"2760:1:16","nodeType":"VariableDeclaration","scope":2054,"src":"2740:21:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$2001_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"},"typeName":{"id":2049,"nodeType":"UserDefinedTypeName","pathNode":{"id":2048,"name":"Uint256Slot","nameLocations":["2740:11:16"],"nodeType":"IdentifierPath","referencedDeclaration":2001,"src":"2740:11:16"},"referencedDeclaration":2001,"src":"2740:11:16","typeDescriptions":{"typeIdentifier":"t_struct$_Uint256Slot_$2001_storage_ptr","typeString":"struct StorageSlot.Uint256Slot"}},"visibility":"internal"}],"src":"2739:23:16"},"scope":2110,"src":"2679:163:16","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2064,"nodeType":"Block","src":"3020:79:16","statements":[{"AST":{"nativeSrc":"3055:38:16","nodeType":"YulBlock","src":"3055:38:16","statements":[{"nativeSrc":"3069:14:16","nodeType":"YulAssignment","src":"3069:14:16","value":{"name":"slot","nativeSrc":"3079:4:16","nodeType":"YulIdentifier","src":"3079:4:16"},"variableNames":[{"name":"r.slot","nativeSrc":"3069:6:16","nodeType":"YulIdentifier","src":"3069:6:16"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":2061,"isOffset":false,"isSlot":true,"src":"3069:6:16","suffix":"slot","valueSize":1},{"declaration":2057,"isOffset":false,"isSlot":false,"src":"3079:4:16","valueSize":1}],"flags":["memory-safe"],"id":2063,"nodeType":"InlineAssembly","src":"3030:63:16"}]},"documentation":{"id":2055,"nodeType":"StructuredDocumentation","src":"2848:85:16","text":" @dev Returns a `Int256Slot` with member `value` located at `slot`."},"id":2065,"implemented":true,"kind":"function","modifiers":[],"name":"getInt256Slot","nameLocation":"2947:13:16","nodeType":"FunctionDefinition","parameters":{"id":2058,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2057,"mutability":"mutable","name":"slot","nameLocation":"2969:4:16","nodeType":"VariableDeclaration","scope":2065,"src":"2961:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2056,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2961:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2960:14:16"},"returnParameters":{"id":2062,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2061,"mutability":"mutable","name":"r","nameLocation":"3017:1:16","nodeType":"VariableDeclaration","scope":2065,"src":"2998:20:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Int256Slot_$2004_storage_ptr","typeString":"struct StorageSlot.Int256Slot"},"typeName":{"id":2060,"nodeType":"UserDefinedTypeName","pathNode":{"id":2059,"name":"Int256Slot","nameLocations":["2998:10:16"],"nodeType":"IdentifierPath","referencedDeclaration":2004,"src":"2998:10:16"},"referencedDeclaration":2004,"src":"2998:10:16","typeDescriptions":{"typeIdentifier":"t_struct$_Int256Slot_$2004_storage_ptr","typeString":"struct StorageSlot.Int256Slot"}},"visibility":"internal"}],"src":"2997:22:16"},"scope":2110,"src":"2938:161:16","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2075,"nodeType":"Block","src":"3277:79:16","statements":[{"AST":{"nativeSrc":"3312:38:16","nodeType":"YulBlock","src":"3312:38:16","statements":[{"nativeSrc":"3326:14:16","nodeType":"YulAssignment","src":"3326:14:16","value":{"name":"slot","nativeSrc":"3336:4:16","nodeType":"YulIdentifier","src":"3336:4:16"},"variableNames":[{"name":"r.slot","nativeSrc":"3326:6:16","nodeType":"YulIdentifier","src":"3326:6:16"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":2072,"isOffset":false,"isSlot":true,"src":"3326:6:16","suffix":"slot","valueSize":1},{"declaration":2068,"isOffset":false,"isSlot":false,"src":"3336:4:16","valueSize":1}],"flags":["memory-safe"],"id":2074,"nodeType":"InlineAssembly","src":"3287:63:16"}]},"documentation":{"id":2066,"nodeType":"StructuredDocumentation","src":"3105:85:16","text":" @dev Returns a `StringSlot` with member `value` located at `slot`."},"id":2076,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3204:13:16","nodeType":"FunctionDefinition","parameters":{"id":2069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2068,"mutability":"mutable","name":"slot","nameLocation":"3226:4:16","nodeType":"VariableDeclaration","scope":2076,"src":"3218:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2067,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3218:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3217:14:16"},"returnParameters":{"id":2073,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2072,"mutability":"mutable","name":"r","nameLocation":"3274:1:16","nodeType":"VariableDeclaration","scope":2076,"src":"3255:20:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$2007_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":2071,"nodeType":"UserDefinedTypeName","pathNode":{"id":2070,"name":"StringSlot","nameLocations":["3255:10:16"],"nodeType":"IdentifierPath","referencedDeclaration":2007,"src":"3255:10:16"},"referencedDeclaration":2007,"src":"3255:10:16","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$2007_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3254:22:16"},"scope":2110,"src":"3195:161:16","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2086,"nodeType":"Block","src":"3558:85:16","statements":[{"AST":{"nativeSrc":"3593:44:16","nodeType":"YulBlock","src":"3593:44:16","statements":[{"nativeSrc":"3607:20:16","nodeType":"YulAssignment","src":"3607:20:16","value":{"name":"store.slot","nativeSrc":"3617:10:16","nodeType":"YulIdentifier","src":"3617:10:16"},"variableNames":[{"name":"r.slot","nativeSrc":"3607:6:16","nodeType":"YulIdentifier","src":"3607:6:16"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":2083,"isOffset":false,"isSlot":true,"src":"3607:6:16","suffix":"slot","valueSize":1},{"declaration":2079,"isOffset":false,"isSlot":true,"src":"3617:10:16","suffix":"slot","valueSize":1}],"flags":["memory-safe"],"id":2085,"nodeType":"InlineAssembly","src":"3568:69:16"}]},"documentation":{"id":2077,"nodeType":"StructuredDocumentation","src":"3362:101:16","text":" @dev Returns an `StringSlot` representation of the string storage pointer `store`."},"id":2087,"implemented":true,"kind":"function","modifiers":[],"name":"getStringSlot","nameLocation":"3477:13:16","nodeType":"FunctionDefinition","parameters":{"id":2080,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2079,"mutability":"mutable","name":"store","nameLocation":"3506:5:16","nodeType":"VariableDeclaration","scope":2087,"src":"3491:20:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":2078,"name":"string","nodeType":"ElementaryTypeName","src":"3491:6:16","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3490:22:16"},"returnParameters":{"id":2084,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2083,"mutability":"mutable","name":"r","nameLocation":"3555:1:16","nodeType":"VariableDeclaration","scope":2087,"src":"3536:20:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$2007_storage_ptr","typeString":"struct StorageSlot.StringSlot"},"typeName":{"id":2082,"nodeType":"UserDefinedTypeName","pathNode":{"id":2081,"name":"StringSlot","nameLocations":["3536:10:16"],"nodeType":"IdentifierPath","referencedDeclaration":2007,"src":"3536:10:16"},"referencedDeclaration":2007,"src":"3536:10:16","typeDescriptions":{"typeIdentifier":"t_struct$_StringSlot_$2007_storage_ptr","typeString":"struct StorageSlot.StringSlot"}},"visibility":"internal"}],"src":"3535:22:16"},"scope":2110,"src":"3468:175:16","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2097,"nodeType":"Block","src":"3818:79:16","statements":[{"AST":{"nativeSrc":"3853:38:16","nodeType":"YulBlock","src":"3853:38:16","statements":[{"nativeSrc":"3867:14:16","nodeType":"YulAssignment","src":"3867:14:16","value":{"name":"slot","nativeSrc":"3877:4:16","nodeType":"YulIdentifier","src":"3877:4:16"},"variableNames":[{"name":"r.slot","nativeSrc":"3867:6:16","nodeType":"YulIdentifier","src":"3867:6:16"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":2094,"isOffset":false,"isSlot":true,"src":"3867:6:16","suffix":"slot","valueSize":1},{"declaration":2090,"isOffset":false,"isSlot":false,"src":"3877:4:16","valueSize":1}],"flags":["memory-safe"],"id":2096,"nodeType":"InlineAssembly","src":"3828:63:16"}]},"documentation":{"id":2088,"nodeType":"StructuredDocumentation","src":"3649:84:16","text":" @dev Returns a `BytesSlot` with member `value` located at `slot`."},"id":2098,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"3747:12:16","nodeType":"FunctionDefinition","parameters":{"id":2091,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2090,"mutability":"mutable","name":"slot","nameLocation":"3768:4:16","nodeType":"VariableDeclaration","scope":2098,"src":"3760:12:16","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":2089,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3760:7:16","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3759:14:16"},"returnParameters":{"id":2095,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2094,"mutability":"mutable","name":"r","nameLocation":"3815:1:16","nodeType":"VariableDeclaration","scope":2098,"src":"3797:19:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$2010_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":2093,"nodeType":"UserDefinedTypeName","pathNode":{"id":2092,"name":"BytesSlot","nameLocations":["3797:9:16"],"nodeType":"IdentifierPath","referencedDeclaration":2010,"src":"3797:9:16"},"referencedDeclaration":2010,"src":"3797:9:16","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$2010_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"3796:21:16"},"scope":2110,"src":"3738:159:16","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2108,"nodeType":"Block","src":"4094:85:16","statements":[{"AST":{"nativeSrc":"4129:44:16","nodeType":"YulBlock","src":"4129:44:16","statements":[{"nativeSrc":"4143:20:16","nodeType":"YulAssignment","src":"4143:20:16","value":{"name":"store.slot","nativeSrc":"4153:10:16","nodeType":"YulIdentifier","src":"4153:10:16"},"variableNames":[{"name":"r.slot","nativeSrc":"4143:6:16","nodeType":"YulIdentifier","src":"4143:6:16"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":2105,"isOffset":false,"isSlot":true,"src":"4143:6:16","suffix":"slot","valueSize":1},{"declaration":2101,"isOffset":false,"isSlot":true,"src":"4153:10:16","suffix":"slot","valueSize":1}],"flags":["memory-safe"],"id":2107,"nodeType":"InlineAssembly","src":"4104:69:16"}]},"documentation":{"id":2099,"nodeType":"StructuredDocumentation","src":"3903:99:16","text":" @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`."},"id":2109,"implemented":true,"kind":"function","modifiers":[],"name":"getBytesSlot","nameLocation":"4016:12:16","nodeType":"FunctionDefinition","parameters":{"id":2102,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2101,"mutability":"mutable","name":"store","nameLocation":"4043:5:16","nodeType":"VariableDeclaration","scope":2109,"src":"4029:19:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":2100,"name":"bytes","nodeType":"ElementaryTypeName","src":"4029:5:16","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4028:21:16"},"returnParameters":{"id":2106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2105,"mutability":"mutable","name":"r","nameLocation":"4091:1:16","nodeType":"VariableDeclaration","scope":2109,"src":"4073:19:16","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$2010_storage_ptr","typeString":"struct StorageSlot.BytesSlot"},"typeName":{"id":2104,"nodeType":"UserDefinedTypeName","pathNode":{"id":2103,"name":"BytesSlot","nameLocations":["4073:9:16"],"nodeType":"IdentifierPath","referencedDeclaration":2010,"src":"4073:9:16"},"referencedDeclaration":2010,"src":"4073:9:16","typeDescriptions":{"typeIdentifier":"t_struct$_BytesSlot_$2010_storage_ptr","typeString":"struct StorageSlot.BytesSlot"}},"visibility":"internal"}],"src":"4072:21:16"},"scope":2110,"src":"4007:172:16","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":2111,"src":"1407:2774:16","usedErrors":[],"usedEvents":[]}],"src":"193:3989:16"},"id":16},"@openzeppelin/contracts/utils/Strings.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","exportedSymbols":{"Math":[5830],"SafeCast":[7595],"SignedMath":[7739],"Strings":[3512]},"id":3513,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":2112,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"101:24:17"},{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","file":"./math/Math.sol","id":2114,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3513,"sourceUnit":5831,"src":"127:37:17","symbolAliases":[{"foreign":{"id":2113,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5830,"src":"135:4:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./math/SafeCast.sol","id":2116,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3513,"sourceUnit":7596,"src":"165:45:17","symbolAliases":[{"foreign":{"id":2115,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"173:8:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","file":"./math/SignedMath.sol","id":2118,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":3513,"sourceUnit":7740,"src":"211:49:17","symbolAliases":[{"foreign":{"id":2117,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7739,"src":"219:10:17","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Strings","contractDependencies":[],"contractKind":"library","documentation":{"id":2119,"nodeType":"StructuredDocumentation","src":"262:34:17","text":" @dev String operations."},"fullyImplemented":true,"id":3512,"linearizedBaseContracts":[3512],"name":"Strings","nameLocation":"305:7:17","nodeType":"ContractDefinition","nodes":[{"global":false,"id":2121,"libraryName":{"id":2120,"name":"SafeCast","nameLocations":["325:8:17"],"nodeType":"IdentifierPath","referencedDeclaration":7595,"src":"325:8:17"},"nodeType":"UsingForDirective","src":"319:21:17"},{"constant":true,"id":2124,"mutability":"constant","name":"HEX_DIGITS","nameLocation":"371:10:17","nodeType":"VariableDeclaration","scope":3512,"src":"346:56:17","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":2122,"name":"bytes16","nodeType":"ElementaryTypeName","src":"346:7:17","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"value":{"hexValue":"30313233343536373839616263646566","id":2123,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"384:18:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb29997ed99ead0db59ce4d12b7d3723198c827273e5796737c926d78019c39f","typeString":"literal_string \"0123456789abcdef\""},"value":"0123456789abcdef"},"visibility":"private"},{"constant":true,"id":2127,"mutability":"constant","name":"ADDRESS_LENGTH","nameLocation":"431:14:17","nodeType":"VariableDeclaration","scope":3512,"src":"408:42:17","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2125,"name":"uint8","nodeType":"ElementaryTypeName","src":"408:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"3230","id":2126,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"448:2:17","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"visibility":"private"},{"constant":true,"id":2163,"mutability":"constant","name":"SPECIAL_CHARS_LOOKUP","nameLocation":"481:20:17","nodeType":"VariableDeclaration","scope":3512,"src":"456:302:17","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2128,"name":"uint256","nodeType":"ElementaryTypeName","src":"456:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_4951760157141521116776380160_by_1","typeString":"int_const 4951760157141521116776380160"},"id":2162,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_17179883264_by_1","typeString":"int_const 17179883264"},"id":2157,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_14080_by_1","typeString":"int_const 14080"},"id":2152,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_5888_by_1","typeString":"int_const 5888"},"id":2147,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_1792_by_1","typeString":"int_const 1792"},"id":2142,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_768_by_1","typeString":"int_const 768"},"id":2137,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":2131,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":2129,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"513:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783038","id":2130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"518:4:17","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"0x08"},"src":"513:9:17","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":2132,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"512:11:17","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_512_by_1","typeString":"int_const 512"},"id":2135,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":2133,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"552:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783039","id":2134,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"557:4:17","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"0x09"},"src":"552:9:17","typeDescriptions":{"typeIdentifier":"t_rational_512_by_1","typeString":"int_const 512"}}],"id":2136,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"551:11:17","typeDescriptions":{"typeIdentifier":"t_rational_512_by_1","typeString":"int_const 512"}},"src":"512:50:17","typeDescriptions":{"typeIdentifier":"t_rational_768_by_1","typeString":"int_const 768"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_1024_by_1","typeString":"int_const 1024"},"id":2140,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":2138,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"585:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783061","id":2139,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"590:4:17","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"0x0a"},"src":"585:9:17","typeDescriptions":{"typeIdentifier":"t_rational_1024_by_1","typeString":"int_const 1024"}}],"id":2141,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"584:11:17","typeDescriptions":{"typeIdentifier":"t_rational_1024_by_1","typeString":"int_const 1024"}},"src":"512:83:17","typeDescriptions":{"typeIdentifier":"t_rational_1792_by_1","typeString":"int_const 1792"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4096_by_1","typeString":"int_const 4096"},"id":2145,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":2143,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"622:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783063","id":2144,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"627:4:17","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"0x0c"},"src":"622:9:17","typeDescriptions":{"typeIdentifier":"t_rational_4096_by_1","typeString":"int_const 4096"}}],"id":2146,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"621:11:17","typeDescriptions":{"typeIdentifier":"t_rational_4096_by_1","typeString":"int_const 4096"}},"src":"512:120:17","typeDescriptions":{"typeIdentifier":"t_rational_5888_by_1","typeString":"int_const 5888"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_8192_by_1","typeString":"int_const 8192"},"id":2150,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":2148,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"661:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783064","id":2149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"666:4:17","typeDescriptions":{"typeIdentifier":"t_rational_13_by_1","typeString":"int_const 13"},"value":"0x0d"},"src":"661:9:17","typeDescriptions":{"typeIdentifier":"t_rational_8192_by_1","typeString":"int_const 8192"}}],"id":2151,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"660:11:17","typeDescriptions":{"typeIdentifier":"t_rational_8192_by_1","typeString":"int_const 8192"}},"src":"512:159:17","typeDescriptions":{"typeIdentifier":"t_rational_14080_by_1","typeString":"int_const 14080"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_17179869184_by_1","typeString":"int_const 17179869184"},"id":2155,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":2153,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"706:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783232","id":2154,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"711:4:17","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"src":"706:9:17","typeDescriptions":{"typeIdentifier":"t_rational_17179869184_by_1","typeString":"int_const 17179869184"}}],"id":2156,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"705:11:17","typeDescriptions":{"typeIdentifier":"t_rational_17179869184_by_1","typeString":"int_const 17179869184"}},"src":"512:204:17","typeDescriptions":{"typeIdentifier":"t_rational_17179883264_by_1","typeString":"int_const 17179883264"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4951760157141521099596496896_by_1","typeString":"int_const 4951760157141521099596496896"},"id":2160,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":2158,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"748:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"30783563","id":2159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"753:4:17","typeDescriptions":{"typeIdentifier":"t_rational_92_by_1","typeString":"int_const 92"},"value":"0x5c"},"src":"748:9:17","typeDescriptions":{"typeIdentifier":"t_rational_4951760157141521099596496896_by_1","typeString":"int_const 4951760157141521099596496896"}}],"id":2161,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"747:11:17","typeDescriptions":{"typeIdentifier":"t_rational_4951760157141521099596496896_by_1","typeString":"int_const 4951760157141521099596496896"}},"src":"512:246:17","typeDescriptions":{"typeIdentifier":"t_rational_4951760157141521116776380160_by_1","typeString":"int_const 4951760157141521116776380160"}},"visibility":"private"},{"documentation":{"id":2164,"nodeType":"StructuredDocumentation","src":"778:81:17","text":" @dev The `value` string doesn't fit in the specified `length`."},"errorSelector":"e22e27eb","id":2170,"name":"StringsInsufficientHexLength","nameLocation":"870:28:17","nodeType":"ErrorDefinition","parameters":{"id":2169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2166,"mutability":"mutable","name":"value","nameLocation":"907:5:17","nodeType":"VariableDeclaration","scope":2170,"src":"899:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2165,"name":"uint256","nodeType":"ElementaryTypeName","src":"899:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2168,"mutability":"mutable","name":"length","nameLocation":"922:6:17","nodeType":"VariableDeclaration","scope":2170,"src":"914:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2167,"name":"uint256","nodeType":"ElementaryTypeName","src":"914:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"898:31:17"},"src":"864:66:17"},{"documentation":{"id":2171,"nodeType":"StructuredDocumentation","src":"936:108:17","text":" @dev The string being parsed contains characters that are not in scope of the given base."},"errorSelector":"94e2737e","id":2173,"name":"StringsInvalidChar","nameLocation":"1055:18:17","nodeType":"ErrorDefinition","parameters":{"id":2172,"nodeType":"ParameterList","parameters":[],"src":"1073:2:17"},"src":"1049:27:17"},{"documentation":{"id":2174,"nodeType":"StructuredDocumentation","src":"1082:84:17","text":" @dev The string being parsed is not a properly formatted address."},"errorSelector":"1d15ae44","id":2176,"name":"StringsInvalidAddressFormat","nameLocation":"1177:27:17","nodeType":"ErrorDefinition","parameters":{"id":2175,"nodeType":"ParameterList","parameters":[],"src":"1204:2:17"},"src":"1171:36:17"},{"body":{"id":2223,"nodeType":"Block","src":"1379:563:17","statements":[{"id":2222,"nodeType":"UncheckedBlock","src":"1389:547:17","statements":[{"assignments":[2185],"declarations":[{"constant":false,"id":2185,"mutability":"mutable","name":"length","nameLocation":"1421:6:17","nodeType":"VariableDeclaration","scope":2222,"src":"1413:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2184,"name":"uint256","nodeType":"ElementaryTypeName","src":"1413:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2192,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2188,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2179,"src":"1441:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2186,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5830,"src":"1430:4:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$5830_$","typeString":"type(library Math)"}},"id":2187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1435:5:17","memberName":"log10","nodeType":"MemberAccess","referencedDeclaration":5662,"src":"1430:10:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":2189,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1430:17:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":2190,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1450:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1430:21:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1413:38:17"},{"assignments":[2194],"declarations":[{"constant":false,"id":2194,"mutability":"mutable","name":"buffer","nameLocation":"1479:6:17","nodeType":"VariableDeclaration","scope":2222,"src":"1465:20:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2193,"name":"string","nodeType":"ElementaryTypeName","src":"1465:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"id":2199,"initialValue":{"arguments":[{"id":2197,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2185,"src":"1499:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2196,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"1488:10:17","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"},"typeName":{"id":2195,"name":"string","nodeType":"ElementaryTypeName","src":"1492:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}}},"id":2198,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1488:18:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"VariableDeclarationStatement","src":"1465:41:17"},{"assignments":[2201],"declarations":[{"constant":false,"id":2201,"mutability":"mutable","name":"ptr","nameLocation":"1528:3:17","nodeType":"VariableDeclaration","scope":2222,"src":"1520:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2200,"name":"uint256","nodeType":"ElementaryTypeName","src":"1520:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2202,"nodeType":"VariableDeclarationStatement","src":"1520:11:17"},{"AST":{"nativeSrc":"1570:69:17","nodeType":"YulBlock","src":"1570:69:17","statements":[{"nativeSrc":"1588:37:17","nodeType":"YulAssignment","src":"1588:37:17","value":{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"1603:6:17","nodeType":"YulIdentifier","src":"1603:6:17"},{"kind":"number","nativeSrc":"1611:4:17","nodeType":"YulLiteral","src":"1611:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1599:3:17","nodeType":"YulIdentifier","src":"1599:3:17"},"nativeSrc":"1599:17:17","nodeType":"YulFunctionCall","src":"1599:17:17"},{"name":"length","nativeSrc":"1618:6:17","nodeType":"YulIdentifier","src":"1618:6:17"}],"functionName":{"name":"add","nativeSrc":"1595:3:17","nodeType":"YulIdentifier","src":"1595:3:17"},"nativeSrc":"1595:30:17","nodeType":"YulFunctionCall","src":"1595:30:17"},"variableNames":[{"name":"ptr","nativeSrc":"1588:3:17","nodeType":"YulIdentifier","src":"1588:3:17"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":2194,"isOffset":false,"isSlot":false,"src":"1603:6:17","valueSize":1},{"declaration":2185,"isOffset":false,"isSlot":false,"src":"1618:6:17","valueSize":1},{"declaration":2201,"isOffset":false,"isSlot":false,"src":"1588:3:17","valueSize":1}],"flags":["memory-safe"],"id":2203,"nodeType":"InlineAssembly","src":"1545:94:17"},{"body":{"id":2218,"nodeType":"Block","src":"1665:234:17","statements":[{"expression":{"id":2206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":false,"src":"1683:5:17","subExpression":{"id":2205,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2201,"src":"1683:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2207,"nodeType":"ExpressionStatement","src":"1683:5:17"},{"AST":{"nativeSrc":"1731:86:17","nodeType":"YulBlock","src":"1731:86:17","statements":[{"expression":{"arguments":[{"name":"ptr","nativeSrc":"1761:3:17","nodeType":"YulIdentifier","src":"1761:3:17"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1775:5:17","nodeType":"YulIdentifier","src":"1775:5:17"},{"kind":"number","nativeSrc":"1782:2:17","nodeType":"YulLiteral","src":"1782:2:17","type":"","value":"10"}],"functionName":{"name":"mod","nativeSrc":"1771:3:17","nodeType":"YulIdentifier","src":"1771:3:17"},"nativeSrc":"1771:14:17","nodeType":"YulFunctionCall","src":"1771:14:17"},{"name":"HEX_DIGITS","nativeSrc":"1787:10:17","nodeType":"YulIdentifier","src":"1787:10:17"}],"functionName":{"name":"byte","nativeSrc":"1766:4:17","nodeType":"YulIdentifier","src":"1766:4:17"},"nativeSrc":"1766:32:17","nodeType":"YulFunctionCall","src":"1766:32:17"}],"functionName":{"name":"mstore8","nativeSrc":"1753:7:17","nodeType":"YulIdentifier","src":"1753:7:17"},"nativeSrc":"1753:46:17","nodeType":"YulFunctionCall","src":"1753:46:17"},"nativeSrc":"1753:46:17","nodeType":"YulExpressionStatement","src":"1753:46:17"}]},"evmVersion":"paris","externalReferences":[{"declaration":2124,"isOffset":false,"isSlot":false,"src":"1787:10:17","valueSize":1},{"declaration":2201,"isOffset":false,"isSlot":false,"src":"1761:3:17","valueSize":1},{"declaration":2179,"isOffset":false,"isSlot":false,"src":"1775:5:17","valueSize":1}],"flags":["memory-safe"],"id":2208,"nodeType":"InlineAssembly","src":"1706:111:17"},{"expression":{"id":2211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2209,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2179,"src":"1834:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"hexValue":"3130","id":2210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1843:2:17","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"1834:11:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2212,"nodeType":"ExpressionStatement","src":"1834:11:17"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2213,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2179,"src":"1867:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1876:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1867:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2217,"nodeType":"IfStatement","src":"1863:21:17","trueBody":{"id":2216,"nodeType":"Break","src":"1879:5:17"}}]},"condition":{"hexValue":"74727565","id":2204,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1659:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"id":2219,"nodeType":"WhileStatement","src":"1652:247:17"},{"expression":{"id":2220,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2194,"src":"1919:6:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2183,"id":2221,"nodeType":"Return","src":"1912:13:17"}]}]},"documentation":{"id":2177,"nodeType":"StructuredDocumentation","src":"1213:90:17","text":" @dev Converts a `uint256` to its ASCII `string` decimal representation."},"id":2224,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"1317:8:17","nodeType":"FunctionDefinition","parameters":{"id":2180,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2179,"mutability":"mutable","name":"value","nameLocation":"1334:5:17","nodeType":"VariableDeclaration","scope":2224,"src":"1326:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2178,"name":"uint256","nodeType":"ElementaryTypeName","src":"1326:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1325:15:17"},"returnParameters":{"id":2183,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2182,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2224,"src":"1364:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2181,"name":"string","nodeType":"ElementaryTypeName","src":"1364:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1363:15:17"},"scope":3512,"src":"1308:634:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2249,"nodeType":"Block","src":"2118:92:17","statements":[{"expression":{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":2237,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2235,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2227,"src":"2149:5:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":2236,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2157:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2149:9:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":2239,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2167:2:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":2240,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2149:20:17","trueExpression":{"hexValue":"2d","id":2238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2161:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[{"arguments":[{"id":2244,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2227,"src":"2195:5:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"expression":{"id":2242,"name":"SignedMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7739,"src":"2180:10:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SignedMath_$7739_$","typeString":"type(library SignedMath)"}},"id":2243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2191:3:17","memberName":"abs","nodeType":"MemberAccess","referencedDeclaration":7738,"src":"2180:14:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_int256_$returns$_t_uint256_$","typeString":"function (int256) pure returns (uint256)"}},"id":2245,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2180:21:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2241,"name":"toString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2224,"src":"2171:8:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":2246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2171:31:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":2233,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2135:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":2232,"name":"string","nodeType":"ElementaryTypeName","src":"2135:6:17","typeDescriptions":{}}},"id":2234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2142:6:17","memberName":"concat","nodeType":"MemberAccess","src":"2135:13:17","typeDescriptions":{"typeIdentifier":"t_function_stringconcat_pure$__$returns$_t_string_memory_ptr_$","typeString":"function () pure returns (string memory)"}},"id":2247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2135:68:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2231,"id":2248,"nodeType":"Return","src":"2128:75:17"}]},"documentation":{"id":2225,"nodeType":"StructuredDocumentation","src":"1948:89:17","text":" @dev Converts a `int256` to its ASCII `string` decimal representation."},"id":2250,"implemented":true,"kind":"function","modifiers":[],"name":"toStringSigned","nameLocation":"2051:14:17","nodeType":"FunctionDefinition","parameters":{"id":2228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2227,"mutability":"mutable","name":"value","nameLocation":"2073:5:17","nodeType":"VariableDeclaration","scope":2250,"src":"2066:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":2226,"name":"int256","nodeType":"ElementaryTypeName","src":"2066:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"2065:14:17"},"returnParameters":{"id":2231,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2230,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2250,"src":"2103:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2229,"name":"string","nodeType":"ElementaryTypeName","src":"2103:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2102:15:17"},"scope":3512,"src":"2042:168:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2269,"nodeType":"Block","src":"2389:100:17","statements":[{"id":2268,"nodeType":"UncheckedBlock","src":"2399:84:17","statements":[{"expression":{"arguments":[{"id":2259,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2253,"src":"2442:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":2262,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2253,"src":"2461:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":2260,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5830,"src":"2449:4:17","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$5830_$","typeString":"type(library Math)"}},"id":2261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2454:6:17","memberName":"log256","nodeType":"MemberAccess","referencedDeclaration":5773,"src":"2449:11:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":2263,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2449:18:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":2264,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2470:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2449:22:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2258,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[2270,2353,2373],"referencedDeclaration":2353,"src":"2430:11:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":2266,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2430:42:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2257,"id":2267,"nodeType":"Return","src":"2423:49:17"}]}]},"documentation":{"id":2251,"nodeType":"StructuredDocumentation","src":"2216:94:17","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation."},"id":2270,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2324:11:17","nodeType":"FunctionDefinition","parameters":{"id":2254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2253,"mutability":"mutable","name":"value","nameLocation":"2344:5:17","nodeType":"VariableDeclaration","scope":2270,"src":"2336:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2252,"name":"uint256","nodeType":"ElementaryTypeName","src":"2336:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2335:15:17"},"returnParameters":{"id":2257,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2256,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2270,"src":"2374:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2255,"name":"string","nodeType":"ElementaryTypeName","src":"2374:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2373:15:17"},"scope":3512,"src":"2315:174:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2352,"nodeType":"Block","src":"2702:435:17","statements":[{"assignments":[2281],"declarations":[{"constant":false,"id":2281,"mutability":"mutable","name":"localValue","nameLocation":"2720:10:17","nodeType":"VariableDeclaration","scope":2352,"src":"2712:18:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2280,"name":"uint256","nodeType":"ElementaryTypeName","src":"2712:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2283,"initialValue":{"id":2282,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2273,"src":"2733:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2712:26:17"},{"assignments":[2285],"declarations":[{"constant":false,"id":2285,"mutability":"mutable","name":"buffer","nameLocation":"2761:6:17","nodeType":"VariableDeclaration","scope":2352,"src":"2748:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2284,"name":"bytes","nodeType":"ElementaryTypeName","src":"2748:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2294,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":2288,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2780:1:17","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2289,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2275,"src":"2784:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2780:10:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":2291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2793:1:17","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"2780:14:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2287,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"2770:9:17","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":2286,"name":"bytes","nodeType":"ElementaryTypeName","src":"2774:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":2293,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2770:25:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"2748:47:17"},{"expression":{"id":2299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2295,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2285,"src":"2805:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2297,"indexExpression":{"hexValue":"30","id":2296,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2812:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2805:9:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"30","id":2298,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2817:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"},"src":"2805:15:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":2300,"nodeType":"ExpressionStatement","src":"2805:15:17"},{"expression":{"id":2305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2301,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2285,"src":"2830:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2303,"indexExpression":{"hexValue":"31","id":2302,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2837:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2830:9:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"78","id":2304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2842:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83","typeString":"literal_string \"x\""},"value":"x"},"src":"2830:15:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":2306,"nodeType":"ExpressionStatement","src":"2830:15:17"},{"body":{"id":2335,"nodeType":"Block","src":"2900:95:17","statements":[{"expression":{"id":2329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2321,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2285,"src":"2914:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2323,"indexExpression":{"id":2322,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2308,"src":"2921:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2914:9:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":2324,"name":"HEX_DIGITS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2124,"src":"2926:10:17","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"id":2328,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2325,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"2937:10:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":2326,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2950:3:17","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"2937:16:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2926:28:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"2914:40:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":2330,"nodeType":"ExpressionStatement","src":"2914:40:17"},{"expression":{"id":2333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2331,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"2968:10:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":2332,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2983:1:17","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"2968:16:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2334,"nodeType":"ExpressionStatement","src":"2968:16:17"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2315,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2308,"src":"2888:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":2316,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2892:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2888:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2336,"initializationExpression":{"assignments":[2308],"declarations":[{"constant":false,"id":2308,"mutability":"mutable","name":"i","nameLocation":"2868:1:17","nodeType":"VariableDeclaration","scope":2336,"src":"2860:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2307,"name":"uint256","nodeType":"ElementaryTypeName","src":"2860:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2314,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":2309,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2872:1:17","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2310,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2275,"src":"2876:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2872:10:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":2312,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2885:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2872:14:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2860:26:17"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":2319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2895:3:17","subExpression":{"id":2318,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2308,"src":"2897:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2320,"nodeType":"ExpressionStatement","src":"2895:3:17"},"nodeType":"ForStatement","src":"2855:140:17"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2337,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"3008:10:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2338,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3022:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3008:15:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2346,"nodeType":"IfStatement","src":"3004:96:17","trueBody":{"id":2345,"nodeType":"Block","src":"3025:75:17","statements":[{"errorCall":{"arguments":[{"id":2341,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2273,"src":"3075:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2342,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2275,"src":"3082:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2340,"name":"StringsInsufficientHexLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2170,"src":"3046:28:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":2343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3046:43:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2344,"nodeType":"RevertStatement","src":"3039:50:17"}]}},{"expression":{"arguments":[{"id":2349,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2285,"src":"3123:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2348,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3116:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":2347,"name":"string","nodeType":"ElementaryTypeName","src":"3116:6:17","typeDescriptions":{}}},"id":2350,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3116:14:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2279,"id":2351,"nodeType":"Return","src":"3109:21:17"}]},"documentation":{"id":2271,"nodeType":"StructuredDocumentation","src":"2495:112:17","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length."},"id":2353,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2621:11:17","nodeType":"FunctionDefinition","parameters":{"id":2276,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2273,"mutability":"mutable","name":"value","nameLocation":"2641:5:17","nodeType":"VariableDeclaration","scope":2353,"src":"2633:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2272,"name":"uint256","nodeType":"ElementaryTypeName","src":"2633:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2275,"mutability":"mutable","name":"length","nameLocation":"2656:6:17","nodeType":"VariableDeclaration","scope":2353,"src":"2648:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2274,"name":"uint256","nodeType":"ElementaryTypeName","src":"2648:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2632:31:17"},"returnParameters":{"id":2279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2278,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2353,"src":"2687:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2277,"name":"string","nodeType":"ElementaryTypeName","src":"2687:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2686:15:17"},"scope":3512,"src":"2612:525:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2372,"nodeType":"Block","src":"3369:75:17","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":2366,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2356,"src":"3414:4:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2365,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3406:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":2364,"name":"uint160","nodeType":"ElementaryTypeName","src":"3406:7:17","typeDescriptions":{}}},"id":2367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3406:13:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":2363,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3398:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2362,"name":"uint256","nodeType":"ElementaryTypeName","src":"3398:7:17","typeDescriptions":{}}},"id":2368,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3398:22:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2369,"name":"ADDRESS_LENGTH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2127,"src":"3422:14:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":2361,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[2270,2353,2373],"referencedDeclaration":2353,"src":"3386:11:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256,uint256) pure returns (string memory)"}},"id":2370,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3386:51:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2360,"id":2371,"nodeType":"Return","src":"3379:58:17"}]},"documentation":{"id":2354,"nodeType":"StructuredDocumentation","src":"3143:148:17","text":" @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal\n representation."},"id":2373,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"3305:11:17","nodeType":"FunctionDefinition","parameters":{"id":2357,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2356,"mutability":"mutable","name":"addr","nameLocation":"3325:4:17","nodeType":"VariableDeclaration","scope":2373,"src":"3317:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2355,"name":"address","nodeType":"ElementaryTypeName","src":"3317:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3316:14:17"},"returnParameters":{"id":2360,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2359,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2373,"src":"3354:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2358,"name":"string","nodeType":"ElementaryTypeName","src":"3354:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3353:15:17"},"scope":3512,"src":"3296:148:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2437,"nodeType":"Block","src":"3701:642:17","statements":[{"assignments":[2382],"declarations":[{"constant":false,"id":2382,"mutability":"mutable","name":"buffer","nameLocation":"3724:6:17","nodeType":"VariableDeclaration","scope":2437,"src":"3711:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2381,"name":"bytes","nodeType":"ElementaryTypeName","src":"3711:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2389,"initialValue":{"arguments":[{"arguments":[{"id":2386,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2376,"src":"3751:4:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2385,"name":"toHexString","nodeType":"Identifier","overloadedDeclarations":[2270,2353,2373],"referencedDeclaration":2373,"src":"3739:11:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$returns$_t_string_memory_ptr_$","typeString":"function (address) pure returns (string memory)"}},"id":2387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3739:17:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2384,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3733:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2383,"name":"bytes","nodeType":"ElementaryTypeName","src":"3733:5:17","typeDescriptions":{}}},"id":2388,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3733:24:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3711:46:17"},{"assignments":[2391],"declarations":[{"constant":false,"id":2391,"mutability":"mutable","name":"hashValue","nameLocation":"3850:9:17","nodeType":"VariableDeclaration","scope":2437,"src":"3842:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2390,"name":"uint256","nodeType":"ElementaryTypeName","src":"3842:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2392,"nodeType":"VariableDeclarationStatement","src":"3842:17:17"},{"AST":{"nativeSrc":"3894:78:17","nodeType":"YulBlock","src":"3894:78:17","statements":[{"nativeSrc":"3908:54:17","nodeType":"YulAssignment","src":"3908:54:17","value":{"arguments":[{"kind":"number","nativeSrc":"3925:2:17","nodeType":"YulLiteral","src":"3925:2:17","type":"","value":"96"},{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"3943:6:17","nodeType":"YulIdentifier","src":"3943:6:17"},{"kind":"number","nativeSrc":"3951:4:17","nodeType":"YulLiteral","src":"3951:4:17","type":"","value":"0x22"}],"functionName":{"name":"add","nativeSrc":"3939:3:17","nodeType":"YulIdentifier","src":"3939:3:17"},"nativeSrc":"3939:17:17","nodeType":"YulFunctionCall","src":"3939:17:17"},{"kind":"number","nativeSrc":"3958:2:17","nodeType":"YulLiteral","src":"3958:2:17","type":"","value":"40"}],"functionName":{"name":"keccak256","nativeSrc":"3929:9:17","nodeType":"YulIdentifier","src":"3929:9:17"},"nativeSrc":"3929:32:17","nodeType":"YulFunctionCall","src":"3929:32:17"}],"functionName":{"name":"shr","nativeSrc":"3921:3:17","nodeType":"YulIdentifier","src":"3921:3:17"},"nativeSrc":"3921:41:17","nodeType":"YulFunctionCall","src":"3921:41:17"},"variableNames":[{"name":"hashValue","nativeSrc":"3908:9:17","nodeType":"YulIdentifier","src":"3908:9:17"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":2382,"isOffset":false,"isSlot":false,"src":"3943:6:17","valueSize":1},{"declaration":2391,"isOffset":false,"isSlot":false,"src":"3908:9:17","valueSize":1}],"flags":["memory-safe"],"id":2393,"nodeType":"InlineAssembly","src":"3869:103:17"},{"body":{"id":2430,"nodeType":"Block","src":"4015:291:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2404,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2391,"src":"4121:9:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307866","id":2405,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4133:3:17","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"4121:15:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"37","id":2407,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4139:1:17","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"4121:19:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":2416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":2411,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2382,"src":"4150:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2413,"indexExpression":{"id":2412,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2395,"src":"4157:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4150:9:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":2410,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4144:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":2409,"name":"uint8","nodeType":"ElementaryTypeName","src":"4144:5:17","typeDescriptions":{}}},"id":2414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4144:16:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":2415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4163:2:17","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"4144:21:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4121:44:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2425,"nodeType":"IfStatement","src":"4117:150:17","trueBody":{"id":2424,"nodeType":"Block","src":"4167:100:17","statements":[{"expression":{"id":2422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":2418,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2382,"src":"4235:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2420,"indexExpression":{"id":2419,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2395,"src":"4242:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4235:9:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"^=","rightHandSide":{"hexValue":"30783230","id":2421,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4248:4:17","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"src":"4235:17:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":2423,"nodeType":"ExpressionStatement","src":"4235:17:17"}]}},{"expression":{"id":2428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2426,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2391,"src":"4280:9:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":2427,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4294:1:17","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"4280:15:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2429,"nodeType":"ExpressionStatement","src":"4280:15:17"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2398,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2395,"src":"4003:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":2399,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4007:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4003:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2431,"initializationExpression":{"assignments":[2395],"declarations":[{"constant":false,"id":2395,"mutability":"mutable","name":"i","nameLocation":"3995:1:17","nodeType":"VariableDeclaration","scope":2431,"src":"3987:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2394,"name":"uint256","nodeType":"ElementaryTypeName","src":"3987:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2397,"initialValue":{"hexValue":"3431","id":2396,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3999:2:17","typeDescriptions":{"typeIdentifier":"t_rational_41_by_1","typeString":"int_const 41"},"value":"41"},"nodeType":"VariableDeclarationStatement","src":"3987:14:17"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":2402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"4010:3:17","subExpression":{"id":2401,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2395,"src":"4012:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2403,"nodeType":"ExpressionStatement","src":"4010:3:17"},"nodeType":"ForStatement","src":"3982:324:17"},{"expression":{"arguments":[{"id":2434,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2382,"src":"4329:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2433,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4322:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":2432,"name":"string","nodeType":"ElementaryTypeName","src":"4322:6:17","typeDescriptions":{}}},"id":2435,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4322:14:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2380,"id":2436,"nodeType":"Return","src":"4315:21:17"}]},"documentation":{"id":2374,"nodeType":"StructuredDocumentation","src":"3450:165:17","text":" @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal\n representation, according to EIP-55."},"id":2438,"implemented":true,"kind":"function","modifiers":[],"name":"toChecksumHexString","nameLocation":"3629:19:17","nodeType":"FunctionDefinition","parameters":{"id":2377,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2376,"mutability":"mutable","name":"addr","nameLocation":"3657:4:17","nodeType":"VariableDeclaration","scope":2438,"src":"3649:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2375,"name":"address","nodeType":"ElementaryTypeName","src":"3649:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3648:14:17"},"returnParameters":{"id":2380,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2379,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2438,"src":"3686:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2378,"name":"string","nodeType":"ElementaryTypeName","src":"3686:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3685:15:17"},"scope":3512,"src":"3620:723:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2474,"nodeType":"Block","src":"4498:104:17","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":2450,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2441,"src":"4521:1:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2449,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4515:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2448,"name":"bytes","nodeType":"ElementaryTypeName","src":"4515:5:17","typeDescriptions":{}}},"id":2451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4515:8:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4524:6:17","memberName":"length","nodeType":"MemberAccess","src":"4515:15:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":2455,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2443,"src":"4540:1:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2454,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4534:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2453,"name":"bytes","nodeType":"ElementaryTypeName","src":"4534:5:17","typeDescriptions":{}}},"id":2456,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4534:8:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2457,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4543:6:17","memberName":"length","nodeType":"MemberAccess","src":"4534:15:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4515:34:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":2471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":2462,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2441,"src":"4569:1:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2461,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4563:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2460,"name":"bytes","nodeType":"ElementaryTypeName","src":"4563:5:17","typeDescriptions":{}}},"id":2463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4563:8:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2459,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4553:9:17","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4553:19:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"id":2468,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2443,"src":"4592:1:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2467,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4586:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2466,"name":"bytes","nodeType":"ElementaryTypeName","src":"4586:5:17","typeDescriptions":{}}},"id":2469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4586:8:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2465,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4576:9:17","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":2470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4576:19:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4553:42:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4515:80:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2447,"id":2473,"nodeType":"Return","src":"4508:87:17"}]},"documentation":{"id":2439,"nodeType":"StructuredDocumentation","src":"4349:66:17","text":" @dev Returns true if the two strings are equal."},"id":2475,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"4429:5:17","nodeType":"FunctionDefinition","parameters":{"id":2444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2441,"mutability":"mutable","name":"a","nameLocation":"4449:1:17","nodeType":"VariableDeclaration","scope":2475,"src":"4435:15:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2440,"name":"string","nodeType":"ElementaryTypeName","src":"4435:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2443,"mutability":"mutable","name":"b","nameLocation":"4466:1:17","nodeType":"VariableDeclaration","scope":2475,"src":"4452:15:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2442,"name":"string","nodeType":"ElementaryTypeName","src":"4452:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4434:34:17"},"returnParameters":{"id":2447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2446,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2475,"src":"4492:4:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2445,"name":"bool","nodeType":"ElementaryTypeName","src":"4492:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4491:6:17"},"scope":3512,"src":"4420:182:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2493,"nodeType":"Block","src":"4899:64:17","statements":[{"expression":{"arguments":[{"id":2484,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2478,"src":"4926:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":2485,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4933:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":2488,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2478,"src":"4942:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2487,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4936:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2486,"name":"bytes","nodeType":"ElementaryTypeName","src":"4936:5:17","typeDescriptions":{}}},"id":2489,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4936:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2490,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4949:6:17","memberName":"length","nodeType":"MemberAccess","src":"4936:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2483,"name":"parseUint","nodeType":"Identifier","overloadedDeclarations":[2494,2525],"referencedDeclaration":2525,"src":"4916:9:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (uint256)"}},"id":2491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4916:40:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2482,"id":2492,"nodeType":"Return","src":"4909:47:17"}]},"documentation":{"id":2476,"nodeType":"StructuredDocumentation","src":"4608:214:17","text":" @dev Parse a decimal string and returns the value as a `uint256`.\n Requirements:\n - The string must be formatted as `[0-9]*`\n - The result must fit into an `uint256` type"},"id":2494,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"4836:9:17","nodeType":"FunctionDefinition","parameters":{"id":2479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2478,"mutability":"mutable","name":"input","nameLocation":"4860:5:17","nodeType":"VariableDeclaration","scope":2494,"src":"4846:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2477,"name":"string","nodeType":"ElementaryTypeName","src":"4846:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4845:21:17"},"returnParameters":{"id":2482,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2481,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2494,"src":"4890:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2480,"name":"uint256","nodeType":"ElementaryTypeName","src":"4890:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4889:9:17"},"scope":3512,"src":"4827:136:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2524,"nodeType":"Block","src":"5368:153:17","statements":[{"assignments":[2507,2509],"declarations":[{"constant":false,"id":2507,"mutability":"mutable","name":"success","nameLocation":"5384:7:17","nodeType":"VariableDeclaration","scope":2524,"src":"5379:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2506,"name":"bool","nodeType":"ElementaryTypeName","src":"5379:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2509,"mutability":"mutable","name":"value","nameLocation":"5401:5:17","nodeType":"VariableDeclaration","scope":2524,"src":"5393:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2508,"name":"uint256","nodeType":"ElementaryTypeName","src":"5393:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2515,"initialValue":{"arguments":[{"id":2511,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"5423:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":2512,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2499,"src":"5430:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2513,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2501,"src":"5437:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2510,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[2546,2583],"referencedDeclaration":2583,"src":"5410:12:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":2514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5410:31:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"5378:63:17"},{"condition":{"id":2517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5455:8:17","subExpression":{"id":2516,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2507,"src":"5456:7:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2521,"nodeType":"IfStatement","src":"5451:41:17","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":2518,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2173,"src":"5472:18:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":2519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5472:20:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2520,"nodeType":"RevertStatement","src":"5465:27:17"}},{"expression":{"id":2522,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2509,"src":"5509:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2505,"id":2523,"nodeType":"Return","src":"5502:12:17"}]},"documentation":{"id":2495,"nodeType":"StructuredDocumentation","src":"4969:294:17","text":" @dev Variant of {parseUint-string} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `[0-9]*`\n - The result must fit into an `uint256` type"},"id":2525,"implemented":true,"kind":"function","modifiers":[],"name":"parseUint","nameLocation":"5277:9:17","nodeType":"FunctionDefinition","parameters":{"id":2502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2497,"mutability":"mutable","name":"input","nameLocation":"5301:5:17","nodeType":"VariableDeclaration","scope":2525,"src":"5287:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2496,"name":"string","nodeType":"ElementaryTypeName","src":"5287:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2499,"mutability":"mutable","name":"begin","nameLocation":"5316:5:17","nodeType":"VariableDeclaration","scope":2525,"src":"5308:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2498,"name":"uint256","nodeType":"ElementaryTypeName","src":"5308:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2501,"mutability":"mutable","name":"end","nameLocation":"5331:3:17","nodeType":"VariableDeclaration","scope":2525,"src":"5323:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2500,"name":"uint256","nodeType":"ElementaryTypeName","src":"5323:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5286:49:17"},"returnParameters":{"id":2505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2504,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2525,"src":"5359:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2503,"name":"uint256","nodeType":"ElementaryTypeName","src":"5359:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5358:9:17"},"scope":3512,"src":"5268:253:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2545,"nodeType":"Block","src":"5842:83:17","statements":[{"expression":{"arguments":[{"id":2536,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2528,"src":"5888:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":2537,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5895:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":2540,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2528,"src":"5904:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2539,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5898:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2538,"name":"bytes","nodeType":"ElementaryTypeName","src":"5898:5:17","typeDescriptions":{}}},"id":2541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5898:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5911:6:17","memberName":"length","nodeType":"MemberAccess","src":"5898:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2535,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2653,"src":"5859:28:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":2543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5859:59:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":2534,"id":2544,"nodeType":"Return","src":"5852:66:17"}]},"documentation":{"id":2526,"nodeType":"StructuredDocumentation","src":"5527:215:17","text":" @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":2546,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"5756:12:17","nodeType":"FunctionDefinition","parameters":{"id":2529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2528,"mutability":"mutable","name":"input","nameLocation":"5783:5:17","nodeType":"VariableDeclaration","scope":2546,"src":"5769:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2527,"name":"string","nodeType":"ElementaryTypeName","src":"5769:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5768:21:17"},"returnParameters":{"id":2534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2531,"mutability":"mutable","name":"success","nameLocation":"5818:7:17","nodeType":"VariableDeclaration","scope":2546,"src":"5813:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2530,"name":"bool","nodeType":"ElementaryTypeName","src":"5813:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2533,"mutability":"mutable","name":"value","nameLocation":"5835:5:17","nodeType":"VariableDeclaration","scope":2546,"src":"5827:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2532,"name":"uint256","nodeType":"ElementaryTypeName","src":"5827:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5812:29:17"},"scope":3512,"src":"5747:178:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2582,"nodeType":"Block","src":"6327:144:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2566,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2560,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2553,"src":"6341:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":2563,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2549,"src":"6353:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2562,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6347:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2561,"name":"bytes","nodeType":"ElementaryTypeName","src":"6347:5:17","typeDescriptions":{}}},"id":2564,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6347:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6360:6:17","memberName":"length","nodeType":"MemberAccess","src":"6347:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6341:25:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2567,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2551,"src":"6370:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":2568,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2553,"src":"6378:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6370:11:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6341:40:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2575,"nodeType":"IfStatement","src":"6337:63:17","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":2571,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6391:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":2572,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6398:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":2573,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6390:10:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":2559,"id":2574,"nodeType":"Return","src":"6383:17:17"}},{"expression":{"arguments":[{"id":2577,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2549,"src":"6446:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":2578,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2551,"src":"6453:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2579,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2553,"src":"6460:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2576,"name":"_tryParseUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2653,"src":"6417:28:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":2580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6417:47:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":2559,"id":2581,"nodeType":"Return","src":"6410:54:17"}]},"documentation":{"id":2547,"nodeType":"StructuredDocumentation","src":"5931:238:17","text":" @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":2583,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseUint","nameLocation":"6183:12:17","nodeType":"FunctionDefinition","parameters":{"id":2554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2549,"mutability":"mutable","name":"input","nameLocation":"6219:5:17","nodeType":"VariableDeclaration","scope":2583,"src":"6205:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2548,"name":"string","nodeType":"ElementaryTypeName","src":"6205:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2551,"mutability":"mutable","name":"begin","nameLocation":"6242:5:17","nodeType":"VariableDeclaration","scope":2583,"src":"6234:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2550,"name":"uint256","nodeType":"ElementaryTypeName","src":"6234:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2553,"mutability":"mutable","name":"end","nameLocation":"6265:3:17","nodeType":"VariableDeclaration","scope":2583,"src":"6257:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2552,"name":"uint256","nodeType":"ElementaryTypeName","src":"6257:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6195:79:17"},"returnParameters":{"id":2559,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2556,"mutability":"mutable","name":"success","nameLocation":"6303:7:17","nodeType":"VariableDeclaration","scope":2583,"src":"6298:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2555,"name":"bool","nodeType":"ElementaryTypeName","src":"6298:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2558,"mutability":"mutable","name":"value","nameLocation":"6320:5:17","nodeType":"VariableDeclaration","scope":2583,"src":"6312:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2557,"name":"uint256","nodeType":"ElementaryTypeName","src":"6312:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6297:29:17"},"scope":3512,"src":"6174:297:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2652,"nodeType":"Block","src":"6874:347:17","statements":[{"assignments":[2598],"declarations":[{"constant":false,"id":2598,"mutability":"mutable","name":"buffer","nameLocation":"6897:6:17","nodeType":"VariableDeclaration","scope":2652,"src":"6884:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2597,"name":"bytes","nodeType":"ElementaryTypeName","src":"6884:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2603,"initialValue":{"arguments":[{"id":2601,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2586,"src":"6912:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2600,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6906:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2599,"name":"bytes","nodeType":"ElementaryTypeName","src":"6906:5:17","typeDescriptions":{}}},"id":2602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6906:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"6884:34:17"},{"assignments":[2605],"declarations":[{"constant":false,"id":2605,"mutability":"mutable","name":"result","nameLocation":"6937:6:17","nodeType":"VariableDeclaration","scope":2652,"src":"6929:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2604,"name":"uint256","nodeType":"ElementaryTypeName","src":"6929:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2607,"initialValue":{"hexValue":"30","id":2606,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6946:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6929:18:17"},{"body":{"id":2646,"nodeType":"Block","src":"6995:189:17","statements":[{"assignments":[2619],"declarations":[{"constant":false,"id":2619,"mutability":"mutable","name":"chr","nameLocation":"7015:3:17","nodeType":"VariableDeclaration","scope":2646,"src":"7009:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2618,"name":"uint8","nodeType":"ElementaryTypeName","src":"7009:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":2629,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":2624,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2598,"src":"7064:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":2625,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2609,"src":"7072:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2623,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3511,"src":"7041:22:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":2626,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7041:33:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2622,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7034:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":2621,"name":"bytes1","nodeType":"ElementaryTypeName","src":"7034:6:17","typeDescriptions":{}}},"id":2627,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7034:41:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":2620,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3333,"src":"7021:12:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":2628,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7021:55:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"7009:67:17"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":2632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2630,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2619,"src":"7094:3:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"39","id":2631,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7100:1:17","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"src":"7094:7:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2637,"nodeType":"IfStatement","src":"7090:30:17","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":2633,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7111:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":2634,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7118:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":2635,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"7110:10:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":2596,"id":2636,"nodeType":"Return","src":"7103:17:17"}},{"expression":{"id":2640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2638,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2605,"src":"7134:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3130","id":2639,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7144:2:17","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"7134:12:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2641,"nodeType":"ExpressionStatement","src":"7134:12:17"},{"expression":{"id":2644,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2642,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2605,"src":"7160:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":2643,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2619,"src":"7170:3:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"7160:13:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2645,"nodeType":"ExpressionStatement","src":"7160:13:17"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2614,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2612,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2609,"src":"6981:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2613,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2590,"src":"6985:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6981:7:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2647,"initializationExpression":{"assignments":[2609],"declarations":[{"constant":false,"id":2609,"mutability":"mutable","name":"i","nameLocation":"6970:1:17","nodeType":"VariableDeclaration","scope":2647,"src":"6962:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2608,"name":"uint256","nodeType":"ElementaryTypeName","src":"6962:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2611,"initialValue":{"id":2610,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2588,"src":"6974:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6962:17:17"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":2616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6990:3:17","subExpression":{"id":2615,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2609,"src":"6992:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2617,"nodeType":"ExpressionStatement","src":"6990:3:17"},"nodeType":"ForStatement","src":"6957:227:17"},{"expression":{"components":[{"hexValue":"74727565","id":2648,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7201:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":2649,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2605,"src":"7207:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2650,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7200:14:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":2596,"id":2651,"nodeType":"Return","src":"7193:21:17"}]},"documentation":{"id":2584,"nodeType":"StructuredDocumentation","src":"6477:224:17","text":" @dev Implementation of {tryParseUint-string-uint256-uint256} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":2653,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseUintUncheckedBounds","nameLocation":"6715:28:17","nodeType":"FunctionDefinition","parameters":{"id":2591,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2586,"mutability":"mutable","name":"input","nameLocation":"6767:5:17","nodeType":"VariableDeclaration","scope":2653,"src":"6753:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2585,"name":"string","nodeType":"ElementaryTypeName","src":"6753:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2588,"mutability":"mutable","name":"begin","nameLocation":"6790:5:17","nodeType":"VariableDeclaration","scope":2653,"src":"6782:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2587,"name":"uint256","nodeType":"ElementaryTypeName","src":"6782:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2590,"mutability":"mutable","name":"end","nameLocation":"6813:3:17","nodeType":"VariableDeclaration","scope":2653,"src":"6805:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2589,"name":"uint256","nodeType":"ElementaryTypeName","src":"6805:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6743:79:17"},"returnParameters":{"id":2596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2593,"mutability":"mutable","name":"success","nameLocation":"6850:7:17","nodeType":"VariableDeclaration","scope":2653,"src":"6845:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2592,"name":"bool","nodeType":"ElementaryTypeName","src":"6845:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2595,"mutability":"mutable","name":"value","nameLocation":"6867:5:17","nodeType":"VariableDeclaration","scope":2653,"src":"6859:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2594,"name":"uint256","nodeType":"ElementaryTypeName","src":"6859:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6844:29:17"},"scope":3512,"src":"6706:515:17","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":2671,"nodeType":"Block","src":"7518:63:17","statements":[{"expression":{"arguments":[{"id":2662,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2656,"src":"7544:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":2663,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7551:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":2666,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2656,"src":"7560:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2665,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7554:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2664,"name":"bytes","nodeType":"ElementaryTypeName","src":"7554:5:17","typeDescriptions":{}}},"id":2667,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7554:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2668,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7567:6:17","memberName":"length","nodeType":"MemberAccess","src":"7554:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2661,"name":"parseInt","nodeType":"Identifier","overloadedDeclarations":[2672,2703],"referencedDeclaration":2703,"src":"7535:8:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (int256)"}},"id":2669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7535:39:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":2660,"id":2670,"nodeType":"Return","src":"7528:46:17"}]},"documentation":{"id":2654,"nodeType":"StructuredDocumentation","src":"7227:216:17","text":" @dev Parse a decimal string and returns the value as a `int256`.\n Requirements:\n - The string must be formatted as `[-+]?[0-9]*`\n - The result must fit in an `int256` type."},"id":2672,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"7457:8:17","nodeType":"FunctionDefinition","parameters":{"id":2657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2656,"mutability":"mutable","name":"input","nameLocation":"7480:5:17","nodeType":"VariableDeclaration","scope":2672,"src":"7466:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2655,"name":"string","nodeType":"ElementaryTypeName","src":"7466:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7465:21:17"},"returnParameters":{"id":2660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2659,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2672,"src":"7510:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":2658,"name":"int256","nodeType":"ElementaryTypeName","src":"7510:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7509:8:17"},"scope":3512,"src":"7448:133:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2702,"nodeType":"Block","src":"7986:151:17","statements":[{"assignments":[2685,2687],"declarations":[{"constant":false,"id":2685,"mutability":"mutable","name":"success","nameLocation":"8002:7:17","nodeType":"VariableDeclaration","scope":2702,"src":"7997:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2684,"name":"bool","nodeType":"ElementaryTypeName","src":"7997:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2687,"mutability":"mutable","name":"value","nameLocation":"8018:5:17","nodeType":"VariableDeclaration","scope":2702,"src":"8011:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":2686,"name":"int256","nodeType":"ElementaryTypeName","src":"8011:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":2693,"initialValue":{"arguments":[{"id":2689,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2675,"src":"8039:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":2690,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2677,"src":"8046:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2691,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2679,"src":"8053:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2688,"name":"tryParseInt","nodeType":"Identifier","overloadedDeclarations":[2724,2766],"referencedDeclaration":2766,"src":"8027:11:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,int256)"}},"id":2692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8027:30:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"nodeType":"VariableDeclarationStatement","src":"7996:61:17"},{"condition":{"id":2695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"8071:8:17","subExpression":{"id":2694,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2685,"src":"8072:7:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2699,"nodeType":"IfStatement","src":"8067:41:17","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":2696,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2173,"src":"8088:18:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":2697,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8088:20:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2698,"nodeType":"RevertStatement","src":"8081:27:17"}},{"expression":{"id":2700,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2687,"src":"8125:5:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":2683,"id":2701,"nodeType":"Return","src":"8118:12:17"}]},"documentation":{"id":2673,"nodeType":"StructuredDocumentation","src":"7587:296:17","text":" @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `[-+]?[0-9]*`\n - The result must fit in an `int256` type."},"id":2703,"implemented":true,"kind":"function","modifiers":[],"name":"parseInt","nameLocation":"7897:8:17","nodeType":"FunctionDefinition","parameters":{"id":2680,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2675,"mutability":"mutable","name":"input","nameLocation":"7920:5:17","nodeType":"VariableDeclaration","scope":2703,"src":"7906:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2674,"name":"string","nodeType":"ElementaryTypeName","src":"7906:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2677,"mutability":"mutable","name":"begin","nameLocation":"7935:5:17","nodeType":"VariableDeclaration","scope":2703,"src":"7927:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2676,"name":"uint256","nodeType":"ElementaryTypeName","src":"7927:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2679,"mutability":"mutable","name":"end","nameLocation":"7950:3:17","nodeType":"VariableDeclaration","scope":2703,"src":"7942:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2678,"name":"uint256","nodeType":"ElementaryTypeName","src":"7942:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7905:49:17"},"returnParameters":{"id":2683,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2682,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2703,"src":"7978:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":2681,"name":"int256","nodeType":"ElementaryTypeName","src":"7978:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7977:8:17"},"scope":3512,"src":"7888:249:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2723,"nodeType":"Block","src":"8528:82:17","statements":[{"expression":{"arguments":[{"id":2714,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2706,"src":"8573:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":2715,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8580:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":2718,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2706,"src":"8589:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2717,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8583:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2716,"name":"bytes","nodeType":"ElementaryTypeName","src":"8583:5:17","typeDescriptions":{}}},"id":2719,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8583:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8596:6:17","memberName":"length","nodeType":"MemberAccess","src":"8583:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2713,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2887,"src":"8545:27:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,int256)"}},"id":2721,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8545:58:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":2712,"id":2722,"nodeType":"Return","src":"8538:65:17"}]},"documentation":{"id":2704,"nodeType":"StructuredDocumentation","src":"8143:287:17","text":" @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if\n the result does not fit in a `int256`.\n NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`."},"id":2724,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"8444:11:17","nodeType":"FunctionDefinition","parameters":{"id":2707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2706,"mutability":"mutable","name":"input","nameLocation":"8470:5:17","nodeType":"VariableDeclaration","scope":2724,"src":"8456:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2705,"name":"string","nodeType":"ElementaryTypeName","src":"8456:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8455:21:17"},"returnParameters":{"id":2712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2709,"mutability":"mutable","name":"success","nameLocation":"8505:7:17","nodeType":"VariableDeclaration","scope":2724,"src":"8500:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2708,"name":"bool","nodeType":"ElementaryTypeName","src":"8500:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2711,"mutability":"mutable","name":"value","nameLocation":"8521:5:17","nodeType":"VariableDeclaration","scope":2724,"src":"8514:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":2710,"name":"int256","nodeType":"ElementaryTypeName","src":"8514:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"8499:28:17"},"scope":3512,"src":"8435:175:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"constant":true,"id":2729,"mutability":"constant","name":"ABS_MIN_INT256","nameLocation":"8641:14:17","nodeType":"VariableDeclaration","scope":3512,"src":"8616:50:17","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2725,"name":"uint256","nodeType":"ElementaryTypeName","src":"8616:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"},"id":2728,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":2726,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8658:1:17","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"323535","id":2727,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8663:3:17","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"8658:8:17","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"}},"visibility":"private"},{"body":{"id":2765,"nodeType":"Block","src":"9132:143:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2743,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2736,"src":"9146:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":2746,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2732,"src":"9158:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2745,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9152:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2744,"name":"bytes","nodeType":"ElementaryTypeName","src":"9152:5:17","typeDescriptions":{}}},"id":2747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9152:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9165:6:17","memberName":"length","nodeType":"MemberAccess","src":"9152:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9146:25:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2750,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2734,"src":"9175:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":2751,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2736,"src":"9183:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9175:11:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9146:40:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2758,"nodeType":"IfStatement","src":"9142:63:17","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":2754,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9196:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":2755,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9203:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":2756,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"9195:10:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":2742,"id":2757,"nodeType":"Return","src":"9188:17:17"}},{"expression":{"arguments":[{"id":2760,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2732,"src":"9250:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":2761,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2734,"src":"9257:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2762,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2736,"src":"9264:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2759,"name":"_tryParseIntUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2887,"src":"9222:27:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_int256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,int256)"}},"id":2763,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9222:46:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":2742,"id":2764,"nodeType":"Return","src":"9215:53:17"}]},"documentation":{"id":2730,"nodeType":"StructuredDocumentation","src":"8673:303:17","text":" @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid\n character or if the result does not fit in a `int256`.\n NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`."},"id":2766,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseInt","nameLocation":"8990:11:17","nodeType":"FunctionDefinition","parameters":{"id":2737,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2732,"mutability":"mutable","name":"input","nameLocation":"9025:5:17","nodeType":"VariableDeclaration","scope":2766,"src":"9011:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2731,"name":"string","nodeType":"ElementaryTypeName","src":"9011:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2734,"mutability":"mutable","name":"begin","nameLocation":"9048:5:17","nodeType":"VariableDeclaration","scope":2766,"src":"9040:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2733,"name":"uint256","nodeType":"ElementaryTypeName","src":"9040:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2736,"mutability":"mutable","name":"end","nameLocation":"9071:3:17","nodeType":"VariableDeclaration","scope":2766,"src":"9063:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2735,"name":"uint256","nodeType":"ElementaryTypeName","src":"9063:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9001:79:17"},"returnParameters":{"id":2742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2739,"mutability":"mutable","name":"success","nameLocation":"9109:7:17","nodeType":"VariableDeclaration","scope":2766,"src":"9104:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2738,"name":"bool","nodeType":"ElementaryTypeName","src":"9104:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2741,"mutability":"mutable","name":"value","nameLocation":"9125:5:17","nodeType":"VariableDeclaration","scope":2766,"src":"9118:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":2740,"name":"int256","nodeType":"ElementaryTypeName","src":"9118:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9103:28:17"},"scope":3512,"src":"8981:294:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2886,"nodeType":"Block","src":"9675:812:17","statements":[{"assignments":[2781],"declarations":[{"constant":false,"id":2781,"mutability":"mutable","name":"buffer","nameLocation":"9698:6:17","nodeType":"VariableDeclaration","scope":2886,"src":"9685:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2780,"name":"bytes","nodeType":"ElementaryTypeName","src":"9685:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2786,"initialValue":{"arguments":[{"id":2784,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2769,"src":"9713:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2783,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9707:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2782,"name":"bytes","nodeType":"ElementaryTypeName","src":"9707:5:17","typeDescriptions":{}}},"id":2785,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9707:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"9685:34:17"},{"assignments":[2788],"declarations":[{"constant":false,"id":2788,"mutability":"mutable","name":"sign","nameLocation":"9783:4:17","nodeType":"VariableDeclaration","scope":2886,"src":"9776:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":2787,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9776:6:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":2804,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2789,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2771,"src":"9790:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2790,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2773,"src":"9799:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9790:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"arguments":[{"id":2799,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2781,"src":"9847:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":2800,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2771,"src":"9855:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2798,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3511,"src":"9824:22:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":2801,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9824:37:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":2797,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9817:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":2796,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9817:6:17","typeDescriptions":{}}},"id":2802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9817:45:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":2803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9790:72:17","trueExpression":{"arguments":[{"hexValue":"30","id":2794,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9812:1:17","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":2793,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9805:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":2792,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9805:6:17","typeDescriptions":{}}},"id":2795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9805:9:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"9776:86:17"},{"assignments":[2806],"declarations":[{"constant":false,"id":2806,"mutability":"mutable","name":"positiveSign","nameLocation":"9948:12:17","nodeType":"VariableDeclaration","scope":2886,"src":"9943:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2805,"name":"bool","nodeType":"ElementaryTypeName","src":"9943:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":2813,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":2812,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2807,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2788,"src":"9963:4:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2b","id":2810,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9978:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""},"value":"+"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_728b8dbbe730d9acd55e30e768e6a28a04bea0c61b88108287c2c87d79c98bb8","typeString":"literal_string \"+\""}],"id":2809,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9971:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":2808,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9971:6:17","typeDescriptions":{}}},"id":2811,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9971:11:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"9963:19:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"9943:39:17"},{"assignments":[2815],"declarations":[{"constant":false,"id":2815,"mutability":"mutable","name":"negativeSign","nameLocation":"9997:12:17","nodeType":"VariableDeclaration","scope":2886,"src":"9992:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2814,"name":"bool","nodeType":"ElementaryTypeName","src":"9992:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":2822,"initialValue":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":2821,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2816,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2788,"src":"10012:4:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"2d","id":2819,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10027:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""},"value":"-"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d3b8281179950f98149eefdb158d0e1acb56f56e8e343aa9fefafa7e36959561","typeString":"literal_string \"-\""}],"id":2818,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10020:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":2817,"name":"bytes1","nodeType":"ElementaryTypeName","src":"10020:6:17","typeDescriptions":{}}},"id":2820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10020:11:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"10012:19:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"9992:39:17"},{"assignments":[2824],"declarations":[{"constant":false,"id":2824,"mutability":"mutable","name":"offset","nameLocation":"10049:6:17","nodeType":"VariableDeclaration","scope":2886,"src":"10041:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2823,"name":"uint256","nodeType":"ElementaryTypeName","src":"10041:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2831,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2827,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2825,"name":"positiveSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2806,"src":"10059:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":2826,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2815,"src":"10075:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10059:28:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":2828,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10058:30:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10089:6:17","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"10058:37:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":2830,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10058:39:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10041:56:17"},{"assignments":[2833,2835],"declarations":[{"constant":false,"id":2833,"mutability":"mutable","name":"absSuccess","nameLocation":"10114:10:17","nodeType":"VariableDeclaration","scope":2886,"src":"10109:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2832,"name":"bool","nodeType":"ElementaryTypeName","src":"10109:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2835,"mutability":"mutable","name":"absValue","nameLocation":"10134:8:17","nodeType":"VariableDeclaration","scope":2886,"src":"10126:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2834,"name":"uint256","nodeType":"ElementaryTypeName","src":"10126:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2843,"initialValue":{"arguments":[{"id":2837,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2769,"src":"10159:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2838,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2771,"src":"10166:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":2839,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2824,"src":"10174:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10166:14:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2841,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2773,"src":"10182:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2836,"name":"tryParseUint","nodeType":"Identifier","overloadedDeclarations":[2546,2583],"referencedDeclaration":2583,"src":"10146:12:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":2842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10146:40:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"10108:78:17"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2844,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2833,"src":"10201:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2847,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2845,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2835,"src":"10215:8:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2846,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2729,"src":"10226:14:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10215:25:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10201:39:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2866,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2864,"name":"absSuccess","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2833,"src":"10343:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":2865,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2815,"src":"10357:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10343:26:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2867,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2835,"src":"10373:8:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2868,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2729,"src":"10385:14:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10373:26:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10343:56:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"components":[{"hexValue":"66616c7365","id":2880,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10471:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":2881,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10478:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":2882,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10470:10:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":2779,"id":2883,"nodeType":"Return","src":"10463:17:17"},"id":2884,"nodeType":"IfStatement","src":"10339:141:17","trueBody":{"id":2879,"nodeType":"Block","src":"10401:56:17","statements":[{"expression":{"components":[{"hexValue":"74727565","id":2871,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10423:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"expression":{"arguments":[{"id":2874,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10434:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":2873,"name":"int256","nodeType":"ElementaryTypeName","src":"10434:6:17","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":2872,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10429:4:17","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":2875,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10429:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":2876,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10442:3:17","memberName":"min","nodeType":"MemberAccess","src":"10429:16:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":2877,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10422:24:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":2779,"id":2878,"nodeType":"Return","src":"10415:31:17"}]}},"id":2885,"nodeType":"IfStatement","src":"10197:283:17","trueBody":{"id":2863,"nodeType":"Block","src":"10242:91:17","statements":[{"expression":{"components":[{"hexValue":"74727565","id":2849,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10264:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"condition":{"id":2850,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2815,"src":"10270:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":2858,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2835,"src":"10312:8:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2857,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10305:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":2856,"name":"int256","nodeType":"ElementaryTypeName","src":"10305:6:17","typeDescriptions":{}}},"id":2859,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10305:16:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":2860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"10270:51:17","trueExpression":{"id":2855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"10285:17:17","subExpression":{"arguments":[{"id":2853,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2835,"src":"10293:8:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2852,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10286:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":2851,"name":"int256","nodeType":"ElementaryTypeName","src":"10286:6:17","typeDescriptions":{}}},"id":2854,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10286:16:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":2861,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10263:59:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":2779,"id":2862,"nodeType":"Return","src":"10256:66:17"}]}}]},"documentation":{"id":2767,"nodeType":"StructuredDocumentation","src":"9281:223:17","text":" @dev Implementation of {tryParseInt-string-uint256-uint256} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":2887,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseIntUncheckedBounds","nameLocation":"9518:27:17","nodeType":"FunctionDefinition","parameters":{"id":2774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2769,"mutability":"mutable","name":"input","nameLocation":"9569:5:17","nodeType":"VariableDeclaration","scope":2887,"src":"9555:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2768,"name":"string","nodeType":"ElementaryTypeName","src":"9555:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2771,"mutability":"mutable","name":"begin","nameLocation":"9592:5:17","nodeType":"VariableDeclaration","scope":2887,"src":"9584:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2770,"name":"uint256","nodeType":"ElementaryTypeName","src":"9584:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2773,"mutability":"mutable","name":"end","nameLocation":"9615:3:17","nodeType":"VariableDeclaration","scope":2887,"src":"9607:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2772,"name":"uint256","nodeType":"ElementaryTypeName","src":"9607:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9545:79:17"},"returnParameters":{"id":2779,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2776,"mutability":"mutable","name":"success","nameLocation":"9652:7:17","nodeType":"VariableDeclaration","scope":2887,"src":"9647:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2775,"name":"bool","nodeType":"ElementaryTypeName","src":"9647:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2778,"mutability":"mutable","name":"value","nameLocation":"9668:5:17","nodeType":"VariableDeclaration","scope":2887,"src":"9661:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":2777,"name":"int256","nodeType":"ElementaryTypeName","src":"9661:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9646:28:17"},"scope":3512,"src":"9509:978:17","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":2905,"nodeType":"Block","src":"10832:67:17","statements":[{"expression":{"arguments":[{"id":2896,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2890,"src":"10862:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":2897,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10869:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":2900,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2890,"src":"10878:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2899,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10872:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2898,"name":"bytes","nodeType":"ElementaryTypeName","src":"10872:5:17","typeDescriptions":{}}},"id":2901,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10872:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10885:6:17","memberName":"length","nodeType":"MemberAccess","src":"10872:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2895,"name":"parseHexUint","nodeType":"Identifier","overloadedDeclarations":[2906,2937],"referencedDeclaration":2937,"src":"10849:12:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (uint256)"}},"id":2903,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10849:43:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2894,"id":2904,"nodeType":"Return","src":"10842:50:17"}]},"documentation":{"id":2888,"nodeType":"StructuredDocumentation","src":"10493:259:17","text":" @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as a `uint256`.\n Requirements:\n - The string must be formatted as `(0x)?[0-9a-fA-F]*`\n - The result must fit in an `uint256` type."},"id":2906,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"10766:12:17","nodeType":"FunctionDefinition","parameters":{"id":2891,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2890,"mutability":"mutable","name":"input","nameLocation":"10793:5:17","nodeType":"VariableDeclaration","scope":2906,"src":"10779:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2889,"name":"string","nodeType":"ElementaryTypeName","src":"10779:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"10778:21:17"},"returnParameters":{"id":2894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2893,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2906,"src":"10823:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2892,"name":"uint256","nodeType":"ElementaryTypeName","src":"10823:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10822:9:17"},"scope":3512,"src":"10757:142:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2936,"nodeType":"Block","src":"11320:156:17","statements":[{"assignments":[2919,2921],"declarations":[{"constant":false,"id":2919,"mutability":"mutable","name":"success","nameLocation":"11336:7:17","nodeType":"VariableDeclaration","scope":2936,"src":"11331:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2918,"name":"bool","nodeType":"ElementaryTypeName","src":"11331:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2921,"mutability":"mutable","name":"value","nameLocation":"11353:5:17","nodeType":"VariableDeclaration","scope":2936,"src":"11345:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2920,"name":"uint256","nodeType":"ElementaryTypeName","src":"11345:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2927,"initialValue":{"arguments":[{"id":2923,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2909,"src":"11378:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":2924,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2911,"src":"11385:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2925,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2913,"src":"11392:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2922,"name":"tryParseHexUint","nodeType":"Identifier","overloadedDeclarations":[2958,2995],"referencedDeclaration":2995,"src":"11362:15:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":2926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11362:34:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"11330:66:17"},{"condition":{"id":2929,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"11410:8:17","subExpression":{"id":2928,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2919,"src":"11411:7:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2933,"nodeType":"IfStatement","src":"11406:41:17","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":2930,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2173,"src":"11427:18:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":2931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11427:20:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2932,"nodeType":"RevertStatement","src":"11420:27:17"}},{"expression":{"id":2934,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2921,"src":"11464:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2917,"id":2935,"nodeType":"Return","src":"11457:12:17"}]},"documentation":{"id":2907,"nodeType":"StructuredDocumentation","src":"10905:307:17","text":" @dev Variant of {parseHexUint-string} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `(0x)?[0-9a-fA-F]*`\n - The result must fit in an `uint256` type."},"id":2937,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexUint","nameLocation":"11226:12:17","nodeType":"FunctionDefinition","parameters":{"id":2914,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2909,"mutability":"mutable","name":"input","nameLocation":"11253:5:17","nodeType":"VariableDeclaration","scope":2937,"src":"11239:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2908,"name":"string","nodeType":"ElementaryTypeName","src":"11239:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2911,"mutability":"mutable","name":"begin","nameLocation":"11268:5:17","nodeType":"VariableDeclaration","scope":2937,"src":"11260:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2910,"name":"uint256","nodeType":"ElementaryTypeName","src":"11260:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2913,"mutability":"mutable","name":"end","nameLocation":"11283:3:17","nodeType":"VariableDeclaration","scope":2937,"src":"11275:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2912,"name":"uint256","nodeType":"ElementaryTypeName","src":"11275:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11238:49:17"},"returnParameters":{"id":2917,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2916,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2937,"src":"11311:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2915,"name":"uint256","nodeType":"ElementaryTypeName","src":"11311:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11310:9:17"},"scope":3512,"src":"11217:259:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2957,"nodeType":"Block","src":"11803:86:17","statements":[{"expression":{"arguments":[{"id":2948,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2940,"src":"11852:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":2949,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11859:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":2952,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2940,"src":"11868:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2951,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11862:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2950,"name":"bytes","nodeType":"ElementaryTypeName","src":"11862:5:17","typeDescriptions":{}}},"id":2953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11862:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2954,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11875:6:17","memberName":"length","nodeType":"MemberAccess","src":"11862:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2947,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3098,"src":"11820:31:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":2955,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11820:62:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":2946,"id":2956,"nodeType":"Return","src":"11813:69:17"}]},"documentation":{"id":2938,"nodeType":"StructuredDocumentation","src":"11482:218:17","text":" @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":2958,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"11714:15:17","nodeType":"FunctionDefinition","parameters":{"id":2941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2940,"mutability":"mutable","name":"input","nameLocation":"11744:5:17","nodeType":"VariableDeclaration","scope":2958,"src":"11730:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2939,"name":"string","nodeType":"ElementaryTypeName","src":"11730:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"11729:21:17"},"returnParameters":{"id":2946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2943,"mutability":"mutable","name":"success","nameLocation":"11779:7:17","nodeType":"VariableDeclaration","scope":2958,"src":"11774:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2942,"name":"bool","nodeType":"ElementaryTypeName","src":"11774:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2945,"mutability":"mutable","name":"value","nameLocation":"11796:5:17","nodeType":"VariableDeclaration","scope":2958,"src":"11788:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2944,"name":"uint256","nodeType":"ElementaryTypeName","src":"11788:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11773:29:17"},"scope":3512,"src":"11705:184:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2994,"nodeType":"Block","src":"12297:147:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2982,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2972,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"12311:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":2975,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2961,"src":"12323:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2974,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12317:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2973,"name":"bytes","nodeType":"ElementaryTypeName","src":"12317:5:17","typeDescriptions":{}}},"id":2976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12317:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12330:6:17","memberName":"length","nodeType":"MemberAccess","src":"12317:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12311:25:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2981,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2979,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2963,"src":"12340:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":2980,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"12348:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12340:11:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12311:40:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2987,"nodeType":"IfStatement","src":"12307:63:17","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":2983,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"12361:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":2984,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12368:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":2985,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"12360:10:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":2971,"id":2986,"nodeType":"Return","src":"12353:17:17"}},{"expression":{"arguments":[{"id":2989,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2961,"src":"12419:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":2990,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2963,"src":"12426:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2991,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"12433:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2988,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3098,"src":"12387:31:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":2992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12387:50:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":2971,"id":2993,"nodeType":"Return","src":"12380:57:17"}]},"documentation":{"id":2959,"nodeType":"StructuredDocumentation","src":"11895:241:17","text":" @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an\n invalid character.\n NOTE: This function will revert if the result does not fit in a `uint256`."},"id":2995,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseHexUint","nameLocation":"12150:15:17","nodeType":"FunctionDefinition","parameters":{"id":2966,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2961,"mutability":"mutable","name":"input","nameLocation":"12189:5:17","nodeType":"VariableDeclaration","scope":2995,"src":"12175:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2960,"name":"string","nodeType":"ElementaryTypeName","src":"12175:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2963,"mutability":"mutable","name":"begin","nameLocation":"12212:5:17","nodeType":"VariableDeclaration","scope":2995,"src":"12204:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2962,"name":"uint256","nodeType":"ElementaryTypeName","src":"12204:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2965,"mutability":"mutable","name":"end","nameLocation":"12235:3:17","nodeType":"VariableDeclaration","scope":2995,"src":"12227:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2964,"name":"uint256","nodeType":"ElementaryTypeName","src":"12227:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12165:79:17"},"returnParameters":{"id":2971,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2968,"mutability":"mutable","name":"success","nameLocation":"12273:7:17","nodeType":"VariableDeclaration","scope":2995,"src":"12268:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2967,"name":"bool","nodeType":"ElementaryTypeName","src":"12268:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2970,"mutability":"mutable","name":"value","nameLocation":"12290:5:17","nodeType":"VariableDeclaration","scope":2995,"src":"12282:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2969,"name":"uint256","nodeType":"ElementaryTypeName","src":"12282:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12267:29:17"},"scope":3512,"src":"12141:303:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3097,"nodeType":"Block","src":"12853:881:17","statements":[{"assignments":[3010],"declarations":[{"constant":false,"id":3010,"mutability":"mutable","name":"buffer","nameLocation":"12876:6:17","nodeType":"VariableDeclaration","scope":3097,"src":"12863:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3009,"name":"bytes","nodeType":"ElementaryTypeName","src":"12863:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3015,"initialValue":{"arguments":[{"id":3013,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2998,"src":"12891:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3012,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12885:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3011,"name":"bytes","nodeType":"ElementaryTypeName","src":"12885:5:17","typeDescriptions":{}}},"id":3014,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12885:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"12863:34:17"},{"assignments":[3017],"declarations":[{"constant":false,"id":3017,"mutability":"mutable","name":"hasPrefix","nameLocation":"12950:9:17","nodeType":"VariableDeclaration","scope":3097,"src":"12945:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3016,"name":"bool","nodeType":"ElementaryTypeName","src":"12945:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":3037,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3022,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3018,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3002,"src":"12963:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3019,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3000,"src":"12969:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":3020,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12977:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12969:9:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12963:15:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":3023,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12962:17:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":3035,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":3027,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3010,"src":"13013:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":3028,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3000,"src":"13021:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3026,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3511,"src":"12990:22:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":3029,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12990:37:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3025,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12983:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":3024,"name":"bytes2","nodeType":"ElementaryTypeName","src":"12983:6:17","typeDescriptions":{}}},"id":3030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12983:45:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":3033,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13039:4:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":3032,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13032:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":3031,"name":"bytes2","nodeType":"ElementaryTypeName","src":"13032:6:17","typeDescriptions":{}}},"id":3034,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13032:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"12983:61:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12962:82:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"12945:99:17"},{"assignments":[3039],"declarations":[{"constant":false,"id":3039,"mutability":"mutable","name":"offset","nameLocation":"13133:6:17","nodeType":"VariableDeclaration","scope":3097,"src":"13125:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3038,"name":"uint256","nodeType":"ElementaryTypeName","src":"13125:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3045,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":3040,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3017,"src":"13142:9:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13152:6:17","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"13142:16:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":3042,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13142:18:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":3043,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13163:1:17","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"13142:22:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13125:39:17"},{"assignments":[3047],"declarations":[{"constant":false,"id":3047,"mutability":"mutable","name":"result","nameLocation":"13183:6:17","nodeType":"VariableDeclaration","scope":3097,"src":"13175:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3046,"name":"uint256","nodeType":"ElementaryTypeName","src":"13175:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3049,"initialValue":{"hexValue":"30","id":3048,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13192:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"13175:18:17"},{"body":{"id":3091,"nodeType":"Block","src":"13250:447:17","statements":[{"assignments":[3063],"declarations":[{"constant":false,"id":3063,"mutability":"mutable","name":"chr","nameLocation":"13270:3:17","nodeType":"VariableDeclaration","scope":3091,"src":"13264:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3062,"name":"uint8","nodeType":"ElementaryTypeName","src":"13264:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":3073,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":3068,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3010,"src":"13319:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":3069,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3051,"src":"13327:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3067,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3511,"src":"13296:22:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":3070,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13296:33:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3066,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13289:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":3065,"name":"bytes1","nodeType":"ElementaryTypeName","src":"13289:6:17","typeDescriptions":{}}},"id":3071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13289:41:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":3064,"name":"_tryParseChr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3333,"src":"13276:12:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes1_$returns$_t_uint8_$","typeString":"function (bytes1) pure returns (uint8)"}},"id":3072,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13276:55:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"13264:67:17"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":3076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3074,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3063,"src":"13349:3:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3135","id":3075,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13355:2:17","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"15"},"src":"13349:8:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3081,"nodeType":"IfStatement","src":"13345:31:17","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":3077,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13367:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":3078,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13374:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":3079,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"13366:10:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":3008,"id":3080,"nodeType":"Return","src":"13359:17:17"}},{"expression":{"id":3084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3082,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3047,"src":"13390:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"hexValue":"3136","id":3083,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13400:2:17","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"13390:12:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3085,"nodeType":"ExpressionStatement","src":"13390:12:17"},{"id":3090,"nodeType":"UncheckedBlock","src":"13416:271:17","statements":[{"expression":{"id":3088,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3086,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3047,"src":"13659:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3087,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3063,"src":"13669:3:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"13659:13:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3089,"nodeType":"ExpressionStatement","src":"13659:13:17"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3056,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3051,"src":"13236:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3057,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3002,"src":"13240:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13236:7:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3092,"initializationExpression":{"assignments":[3051],"declarations":[{"constant":false,"id":3051,"mutability":"mutable","name":"i","nameLocation":"13216:1:17","nodeType":"VariableDeclaration","scope":3092,"src":"13208:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3050,"name":"uint256","nodeType":"ElementaryTypeName","src":"13208:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3055,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3052,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3000,"src":"13220:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":3053,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3039,"src":"13228:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13220:14:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13208:26:17"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":3060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"13245:3:17","subExpression":{"id":3059,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3051,"src":"13247:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3061,"nodeType":"ExpressionStatement","src":"13245:3:17"},"nodeType":"ForStatement","src":"13203:494:17"},{"expression":{"components":[{"hexValue":"74727565","id":3093,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13714:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":3094,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3047,"src":"13720:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3095,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13713:14:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":3008,"id":3096,"nodeType":"Return","src":"13706:21:17"}]},"documentation":{"id":2996,"nodeType":"StructuredDocumentation","src":"12450:227:17","text":" @dev Implementation of {tryParseHexUint-string-uint256-uint256} that does not check bounds. Caller should make sure that\n `begin <= end <= input.length`. Other inputs would result in undefined behavior."},"id":3098,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseHexUintUncheckedBounds","nameLocation":"12691:31:17","nodeType":"FunctionDefinition","parameters":{"id":3003,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2998,"mutability":"mutable","name":"input","nameLocation":"12746:5:17","nodeType":"VariableDeclaration","scope":3098,"src":"12732:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2997,"name":"string","nodeType":"ElementaryTypeName","src":"12732:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3000,"mutability":"mutable","name":"begin","nameLocation":"12769:5:17","nodeType":"VariableDeclaration","scope":3098,"src":"12761:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2999,"name":"uint256","nodeType":"ElementaryTypeName","src":"12761:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3002,"mutability":"mutable","name":"end","nameLocation":"12792:3:17","nodeType":"VariableDeclaration","scope":3098,"src":"12784:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3001,"name":"uint256","nodeType":"ElementaryTypeName","src":"12784:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12722:79:17"},"returnParameters":{"id":3008,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3005,"mutability":"mutable","name":"success","nameLocation":"12829:7:17","nodeType":"VariableDeclaration","scope":3098,"src":"12824:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3004,"name":"bool","nodeType":"ElementaryTypeName","src":"12824:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3007,"mutability":"mutable","name":"value","nameLocation":"12846:5:17","nodeType":"VariableDeclaration","scope":3098,"src":"12838:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3006,"name":"uint256","nodeType":"ElementaryTypeName","src":"12838:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12823:29:17"},"scope":3512,"src":"12682:1052:17","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":3116,"nodeType":"Block","src":"14032:67:17","statements":[{"expression":{"arguments":[{"id":3107,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3101,"src":"14062:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":3108,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14069:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":3111,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3101,"src":"14078:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3110,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14072:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3109,"name":"bytes","nodeType":"ElementaryTypeName","src":"14072:5:17","typeDescriptions":{}}},"id":3112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14072:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14085:6:17","memberName":"length","nodeType":"MemberAccess","src":"14072:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3106,"name":"parseAddress","nodeType":"Identifier","overloadedDeclarations":[3117,3148],"referencedDeclaration":3148,"src":"14049:12:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (address)"}},"id":3114,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14049:43:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":3105,"id":3115,"nodeType":"Return","src":"14042:50:17"}]},"documentation":{"id":3099,"nodeType":"StructuredDocumentation","src":"13740:212:17","text":" @dev Parse a hexadecimal string (with or without \"0x\" prefix), and returns the value as an `address`.\n Requirements:\n - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`"},"id":3117,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"13966:12:17","nodeType":"FunctionDefinition","parameters":{"id":3102,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3101,"mutability":"mutable","name":"input","nameLocation":"13993:5:17","nodeType":"VariableDeclaration","scope":3117,"src":"13979:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3100,"name":"string","nodeType":"ElementaryTypeName","src":"13979:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"13978:21:17"},"returnParameters":{"id":3105,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3104,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3117,"src":"14023:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3103,"name":"address","nodeType":"ElementaryTypeName","src":"14023:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14022:9:17"},"scope":3512,"src":"13957:142:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3147,"nodeType":"Block","src":"14472:165:17","statements":[{"assignments":[3130,3132],"declarations":[{"constant":false,"id":3130,"mutability":"mutable","name":"success","nameLocation":"14488:7:17","nodeType":"VariableDeclaration","scope":3147,"src":"14483:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3129,"name":"bool","nodeType":"ElementaryTypeName","src":"14483:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3132,"mutability":"mutable","name":"value","nameLocation":"14505:5:17","nodeType":"VariableDeclaration","scope":3147,"src":"14497:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3131,"name":"address","nodeType":"ElementaryTypeName","src":"14497:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":3138,"initialValue":{"arguments":[{"id":3134,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3120,"src":"14530:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":3135,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3122,"src":"14537:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3136,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"14544:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3133,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[3169,3273],"referencedDeclaration":3273,"src":"14514:15:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,address)"}},"id":3137,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14514:34:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"nodeType":"VariableDeclarationStatement","src":"14482:66:17"},{"condition":{"id":3140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14562:8:17","subExpression":{"id":3139,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3130,"src":"14563:7:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3144,"nodeType":"IfStatement","src":"14558:50:17","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":3141,"name":"StringsInvalidAddressFormat","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2176,"src":"14579:27:17","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":3142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14579:29:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":3143,"nodeType":"RevertStatement","src":"14572:36:17"}},{"expression":{"id":3145,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3132,"src":"14625:5:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":3128,"id":3146,"nodeType":"Return","src":"14618:12:17"}]},"documentation":{"id":3118,"nodeType":"StructuredDocumentation","src":"14105:259:17","text":" @dev Variant of {parseAddress-string} that parses a substring of `input` located between position `begin` (included) and\n `end` (excluded).\n Requirements:\n - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`"},"id":3148,"implemented":true,"kind":"function","modifiers":[],"name":"parseAddress","nameLocation":"14378:12:17","nodeType":"FunctionDefinition","parameters":{"id":3125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3120,"mutability":"mutable","name":"input","nameLocation":"14405:5:17","nodeType":"VariableDeclaration","scope":3148,"src":"14391:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3119,"name":"string","nodeType":"ElementaryTypeName","src":"14391:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3122,"mutability":"mutable","name":"begin","nameLocation":"14420:5:17","nodeType":"VariableDeclaration","scope":3148,"src":"14412:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3121,"name":"uint256","nodeType":"ElementaryTypeName","src":"14412:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3124,"mutability":"mutable","name":"end","nameLocation":"14435:3:17","nodeType":"VariableDeclaration","scope":3148,"src":"14427:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3123,"name":"uint256","nodeType":"ElementaryTypeName","src":"14427:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14390:49:17"},"returnParameters":{"id":3128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3127,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3148,"src":"14463:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3126,"name":"address","nodeType":"ElementaryTypeName","src":"14463:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14462:9:17"},"scope":3512,"src":"14369:268:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3168,"nodeType":"Block","src":"14944:70:17","statements":[{"expression":{"arguments":[{"id":3159,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3151,"src":"14977:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"30","id":3160,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14984:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"arguments":[{"id":3163,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3151,"src":"14993:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3162,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14987:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3161,"name":"bytes","nodeType":"ElementaryTypeName","src":"14987:5:17","typeDescriptions":{}}},"id":3164,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14987:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15000:6:17","memberName":"length","nodeType":"MemberAccess","src":"14987:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3158,"name":"tryParseAddress","nodeType":"Identifier","overloadedDeclarations":[3169,3273],"referencedDeclaration":3273,"src":"14961:15:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_address_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,address)"}},"id":3166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14961:46:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":3157,"id":3167,"nodeType":"Return","src":"14954:53:17"}]},"documentation":{"id":3149,"nodeType":"StructuredDocumentation","src":"14643:198:17","text":" @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly\n formatted address. See {parseAddress-string} requirements."},"id":3169,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"14855:15:17","nodeType":"FunctionDefinition","parameters":{"id":3152,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3151,"mutability":"mutable","name":"input","nameLocation":"14885:5:17","nodeType":"VariableDeclaration","scope":3169,"src":"14871:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3150,"name":"string","nodeType":"ElementaryTypeName","src":"14871:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"14870:21:17"},"returnParameters":{"id":3157,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3154,"mutability":"mutable","name":"success","nameLocation":"14920:7:17","nodeType":"VariableDeclaration","scope":3169,"src":"14915:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3153,"name":"bool","nodeType":"ElementaryTypeName","src":"14915:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3156,"mutability":"mutable","name":"value","nameLocation":"14937:5:17","nodeType":"VariableDeclaration","scope":3169,"src":"14929:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3155,"name":"address","nodeType":"ElementaryTypeName","src":"14929:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14914:29:17"},"scope":3512,"src":"14846:168:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3272,"nodeType":"Block","src":"15407:733:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3189,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3183,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3176,"src":"15421:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":3186,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3172,"src":"15433:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3185,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15427:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3184,"name":"bytes","nodeType":"ElementaryTypeName","src":"15427:5:17","typeDescriptions":{}}},"id":3187,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15427:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15440:6:17","memberName":"length","nodeType":"MemberAccess","src":"15427:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15421:25:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3192,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3190,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"15450:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":3191,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3176,"src":"15458:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15450:11:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15421:40:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3201,"nodeType":"IfStatement","src":"15417:72:17","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":3194,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15471:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":3197,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15486:1:17","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":3196,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15478:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3195,"name":"address","nodeType":"ElementaryTypeName","src":"15478:7:17","typeDescriptions":{}}},"id":3198,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15478:10:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":3199,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"15470:19:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":3182,"id":3200,"nodeType":"Return","src":"15463:26:17"}},{"assignments":[3203],"declarations":[{"constant":false,"id":3203,"mutability":"mutable","name":"hasPrefix","nameLocation":"15505:9:17","nodeType":"VariableDeclaration","scope":3272,"src":"15500:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3202,"name":"bool","nodeType":"ElementaryTypeName","src":"15500:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":3226,"initialValue":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3204,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3176,"src":"15518:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3205,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"15524:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":3206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15532:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"15524:9:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15518:15:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":3209,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15517:17:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes2","typeString":"bytes2"},"id":3224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"arguments":[{"id":3215,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3172,"src":"15574:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3214,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15568:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3213,"name":"bytes","nodeType":"ElementaryTypeName","src":"15568:5:17","typeDescriptions":{}}},"id":3216,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15568:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":3217,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"15582:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3212,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3511,"src":"15545:22:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":3218,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15545:43:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3211,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15538:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":3210,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15538:6:17","typeDescriptions":{}}},"id":3219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15538:51:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"3078","id":3222,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15600:4:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""},"value":"0x"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_39bef1777deb3dfb14f64b9f81ced092c501fee72f90e93d03bb95ee89df9837","typeString":"literal_string \"0x\""}],"id":3221,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15593:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":3220,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15593:6:17","typeDescriptions":{}}},"id":3223,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15593:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"15538:67:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15517:88:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"15500:105:17"},{"assignments":[3228],"declarations":[{"constant":false,"id":3228,"mutability":"mutable","name":"expectedLength","nameLocation":"15694:14:17","nodeType":"VariableDeclaration","scope":3272,"src":"15686:22:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3227,"name":"uint256","nodeType":"ElementaryTypeName","src":"15686:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3236,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3430","id":3229,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15711:2:17","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":3230,"name":"hasPrefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3203,"src":"15716:9:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15726:6:17","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"15716:16:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$attached_to$_t_bool_$","typeString":"function (bool) pure returns (uint256)"}},"id":3232,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15716:18:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":3233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15737:1:17","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"15716:22:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15711:27:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15686:52:17"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3237,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3176,"src":"15803:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":3238,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"15809:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15803:11:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3240,"name":"expectedLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3228,"src":"15818:14:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15803:29:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3270,"nodeType":"Block","src":"16083:51:17","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":3263,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16105:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":3266,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16120:1:17","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":3265,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16112:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3264,"name":"address","nodeType":"ElementaryTypeName","src":"16112:7:17","typeDescriptions":{}}},"id":3267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16112:10:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":3268,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"16104:19:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":3182,"id":3269,"nodeType":"Return","src":"16097:26:17"}]},"id":3271,"nodeType":"IfStatement","src":"15799:335:17","trueBody":{"id":3262,"nodeType":"Block","src":"15834:243:17","statements":[{"assignments":[3243,3245],"declarations":[{"constant":false,"id":3243,"mutability":"mutable","name":"s","nameLocation":"15955:1:17","nodeType":"VariableDeclaration","scope":3262,"src":"15950:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3242,"name":"bool","nodeType":"ElementaryTypeName","src":"15950:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3245,"mutability":"mutable","name":"v","nameLocation":"15966:1:17","nodeType":"VariableDeclaration","scope":3262,"src":"15958:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3244,"name":"uint256","nodeType":"ElementaryTypeName","src":"15958:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3251,"initialValue":{"arguments":[{"id":3247,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3172,"src":"16003:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":3248,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"16010:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3249,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3176,"src":"16017:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3246,"name":"_tryParseHexUintUncheckedBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3098,"src":"15971:31:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (string memory,uint256,uint256) pure returns (bool,uint256)"}},"id":3250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15971:50:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"15949:72:17"},{"expression":{"components":[{"id":3252,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3243,"src":"16043:1:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[{"id":3257,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3245,"src":"16062:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3256,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16054:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":3255,"name":"uint160","nodeType":"ElementaryTypeName","src":"16054:7:17","typeDescriptions":{}}},"id":3258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16054:10:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":3254,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16046:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3253,"name":"address","nodeType":"ElementaryTypeName","src":"16046:7:17","typeDescriptions":{}}},"id":3259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16046:19:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":3260,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"16042:24:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":3182,"id":3261,"nodeType":"Return","src":"16035:31:17"}]}}]},"documentation":{"id":3170,"nodeType":"StructuredDocumentation","src":"15020:226:17","text":" @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly\n formatted address. See {parseAddress-string-uint256-uint256} requirements."},"id":3273,"implemented":true,"kind":"function","modifiers":[],"name":"tryParseAddress","nameLocation":"15260:15:17","nodeType":"FunctionDefinition","parameters":{"id":3177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3172,"mutability":"mutable","name":"input","nameLocation":"15299:5:17","nodeType":"VariableDeclaration","scope":3273,"src":"15285:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3171,"name":"string","nodeType":"ElementaryTypeName","src":"15285:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3174,"mutability":"mutable","name":"begin","nameLocation":"15322:5:17","nodeType":"VariableDeclaration","scope":3273,"src":"15314:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3173,"name":"uint256","nodeType":"ElementaryTypeName","src":"15314:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3176,"mutability":"mutable","name":"end","nameLocation":"15345:3:17","nodeType":"VariableDeclaration","scope":3273,"src":"15337:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3175,"name":"uint256","nodeType":"ElementaryTypeName","src":"15337:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15275:79:17"},"returnParameters":{"id":3182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3179,"mutability":"mutable","name":"success","nameLocation":"15383:7:17","nodeType":"VariableDeclaration","scope":3273,"src":"15378:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3178,"name":"bool","nodeType":"ElementaryTypeName","src":"15378:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3181,"mutability":"mutable","name":"value","nameLocation":"15400:5:17","nodeType":"VariableDeclaration","scope":3273,"src":"15392:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3180,"name":"address","nodeType":"ElementaryTypeName","src":"15392:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15377:29:17"},"scope":3512,"src":"15251:889:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3332,"nodeType":"Block","src":"16209:461:17","statements":[{"assignments":[3281],"declarations":[{"constant":false,"id":3281,"mutability":"mutable","name":"value","nameLocation":"16225:5:17","nodeType":"VariableDeclaration","scope":3332,"src":"16219:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3280,"name":"uint8","nodeType":"ElementaryTypeName","src":"16219:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":3286,"initialValue":{"arguments":[{"id":3284,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3275,"src":"16239:3:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":3283,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16233:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3282,"name":"uint8","nodeType":"ElementaryTypeName","src":"16233:5:17","typeDescriptions":{}}},"id":3285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16233:10:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"16219:24:17"},{"id":3329,"nodeType":"UncheckedBlock","src":"16403:238:17","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":3289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3287,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3281,"src":"16431:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3437","id":3288,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16439:2:17","typeDescriptions":{"typeIdentifier":"t_rational_47_by_1","typeString":"int_const 47"},"value":"47"},"src":"16431:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":3292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3290,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3281,"src":"16445:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3538","id":3291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16453:2:17","typeDescriptions":{"typeIdentifier":"t_rational_58_by_1","typeString":"int_const 58"},"value":"58"},"src":"16445:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16431:24:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":3300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3298,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3281,"src":"16491:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3936","id":3299,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16499:2:17","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"16491:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":3303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3301,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3281,"src":"16505:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313033","id":3302,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16513:3:17","typeDescriptions":{"typeIdentifier":"t_rational_103_by_1","typeString":"int_const 103"},"value":"103"},"src":"16505:11:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16491:25:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":3311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3309,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3281,"src":"16552:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3634","id":3310,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16560:2:17","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"16552:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":3314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3312,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3281,"src":"16566:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3731","id":3313,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16574:2:17","typeDescriptions":{"typeIdentifier":"t_rational_71_by_1","typeString":"int_const 71"},"value":"71"},"src":"16566:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16552:24:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"expression":{"arguments":[{"id":3322,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16620:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3321,"name":"uint8","nodeType":"ElementaryTypeName","src":"16620:5:17","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":3320,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16615:4:17","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3323,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16615:11:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":3324,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16627:3:17","memberName":"max","nodeType":"MemberAccess","src":"16615:15:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":3279,"id":3325,"nodeType":"Return","src":"16608:22:17"},"id":3326,"nodeType":"IfStatement","src":"16548:82:17","trueBody":{"expression":{"id":3318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3316,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3281,"src":"16578:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3535","id":3317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16587:2:17","typeDescriptions":{"typeIdentifier":"t_rational_55_by_1","typeString":"int_const 55"},"value":"55"},"src":"16578:11:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":3319,"nodeType":"ExpressionStatement","src":"16578:11:17"}},"id":3327,"nodeType":"IfStatement","src":"16487:143:17","trueBody":{"expression":{"id":3307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3305,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3281,"src":"16518:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3837","id":3306,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16527:2:17","typeDescriptions":{"typeIdentifier":"t_rational_87_by_1","typeString":"int_const 87"},"value":"87"},"src":"16518:11:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":3308,"nodeType":"ExpressionStatement","src":"16518:11:17"}},"id":3328,"nodeType":"IfStatement","src":"16427:203:17","trueBody":{"expression":{"id":3296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3294,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3281,"src":"16457:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3438","id":3295,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16466:2:17","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"16457:11:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":3297,"nodeType":"ExpressionStatement","src":"16457:11:17"}}]},{"expression":{"id":3330,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3281,"src":"16658:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":3279,"id":3331,"nodeType":"Return","src":"16651:12:17"}]},"id":3333,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseChr","nameLocation":"16155:12:17","nodeType":"FunctionDefinition","parameters":{"id":3276,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3275,"mutability":"mutable","name":"chr","nameLocation":"16175:3:17","nodeType":"VariableDeclaration","scope":3333,"src":"16168:10:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":3274,"name":"bytes1","nodeType":"ElementaryTypeName","src":"16168:6:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"16167:12:17"},"returnParameters":{"id":3279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3278,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3333,"src":"16202:5:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3277,"name":"uint8","nodeType":"ElementaryTypeName","src":"16202:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"16201:7:17"},"scope":3512,"src":"16146:524:17","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":3498,"nodeType":"Block","src":"17336:1331:17","statements":[{"assignments":[3342],"declarations":[{"constant":false,"id":3342,"mutability":"mutable","name":"buffer","nameLocation":"17359:6:17","nodeType":"VariableDeclaration","scope":3498,"src":"17346:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3341,"name":"bytes","nodeType":"ElementaryTypeName","src":"17346:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3347,"initialValue":{"arguments":[{"id":3345,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3336,"src":"17374:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3344,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17368:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3343,"name":"bytes","nodeType":"ElementaryTypeName","src":"17368:5:17","typeDescriptions":{}}},"id":3346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17368:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"17346:34:17"},{"assignments":[3349],"declarations":[{"constant":false,"id":3349,"mutability":"mutable","name":"output","nameLocation":"17403:6:17","nodeType":"VariableDeclaration","scope":3498,"src":"17390:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3348,"name":"bytes","nodeType":"ElementaryTypeName","src":"17390:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":3357,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":3352,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17422:1:17","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":3353,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3342,"src":"17426:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17433:6:17","memberName":"length","nodeType":"MemberAccess","src":"17426:13:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17422:17:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3351,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"17412:9:17","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":3350,"name":"bytes","nodeType":"ElementaryTypeName","src":"17416:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":3356,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17412:28:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"17390:50:17"},{"assignments":[3359],"declarations":[{"constant":false,"id":3359,"mutability":"mutable","name":"outputLength","nameLocation":"17481:12:17","nodeType":"VariableDeclaration","scope":3498,"src":"17473:20:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3358,"name":"uint256","nodeType":"ElementaryTypeName","src":"17473:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3361,"initialValue":{"hexValue":"30","id":3360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17496:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17473:24:17"},{"body":{"id":3490,"nodeType":"Block","src":"17548:854:17","statements":[{"assignments":[3373],"declarations":[{"constant":false,"id":3373,"mutability":"mutable","name":"char","nameLocation":"17569:4:17","nodeType":"VariableDeclaration","scope":3490,"src":"17562:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":3372,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17562:6:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":3381,"initialValue":{"arguments":[{"arguments":[{"id":3377,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3342,"src":"17606:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":3378,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3363,"src":"17614:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3376,"name":"_unsafeReadBytesOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3511,"src":"17583:22:17","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint256) pure returns (bytes32)"}},"id":3379,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17583:33:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17576:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":3374,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17576:6:17","typeDescriptions":{}}},"id":3380,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17576:41:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"17562:55:17"},{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3390,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3382,"name":"SPECIAL_CHARS_LOOKUP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2163,"src":"17637:20:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":3383,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17661:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"id":3386,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3373,"src":"17672:4:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":3385,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17666:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3384,"name":"uint8","nodeType":"ElementaryTypeName","src":"17666:5:17","typeDescriptions":{}}},"id":3387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17666:11:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"17661:16:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3389,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17660:18:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17637:41:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3391,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17636:43:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":3392,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17683:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17636:48:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":3394,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17635:50:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3488,"nodeType":"Block","src":"18330:62:17","statements":[{"expression":{"id":3486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3481,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3349,"src":"18348:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3484,"indexExpression":{"id":3483,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18355:14:17","subExpression":{"id":3482,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"18355:12:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18348:22:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3485,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3373,"src":"18373:4:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"18348:29:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3487,"nodeType":"ExpressionStatement","src":"18348:29:17"}]},"id":3489,"nodeType":"IfStatement","src":"17631:761:17","trueBody":{"id":3480,"nodeType":"Block","src":"17687:637:17","statements":[{"expression":{"id":3400,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3395,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3349,"src":"17705:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3398,"indexExpression":{"id":3397,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17712:14:17","subExpression":{"id":3396,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"17712:12:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17705:22:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"5c","id":3399,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17730:4:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"},"src":"17705:29:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3401,"nodeType":"ExpressionStatement","src":"17705:29:17"},{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":3404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3402,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3373,"src":"17756:4:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783038","id":3403,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17764:4:17","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"0x08"},"src":"17756:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":3414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3412,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3373,"src":"17825:4:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783039","id":3413,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17833:4:17","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"0x09"},"src":"17825:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":3424,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3422,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3373,"src":"17894:4:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783061","id":3423,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17902:4:17","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"0x0a"},"src":"17894:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":3434,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3432,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3373,"src":"17963:4:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783063","id":3433,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17971:4:17","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"0x0c"},"src":"17963:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":3444,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3442,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3373,"src":"18032:4:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783064","id":3443,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18040:4:17","typeDescriptions":{"typeIdentifier":"t_rational_13_by_1","typeString":"int_const 13"},"value":"0x0d"},"src":"18032:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":3454,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3452,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3373,"src":"18101:4:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783563","id":3453,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18109:4:17","typeDescriptions":{"typeIdentifier":"t_rational_92_by_1","typeString":"int_const 92"},"value":"0x5c"},"src":"18101:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":3464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3462,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3373,"src":"18171:4:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30783232","id":3463,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18179:4:17","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"src":"18171:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3473,"nodeType":"IfStatement","src":"18167:143:17","trueBody":{"id":3472,"nodeType":"Block","src":"18185:125:17","statements":[{"expression":{"id":3470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3465,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3349,"src":"18263:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3468,"indexExpression":{"id":3467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18270:14:17","subExpression":{"id":3466,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"18270:12:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18263:22:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"22","id":3469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18288:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_6e9f33448a4153023cdaf3eb759f1afdc24aba433a3e18b683f8c04a6eaa69f0","typeString":"literal_string \"\"\""},"value":"\""},"src":"18263:28:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3471,"nodeType":"ExpressionStatement","src":"18263:28:17"}]}},"id":3474,"nodeType":"IfStatement","src":"18097:213:17","trueBody":{"expression":{"id":3460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3455,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3349,"src":"18115:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3458,"indexExpression":{"id":3457,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18122:14:17","subExpression":{"id":3456,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"18122:12:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18115:22:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"5c","id":3459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18140:4:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"},"src":"18115:29:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3461,"nodeType":"ExpressionStatement","src":"18115:29:17"}},"id":3475,"nodeType":"IfStatement","src":"18028:282:17","trueBody":{"expression":{"id":3450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3445,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3349,"src":"18046:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3448,"indexExpression":{"id":3447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18053:14:17","subExpression":{"id":3446,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"18053:12:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18046:22:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"72","id":3449,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18071:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_414f72a4d550cad29f17d9d99a4af64b3776ec5538cd440cef0f03fef2e9e010","typeString":"literal_string \"r\""},"value":"r"},"src":"18046:28:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3451,"nodeType":"ExpressionStatement","src":"18046:28:17"}},"id":3476,"nodeType":"IfStatement","src":"17959:351:17","trueBody":{"expression":{"id":3440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3435,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3349,"src":"17977:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3438,"indexExpression":{"id":3437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17984:14:17","subExpression":{"id":3436,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"17984:12:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17977:22:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66","id":3439,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18002:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_d1e8aeb79500496ef3dc2e57ba746a8315d048b7a664a2bf948db4fa91960483","typeString":"literal_string \"f\""},"value":"f"},"src":"17977:28:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3441,"nodeType":"ExpressionStatement","src":"17977:28:17"}},"id":3477,"nodeType":"IfStatement","src":"17890:420:17","trueBody":{"expression":{"id":3430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3425,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3349,"src":"17908:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3428,"indexExpression":{"id":3427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17915:14:17","subExpression":{"id":3426,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"17915:12:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17908:22:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"6e","id":3429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17933:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_4b4ecedb4964a40fe416b16c7bd8b46092040ec42ef0aa69e59f09872f105cf3","typeString":"literal_string \"n\""},"value":"n"},"src":"17908:28:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3431,"nodeType":"ExpressionStatement","src":"17908:28:17"}},"id":3478,"nodeType":"IfStatement","src":"17821:489:17","trueBody":{"expression":{"id":3420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3415,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3349,"src":"17839:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3418,"indexExpression":{"id":3417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17846:14:17","subExpression":{"id":3416,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"17846:12:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17839:22:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74","id":3419,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17864:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_cac1bb71f0a97c8ac94ca9546b43178a9ad254c7b757ac07433aa6df35cd8089","typeString":"literal_string \"t\""},"value":"t"},"src":"17839:28:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3421,"nodeType":"ExpressionStatement","src":"17839:28:17"}},"id":3479,"nodeType":"IfStatement","src":"17752:558:17","trueBody":{"expression":{"id":3410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":3405,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3349,"src":"17770:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3408,"indexExpression":{"id":3407,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17777:14:17","subExpression":{"id":3406,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"17777:12:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17770:22:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"62","id":3409,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17795:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_b5553de315e0edf504d9150af82dafa5c4667fa618ed0a6f19c69b41166c5510","typeString":"literal_string \"b\""},"value":"b"},"src":"17770:28:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3411,"nodeType":"ExpressionStatement","src":"17770:28:17"}}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3365,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3363,"src":"17524:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":3366,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3342,"src":"17528:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17535:6:17","memberName":"length","nodeType":"MemberAccess","src":"17528:13:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17524:17:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3491,"initializationExpression":{"assignments":[3363],"declarations":[{"constant":false,"id":3363,"mutability":"mutable","name":"i","nameLocation":"17521:1:17","nodeType":"VariableDeclaration","scope":3491,"src":"17513:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3362,"name":"uint256","nodeType":"ElementaryTypeName","src":"17513:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3364,"nodeType":"VariableDeclarationStatement","src":"17513:9:17"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":3370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"17543:3:17","subExpression":{"id":3369,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3363,"src":"17545:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3371,"nodeType":"ExpressionStatement","src":"17543:3:17"},"nodeType":"ForStatement","src":"17508:894:17"},{"AST":{"nativeSrc":"18500:129:17","nodeType":"YulBlock","src":"18500:129:17","statements":[{"expression":{"arguments":[{"name":"output","nativeSrc":"18521:6:17","nodeType":"YulIdentifier","src":"18521:6:17"},{"name":"outputLength","nativeSrc":"18529:12:17","nodeType":"YulIdentifier","src":"18529:12:17"}],"functionName":{"name":"mstore","nativeSrc":"18514:6:17","nodeType":"YulIdentifier","src":"18514:6:17"},"nativeSrc":"18514:28:17","nodeType":"YulFunctionCall","src":"18514:28:17"},"nativeSrc":"18514:28:17","nodeType":"YulExpressionStatement","src":"18514:28:17"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18562:4:17","nodeType":"YulLiteral","src":"18562:4:17","type":"","value":"0x40"},{"arguments":[{"name":"output","nativeSrc":"18572:6:17","nodeType":"YulIdentifier","src":"18572:6:17"},{"arguments":[{"kind":"number","nativeSrc":"18584:1:17","nodeType":"YulLiteral","src":"18584:1:17","type":"","value":"5"},{"arguments":[{"kind":"number","nativeSrc":"18591:1:17","nodeType":"YulLiteral","src":"18591:1:17","type":"","value":"5"},{"arguments":[{"name":"outputLength","nativeSrc":"18598:12:17","nodeType":"YulIdentifier","src":"18598:12:17"},{"kind":"number","nativeSrc":"18612:2:17","nodeType":"YulLiteral","src":"18612:2:17","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"18594:3:17","nodeType":"YulIdentifier","src":"18594:3:17"},"nativeSrc":"18594:21:17","nodeType":"YulFunctionCall","src":"18594:21:17"}],"functionName":{"name":"shr","nativeSrc":"18587:3:17","nodeType":"YulIdentifier","src":"18587:3:17"},"nativeSrc":"18587:29:17","nodeType":"YulFunctionCall","src":"18587:29:17"}],"functionName":{"name":"shl","nativeSrc":"18580:3:17","nodeType":"YulIdentifier","src":"18580:3:17"},"nativeSrc":"18580:37:17","nodeType":"YulFunctionCall","src":"18580:37:17"}],"functionName":{"name":"add","nativeSrc":"18568:3:17","nodeType":"YulIdentifier","src":"18568:3:17"},"nativeSrc":"18568:50:17","nodeType":"YulFunctionCall","src":"18568:50:17"}],"functionName":{"name":"mstore","nativeSrc":"18555:6:17","nodeType":"YulIdentifier","src":"18555:6:17"},"nativeSrc":"18555:64:17","nodeType":"YulFunctionCall","src":"18555:64:17"},"nativeSrc":"18555:64:17","nodeType":"YulExpressionStatement","src":"18555:64:17"}]},"evmVersion":"paris","externalReferences":[{"declaration":3349,"isOffset":false,"isSlot":false,"src":"18521:6:17","valueSize":1},{"declaration":3349,"isOffset":false,"isSlot":false,"src":"18572:6:17","valueSize":1},{"declaration":3359,"isOffset":false,"isSlot":false,"src":"18529:12:17","valueSize":1},{"declaration":3359,"isOffset":false,"isSlot":false,"src":"18598:12:17","valueSize":1}],"flags":["memory-safe"],"id":3492,"nodeType":"InlineAssembly","src":"18475:154:17"},{"expression":{"arguments":[{"id":3495,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3349,"src":"18653:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3494,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18646:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":3493,"name":"string","nodeType":"ElementaryTypeName","src":"18646:6:17","typeDescriptions":{}}},"id":3496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18646:14:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":3340,"id":3497,"nodeType":"Return","src":"18639:21:17"}]},"documentation":{"id":3334,"nodeType":"StructuredDocumentation","src":"16676:576:17","text":" @dev Escape special characters in JSON strings. This can be useful to prevent JSON injection in NFT metadata.\n WARNING: This function should only be used in double quoted JSON strings. Single quotes are not escaped.\n NOTE: This function escapes all unicode characters, and not just the ones in ranges defined in section 2.5 of\n RFC-4627 (U+0000 to U+001F, U+0022 and U+005C). ECMAScript's `JSON.parse` does recover escaped unicode\n characters that are not in this range, but other tooling may provide different results."},"id":3499,"implemented":true,"kind":"function","modifiers":[],"name":"escapeJSON","nameLocation":"17266:10:17","nodeType":"FunctionDefinition","parameters":{"id":3337,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3336,"mutability":"mutable","name":"input","nameLocation":"17291:5:17","nodeType":"VariableDeclaration","scope":3499,"src":"17277:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3335,"name":"string","nodeType":"ElementaryTypeName","src":"17277:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"17276:21:17"},"returnParameters":{"id":3340,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3339,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3499,"src":"17321:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3338,"name":"string","nodeType":"ElementaryTypeName","src":"17321:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"17320:15:17"},"scope":3512,"src":"17257:1410:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3510,"nodeType":"Block","src":"19052:225:17","statements":[{"AST":{"nativeSrc":"19201:70:17","nodeType":"YulBlock","src":"19201:70:17","statements":[{"nativeSrc":"19215:46:17","nodeType":"YulAssignment","src":"19215:46:17","value":{"arguments":[{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"19238:6:17","nodeType":"YulIdentifier","src":"19238:6:17"},{"kind":"number","nativeSrc":"19246:4:17","nodeType":"YulLiteral","src":"19246:4:17","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"19234:3:17","nodeType":"YulIdentifier","src":"19234:3:17"},"nativeSrc":"19234:17:17","nodeType":"YulFunctionCall","src":"19234:17:17"},{"name":"offset","nativeSrc":"19253:6:17","nodeType":"YulIdentifier","src":"19253:6:17"}],"functionName":{"name":"add","nativeSrc":"19230:3:17","nodeType":"YulIdentifier","src":"19230:3:17"},"nativeSrc":"19230:30:17","nodeType":"YulFunctionCall","src":"19230:30:17"}],"functionName":{"name":"mload","nativeSrc":"19224:5:17","nodeType":"YulIdentifier","src":"19224:5:17"},"nativeSrc":"19224:37:17","nodeType":"YulFunctionCall","src":"19224:37:17"},"variableNames":[{"name":"value","nativeSrc":"19215:5:17","nodeType":"YulIdentifier","src":"19215:5:17"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":3502,"isOffset":false,"isSlot":false,"src":"19238:6:17","valueSize":1},{"declaration":3504,"isOffset":false,"isSlot":false,"src":"19253:6:17","valueSize":1},{"declaration":3507,"isOffset":false,"isSlot":false,"src":"19215:5:17","valueSize":1}],"flags":["memory-safe"],"id":3509,"nodeType":"InlineAssembly","src":"19176:95:17"}]},"documentation":{"id":3500,"nodeType":"StructuredDocumentation","src":"18673:268:17","text":" @dev Reads a bytes32 from a bytes array without bounds checking.\n NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the\n assembly block as such would prevent some optimizations."},"id":3511,"implemented":true,"kind":"function","modifiers":[],"name":"_unsafeReadBytesOffset","nameLocation":"18955:22:17","nodeType":"FunctionDefinition","parameters":{"id":3505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3502,"mutability":"mutable","name":"buffer","nameLocation":"18991:6:17","nodeType":"VariableDeclaration","scope":3511,"src":"18978:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3501,"name":"bytes","nodeType":"ElementaryTypeName","src":"18978:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3504,"mutability":"mutable","name":"offset","nameLocation":"19007:6:17","nodeType":"VariableDeclaration","scope":3511,"src":"18999:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3503,"name":"uint256","nodeType":"ElementaryTypeName","src":"18999:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18977:37:17"},"returnParameters":{"id":3508,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3507,"mutability":"mutable","name":"value","nameLocation":"19045:5:17","nodeType":"VariableDeclaration","scope":3511,"src":"19037:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3506,"name":"bytes32","nodeType":"ElementaryTypeName","src":"19037:7:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"19036:15:17"},"scope":3512,"src":"18946:331:17","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":3513,"src":"297:18982:17","usedErrors":[2170,2173,2176],"usedEvents":[]}],"src":"101:19179:17"},"id":17},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/ECDSA.sol","exportedSymbols":{"ECDSA":[3860]},"id":3861,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3514,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"112:24:18"},{"abstract":false,"baseContracts":[],"canonicalName":"ECDSA","contractDependencies":[],"contractKind":"library","documentation":{"id":3515,"nodeType":"StructuredDocumentation","src":"138:205:18","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":3860,"linearizedBaseContracts":[3860],"name":"ECDSA","nameLocation":"352:5:18","nodeType":"ContractDefinition","nodes":[{"canonicalName":"ECDSA.RecoverError","id":3520,"members":[{"id":3516,"name":"NoError","nameLocation":"392:7:18","nodeType":"EnumValue","src":"392:7:18"},{"id":3517,"name":"InvalidSignature","nameLocation":"409:16:18","nodeType":"EnumValue","src":"409:16:18"},{"id":3518,"name":"InvalidSignatureLength","nameLocation":"435:22:18","nodeType":"EnumValue","src":"435:22:18"},{"id":3519,"name":"InvalidSignatureS","nameLocation":"467:17:18","nodeType":"EnumValue","src":"467:17:18"}],"name":"RecoverError","nameLocation":"369:12:18","nodeType":"EnumDefinition","src":"364:126:18"},{"documentation":{"id":3521,"nodeType":"StructuredDocumentation","src":"496:63:18","text":" @dev The signature derives the `address(0)`."},"errorSelector":"f645eedf","id":3523,"name":"ECDSAInvalidSignature","nameLocation":"570:21:18","nodeType":"ErrorDefinition","parameters":{"id":3522,"nodeType":"ParameterList","parameters":[],"src":"591:2:18"},"src":"564:30:18"},{"documentation":{"id":3524,"nodeType":"StructuredDocumentation","src":"600:60:18","text":" @dev The signature has an invalid length."},"errorSelector":"fce698f7","id":3528,"name":"ECDSAInvalidSignatureLength","nameLocation":"671:27:18","nodeType":"ErrorDefinition","parameters":{"id":3527,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3526,"mutability":"mutable","name":"length","nameLocation":"707:6:18","nodeType":"VariableDeclaration","scope":3528,"src":"699:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3525,"name":"uint256","nodeType":"ElementaryTypeName","src":"699:7:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"698:16:18"},"src":"665:50:18"},{"documentation":{"id":3529,"nodeType":"StructuredDocumentation","src":"721:85:18","text":" @dev The signature has an S value that is in the upper half order."},"errorSelector":"d78bce0c","id":3533,"name":"ECDSAInvalidSignatureS","nameLocation":"817:22:18","nodeType":"ErrorDefinition","parameters":{"id":3532,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3531,"mutability":"mutable","name":"s","nameLocation":"848:1:18","nodeType":"VariableDeclaration","scope":3533,"src":"840:9:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3530,"name":"bytes32","nodeType":"ElementaryTypeName","src":"840:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"839:11:18"},"src":"811:40:18"},{"body":{"id":3585,"nodeType":"Block","src":"2285:622:18","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3548,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3538,"src":"2299:9:18","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2309:6:18","memberName":"length","nodeType":"MemberAccess","src":"2299:16:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3635","id":3550,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2319:2:18","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"src":"2299:22:18","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3583,"nodeType":"Block","src":"2793:108:18","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":3572,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2823:1:18","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":3571,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2815:7:18","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3570,"name":"address","nodeType":"ElementaryTypeName","src":"2815:7:18","typeDescriptions":{}}},"id":3573,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2815:10:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":3574,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3520,"src":"2827:12:18","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$3520_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":3575,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2840:22:18","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":3518,"src":"2827:35:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"expression":{"id":3578,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3538,"src":"2872:9:18","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2882:6:18","memberName":"length","nodeType":"MemberAccess","src":"2872:16:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3577,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2864:7:18","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3576,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2864:7:18","typeDescriptions":{}}},"id":3580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2864:25:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3581,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2814:76:18","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$3520_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":3547,"id":3582,"nodeType":"Return","src":"2807:83:18"}]},"id":3584,"nodeType":"IfStatement","src":"2295:606:18","trueBody":{"id":3569,"nodeType":"Block","src":"2323:464:18","statements":[{"assignments":[3553],"declarations":[{"constant":false,"id":3553,"mutability":"mutable","name":"r","nameLocation":"2345:1:18","nodeType":"VariableDeclaration","scope":3569,"src":"2337:9:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3552,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2337:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3554,"nodeType":"VariableDeclarationStatement","src":"2337:9:18"},{"assignments":[3556],"declarations":[{"constant":false,"id":3556,"mutability":"mutable","name":"s","nameLocation":"2368:1:18","nodeType":"VariableDeclaration","scope":3569,"src":"2360:9:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3555,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2360:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3557,"nodeType":"VariableDeclarationStatement","src":"2360:9:18"},{"assignments":[3559],"declarations":[{"constant":false,"id":3559,"mutability":"mutable","name":"v","nameLocation":"2389:1:18","nodeType":"VariableDeclaration","scope":3569,"src":"2383:7:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3558,"name":"uint8","nodeType":"ElementaryTypeName","src":"2383:5:18","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":3560,"nodeType":"VariableDeclarationStatement","src":"2383:7:18"},{"AST":{"nativeSrc":"2560:171:18","nodeType":"YulBlock","src":"2560:171:18","statements":[{"nativeSrc":"2578:32:18","nodeType":"YulAssignment","src":"2578:32:18","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"2593:9:18","nodeType":"YulIdentifier","src":"2593:9:18"},{"kind":"number","nativeSrc":"2604:4:18","nodeType":"YulLiteral","src":"2604:4:18","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2589:3:18","nodeType":"YulIdentifier","src":"2589:3:18"},"nativeSrc":"2589:20:18","nodeType":"YulFunctionCall","src":"2589:20:18"}],"functionName":{"name":"mload","nativeSrc":"2583:5:18","nodeType":"YulIdentifier","src":"2583:5:18"},"nativeSrc":"2583:27:18","nodeType":"YulFunctionCall","src":"2583:27:18"},"variableNames":[{"name":"r","nativeSrc":"2578:1:18","nodeType":"YulIdentifier","src":"2578:1:18"}]},{"nativeSrc":"2627:32:18","nodeType":"YulAssignment","src":"2627:32:18","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"2642:9:18","nodeType":"YulIdentifier","src":"2642:9:18"},{"kind":"number","nativeSrc":"2653:4:18","nodeType":"YulLiteral","src":"2653:4:18","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"2638:3:18","nodeType":"YulIdentifier","src":"2638:3:18"},"nativeSrc":"2638:20:18","nodeType":"YulFunctionCall","src":"2638:20:18"}],"functionName":{"name":"mload","nativeSrc":"2632:5:18","nodeType":"YulIdentifier","src":"2632:5:18"},"nativeSrc":"2632:27:18","nodeType":"YulFunctionCall","src":"2632:27:18"},"variableNames":[{"name":"s","nativeSrc":"2627:1:18","nodeType":"YulIdentifier","src":"2627:1:18"}]},{"nativeSrc":"2676:41:18","nodeType":"YulAssignment","src":"2676:41:18","value":{"arguments":[{"kind":"number","nativeSrc":"2686:1:18","nodeType":"YulLiteral","src":"2686:1:18","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"2699:9:18","nodeType":"YulIdentifier","src":"2699:9:18"},{"kind":"number","nativeSrc":"2710:4:18","nodeType":"YulLiteral","src":"2710:4:18","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"2695:3:18","nodeType":"YulIdentifier","src":"2695:3:18"},"nativeSrc":"2695:20:18","nodeType":"YulFunctionCall","src":"2695:20:18"}],"functionName":{"name":"mload","nativeSrc":"2689:5:18","nodeType":"YulIdentifier","src":"2689:5:18"},"nativeSrc":"2689:27:18","nodeType":"YulFunctionCall","src":"2689:27:18"}],"functionName":{"name":"byte","nativeSrc":"2681:4:18","nodeType":"YulIdentifier","src":"2681:4:18"},"nativeSrc":"2681:36:18","nodeType":"YulFunctionCall","src":"2681:36:18"},"variableNames":[{"name":"v","nativeSrc":"2676:1:18","nodeType":"YulIdentifier","src":"2676:1:18"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":3553,"isOffset":false,"isSlot":false,"src":"2578:1:18","valueSize":1},{"declaration":3556,"isOffset":false,"isSlot":false,"src":"2627:1:18","valueSize":1},{"declaration":3538,"isOffset":false,"isSlot":false,"src":"2593:9:18","valueSize":1},{"declaration":3538,"isOffset":false,"isSlot":false,"src":"2642:9:18","valueSize":1},{"declaration":3538,"isOffset":false,"isSlot":false,"src":"2699:9:18","valueSize":1},{"declaration":3559,"isOffset":false,"isSlot":false,"src":"2676:1:18","valueSize":1}],"flags":["memory-safe"],"id":3561,"nodeType":"InlineAssembly","src":"2535:196:18"},{"expression":{"arguments":[{"id":3563,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3536,"src":"2762:4:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3564,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3559,"src":"2768:1:18","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":3565,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3553,"src":"2771:1:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3566,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3556,"src":"2774:1:18","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":3562,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[3586,3666,3774],"referencedDeclaration":3774,"src":"2751:10:18","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$3520_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":3567,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2751:25:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$3520_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":3547,"id":3568,"nodeType":"Return","src":"2744:32:18"}]}}]},"documentation":{"id":3534,"nodeType":"StructuredDocumentation","src":"857:1267:18","text":" @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not\n return address(0) without also returning an error description. Errors are documented using an enum (error type)\n and a bytes32 providing additional information about the error.\n If no error is returned, then the address can be used for verification purposes.\n The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:\n this function rejects them by requiring the `s` value to be in the lower\n half order, and the `v` value to be either 27 or 28.\n IMPORTANT: `hash` _must_ be the result of a hash operation for the\n verification to be secure: it is possible to craft signatures that\n recover to arbitrary addresses for non-hashed data. A safe way to ensure\n this is by receiving a hash of the original message (which may otherwise\n be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.\n 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]"},"id":3586,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"2138:10:18","nodeType":"FunctionDefinition","parameters":{"id":3539,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3536,"mutability":"mutable","name":"hash","nameLocation":"2166:4:18","nodeType":"VariableDeclaration","scope":3586,"src":"2158:12:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3535,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2158:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3538,"mutability":"mutable","name":"signature","nameLocation":"2193:9:18","nodeType":"VariableDeclaration","scope":3586,"src":"2180:22:18","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3537,"name":"bytes","nodeType":"ElementaryTypeName","src":"2180:5:18","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2148:60:18"},"returnParameters":{"id":3547,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3541,"mutability":"mutable","name":"recovered","nameLocation":"2240:9:18","nodeType":"VariableDeclaration","scope":3586,"src":"2232:17:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3540,"name":"address","nodeType":"ElementaryTypeName","src":"2232:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3544,"mutability":"mutable","name":"err","nameLocation":"2264:3:18","nodeType":"VariableDeclaration","scope":3586,"src":"2251:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":3543,"nodeType":"UserDefinedTypeName","pathNode":{"id":3542,"name":"RecoverError","nameLocations":["2251:12:18"],"nodeType":"IdentifierPath","referencedDeclaration":3520,"src":"2251:12:18"},"referencedDeclaration":3520,"src":"2251:12:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":3546,"mutability":"mutable","name":"errArg","nameLocation":"2277:6:18","nodeType":"VariableDeclaration","scope":3586,"src":"2269:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3545,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2269:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2231:53:18"},"scope":3860,"src":"2129:778:18","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3615,"nodeType":"Block","src":"3801:168:18","statements":[{"assignments":[3597,3600,3602],"declarations":[{"constant":false,"id":3597,"mutability":"mutable","name":"recovered","nameLocation":"3820:9:18","nodeType":"VariableDeclaration","scope":3615,"src":"3812:17:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3596,"name":"address","nodeType":"ElementaryTypeName","src":"3812:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3600,"mutability":"mutable","name":"error","nameLocation":"3844:5:18","nodeType":"VariableDeclaration","scope":3615,"src":"3831:18:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":3599,"nodeType":"UserDefinedTypeName","pathNode":{"id":3598,"name":"RecoverError","nameLocations":["3831:12:18"],"nodeType":"IdentifierPath","referencedDeclaration":3520,"src":"3831:12:18"},"referencedDeclaration":3520,"src":"3831:12:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":3602,"mutability":"mutable","name":"errorArg","nameLocation":"3859:8:18","nodeType":"VariableDeclaration","scope":3615,"src":"3851:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3601,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3851:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3607,"initialValue":{"arguments":[{"id":3604,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3589,"src":"3882:4:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3605,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3591,"src":"3888:9:18","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":3603,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[3586,3666,3774],"referencedDeclaration":3586,"src":"3871:10:18","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$_t_enum$_RecoverError_$3520_$_t_bytes32_$","typeString":"function (bytes32,bytes memory) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":3606,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3871:27:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$3520_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"3811:87:18"},{"expression":{"arguments":[{"id":3609,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3600,"src":"3920:5:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},{"id":3610,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3602,"src":"3927:8:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3608,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3859,"src":"3908:11:18","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$3520_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":3611,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3908:28:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3612,"nodeType":"ExpressionStatement","src":"3908:28:18"},{"expression":{"id":3613,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3597,"src":"3953:9:18","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":3595,"id":3614,"nodeType":"Return","src":"3946:16:18"}]},"documentation":{"id":3587,"nodeType":"StructuredDocumentation","src":"2913:796:18","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 precompile allows for malleable (non-unique) signatures:\n this function rejects them by requiring the `s` value to be in the lower\n half order, and the `v` value to be either 27 or 28.\n IMPORTANT: `hash` _must_ be the result of a hash operation for the\n verification to be secure: it is possible to craft signatures that\n recover to arbitrary addresses for non-hashed data. A safe way to ensure\n this is by receiving a hash of the original message (which may otherwise\n be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it."},"id":3616,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"3723:7:18","nodeType":"FunctionDefinition","parameters":{"id":3592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3589,"mutability":"mutable","name":"hash","nameLocation":"3739:4:18","nodeType":"VariableDeclaration","scope":3616,"src":"3731:12:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3588,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3731:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3591,"mutability":"mutable","name":"signature","nameLocation":"3758:9:18","nodeType":"VariableDeclaration","scope":3616,"src":"3745:22:18","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3590,"name":"bytes","nodeType":"ElementaryTypeName","src":"3745:5:18","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"3730:38:18"},"returnParameters":{"id":3595,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3594,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3616,"src":"3792:7:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3593,"name":"address","nodeType":"ElementaryTypeName","src":"3792:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3791:9:18"},"scope":3860,"src":"3714:255:18","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3665,"nodeType":"Block","src":"4348:342:18","statements":[{"id":3664,"nodeType":"UncheckedBlock","src":"4358:326:18","statements":[{"assignments":[3634],"declarations":[{"constant":false,"id":3634,"mutability":"mutable","name":"s","nameLocation":"4390:1:18","nodeType":"VariableDeclaration","scope":3664,"src":"4382:9:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3633,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4382:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3641,"initialValue":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":3640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3635,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3623,"src":"4394:2:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"arguments":[{"hexValue":"307837666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666","id":3638,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4407:66:18","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819967_by_1","typeString":"int_const 5789...(69 digits omitted)...9967"},"value":"0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819967_by_1","typeString":"int_const 5789...(69 digits omitted)...9967"}],"id":3637,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4399:7:18","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3636,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4399:7:18","typeDescriptions":{}}},"id":3639,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4399:75:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4394:80:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"4382:92:18"},{"assignments":[3643],"declarations":[{"constant":false,"id":3643,"mutability":"mutable","name":"v","nameLocation":"4591:1:18","nodeType":"VariableDeclaration","scope":3664,"src":"4585:7:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3642,"name":"uint8","nodeType":"ElementaryTypeName","src":"4585:5:18","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":3656,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3654,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":3648,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3623,"src":"4610:2:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3647,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4602:7:18","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":3646,"name":"uint256","nodeType":"ElementaryTypeName","src":"4602:7:18","typeDescriptions":{}}},"id":3649,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4602:11:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":3650,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4617:3:18","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"4602:18:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3652,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4601:20:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3237","id":3653,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4624:2:18","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"4601:25:18","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3645,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4595:5:18","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3644,"name":"uint8","nodeType":"ElementaryTypeName","src":"4595:5:18","typeDescriptions":{}}},"id":3655,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4595:32:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"4585:42:18"},{"expression":{"arguments":[{"id":3658,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3619,"src":"4659:4:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3659,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3643,"src":"4665:1:18","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":3660,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3621,"src":"4668:1:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3661,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3634,"src":"4671:1:18","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":3657,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[3586,3666,3774],"referencedDeclaration":3774,"src":"4648:10:18","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$3520_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":3662,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4648:25:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$3520_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":3632,"id":3663,"nodeType":"Return","src":"4641:32:18"}]}]},"documentation":{"id":3617,"nodeType":"StructuredDocumentation","src":"3975:205:18","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[ERC-2098 short signatures]"},"id":3666,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"4194:10:18","nodeType":"FunctionDefinition","parameters":{"id":3624,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3619,"mutability":"mutable","name":"hash","nameLocation":"4222:4:18","nodeType":"VariableDeclaration","scope":3666,"src":"4214:12:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3618,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4214:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3621,"mutability":"mutable","name":"r","nameLocation":"4244:1:18","nodeType":"VariableDeclaration","scope":3666,"src":"4236:9:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3620,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4236:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3623,"mutability":"mutable","name":"vs","nameLocation":"4263:2:18","nodeType":"VariableDeclaration","scope":3666,"src":"4255:10:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3622,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4255:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4204:67:18"},"returnParameters":{"id":3632,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3626,"mutability":"mutable","name":"recovered","nameLocation":"4303:9:18","nodeType":"VariableDeclaration","scope":3666,"src":"4295:17:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3625,"name":"address","nodeType":"ElementaryTypeName","src":"4295:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3629,"mutability":"mutable","name":"err","nameLocation":"4327:3:18","nodeType":"VariableDeclaration","scope":3666,"src":"4314:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":3628,"nodeType":"UserDefinedTypeName","pathNode":{"id":3627,"name":"RecoverError","nameLocations":["4314:12:18"],"nodeType":"IdentifierPath","referencedDeclaration":3520,"src":"4314:12:18"},"referencedDeclaration":3520,"src":"4314:12:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":3631,"mutability":"mutable","name":"errArg","nameLocation":"4340:6:18","nodeType":"VariableDeclaration","scope":3666,"src":"4332:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3630,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4332:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4294:53:18"},"scope":3860,"src":"4185:505:18","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3698,"nodeType":"Block","src":"4903:164:18","statements":[{"assignments":[3679,3682,3684],"declarations":[{"constant":false,"id":3679,"mutability":"mutable","name":"recovered","nameLocation":"4922:9:18","nodeType":"VariableDeclaration","scope":3698,"src":"4914:17:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3678,"name":"address","nodeType":"ElementaryTypeName","src":"4914:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3682,"mutability":"mutable","name":"error","nameLocation":"4946:5:18","nodeType":"VariableDeclaration","scope":3698,"src":"4933:18:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":3681,"nodeType":"UserDefinedTypeName","pathNode":{"id":3680,"name":"RecoverError","nameLocations":["4933:12:18"],"nodeType":"IdentifierPath","referencedDeclaration":3520,"src":"4933:12:18"},"referencedDeclaration":3520,"src":"4933:12:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":3684,"mutability":"mutable","name":"errorArg","nameLocation":"4961:8:18","nodeType":"VariableDeclaration","scope":3698,"src":"4953:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3683,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4953:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3690,"initialValue":{"arguments":[{"id":3686,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3669,"src":"4984:4:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3687,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3671,"src":"4990:1:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3688,"name":"vs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3673,"src":"4993:2:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3685,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[3586,3666,3774],"referencedDeclaration":3666,"src":"4973:10:18","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$3520_$_t_bytes32_$","typeString":"function (bytes32,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":3689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4973:23:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$3520_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"4913:83:18"},{"expression":{"arguments":[{"id":3692,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3682,"src":"5018:5:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},{"id":3693,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3684,"src":"5025:8:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3691,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3859,"src":"5006:11:18","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$3520_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":3694,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5006:28:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3695,"nodeType":"ExpressionStatement","src":"5006:28:18"},{"expression":{"id":3696,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3679,"src":"5051:9:18","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":3677,"id":3697,"nodeType":"Return","src":"5044:16:18"}]},"documentation":{"id":3667,"nodeType":"StructuredDocumentation","src":"4696:116:18","text":" @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately."},"id":3699,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"4826:7:18","nodeType":"FunctionDefinition","parameters":{"id":3674,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3669,"mutability":"mutable","name":"hash","nameLocation":"4842:4:18","nodeType":"VariableDeclaration","scope":3699,"src":"4834:12:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3668,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4834:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3671,"mutability":"mutable","name":"r","nameLocation":"4856:1:18","nodeType":"VariableDeclaration","scope":3699,"src":"4848:9:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3670,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4848:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3673,"mutability":"mutable","name":"vs","nameLocation":"4867:2:18","nodeType":"VariableDeclaration","scope":3699,"src":"4859:10:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3672,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4859:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4833:37:18"},"returnParameters":{"id":3677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3676,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3699,"src":"4894:7:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3675,"name":"address","nodeType":"ElementaryTypeName","src":"4894:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4893:9:18"},"scope":3860,"src":"4817:250:18","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3773,"nodeType":"Block","src":"5382:1372:18","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":3720,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3708,"src":"6278:1:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3719,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6270:7:18","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":3718,"name":"uint256","nodeType":"ElementaryTypeName","src":"6270:7:18","typeDescriptions":{}}},"id":3721,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6270:10:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307837464646464646464646464646464646464646464646464646464646464646463544353736453733353741343530314444464539324634363638314232304130","id":3722,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6283:66:18","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926418782139537452191302581570759080747168_by_1","typeString":"int_const 5789...(69 digits omitted)...7168"},"value":"0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0"},"src":"6270:79:18","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3734,"nodeType":"IfStatement","src":"6266:164:18","trueBody":{"id":3733,"nodeType":"Block","src":"6351:79:18","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":3726,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6381:1:18","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":3725,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6373:7:18","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3724,"name":"address","nodeType":"ElementaryTypeName","src":"6373:7:18","typeDescriptions":{}}},"id":3727,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6373:10:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":3728,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3520,"src":"6385:12:18","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$3520_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":3729,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6398:17:18","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":3519,"src":"6385:30:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},{"id":3730,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3708,"src":"6417:1:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3731,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6372:47:18","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$3520_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":3717,"id":3732,"nodeType":"Return","src":"6365:54:18"}]}},{"assignments":[3736],"declarations":[{"constant":false,"id":3736,"mutability":"mutable","name":"signer","nameLocation":"6532:6:18","nodeType":"VariableDeclaration","scope":3773,"src":"6524:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3735,"name":"address","nodeType":"ElementaryTypeName","src":"6524:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":3743,"initialValue":{"arguments":[{"id":3738,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3702,"src":"6551:4:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3739,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3704,"src":"6557:1:18","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":3740,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3706,"src":"6560:1:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3741,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3708,"src":"6563:1:18","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":3737,"name":"ecrecover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-6,"src":"6541:9:18","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":3742,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6541:24:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"6524:41:18"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3744,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3736,"src":"6579:6:18","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":3747,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6597:1:18","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":3746,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6589:7:18","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3745,"name":"address","nodeType":"ElementaryTypeName","src":"6589:7:18","typeDescriptions":{}}},"id":3748,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6589:10:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6579:20:18","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3763,"nodeType":"IfStatement","src":"6575:113:18","trueBody":{"id":3762,"nodeType":"Block","src":"6601:87:18","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":3752,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6631:1:18","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":3751,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6623:7:18","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3750,"name":"address","nodeType":"ElementaryTypeName","src":"6623:7:18","typeDescriptions":{}}},"id":3753,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6623:10:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":3754,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3520,"src":"6635:12:18","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$3520_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":3755,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6648:16:18","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":3517,"src":"6635:29:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":3758,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6674:1:18","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":3757,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6666:7:18","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3756,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6666:7:18","typeDescriptions":{}}},"id":3759,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6666:10:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3760,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"6622:55:18","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$3520_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":3717,"id":3761,"nodeType":"Return","src":"6615:62:18"}]}},{"expression":{"components":[{"id":3764,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3736,"src":"6706:6:18","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":3765,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3520,"src":"6714:12:18","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$3520_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":3766,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6727:7:18","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":3516,"src":"6714:20:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},{"arguments":[{"hexValue":"30","id":3769,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6744:1:18","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":3768,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6736:7:18","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":3767,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6736:7:18","typeDescriptions":{}}},"id":3770,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6736:10:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":3771,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6705:42:18","typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$3520_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"functionReturnParameters":3717,"id":3772,"nodeType":"Return","src":"6698:49:18"}]},"documentation":{"id":3700,"nodeType":"StructuredDocumentation","src":"5073:125:18","text":" @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":3774,"implemented":true,"kind":"function","modifiers":[],"name":"tryRecover","nameLocation":"5212:10:18","nodeType":"FunctionDefinition","parameters":{"id":3709,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3702,"mutability":"mutable","name":"hash","nameLocation":"5240:4:18","nodeType":"VariableDeclaration","scope":3774,"src":"5232:12:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3701,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5232:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3704,"mutability":"mutable","name":"v","nameLocation":"5260:1:18","nodeType":"VariableDeclaration","scope":3774,"src":"5254:7:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3703,"name":"uint8","nodeType":"ElementaryTypeName","src":"5254:5:18","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":3706,"mutability":"mutable","name":"r","nameLocation":"5279:1:18","nodeType":"VariableDeclaration","scope":3774,"src":"5271:9:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3705,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5271:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3708,"mutability":"mutable","name":"s","nameLocation":"5298:1:18","nodeType":"VariableDeclaration","scope":3774,"src":"5290:9:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3707,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5290:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5222:83:18"},"returnParameters":{"id":3717,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3711,"mutability":"mutable","name":"recovered","nameLocation":"5337:9:18","nodeType":"VariableDeclaration","scope":3774,"src":"5329:17:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3710,"name":"address","nodeType":"ElementaryTypeName","src":"5329:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3714,"mutability":"mutable","name":"err","nameLocation":"5361:3:18","nodeType":"VariableDeclaration","scope":3774,"src":"5348:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":3713,"nodeType":"UserDefinedTypeName","pathNode":{"id":3712,"name":"RecoverError","nameLocations":["5348:12:18"],"nodeType":"IdentifierPath","referencedDeclaration":3520,"src":"5348:12:18"},"referencedDeclaration":3520,"src":"5348:12:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":3716,"mutability":"mutable","name":"errArg","nameLocation":"5374:6:18","nodeType":"VariableDeclaration","scope":3774,"src":"5366:14:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3715,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5366:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5328:53:18"},"scope":3860,"src":"5203:1551:18","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3809,"nodeType":"Block","src":"6981:166:18","statements":[{"assignments":[3789,3792,3794],"declarations":[{"constant":false,"id":3789,"mutability":"mutable","name":"recovered","nameLocation":"7000:9:18","nodeType":"VariableDeclaration","scope":3809,"src":"6992:17:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3788,"name":"address","nodeType":"ElementaryTypeName","src":"6992:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":3792,"mutability":"mutable","name":"error","nameLocation":"7024:5:18","nodeType":"VariableDeclaration","scope":3809,"src":"7011:18:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":3791,"nodeType":"UserDefinedTypeName","pathNode":{"id":3790,"name":"RecoverError","nameLocations":["7011:12:18"],"nodeType":"IdentifierPath","referencedDeclaration":3520,"src":"7011:12:18"},"referencedDeclaration":3520,"src":"7011:12:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":3794,"mutability":"mutable","name":"errorArg","nameLocation":"7039:8:18","nodeType":"VariableDeclaration","scope":3809,"src":"7031:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3793,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7031:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":3801,"initialValue":{"arguments":[{"id":3796,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3777,"src":"7062:4:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3797,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3779,"src":"7068:1:18","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":3798,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3781,"src":"7071:1:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3799,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3783,"src":"7074:1:18","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":3795,"name":"tryRecover","nodeType":"Identifier","overloadedDeclarations":[3586,3666,3774],"referencedDeclaration":3774,"src":"7051:10:18","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_uint8_$_t_bytes32_$_t_bytes32_$returns$_t_address_$_t_enum$_RecoverError_$3520_$_t_bytes32_$","typeString":"function (bytes32,uint8,bytes32,bytes32) pure returns (address,enum ECDSA.RecoverError,bytes32)"}},"id":3800,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7051:25:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_address_$_t_enum$_RecoverError_$3520_$_t_bytes32_$","typeString":"tuple(address,enum ECDSA.RecoverError,bytes32)"}},"nodeType":"VariableDeclarationStatement","src":"6991:85:18"},{"expression":{"arguments":[{"id":3803,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3792,"src":"7098:5:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},{"id":3804,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3794,"src":"7105:8:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3802,"name":"_throwError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3859,"src":"7086:11:18","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_RecoverError_$3520_$_t_bytes32_$returns$__$","typeString":"function (enum ECDSA.RecoverError,bytes32) pure"}},"id":3805,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7086:28:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3806,"nodeType":"ExpressionStatement","src":"7086:28:18"},{"expression":{"id":3807,"name":"recovered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3789,"src":"7131:9:18","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":3787,"id":3808,"nodeType":"Return","src":"7124:16:18"}]},"documentation":{"id":3775,"nodeType":"StructuredDocumentation","src":"6760:122:18","text":" @dev Overload of {ECDSA-recover} that receives the `v`,\n `r` and `s` signature fields separately."},"id":3810,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"6896:7:18","nodeType":"FunctionDefinition","parameters":{"id":3784,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3777,"mutability":"mutable","name":"hash","nameLocation":"6912:4:18","nodeType":"VariableDeclaration","scope":3810,"src":"6904:12:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3776,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6904:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3779,"mutability":"mutable","name":"v","nameLocation":"6924:1:18","nodeType":"VariableDeclaration","scope":3810,"src":"6918:7:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3778,"name":"uint8","nodeType":"ElementaryTypeName","src":"6918:5:18","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":3781,"mutability":"mutable","name":"r","nameLocation":"6935:1:18","nodeType":"VariableDeclaration","scope":3810,"src":"6927:9:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3780,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6927:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":3783,"mutability":"mutable","name":"s","nameLocation":"6946:1:18","nodeType":"VariableDeclaration","scope":3810,"src":"6938:9:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3782,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6938:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6903:45:18"},"returnParameters":{"id":3787,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3786,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3810,"src":"6972:7:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3785,"name":"address","nodeType":"ElementaryTypeName","src":"6972:7:18","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6971:9:18"},"scope":3860,"src":"6887:260:18","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3858,"nodeType":"Block","src":"7352:460:18","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"},"id":3822,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3819,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3814,"src":"7366:5:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3820,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3520,"src":"7375:12:18","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$3520_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":3821,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7388:7:18","memberName":"NoError","nodeType":"MemberAccess","referencedDeclaration":3516,"src":"7375:20:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},"src":"7366:29:18","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"},"id":3828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3825,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3814,"src":"7462:5:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3826,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3520,"src":"7471:12:18","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$3520_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":3827,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7484:16:18","memberName":"InvalidSignature","nodeType":"MemberAccess","referencedDeclaration":3517,"src":"7471:29:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},"src":"7462:38:18","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"},"id":3836,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3833,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3814,"src":"7567:5:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3834,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3520,"src":"7576:12:18","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$3520_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":3835,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7589:22:18","memberName":"InvalidSignatureLength","nodeType":"MemberAccess","referencedDeclaration":3518,"src":"7576:35:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},"src":"7567:44:18","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"},"id":3848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3845,"name":"error","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3814,"src":"7701:5:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":3846,"name":"RecoverError","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3520,"src":"7710:12:18","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RecoverError_$3520_$","typeString":"type(enum ECDSA.RecoverError)"}},"id":3847,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7723:17:18","memberName":"InvalidSignatureS","nodeType":"MemberAccess","referencedDeclaration":3519,"src":"7710:30:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},"src":"7701:39:18","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3854,"nodeType":"IfStatement","src":"7697:109:18","trueBody":{"id":3853,"nodeType":"Block","src":"7742:64:18","statements":[{"errorCall":{"arguments":[{"id":3850,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3816,"src":"7786:8:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3849,"name":"ECDSAInvalidSignatureS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3533,"src":"7763:22:18","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_bytes32_$returns$_t_error_$","typeString":"function (bytes32) pure returns (error)"}},"id":3851,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7763:32:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":3852,"nodeType":"RevertStatement","src":"7756:39:18"}]}},"id":3855,"nodeType":"IfStatement","src":"7563:243:18","trueBody":{"id":3844,"nodeType":"Block","src":"7613:78:18","statements":[{"errorCall":{"arguments":[{"arguments":[{"id":3840,"name":"errorArg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3816,"src":"7670:8:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":3839,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7662:7:18","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":3838,"name":"uint256","nodeType":"ElementaryTypeName","src":"7662:7:18","typeDescriptions":{}}},"id":3841,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7662:17:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3837,"name":"ECDSAInvalidSignatureLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3528,"src":"7634:27:18","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":3842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7634:46:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":3843,"nodeType":"RevertStatement","src":"7627:53:18"}]}},"id":3856,"nodeType":"IfStatement","src":"7458:348:18","trueBody":{"id":3832,"nodeType":"Block","src":"7502:55:18","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":3829,"name":"ECDSAInvalidSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3523,"src":"7523:21:18","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":3830,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7523:23:18","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":3831,"nodeType":"RevertStatement","src":"7516:30:18"}]}},"id":3857,"nodeType":"IfStatement","src":"7362:444:18","trueBody":{"id":3824,"nodeType":"Block","src":"7397:55:18","statements":[{"functionReturnParameters":3818,"id":3823,"nodeType":"Return","src":"7411:7:18"}]}}]},"documentation":{"id":3811,"nodeType":"StructuredDocumentation","src":"7153:122:18","text":" @dev Optionally reverts with the corresponding custom error according to the `error` argument provided."},"id":3859,"implemented":true,"kind":"function","modifiers":[],"name":"_throwError","nameLocation":"7289:11:18","nodeType":"FunctionDefinition","parameters":{"id":3817,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3814,"mutability":"mutable","name":"error","nameLocation":"7314:5:18","nodeType":"VariableDeclaration","scope":3859,"src":"7301:18:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"},"typeName":{"id":3813,"nodeType":"UserDefinedTypeName","pathNode":{"id":3812,"name":"RecoverError","nameLocations":["7301:12:18"],"nodeType":"IdentifierPath","referencedDeclaration":3520,"src":"7301:12:18"},"referencedDeclaration":3520,"src":"7301:12:18","typeDescriptions":{"typeIdentifier":"t_enum$_RecoverError_$3520","typeString":"enum ECDSA.RecoverError"}},"visibility":"internal"},{"constant":false,"id":3816,"mutability":"mutable","name":"errorArg","nameLocation":"7329:8:18","nodeType":"VariableDeclaration","scope":3859,"src":"7321:16:18","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3815,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7321:7:18","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7300:38:18"},"returnParameters":{"id":3818,"nodeType":"ParameterList","parameters":[],"src":"7352:0:18"},"scope":3860,"src":"7280:532:18","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":3861,"src":"344:7470:18","usedErrors":[3523,3528,3533],"usedEvents":[]}],"src":"112:7703:18"},"id":18},"@openzeppelin/contracts/utils/cryptography/EIP712.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/EIP712.sol","exportedSymbols":{"EIP712":[4087],"IERC5267":[673],"MessageHashUtils":[4173],"ShortString":[1775],"ShortStrings":[1986]},"id":4088,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":3862,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"113:24:19"},{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","file":"./MessageHashUtils.sol","id":3864,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4088,"sourceUnit":4174,"src":"139:56:19","symbolAliases":[{"foreign":{"id":3863,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4173,"src":"147:16:19","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/ShortStrings.sol","file":"../ShortStrings.sol","id":3867,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4088,"sourceUnit":1987,"src":"196:62:19","symbolAliases":[{"foreign":{"id":3865,"name":"ShortStrings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1986,"src":"204:12:19","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":3866,"name":"ShortString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1775,"src":"218:11:19","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/interfaces/IERC5267.sol","file":"../../interfaces/IERC5267.sol","id":3869,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4088,"sourceUnit":674,"src":"259:55:19","symbolAliases":[{"foreign":{"id":3868,"name":"IERC5267","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":673,"src":"267:8:19","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":3871,"name":"IERC5267","nameLocations":["1988:8:19"],"nodeType":"IdentifierPath","referencedDeclaration":673,"src":"1988:8:19"},"id":3872,"nodeType":"InheritanceSpecifier","src":"1988:8:19"}],"canonicalName":"EIP712","contractDependencies":[],"contractKind":"contract","documentation":{"id":3870,"nodeType":"StructuredDocumentation","src":"316:1643:19","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 scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose\n encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract\n does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to\n produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.\n 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 NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain\n separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the\n separator from the immutable values, which is cheaper than accessing a cached version in cold storage.\n @custom:oz-upgrades-unsafe-allow state-variable-immutable"},"fullyImplemented":true,"id":4087,"linearizedBaseContracts":[4087,673],"name":"EIP712","nameLocation":"1978:6:19","nodeType":"ContractDefinition","nodes":[{"global":false,"id":3874,"libraryName":{"id":3873,"name":"ShortStrings","nameLocations":["2009:12:19"],"nodeType":"IdentifierPath","referencedDeclaration":1986,"src":"2009:12:19"},"nodeType":"UsingForDirective","src":"2003:25:19"},{"constant":true,"id":3879,"mutability":"constant","name":"TYPE_HASH","nameLocation":"2059:9:19","nodeType":"VariableDeclaration","scope":4087,"src":"2034:140:19","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3875,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2034:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429","id":3877,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2089:84:19","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":3876,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2079:9:19","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3878,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2079:95:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":3881,"mutability":"immutable","name":"_cachedDomainSeparator","nameLocation":"2399:22:19","nodeType":"VariableDeclaration","scope":4087,"src":"2373:48:19","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3880,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2373:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":3883,"mutability":"immutable","name":"_cachedChainId","nameLocation":"2453:14:19","nodeType":"VariableDeclaration","scope":4087,"src":"2427:40:19","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3882,"name":"uint256","nodeType":"ElementaryTypeName","src":"2427:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"private"},{"constant":false,"id":3885,"mutability":"immutable","name":"_cachedThis","nameLocation":"2499:11:19","nodeType":"VariableDeclaration","scope":4087,"src":"2473:37:19","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3884,"name":"address","nodeType":"ElementaryTypeName","src":"2473:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"private"},{"constant":false,"id":3887,"mutability":"immutable","name":"_hashedName","nameLocation":"2543:11:19","nodeType":"VariableDeclaration","scope":4087,"src":"2517:37:19","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3886,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2517:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":3889,"mutability":"immutable","name":"_hashedVersion","nameLocation":"2586:14:19","nodeType":"VariableDeclaration","scope":4087,"src":"2560:40:19","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3888,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2560:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"private"},{"constant":false,"id":3892,"mutability":"immutable","name":"_name","nameLocation":"2637:5:19","nodeType":"VariableDeclaration","scope":4087,"src":"2607:35:19","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"},"typeName":{"id":3891,"nodeType":"UserDefinedTypeName","pathNode":{"id":3890,"name":"ShortString","nameLocations":["2607:11:19"],"nodeType":"IdentifierPath","referencedDeclaration":1775,"src":"2607:11:19"},"referencedDeclaration":1775,"src":"2607:11:19","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"visibility":"private"},{"constant":false,"id":3895,"mutability":"immutable","name":"_version","nameLocation":"2678:8:19","nodeType":"VariableDeclaration","scope":4087,"src":"2648:38:19","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"},"typeName":{"id":3894,"nodeType":"UserDefinedTypeName","pathNode":{"id":3893,"name":"ShortString","nameLocations":["2648:11:19"],"nodeType":"IdentifierPath","referencedDeclaration":1775,"src":"2648:11:19"},"referencedDeclaration":1775,"src":"2648:11:19","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"visibility":"private"},{"constant":false,"id":3897,"mutability":"mutable","name":"_nameFallback","nameLocation":"2757:13:19","nodeType":"VariableDeclaration","scope":4087,"src":"2742:28:19","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":3896,"name":"string","nodeType":"ElementaryTypeName","src":"2742:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":3899,"mutability":"mutable","name":"_versionFallback","nameLocation":"2841:16:19","nodeType":"VariableDeclaration","scope":4087,"src":"2826:31:19","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":3898,"name":"string","nodeType":"ElementaryTypeName","src":"2826:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"body":{"id":3956,"nodeType":"Block","src":"3483:376:19","statements":[{"expression":{"id":3912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3907,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3892,"src":"3493:5:19","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3910,"name":"_nameFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3897,"src":"3532:13:19","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":3908,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3902,"src":"3501:4:19","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":3909,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3506:25:19","memberName":"toShortStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":1927,"src":"3501:30:19","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_storage_ptr_$returns$_t_userDefinedValueType$_ShortString_$1775_$attached_to$_t_string_memory_ptr_$","typeString":"function (string memory,string storage pointer) returns (ShortString)"}},"id":3911,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3501:45:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"src":"3493:53:19","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"id":3913,"nodeType":"ExpressionStatement","src":"3493:53:19"},{"expression":{"id":3919,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3914,"name":"_version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3895,"src":"3556:8:19","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3917,"name":"_versionFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3899,"src":"3601:16:19","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":3915,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3904,"src":"3567:7:19","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":3916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3575:25:19","memberName":"toShortStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":1927,"src":"3567:33:19","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$_t_string_storage_ptr_$returns$_t_userDefinedValueType$_ShortString_$1775_$attached_to$_t_string_memory_ptr_$","typeString":"function (string memory,string storage pointer) returns (ShortString)"}},"id":3918,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3567:51:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"src":"3556:62:19","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"id":3920,"nodeType":"ExpressionStatement","src":"3556:62:19"},{"expression":{"id":3928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3921,"name":"_hashedName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3887,"src":"3628:11:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":3925,"name":"name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3902,"src":"3658:4:19","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3924,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3652:5:19","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3923,"name":"bytes","nodeType":"ElementaryTypeName","src":"3652:5:19","typeDescriptions":{}}},"id":3926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3652:11:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3922,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"3642:9:19","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3927,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3642:22:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3628:36:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":3929,"nodeType":"ExpressionStatement","src":"3628:36:19"},{"expression":{"id":3937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3930,"name":"_hashedVersion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3889,"src":"3674:14:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":3934,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3904,"src":"3707:7:19","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":3933,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3701:5:19","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3932,"name":"bytes","nodeType":"ElementaryTypeName","src":"3701:5:19","typeDescriptions":{}}},"id":3935,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3701:14:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3931,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"3691:9:19","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":3936,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3691:25:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3674:42:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":3938,"nodeType":"ExpressionStatement","src":"3674:42:19"},{"expression":{"id":3942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3939,"name":"_cachedChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3883,"src":"3727:14:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":3940,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"3744:5:19","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3750:7:19","memberName":"chainid","nodeType":"MemberAccess","src":"3744:13:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3727:30:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3943,"nodeType":"ExpressionStatement","src":"3727:30:19"},{"expression":{"id":3947,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3944,"name":"_cachedDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3881,"src":"3767:22:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":3945,"name":"_buildDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4004,"src":"3792:21:19","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":3946,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3792:23:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3767:48:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":3948,"nodeType":"ExpressionStatement","src":"3767:48:19"},{"expression":{"id":3954,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3949,"name":"_cachedThis","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3885,"src":"3825:11:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3952,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"3847:4:19","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$4087","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$4087","typeString":"contract EIP712"}],"id":3951,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3839:7:19","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3950,"name":"address","nodeType":"ElementaryTypeName","src":"3839:7:19","typeDescriptions":{}}},"id":3953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3839:13:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3825:27:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":3955,"nodeType":"ExpressionStatement","src":"3825:27:19"}]},"documentation":{"id":3900,"nodeType":"StructuredDocumentation","src":"2864:559:19","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":3957,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":3905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3902,"mutability":"mutable","name":"name","nameLocation":"3454:4:19","nodeType":"VariableDeclaration","scope":3957,"src":"3440:18:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3901,"name":"string","nodeType":"ElementaryTypeName","src":"3440:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3904,"mutability":"mutable","name":"version","nameLocation":"3474:7:19","nodeType":"VariableDeclaration","scope":3957,"src":"3460:21:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3903,"name":"string","nodeType":"ElementaryTypeName","src":"3460:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3439:43:19"},"returnParameters":{"id":3906,"nodeType":"ParameterList","parameters":[],"src":"3483:0:19"},"scope":4087,"src":"3428:431:19","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":3982,"nodeType":"Block","src":"4007:200:19","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":3973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":3968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":3965,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4029:4:19","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$4087","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$4087","typeString":"contract EIP712"}],"id":3964,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4021:7:19","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3963,"name":"address","nodeType":"ElementaryTypeName","src":"4021:7:19","typeDescriptions":{}}},"id":3966,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4021:13:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3967,"name":"_cachedThis","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3885,"src":"4038:11:19","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4021:28:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":3969,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4053:5:19","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4059:7:19","memberName":"chainid","nodeType":"MemberAccess","src":"4053:13:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3971,"name":"_cachedChainId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3883,"src":"4070:14:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4053:31:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4021:63:19","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3980,"nodeType":"Block","src":"4146:55:19","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":3977,"name":"_buildDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4004,"src":"4167:21:19","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":3978,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4167:23:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3962,"id":3979,"nodeType":"Return","src":"4160:30:19"}]},"id":3981,"nodeType":"IfStatement","src":"4017:184:19","trueBody":{"id":3976,"nodeType":"Block","src":"4086:54:19","statements":[{"expression":{"id":3974,"name":"_cachedDomainSeparator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3881,"src":"4107:22:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3962,"id":3975,"nodeType":"Return","src":"4100:29:19"}]}}]},"documentation":{"id":3958,"nodeType":"StructuredDocumentation","src":"3865:75:19","text":" @dev Returns the domain separator for the current chain."},"id":3983,"implemented":true,"kind":"function","modifiers":[],"name":"_domainSeparatorV4","nameLocation":"3954:18:19","nodeType":"FunctionDefinition","parameters":{"id":3959,"nodeType":"ParameterList","parameters":[],"src":"3972:2:19"},"returnParameters":{"id":3962,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3961,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3983,"src":"3998:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3960,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3998:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3997:9:19"},"scope":4087,"src":"3945:262:19","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":4003,"nodeType":"Block","src":"4277:115:19","statements":[{"expression":{"arguments":[{"arguments":[{"id":3991,"name":"TYPE_HASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3879,"src":"4315:9:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3992,"name":"_hashedName","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3887,"src":"4326:11:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":3993,"name":"_hashedVersion","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3889,"src":"4339:14:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"expression":{"id":3994,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"4355:5:19","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":3995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4361:7:19","memberName":"chainid","nodeType":"MemberAccess","src":"4355:13:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":3998,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"4378:4:19","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$4087","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$4087","typeString":"contract EIP712"}],"id":3997,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4370:7:19","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3996,"name":"address","nodeType":"ElementaryTypeName","src":"4370:7:19","typeDescriptions":{}}},"id":3999,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4370:13:19","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":3989,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4304:3:19","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":3990,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4308:6:19","memberName":"encode","nodeType":"MemberAccess","src":"4304:10:19","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4000,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4304:80:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":3988,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"4294:9:19","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4001,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4294:91:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":3987,"id":4002,"nodeType":"Return","src":"4287:98:19"}]},"id":4004,"implemented":true,"kind":"function","modifiers":[],"name":"_buildDomainSeparator","nameLocation":"4222:21:19","nodeType":"FunctionDefinition","parameters":{"id":3984,"nodeType":"ParameterList","parameters":[],"src":"4243:2:19"},"returnParameters":{"id":3987,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3986,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4004,"src":"4268:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3985,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4268:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4267:9:19"},"scope":4087,"src":"4213:179:19","stateMutability":"view","virtual":false,"visibility":"private"},{"body":{"id":4019,"nodeType":"Block","src":"5103:90:19","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":4014,"name":"_domainSeparatorV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3983,"src":"5153:18:19","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_bytes32_$","typeString":"function () view returns (bytes32)"}},"id":4015,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5153:20:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4016,"name":"structHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4007,"src":"5175:10:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":4012,"name":"MessageHashUtils","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4173,"src":"5120:16:19","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_MessageHashUtils_$4173_$","typeString":"type(library MessageHashUtils)"}},"id":4013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5137:15:19","memberName":"toTypedDataHash","nodeType":"MemberAccess","referencedDeclaration":4172,"src":"5120:32:19","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":4017,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5120:66:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":4011,"id":4018,"nodeType":"Return","src":"5113:73:19"}]},"documentation":{"id":4005,"nodeType":"StructuredDocumentation","src":"4398:614:19","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":4020,"implemented":true,"kind":"function","modifiers":[],"name":"_hashTypedDataV4","nameLocation":"5026:16:19","nodeType":"FunctionDefinition","parameters":{"id":4008,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4007,"mutability":"mutable","name":"structHash","nameLocation":"5051:10:19","nodeType":"VariableDeclaration","scope":4020,"src":"5043:18:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4006,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5043:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5042:20:19"},"returnParameters":{"id":4011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4010,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4020,"src":"5094:7:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4009,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5094:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5093:9:19"},"scope":4087,"src":"5017:176:19","stateMutability":"view","virtual":true,"visibility":"internal"},{"baseFunctions":[672],"body":{"id":4061,"nodeType":"Block","src":"5556:229:19","statements":[{"expression":{"components":[{"hexValue":"0f","id":4039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"5587:7:19","typeDescriptions":{"typeIdentifier":"t_stringliteral_3d725c5ee53025f027da36bea8d3af3b6a3e9d2d1542d47c162631de48e66c1c","typeString":"literal_string hex\"0f\""},"value":"\u000f"},{"arguments":[],"expression":{"argumentTypes":[],"id":4040,"name":"_EIP712Name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4074,"src":"5617:11:19","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":4041,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5617:13:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[],"expression":{"argumentTypes":[],"id":4042,"name":"_EIP712Version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4086,"src":"5644:14:19","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":4043,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5644:16:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":4044,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5674:5:19","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":4045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5680:7:19","memberName":"chainid","nodeType":"MemberAccess","src":"5674:13:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":4048,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5709:4:19","typeDescriptions":{"typeIdentifier":"t_contract$_EIP712_$4087","typeString":"contract EIP712"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_EIP712_$4087","typeString":"contract EIP712"}],"id":4047,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5701:7:19","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4046,"name":"address","nodeType":"ElementaryTypeName","src":"5701:7:19","typeDescriptions":{}}},"id":4049,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5701:13:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":4052,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5736:1:19","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":4051,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5728:7:19","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":4050,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5728:7:19","typeDescriptions":{}}},"id":4053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5728:10:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"hexValue":"30","id":4057,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5766:1:19","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":4056,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"5752:13:19","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":4054,"name":"uint256","nodeType":"ElementaryTypeName","src":"5756:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4055,"nodeType":"ArrayTypeName","src":"5756:9:19","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}}},"id":4058,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5752:16:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[] memory"}}],"id":4059,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5573:205:19","typeDescriptions":{"typeIdentifier":"t_tuple$_t_stringliteral_3d725c5ee53025f027da36bea8d3af3b6a3e9d2d1542d47c162631de48e66c1c_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_uint256_$_t_address_$_t_bytes32_$_t_array$_t_uint256_$dyn_memory_ptr_$","typeString":"tuple(literal_string hex\"0f\",string memory,string memory,uint256,address,bytes32,uint256[] memory)"}},"functionReturnParameters":4038,"id":4060,"nodeType":"Return","src":"5566:212:19"}]},"documentation":{"id":4021,"nodeType":"StructuredDocumentation","src":"5199:24:19","text":"@inheritdoc IERC5267"},"functionSelector":"84b0196e","id":4062,"implemented":true,"kind":"function","modifiers":[],"name":"eip712Domain","nameLocation":"5237:12:19","nodeType":"FunctionDefinition","parameters":{"id":4022,"nodeType":"ParameterList","parameters":[],"src":"5249:2:19"},"returnParameters":{"id":4038,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4024,"mutability":"mutable","name":"fields","nameLocation":"5333:6:19","nodeType":"VariableDeclaration","scope":4062,"src":"5326:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":4023,"name":"bytes1","nodeType":"ElementaryTypeName","src":"5326:6:19","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":4026,"mutability":"mutable","name":"name","nameLocation":"5367:4:19","nodeType":"VariableDeclaration","scope":4062,"src":"5353:18:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4025,"name":"string","nodeType":"ElementaryTypeName","src":"5353:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4028,"mutability":"mutable","name":"version","nameLocation":"5399:7:19","nodeType":"VariableDeclaration","scope":4062,"src":"5385:21:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4027,"name":"string","nodeType":"ElementaryTypeName","src":"5385:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4030,"mutability":"mutable","name":"chainId","nameLocation":"5428:7:19","nodeType":"VariableDeclaration","scope":4062,"src":"5420:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4029,"name":"uint256","nodeType":"ElementaryTypeName","src":"5420:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4032,"mutability":"mutable","name":"verifyingContract","nameLocation":"5457:17:19","nodeType":"VariableDeclaration","scope":4062,"src":"5449:25:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4031,"name":"address","nodeType":"ElementaryTypeName","src":"5449:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4034,"mutability":"mutable","name":"salt","nameLocation":"5496:4:19","nodeType":"VariableDeclaration","scope":4062,"src":"5488:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4033,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5488:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4037,"mutability":"mutable","name":"extensions","nameLocation":"5531:10:19","nodeType":"VariableDeclaration","scope":4062,"src":"5514:27:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_memory_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":4035,"name":"uint256","nodeType":"ElementaryTypeName","src":"5514:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4036,"nodeType":"ArrayTypeName","src":"5514:9:19","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"5312:239:19"},"scope":4087,"src":"5228:557:19","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4073,"nodeType":"Block","src":"6166:65:19","statements":[{"expression":{"arguments":[{"id":4070,"name":"_nameFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3897,"src":"6210:13:19","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":4068,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3892,"src":"6183:5:19","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"id":4069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6189:20:19","memberName":"toStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":1954,"src":"6183:26:19","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$1775_$_t_string_storage_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_ShortString_$1775_$","typeString":"function (ShortString,string storage pointer) pure returns (string memory)"}},"id":4071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6183:41:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":4067,"id":4072,"nodeType":"Return","src":"6176:48:19"}]},"documentation":{"id":4063,"nodeType":"StructuredDocumentation","src":"5791:256:19","text":" @dev The name parameter for the EIP712 domain.\n NOTE: By default this function reads _name which is an immutable value.\n It only reads from storage if necessary (in case the value is too large to fit in a ShortString)."},"id":4074,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712Name","nameLocation":"6114:11:19","nodeType":"FunctionDefinition","parameters":{"id":4064,"nodeType":"ParameterList","parameters":[],"src":"6125:2:19"},"returnParameters":{"id":4067,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4066,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4074,"src":"6151:13:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4065,"name":"string","nodeType":"ElementaryTypeName","src":"6151:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6150:15:19"},"scope":4087,"src":"6105:126:19","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":4085,"nodeType":"Block","src":"6621:71:19","statements":[{"expression":{"arguments":[{"id":4082,"name":"_versionFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3899,"src":"6668:16:19","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}],"expression":{"id":4080,"name":"_version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3895,"src":"6638:8:19","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"id":4081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6647:20:19","memberName":"toStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":1954,"src":"6638:29:19","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_ShortString_$1775_$_t_string_storage_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_ShortString_$1775_$","typeString":"function (ShortString,string storage pointer) pure returns (string memory)"}},"id":4083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6638:47:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":4079,"id":4084,"nodeType":"Return","src":"6631:54:19"}]},"documentation":{"id":4075,"nodeType":"StructuredDocumentation","src":"6237:262:19","text":" @dev The version parameter for the EIP712 domain.\n NOTE: By default this function reads _version which is an immutable value.\n It only reads from storage if necessary (in case the value is too large to fit in a ShortString)."},"id":4086,"implemented":true,"kind":"function","modifiers":[],"name":"_EIP712Version","nameLocation":"6566:14:19","nodeType":"FunctionDefinition","parameters":{"id":4076,"nodeType":"ParameterList","parameters":[],"src":"6580:2:19"},"returnParameters":{"id":4079,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4078,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4086,"src":"6606:13:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4077,"name":"string","nodeType":"ElementaryTypeName","src":"6606:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6605:15:19"},"scope":4087,"src":"6557:135:19","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":4088,"src":"1960:4734:19","usedErrors":[1783,1785],"usedEvents":[653]}],"src":"113:6582:19"},"id":19},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol","exportedSymbols":{"MessageHashUtils":[4173],"Strings":[3512]},"id":4174,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4089,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"123:24:20"},{"absolutePath":"@openzeppelin/contracts/utils/Strings.sol","file":"../Strings.sol","id":4091,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4174,"sourceUnit":3513,"src":"149:39:20","symbolAliases":[{"foreign":{"id":4090,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3512,"src":"157:7:20","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"MessageHashUtils","contractDependencies":[],"contractKind":"library","documentation":{"id":4092,"nodeType":"StructuredDocumentation","src":"190:330:20","text":" @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.\n The library provides methods for generating a hash of a message that conforms to the\n https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]\n specifications."},"fullyImplemented":true,"id":4173,"linearizedBaseContracts":[4173],"name":"MessageHashUtils","nameLocation":"529:16:20","nodeType":"ContractDefinition","nodes":[{"body":{"id":4101,"nodeType":"Block","src":"1339:341:20","statements":[{"AST":{"nativeSrc":"1374:300:20","nodeType":"YulBlock","src":"1374:300:20","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1395:4:20","nodeType":"YulLiteral","src":"1395:4:20","type":"","value":"0x00"},{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a3332","kind":"string","nativeSrc":"1401:34:20","nodeType":"YulLiteral","src":"1401:34:20","type":"","value":"\u0019Ethereum Signed Message:\n32"}],"functionName":{"name":"mstore","nativeSrc":"1388:6:20","nodeType":"YulIdentifier","src":"1388:6:20"},"nativeSrc":"1388:48:20","nodeType":"YulFunctionCall","src":"1388:48:20"},"nativeSrc":"1388:48:20","nodeType":"YulExpressionStatement","src":"1388:48:20"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1497:4:20","nodeType":"YulLiteral","src":"1497:4:20","type":"","value":"0x1c"},{"name":"messageHash","nativeSrc":"1503:11:20","nodeType":"YulIdentifier","src":"1503:11:20"}],"functionName":{"name":"mstore","nativeSrc":"1490:6:20","nodeType":"YulIdentifier","src":"1490:6:20"},"nativeSrc":"1490:25:20","nodeType":"YulFunctionCall","src":"1490:25:20"},"nativeSrc":"1490:25:20","nodeType":"YulExpressionStatement","src":"1490:25:20"},{"nativeSrc":"1569:31:20","nodeType":"YulAssignment","src":"1569:31:20","value":{"arguments":[{"kind":"number","nativeSrc":"1589:4:20","nodeType":"YulLiteral","src":"1589:4:20","type":"","value":"0x00"},{"kind":"number","nativeSrc":"1595:4:20","nodeType":"YulLiteral","src":"1595:4:20","type":"","value":"0x3c"}],"functionName":{"name":"keccak256","nativeSrc":"1579:9:20","nodeType":"YulIdentifier","src":"1579:9:20"},"nativeSrc":"1579:21:20","nodeType":"YulFunctionCall","src":"1579:21:20"},"variableNames":[{"name":"digest","nativeSrc":"1569:6:20","nodeType":"YulIdentifier","src":"1569:6:20"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":4098,"isOffset":false,"isSlot":false,"src":"1569:6:20","valueSize":1},{"declaration":4095,"isOffset":false,"isSlot":false,"src":"1503:11:20","valueSize":1}],"flags":["memory-safe"],"id":4100,"nodeType":"InlineAssembly","src":"1349:325:20"}]},"documentation":{"id":4093,"nodeType":"StructuredDocumentation","src":"552:690:20","text":" @dev Returns the keccak256 digest of an ERC-191 signed data with version\n `0x45` (`personal_sign` messages).\n The digest is calculated by prefixing a bytes32 `messageHash` with\n `\"\\x19Ethereum Signed Message:\\n32\"` and hashing the result. It corresponds with the\n hash signed when using the https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign[`eth_sign`] JSON-RPC method.\n NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with\n keccak256, although any bytes32 value can be safely used because the final digest will\n be re-hashed.\n See {ECDSA-recover}."},"id":4102,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"1256:22:20","nodeType":"FunctionDefinition","parameters":{"id":4096,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4095,"mutability":"mutable","name":"messageHash","nameLocation":"1287:11:20","nodeType":"VariableDeclaration","scope":4102,"src":"1279:19:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4094,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1279:7:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1278:21:20"},"returnParameters":{"id":4099,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4098,"mutability":"mutable","name":"digest","nameLocation":"1331:6:20","nodeType":"VariableDeclaration","scope":4102,"src":"1323:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4097,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1323:7:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1322:16:20"},"scope":4173,"src":"1247:433:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4127,"nodeType":"Block","src":"2257:143:20","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"19457468657265756d205369676e6564204d6573736167653a0a","id":4114,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2309:32:20","typeDescriptions":{"typeIdentifier":"t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4","typeString":"literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""},"value":"\u0019Ethereum Signed Message:\n"},{"arguments":[{"arguments":[{"expression":{"id":4119,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4105,"src":"2366:7:20","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":4120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2374:6:20","memberName":"length","nodeType":"MemberAccess","src":"2366:14:20","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4117,"name":"Strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3512,"src":"2349:7:20","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Strings_$3512_$","typeString":"type(library Strings)"}},"id":4118,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2357:8:20","memberName":"toString","nodeType":"MemberAccess","referencedDeclaration":2224,"src":"2349:16:20","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$","typeString":"function (uint256) pure returns (string memory)"}},"id":4121,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2349:32:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":4116,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2343:5:20","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":4115,"name":"bytes","nodeType":"ElementaryTypeName","src":"2343:5:20","typeDescriptions":{}}},"id":4122,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2343:39:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":4123,"name":"message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4105,"src":"2384:7:20","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_9af2d9c228f6cfddaa6d1e5b94e0bce4ab16bd9a472a2b7fbfd74ebff4c720b4","typeString":"literal_string hex\"19457468657265756d205369676e6564204d6573736167653a0a\""},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":4112,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2296:5:20","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":4111,"name":"bytes","nodeType":"ElementaryTypeName","src":"2296:5:20","typeDescriptions":{}}},"id":4113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2302:6:20","memberName":"concat","nodeType":"MemberAccess","src":"2296:12:20","typeDescriptions":{"typeIdentifier":"t_function_bytesconcat_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4124,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2296:96:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":4110,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2286:9:20","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4125,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2286:107:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":4109,"id":4126,"nodeType":"Return","src":"2267:126:20"}]},"documentation":{"id":4103,"nodeType":"StructuredDocumentation","src":"1686:480:20","text":" @dev Returns the keccak256 digest of an ERC-191 signed data with version\n `0x45` (`personal_sign` messages).\n The digest is calculated by prefixing an arbitrary `message` with\n `\"\\x19Ethereum Signed Message:\\n\" + len(message)` and hashing the result. It corresponds with the\n hash signed when using the https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_sign[`eth_sign`] JSON-RPC method.\n See {ECDSA-recover}."},"id":4128,"implemented":true,"kind":"function","modifiers":[],"name":"toEthSignedMessageHash","nameLocation":"2180:22:20","nodeType":"FunctionDefinition","parameters":{"id":4106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4105,"mutability":"mutable","name":"message","nameLocation":"2216:7:20","nodeType":"VariableDeclaration","scope":4128,"src":"2203:20:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4104,"name":"bytes","nodeType":"ElementaryTypeName","src":"2203:5:20","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2202:22:20"},"returnParameters":{"id":4109,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4108,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4128,"src":"2248:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4107,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2248:7:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2247:9:20"},"scope":4173,"src":"2171:229:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4147,"nodeType":"Block","src":"2854:80:20","statements":[{"expression":{"arguments":[{"arguments":[{"hexValue":"1900","id":4141,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"2898:10:20","typeDescriptions":{"typeIdentifier":"t_stringliteral_73fd5d154550a4a103564cb191928cd38898034de1b952dc21b290898b4b697a","typeString":"literal_string hex\"1900\""},"value":"\u0019\u0000"},{"id":4142,"name":"validator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4131,"src":"2910:9:20","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4143,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4133,"src":"2921:4:20","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_73fd5d154550a4a103564cb191928cd38898034de1b952dc21b290898b4b697a","typeString":"literal_string hex\"1900\""},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":4139,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2881:3:20","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":4140,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2885:12:20","memberName":"encodePacked","nodeType":"MemberAccess","src":"2881:16:20","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2881:45:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":4138,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2871:9:20","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4145,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2871:56:20","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":4137,"id":4146,"nodeType":"Return","src":"2864:63:20"}]},"documentation":{"id":4129,"nodeType":"StructuredDocumentation","src":"2406:332:20","text":" @dev Returns the keccak256 digest of an ERC-191 signed data with version\n `0x00` (data with intended validator).\n The digest is calculated by prefixing an arbitrary `data` with `\"\\x19\\x00\"` and the intended\n `validator` address. Then hashing the result.\n See {ECDSA-recover}."},"id":4148,"implemented":true,"kind":"function","modifiers":[],"name":"toDataWithIntendedValidatorHash","nameLocation":"2752:31:20","nodeType":"FunctionDefinition","parameters":{"id":4134,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4131,"mutability":"mutable","name":"validator","nameLocation":"2792:9:20","nodeType":"VariableDeclaration","scope":4148,"src":"2784:17:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4130,"name":"address","nodeType":"ElementaryTypeName","src":"2784:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4133,"mutability":"mutable","name":"data","nameLocation":"2816:4:20","nodeType":"VariableDeclaration","scope":4148,"src":"2803:17:20","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4132,"name":"bytes","nodeType":"ElementaryTypeName","src":"2803:5:20","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2783:38:20"},"returnParameters":{"id":4137,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4136,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4148,"src":"2845:7:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4135,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2845:7:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2844:9:20"},"scope":4173,"src":"2743:191:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4159,"nodeType":"Block","src":"3216:216:20","statements":[{"AST":{"nativeSrc":"3251:175:20","nodeType":"YulBlock","src":"3251:175:20","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3272:4:20","nodeType":"YulLiteral","src":"3272:4:20","type":"","value":"0x00"},{"hexValue":"1900","kind":"string","nativeSrc":"3278:10:20","nodeType":"YulLiteral","src":"3278:10:20","type":"","value":"\u0019\u0000"}],"functionName":{"name":"mstore","nativeSrc":"3265:6:20","nodeType":"YulIdentifier","src":"3265:6:20"},"nativeSrc":"3265:24:20","nodeType":"YulFunctionCall","src":"3265:24:20"},"nativeSrc":"3265:24:20","nodeType":"YulExpressionStatement","src":"3265:24:20"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3309:4:20","nodeType":"YulLiteral","src":"3309:4:20","type":"","value":"0x02"},{"arguments":[{"kind":"number","nativeSrc":"3319:2:20","nodeType":"YulLiteral","src":"3319:2:20","type":"","value":"96"},{"name":"validator","nativeSrc":"3323:9:20","nodeType":"YulIdentifier","src":"3323:9:20"}],"functionName":{"name":"shl","nativeSrc":"3315:3:20","nodeType":"YulIdentifier","src":"3315:3:20"},"nativeSrc":"3315:18:20","nodeType":"YulFunctionCall","src":"3315:18:20"}],"functionName":{"name":"mstore","nativeSrc":"3302:6:20","nodeType":"YulIdentifier","src":"3302:6:20"},"nativeSrc":"3302:32:20","nodeType":"YulFunctionCall","src":"3302:32:20"},"nativeSrc":"3302:32:20","nodeType":"YulExpressionStatement","src":"3302:32:20"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3354:4:20","nodeType":"YulLiteral","src":"3354:4:20","type":"","value":"0x16"},{"name":"messageHash","nativeSrc":"3360:11:20","nodeType":"YulIdentifier","src":"3360:11:20"}],"functionName":{"name":"mstore","nativeSrc":"3347:6:20","nodeType":"YulIdentifier","src":"3347:6:20"},"nativeSrc":"3347:25:20","nodeType":"YulFunctionCall","src":"3347:25:20"},"nativeSrc":"3347:25:20","nodeType":"YulExpressionStatement","src":"3347:25:20"},{"nativeSrc":"3385:31:20","nodeType":"YulAssignment","src":"3385:31:20","value":{"arguments":[{"kind":"number","nativeSrc":"3405:4:20","nodeType":"YulLiteral","src":"3405:4:20","type":"","value":"0x00"},{"kind":"number","nativeSrc":"3411:4:20","nodeType":"YulLiteral","src":"3411:4:20","type":"","value":"0x36"}],"functionName":{"name":"keccak256","nativeSrc":"3395:9:20","nodeType":"YulIdentifier","src":"3395:9:20"},"nativeSrc":"3395:21:20","nodeType":"YulFunctionCall","src":"3395:21:20"},"variableNames":[{"name":"digest","nativeSrc":"3385:6:20","nodeType":"YulIdentifier","src":"3385:6:20"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":4156,"isOffset":false,"isSlot":false,"src":"3385:6:20","valueSize":1},{"declaration":4153,"isOffset":false,"isSlot":false,"src":"3360:11:20","valueSize":1},{"declaration":4151,"isOffset":false,"isSlot":false,"src":"3323:9:20","valueSize":1}],"flags":["memory-safe"],"id":4158,"nodeType":"InlineAssembly","src":"3226:200:20"}]},"documentation":{"id":4149,"nodeType":"StructuredDocumentation","src":"2940:129:20","text":" @dev Variant of {toDataWithIntendedValidatorHash-address-bytes} optimized for cases where `data` is a bytes32."},"id":4160,"implemented":true,"kind":"function","modifiers":[],"name":"toDataWithIntendedValidatorHash","nameLocation":"3083:31:20","nodeType":"FunctionDefinition","parameters":{"id":4154,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4151,"mutability":"mutable","name":"validator","nameLocation":"3132:9:20","nodeType":"VariableDeclaration","scope":4160,"src":"3124:17:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4150,"name":"address","nodeType":"ElementaryTypeName","src":"3124:7:20","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4153,"mutability":"mutable","name":"messageHash","nameLocation":"3159:11:20","nodeType":"VariableDeclaration","scope":4160,"src":"3151:19:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4152,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3151:7:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3114:62:20"},"returnParameters":{"id":4157,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4156,"mutability":"mutable","name":"digest","nameLocation":"3208:6:20","nodeType":"VariableDeclaration","scope":4160,"src":"3200:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4155,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3200:7:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3199:16:20"},"scope":4173,"src":"3074:358:20","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4171,"nodeType":"Block","src":"3983:265:20","statements":[{"AST":{"nativeSrc":"4018:224:20","nodeType":"YulBlock","src":"4018:224:20","statements":[{"nativeSrc":"4032:22:20","nodeType":"YulVariableDeclaration","src":"4032:22:20","value":{"arguments":[{"kind":"number","nativeSrc":"4049:4:20","nodeType":"YulLiteral","src":"4049:4:20","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"4043:5:20","nodeType":"YulIdentifier","src":"4043:5:20"},"nativeSrc":"4043:11:20","nodeType":"YulFunctionCall","src":"4043:11:20"},"variables":[{"name":"ptr","nativeSrc":"4036:3:20","nodeType":"YulTypedName","src":"4036:3:20","type":""}]},{"expression":{"arguments":[{"name":"ptr","nativeSrc":"4074:3:20","nodeType":"YulIdentifier","src":"4074:3:20"},{"hexValue":"1901","kind":"string","nativeSrc":"4079:10:20","nodeType":"YulLiteral","src":"4079:10:20","type":"","value":"\u0019\u0001"}],"functionName":{"name":"mstore","nativeSrc":"4067:6:20","nodeType":"YulIdentifier","src":"4067:6:20"},"nativeSrc":"4067:23:20","nodeType":"YulFunctionCall","src":"4067:23:20"},"nativeSrc":"4067:23:20","nodeType":"YulExpressionStatement","src":"4067:23:20"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"4114:3:20","nodeType":"YulIdentifier","src":"4114:3:20"},{"kind":"number","nativeSrc":"4119:4:20","nodeType":"YulLiteral","src":"4119:4:20","type":"","value":"0x02"}],"functionName":{"name":"add","nativeSrc":"4110:3:20","nodeType":"YulIdentifier","src":"4110:3:20"},"nativeSrc":"4110:14:20","nodeType":"YulFunctionCall","src":"4110:14:20"},{"name":"domainSeparator","nativeSrc":"4126:15:20","nodeType":"YulIdentifier","src":"4126:15:20"}],"functionName":{"name":"mstore","nativeSrc":"4103:6:20","nodeType":"YulIdentifier","src":"4103:6:20"},"nativeSrc":"4103:39:20","nodeType":"YulFunctionCall","src":"4103:39:20"},"nativeSrc":"4103:39:20","nodeType":"YulExpressionStatement","src":"4103:39:20"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"4166:3:20","nodeType":"YulIdentifier","src":"4166:3:20"},{"kind":"number","nativeSrc":"4171:4:20","nodeType":"YulLiteral","src":"4171:4:20","type":"","value":"0x22"}],"functionName":{"name":"add","nativeSrc":"4162:3:20","nodeType":"YulIdentifier","src":"4162:3:20"},"nativeSrc":"4162:14:20","nodeType":"YulFunctionCall","src":"4162:14:20"},{"name":"structHash","nativeSrc":"4178:10:20","nodeType":"YulIdentifier","src":"4178:10:20"}],"functionName":{"name":"mstore","nativeSrc":"4155:6:20","nodeType":"YulIdentifier","src":"4155:6:20"},"nativeSrc":"4155:34:20","nodeType":"YulFunctionCall","src":"4155:34:20"},"nativeSrc":"4155:34:20","nodeType":"YulExpressionStatement","src":"4155:34:20"},{"nativeSrc":"4202:30:20","nodeType":"YulAssignment","src":"4202:30:20","value":{"arguments":[{"name":"ptr","nativeSrc":"4222:3:20","nodeType":"YulIdentifier","src":"4222:3:20"},{"kind":"number","nativeSrc":"4227:4:20","nodeType":"YulLiteral","src":"4227:4:20","type":"","value":"0x42"}],"functionName":{"name":"keccak256","nativeSrc":"4212:9:20","nodeType":"YulIdentifier","src":"4212:9:20"},"nativeSrc":"4212:20:20","nodeType":"YulFunctionCall","src":"4212:20:20"},"variableNames":[{"name":"digest","nativeSrc":"4202:6:20","nodeType":"YulIdentifier","src":"4202:6:20"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":4168,"isOffset":false,"isSlot":false,"src":"4202:6:20","valueSize":1},{"declaration":4163,"isOffset":false,"isSlot":false,"src":"4126:15:20","valueSize":1},{"declaration":4165,"isOffset":false,"isSlot":false,"src":"4178:10:20","valueSize":1}],"flags":["memory-safe"],"id":4170,"nodeType":"InlineAssembly","src":"3993:249:20"}]},"documentation":{"id":4161,"nodeType":"StructuredDocumentation","src":"3438:431:20","text":" @dev Returns the keccak256 digest of an EIP-712 typed data (ERC-191 version `0x01`).\n The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with\n `\\x19\\x01` and hashing the result. It corresponds to the hash signed by the\n https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.\n See {ECDSA-recover}."},"id":4172,"implemented":true,"kind":"function","modifiers":[],"name":"toTypedDataHash","nameLocation":"3883:15:20","nodeType":"FunctionDefinition","parameters":{"id":4166,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4163,"mutability":"mutable","name":"domainSeparator","nameLocation":"3907:15:20","nodeType":"VariableDeclaration","scope":4172,"src":"3899:23:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4162,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3899:7:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4165,"mutability":"mutable","name":"structHash","nameLocation":"3932:10:20","nodeType":"VariableDeclaration","scope":4172,"src":"3924:18:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4164,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3924:7:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3898:45:20"},"returnParameters":{"id":4169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4168,"mutability":"mutable","name":"digest","nameLocation":"3975:6:20","nodeType":"VariableDeclaration","scope":4172,"src":"3967:14:20","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4167,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3967:7:20","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3966:16:20"},"scope":4173,"src":"3874:374:20","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":4174,"src":"521:3729:20","usedErrors":[],"usedEvents":[]}],"src":"123:4128:20"},"id":20},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/ERC165.sol","exportedSymbols":{"ERC165":[4197],"IERC165":[4209]},"id":4198,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4175,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"114:24:21"},{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","file":"./IERC165.sol","id":4177,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":4198,"sourceUnit":4210,"src":"140:38:21","symbolAliases":[{"foreign":{"id":4176,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4209,"src":"148:7:21","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":4179,"name":"IERC165","nameLocations":["688:7:21"],"nodeType":"IdentifierPath","referencedDeclaration":4209,"src":"688:7:21"},"id":4180,"nodeType":"InheritanceSpecifier","src":"688:7:21"}],"canonicalName":"ERC165","contractDependencies":[],"contractKind":"contract","documentation":{"id":4178,"nodeType":"StructuredDocumentation","src":"180:479:21","text":" @dev Implementation of the {IERC165} interface.\n Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check\n for the additional interface id that will be supported. For example:\n ```solidity\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n }\n ```"},"fullyImplemented":true,"id":4197,"linearizedBaseContracts":[4197,4209],"name":"ERC165","nameLocation":"678:6:21","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[4208],"body":{"id":4195,"nodeType":"Block","src":"812:64:21","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":4193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4188,"name":"interfaceId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4183,"src":"829:11:21","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":4190,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4209,"src":"849:7:21","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC165_$4209_$","typeString":"type(contract IERC165)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IERC165_$4209_$","typeString":"type(contract IERC165)"}],"id":4189,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"844:4:21","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":4191,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"844:13:21","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IERC165_$4209","typeString":"type(contract IERC165)"}},"id":4192,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"858:11:21","memberName":"interfaceId","nodeType":"MemberAccess","src":"844:25:21","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"829:40:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":4187,"id":4194,"nodeType":"Return","src":"822:47:21"}]},"documentation":{"id":4181,"nodeType":"StructuredDocumentation","src":"702:23:21","text":"@inheritdoc IERC165"},"functionSelector":"01ffc9a7","id":4196,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"739:17:21","nodeType":"FunctionDefinition","parameters":{"id":4184,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4183,"mutability":"mutable","name":"interfaceId","nameLocation":"764:11:21","nodeType":"VariableDeclaration","scope":4196,"src":"757:18:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4182,"name":"bytes4","nodeType":"ElementaryTypeName","src":"757:6:21","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"756:20:21"},"returnParameters":{"id":4187,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4186,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4196,"src":"806:4:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4185,"name":"bool","nodeType":"ElementaryTypeName","src":"806:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"805:6:21"},"scope":4197,"src":"730:146:21","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":4198,"src":"660:218:21","usedErrors":[],"usedEvents":[]}],"src":"114:765:21"},"id":21},"@openzeppelin/contracts/utils/introspection/IERC165.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/introspection/IERC165.sol","exportedSymbols":{"IERC165":[4209]},"id":4210,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4199,"literals":["solidity",">=","0.4",".16"],"nodeType":"PragmaDirective","src":"115:25:22"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC165","contractDependencies":[],"contractKind":"interface","documentation":{"id":4200,"nodeType":"StructuredDocumentation","src":"142:280:22","text":" @dev Interface of the ERC-165 standard, as defined in the\n https://eips.ethereum.org/EIPS/eip-165[ERC].\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":4209,"linearizedBaseContracts":[4209],"name":"IERC165","nameLocation":"433:7:22","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":4201,"nodeType":"StructuredDocumentation","src":"447:340:22","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[ERC 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":4208,"implemented":false,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"801:17:22","nodeType":"FunctionDefinition","parameters":{"id":4204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4203,"mutability":"mutable","name":"interfaceId","nameLocation":"826:11:22","nodeType":"VariableDeclaration","scope":4208,"src":"819:18:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4202,"name":"bytes4","nodeType":"ElementaryTypeName","src":"819:6:22","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"818:20:22"},"returnParameters":{"id":4207,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4206,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4208,"src":"862:4:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4205,"name":"bool","nodeType":"ElementaryTypeName","src":"862:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"861:6:22"},"scope":4209,"src":"792:76:22","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":4210,"src":"423:447:22","usedErrors":[],"usedEvents":[]}],"src":"115:756:22"},"id":22},"@openzeppelin/contracts/utils/math/Math.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/Math.sol","exportedSymbols":{"Math":[5830],"Panic":[1769],"SafeCast":[7595]},"id":5831,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":4211,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"103:24:23"},{"absolutePath":"@openzeppelin/contracts/utils/Panic.sol","file":"../Panic.sol","id":4213,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5831,"sourceUnit":1770,"src":"129:35:23","symbolAliases":[{"foreign":{"id":4212,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1769,"src":"137:5:23","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":4215,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":5831,"sourceUnit":7596,"src":"165:40:23","symbolAliases":[{"foreign":{"id":4214,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"173:8:23","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Math","contractDependencies":[],"contractKind":"library","documentation":{"id":4216,"nodeType":"StructuredDocumentation","src":"207:73:23","text":" @dev Standard math utilities missing in the Solidity language."},"fullyImplemented":true,"id":5830,"linearizedBaseContracts":[5830],"name":"Math","nameLocation":"289:4:23","nodeType":"ContractDefinition","nodes":[{"canonicalName":"Math.Rounding","id":4221,"members":[{"id":4217,"name":"Floor","nameLocation":"324:5:23","nodeType":"EnumValue","src":"324:5:23"},{"id":4218,"name":"Ceil","nameLocation":"367:4:23","nodeType":"EnumValue","src":"367:4:23"},{"id":4219,"name":"Trunc","nameLocation":"409:5:23","nodeType":"EnumValue","src":"409:5:23"},{"id":4220,"name":"Expand","nameLocation":"439:6:23","nodeType":"EnumValue","src":"439:6:23"}],"name":"Rounding","nameLocation":"305:8:23","nodeType":"EnumDefinition","src":"300:169:23"},{"body":{"id":4234,"nodeType":"Block","src":"731:112:23","statements":[{"AST":{"nativeSrc":"766:71:23","nodeType":"YulBlock","src":"766:71:23","statements":[{"nativeSrc":"780:16:23","nodeType":"YulAssignment","src":"780:16:23","value":{"arguments":[{"name":"a","nativeSrc":"791:1:23","nodeType":"YulIdentifier","src":"791:1:23"},{"name":"b","nativeSrc":"794:1:23","nodeType":"YulIdentifier","src":"794:1:23"}],"functionName":{"name":"add","nativeSrc":"787:3:23","nodeType":"YulIdentifier","src":"787:3:23"},"nativeSrc":"787:9:23","nodeType":"YulFunctionCall","src":"787:9:23"},"variableNames":[{"name":"low","nativeSrc":"780:3:23","nodeType":"YulIdentifier","src":"780:3:23"}]},{"nativeSrc":"809:18:23","nodeType":"YulAssignment","src":"809:18:23","value":{"arguments":[{"name":"low","nativeSrc":"820:3:23","nodeType":"YulIdentifier","src":"820:3:23"},{"name":"a","nativeSrc":"825:1:23","nodeType":"YulIdentifier","src":"825:1:23"}],"functionName":{"name":"lt","nativeSrc":"817:2:23","nodeType":"YulIdentifier","src":"817:2:23"},"nativeSrc":"817:10:23","nodeType":"YulFunctionCall","src":"817:10:23"},"variableNames":[{"name":"high","nativeSrc":"809:4:23","nodeType":"YulIdentifier","src":"809:4:23"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":4224,"isOffset":false,"isSlot":false,"src":"791:1:23","valueSize":1},{"declaration":4224,"isOffset":false,"isSlot":false,"src":"825:1:23","valueSize":1},{"declaration":4226,"isOffset":false,"isSlot":false,"src":"794:1:23","valueSize":1},{"declaration":4229,"isOffset":false,"isSlot":false,"src":"809:4:23","valueSize":1},{"declaration":4231,"isOffset":false,"isSlot":false,"src":"780:3:23","valueSize":1},{"declaration":4231,"isOffset":false,"isSlot":false,"src":"820:3:23","valueSize":1}],"flags":["memory-safe"],"id":4233,"nodeType":"InlineAssembly","src":"741:96:23"}]},"documentation":{"id":4222,"nodeType":"StructuredDocumentation","src":"475:163:23","text":" @dev Return the 512-bit addition of two uint256.\n The result is stored in two 256 variables such that sum = high * 2²⁵⁶ + low."},"id":4235,"implemented":true,"kind":"function","modifiers":[],"name":"add512","nameLocation":"652:6:23","nodeType":"FunctionDefinition","parameters":{"id":4227,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4224,"mutability":"mutable","name":"a","nameLocation":"667:1:23","nodeType":"VariableDeclaration","scope":4235,"src":"659:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4223,"name":"uint256","nodeType":"ElementaryTypeName","src":"659:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4226,"mutability":"mutable","name":"b","nameLocation":"678:1:23","nodeType":"VariableDeclaration","scope":4235,"src":"670:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4225,"name":"uint256","nodeType":"ElementaryTypeName","src":"670:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"658:22:23"},"returnParameters":{"id":4232,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4229,"mutability":"mutable","name":"high","nameLocation":"712:4:23","nodeType":"VariableDeclaration","scope":4235,"src":"704:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4228,"name":"uint256","nodeType":"ElementaryTypeName","src":"704:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4231,"mutability":"mutable","name":"low","nameLocation":"726:3:23","nodeType":"VariableDeclaration","scope":4235,"src":"718:11:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4230,"name":"uint256","nodeType":"ElementaryTypeName","src":"718:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"703:27:23"},"scope":5830,"src":"643:200:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4248,"nodeType":"Block","src":"1115:462:23","statements":[{"AST":{"nativeSrc":"1437:134:23","nodeType":"YulBlock","src":"1437:134:23","statements":[{"nativeSrc":"1451:30:23","nodeType":"YulVariableDeclaration","src":"1451:30:23","value":{"arguments":[{"name":"a","nativeSrc":"1468:1:23","nodeType":"YulIdentifier","src":"1468:1:23"},{"name":"b","nativeSrc":"1471:1:23","nodeType":"YulIdentifier","src":"1471:1:23"},{"arguments":[{"kind":"number","nativeSrc":"1478:1:23","nodeType":"YulLiteral","src":"1478:1:23","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1474:3:23","nodeType":"YulIdentifier","src":"1474:3:23"},"nativeSrc":"1474:6:23","nodeType":"YulFunctionCall","src":"1474:6:23"}],"functionName":{"name":"mulmod","nativeSrc":"1461:6:23","nodeType":"YulIdentifier","src":"1461:6:23"},"nativeSrc":"1461:20:23","nodeType":"YulFunctionCall","src":"1461:20:23"},"variables":[{"name":"mm","nativeSrc":"1455:2:23","nodeType":"YulTypedName","src":"1455:2:23","type":""}]},{"nativeSrc":"1494:16:23","nodeType":"YulAssignment","src":"1494:16:23","value":{"arguments":[{"name":"a","nativeSrc":"1505:1:23","nodeType":"YulIdentifier","src":"1505:1:23"},{"name":"b","nativeSrc":"1508:1:23","nodeType":"YulIdentifier","src":"1508:1:23"}],"functionName":{"name":"mul","nativeSrc":"1501:3:23","nodeType":"YulIdentifier","src":"1501:3:23"},"nativeSrc":"1501:9:23","nodeType":"YulFunctionCall","src":"1501:9:23"},"variableNames":[{"name":"low","nativeSrc":"1494:3:23","nodeType":"YulIdentifier","src":"1494:3:23"}]},{"nativeSrc":"1523:38:23","nodeType":"YulAssignment","src":"1523:38:23","value":{"arguments":[{"arguments":[{"name":"mm","nativeSrc":"1539:2:23","nodeType":"YulIdentifier","src":"1539:2:23"},{"name":"low","nativeSrc":"1543:3:23","nodeType":"YulIdentifier","src":"1543:3:23"}],"functionName":{"name":"sub","nativeSrc":"1535:3:23","nodeType":"YulIdentifier","src":"1535:3:23"},"nativeSrc":"1535:12:23","nodeType":"YulFunctionCall","src":"1535:12:23"},{"arguments":[{"name":"mm","nativeSrc":"1552:2:23","nodeType":"YulIdentifier","src":"1552:2:23"},{"name":"low","nativeSrc":"1556:3:23","nodeType":"YulIdentifier","src":"1556:3:23"}],"functionName":{"name":"lt","nativeSrc":"1549:2:23","nodeType":"YulIdentifier","src":"1549:2:23"},"nativeSrc":"1549:11:23","nodeType":"YulFunctionCall","src":"1549:11:23"}],"functionName":{"name":"sub","nativeSrc":"1531:3:23","nodeType":"YulIdentifier","src":"1531:3:23"},"nativeSrc":"1531:30:23","nodeType":"YulFunctionCall","src":"1531:30:23"},"variableNames":[{"name":"high","nativeSrc":"1523:4:23","nodeType":"YulIdentifier","src":"1523:4:23"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":4238,"isOffset":false,"isSlot":false,"src":"1468:1:23","valueSize":1},{"declaration":4238,"isOffset":false,"isSlot":false,"src":"1505:1:23","valueSize":1},{"declaration":4240,"isOffset":false,"isSlot":false,"src":"1471:1:23","valueSize":1},{"declaration":4240,"isOffset":false,"isSlot":false,"src":"1508:1:23","valueSize":1},{"declaration":4243,"isOffset":false,"isSlot":false,"src":"1523:4:23","valueSize":1},{"declaration":4245,"isOffset":false,"isSlot":false,"src":"1494:3:23","valueSize":1},{"declaration":4245,"isOffset":false,"isSlot":false,"src":"1543:3:23","valueSize":1},{"declaration":4245,"isOffset":false,"isSlot":false,"src":"1556:3:23","valueSize":1}],"flags":["memory-safe"],"id":4247,"nodeType":"InlineAssembly","src":"1412:159:23"}]},"documentation":{"id":4236,"nodeType":"StructuredDocumentation","src":"849:173:23","text":" @dev Return the 512-bit multiplication of two uint256.\n The result is stored in two 256 variables such that product = high * 2²⁵⁶ + low."},"id":4249,"implemented":true,"kind":"function","modifiers":[],"name":"mul512","nameLocation":"1036:6:23","nodeType":"FunctionDefinition","parameters":{"id":4241,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4238,"mutability":"mutable","name":"a","nameLocation":"1051:1:23","nodeType":"VariableDeclaration","scope":4249,"src":"1043:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4237,"name":"uint256","nodeType":"ElementaryTypeName","src":"1043:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4240,"mutability":"mutable","name":"b","nameLocation":"1062:1:23","nodeType":"VariableDeclaration","scope":4249,"src":"1054:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4239,"name":"uint256","nodeType":"ElementaryTypeName","src":"1054:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1042:22:23"},"returnParameters":{"id":4246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4243,"mutability":"mutable","name":"high","nameLocation":"1096:4:23","nodeType":"VariableDeclaration","scope":4249,"src":"1088:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4242,"name":"uint256","nodeType":"ElementaryTypeName","src":"1088:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4245,"mutability":"mutable","name":"low","nameLocation":"1110:3:23","nodeType":"VariableDeclaration","scope":4249,"src":"1102:11:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4244,"name":"uint256","nodeType":"ElementaryTypeName","src":"1102:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1087:27:23"},"scope":5830,"src":"1027:550:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4283,"nodeType":"Block","src":"1784:149:23","statements":[{"id":4282,"nodeType":"UncheckedBlock","src":"1794:133:23","statements":[{"assignments":[4262],"declarations":[{"constant":false,"id":4262,"mutability":"mutable","name":"c","nameLocation":"1826:1:23","nodeType":"VariableDeclaration","scope":4282,"src":"1818:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4261,"name":"uint256","nodeType":"ElementaryTypeName","src":"1818:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4266,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4263,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4252,"src":"1830:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":4264,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4254,"src":"1834:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1830:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1818:17:23"},{"expression":{"id":4271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4267,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4257,"src":"1849:7:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4268,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4262,"src":"1859:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":4269,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4252,"src":"1864:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1859:6:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1849:16:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4272,"nodeType":"ExpressionStatement","src":"1849:16:23"},{"expression":{"id":4280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4273,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4259,"src":"1879:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4274,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4262,"src":"1888:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":4277,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4257,"src":"1908:7:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":4275,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"1892:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":4276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1901:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"1892:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":4278,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1892:24:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1888:28:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1879:37:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4281,"nodeType":"ExpressionStatement","src":"1879:37:23"}]}]},"documentation":{"id":4250,"nodeType":"StructuredDocumentation","src":"1583:105:23","text":" @dev Returns the addition of two unsigned integers, with a success flag (no overflow)."},"id":4284,"implemented":true,"kind":"function","modifiers":[],"name":"tryAdd","nameLocation":"1702:6:23","nodeType":"FunctionDefinition","parameters":{"id":4255,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4252,"mutability":"mutable","name":"a","nameLocation":"1717:1:23","nodeType":"VariableDeclaration","scope":4284,"src":"1709:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4251,"name":"uint256","nodeType":"ElementaryTypeName","src":"1709:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4254,"mutability":"mutable","name":"b","nameLocation":"1728:1:23","nodeType":"VariableDeclaration","scope":4284,"src":"1720:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4253,"name":"uint256","nodeType":"ElementaryTypeName","src":"1720:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1708:22:23"},"returnParameters":{"id":4260,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4257,"mutability":"mutable","name":"success","nameLocation":"1759:7:23","nodeType":"VariableDeclaration","scope":4284,"src":"1754:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4256,"name":"bool","nodeType":"ElementaryTypeName","src":"1754:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4259,"mutability":"mutable","name":"result","nameLocation":"1776:6:23","nodeType":"VariableDeclaration","scope":4284,"src":"1768:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4258,"name":"uint256","nodeType":"ElementaryTypeName","src":"1768:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1753:30:23"},"scope":5830,"src":"1693:240:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4318,"nodeType":"Block","src":"2143:149:23","statements":[{"id":4317,"nodeType":"UncheckedBlock","src":"2153:133:23","statements":[{"assignments":[4297],"declarations":[{"constant":false,"id":4297,"mutability":"mutable","name":"c","nameLocation":"2185:1:23","nodeType":"VariableDeclaration","scope":4317,"src":"2177:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4296,"name":"uint256","nodeType":"ElementaryTypeName","src":"2177:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4301,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4298,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4287,"src":"2189:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":4299,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4289,"src":"2193:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2189:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2177:17:23"},{"expression":{"id":4306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4302,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4292,"src":"2208:7:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4303,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4297,"src":"2218:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":4304,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4287,"src":"2223:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2218:6:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2208:16:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4307,"nodeType":"ExpressionStatement","src":"2208:16:23"},{"expression":{"id":4315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4308,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4294,"src":"2238:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4309,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4297,"src":"2247:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":4312,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4292,"src":"2267:7:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":4310,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"2251:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":4311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2260:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"2251:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":4313,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2251:24:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2247:28:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2238:37:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4316,"nodeType":"ExpressionStatement","src":"2238:37:23"}]}]},"documentation":{"id":4285,"nodeType":"StructuredDocumentation","src":"1939:108:23","text":" @dev Returns the subtraction of two unsigned integers, with a success flag (no overflow)."},"id":4319,"implemented":true,"kind":"function","modifiers":[],"name":"trySub","nameLocation":"2061:6:23","nodeType":"FunctionDefinition","parameters":{"id":4290,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4287,"mutability":"mutable","name":"a","nameLocation":"2076:1:23","nodeType":"VariableDeclaration","scope":4319,"src":"2068:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4286,"name":"uint256","nodeType":"ElementaryTypeName","src":"2068:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4289,"mutability":"mutable","name":"b","nameLocation":"2087:1:23","nodeType":"VariableDeclaration","scope":4319,"src":"2079:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4288,"name":"uint256","nodeType":"ElementaryTypeName","src":"2079:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2067:22:23"},"returnParameters":{"id":4295,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4292,"mutability":"mutable","name":"success","nameLocation":"2118:7:23","nodeType":"VariableDeclaration","scope":4319,"src":"2113:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4291,"name":"bool","nodeType":"ElementaryTypeName","src":"2113:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4294,"mutability":"mutable","name":"result","nameLocation":"2135:6:23","nodeType":"VariableDeclaration","scope":4319,"src":"2127:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4293,"name":"uint256","nodeType":"ElementaryTypeName","src":"2127:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2112:30:23"},"scope":5830,"src":"2052:240:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4348,"nodeType":"Block","src":"2505:391:23","statements":[{"id":4347,"nodeType":"UncheckedBlock","src":"2515:375:23","statements":[{"assignments":[4332],"declarations":[{"constant":false,"id":4332,"mutability":"mutable","name":"c","nameLocation":"2547:1:23","nodeType":"VariableDeclaration","scope":4347,"src":"2539:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4331,"name":"uint256","nodeType":"ElementaryTypeName","src":"2539:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4336,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4333,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4322,"src":"2551:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4334,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4324,"src":"2555:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2551:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2539:17:23"},{"AST":{"nativeSrc":"2595:188:23","nodeType":"YulBlock","src":"2595:188:23","statements":[{"nativeSrc":"2727:42:23","nodeType":"YulAssignment","src":"2727:42:23","value":{"arguments":[{"arguments":[{"arguments":[{"name":"c","nativeSrc":"2748:1:23","nodeType":"YulIdentifier","src":"2748:1:23"},{"name":"a","nativeSrc":"2751:1:23","nodeType":"YulIdentifier","src":"2751:1:23"}],"functionName":{"name":"div","nativeSrc":"2744:3:23","nodeType":"YulIdentifier","src":"2744:3:23"},"nativeSrc":"2744:9:23","nodeType":"YulFunctionCall","src":"2744:9:23"},{"name":"b","nativeSrc":"2755:1:23","nodeType":"YulIdentifier","src":"2755:1:23"}],"functionName":{"name":"eq","nativeSrc":"2741:2:23","nodeType":"YulIdentifier","src":"2741:2:23"},"nativeSrc":"2741:16:23","nodeType":"YulFunctionCall","src":"2741:16:23"},{"arguments":[{"name":"a","nativeSrc":"2766:1:23","nodeType":"YulIdentifier","src":"2766:1:23"}],"functionName":{"name":"iszero","nativeSrc":"2759:6:23","nodeType":"YulIdentifier","src":"2759:6:23"},"nativeSrc":"2759:9:23","nodeType":"YulFunctionCall","src":"2759:9:23"}],"functionName":{"name":"or","nativeSrc":"2738:2:23","nodeType":"YulIdentifier","src":"2738:2:23"},"nativeSrc":"2738:31:23","nodeType":"YulFunctionCall","src":"2738:31:23"},"variableNames":[{"name":"success","nativeSrc":"2727:7:23","nodeType":"YulIdentifier","src":"2727:7:23"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":4322,"isOffset":false,"isSlot":false,"src":"2751:1:23","valueSize":1},{"declaration":4322,"isOffset":false,"isSlot":false,"src":"2766:1:23","valueSize":1},{"declaration":4324,"isOffset":false,"isSlot":false,"src":"2755:1:23","valueSize":1},{"declaration":4332,"isOffset":false,"isSlot":false,"src":"2748:1:23","valueSize":1},{"declaration":4327,"isOffset":false,"isSlot":false,"src":"2727:7:23","valueSize":1}],"flags":["memory-safe"],"id":4337,"nodeType":"InlineAssembly","src":"2570:213:23"},{"expression":{"id":4345,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4338,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4329,"src":"2842:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4339,"name":"c","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4332,"src":"2851:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":4342,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4327,"src":"2871:7:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":4340,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"2855:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":4341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2864:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"2855:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":4343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2855:24:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2851:28:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2842:37:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4346,"nodeType":"ExpressionStatement","src":"2842:37:23"}]}]},"documentation":{"id":4320,"nodeType":"StructuredDocumentation","src":"2298:111:23","text":" @dev Returns the multiplication of two unsigned integers, with a success flag (no overflow)."},"id":4349,"implemented":true,"kind":"function","modifiers":[],"name":"tryMul","nameLocation":"2423:6:23","nodeType":"FunctionDefinition","parameters":{"id":4325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4322,"mutability":"mutable","name":"a","nameLocation":"2438:1:23","nodeType":"VariableDeclaration","scope":4349,"src":"2430:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4321,"name":"uint256","nodeType":"ElementaryTypeName","src":"2430:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4324,"mutability":"mutable","name":"b","nameLocation":"2449:1:23","nodeType":"VariableDeclaration","scope":4349,"src":"2441:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4323,"name":"uint256","nodeType":"ElementaryTypeName","src":"2441:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2429:22:23"},"returnParameters":{"id":4330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4327,"mutability":"mutable","name":"success","nameLocation":"2480:7:23","nodeType":"VariableDeclaration","scope":4349,"src":"2475:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4326,"name":"bool","nodeType":"ElementaryTypeName","src":"2475:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4329,"mutability":"mutable","name":"result","nameLocation":"2497:6:23","nodeType":"VariableDeclaration","scope":4349,"src":"2489:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4328,"name":"uint256","nodeType":"ElementaryTypeName","src":"2489:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2474:30:23"},"scope":5830,"src":"2414:482:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4369,"nodeType":"Block","src":"3111:231:23","statements":[{"id":4368,"nodeType":"UncheckedBlock","src":"3121:215:23","statements":[{"expression":{"id":4365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4361,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4357,"src":"3145:7:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4362,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4354,"src":"3155:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4363,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3159:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3155:5:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3145:15:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4366,"nodeType":"ExpressionStatement","src":"3145:15:23"},{"AST":{"nativeSrc":"3199:127:23","nodeType":"YulBlock","src":"3199:127:23","statements":[{"nativeSrc":"3293:19:23","nodeType":"YulAssignment","src":"3293:19:23","value":{"arguments":[{"name":"a","nativeSrc":"3307:1:23","nodeType":"YulIdentifier","src":"3307:1:23"},{"name":"b","nativeSrc":"3310:1:23","nodeType":"YulIdentifier","src":"3310:1:23"}],"functionName":{"name":"div","nativeSrc":"3303:3:23","nodeType":"YulIdentifier","src":"3303:3:23"},"nativeSrc":"3303:9:23","nodeType":"YulFunctionCall","src":"3303:9:23"},"variableNames":[{"name":"result","nativeSrc":"3293:6:23","nodeType":"YulIdentifier","src":"3293:6:23"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":4352,"isOffset":false,"isSlot":false,"src":"3307:1:23","valueSize":1},{"declaration":4354,"isOffset":false,"isSlot":false,"src":"3310:1:23","valueSize":1},{"declaration":4359,"isOffset":false,"isSlot":false,"src":"3293:6:23","valueSize":1}],"flags":["memory-safe"],"id":4367,"nodeType":"InlineAssembly","src":"3174:152:23"}]}]},"documentation":{"id":4350,"nodeType":"StructuredDocumentation","src":"2902:113:23","text":" @dev Returns the division of two unsigned integers, with a success flag (no division by zero)."},"id":4370,"implemented":true,"kind":"function","modifiers":[],"name":"tryDiv","nameLocation":"3029:6:23","nodeType":"FunctionDefinition","parameters":{"id":4355,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4352,"mutability":"mutable","name":"a","nameLocation":"3044:1:23","nodeType":"VariableDeclaration","scope":4370,"src":"3036:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4351,"name":"uint256","nodeType":"ElementaryTypeName","src":"3036:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4354,"mutability":"mutable","name":"b","nameLocation":"3055:1:23","nodeType":"VariableDeclaration","scope":4370,"src":"3047:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4353,"name":"uint256","nodeType":"ElementaryTypeName","src":"3047:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3035:22:23"},"returnParameters":{"id":4360,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4357,"mutability":"mutable","name":"success","nameLocation":"3086:7:23","nodeType":"VariableDeclaration","scope":4370,"src":"3081:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4356,"name":"bool","nodeType":"ElementaryTypeName","src":"3081:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4359,"mutability":"mutable","name":"result","nameLocation":"3103:6:23","nodeType":"VariableDeclaration","scope":4370,"src":"3095:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4358,"name":"uint256","nodeType":"ElementaryTypeName","src":"3095:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3080:30:23"},"scope":5830,"src":"3020:322:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4390,"nodeType":"Block","src":"3567:231:23","statements":[{"id":4389,"nodeType":"UncheckedBlock","src":"3577:215:23","statements":[{"expression":{"id":4386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4382,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4378,"src":"3601:7:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4383,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4375,"src":"3611:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4384,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3615:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3611:5:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"3601:15:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4387,"nodeType":"ExpressionStatement","src":"3601:15:23"},{"AST":{"nativeSrc":"3655:127:23","nodeType":"YulBlock","src":"3655:127:23","statements":[{"nativeSrc":"3749:19:23","nodeType":"YulAssignment","src":"3749:19:23","value":{"arguments":[{"name":"a","nativeSrc":"3763:1:23","nodeType":"YulIdentifier","src":"3763:1:23"},{"name":"b","nativeSrc":"3766:1:23","nodeType":"YulIdentifier","src":"3766:1:23"}],"functionName":{"name":"mod","nativeSrc":"3759:3:23","nodeType":"YulIdentifier","src":"3759:3:23"},"nativeSrc":"3759:9:23","nodeType":"YulFunctionCall","src":"3759:9:23"},"variableNames":[{"name":"result","nativeSrc":"3749:6:23","nodeType":"YulIdentifier","src":"3749:6:23"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":4373,"isOffset":false,"isSlot":false,"src":"3763:1:23","valueSize":1},{"declaration":4375,"isOffset":false,"isSlot":false,"src":"3766:1:23","valueSize":1},{"declaration":4380,"isOffset":false,"isSlot":false,"src":"3749:6:23","valueSize":1}],"flags":["memory-safe"],"id":4388,"nodeType":"InlineAssembly","src":"3630:152:23"}]}]},"documentation":{"id":4371,"nodeType":"StructuredDocumentation","src":"3348:123:23","text":" @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero)."},"id":4391,"implemented":true,"kind":"function","modifiers":[],"name":"tryMod","nameLocation":"3485:6:23","nodeType":"FunctionDefinition","parameters":{"id":4376,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4373,"mutability":"mutable","name":"a","nameLocation":"3500:1:23","nodeType":"VariableDeclaration","scope":4391,"src":"3492:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4372,"name":"uint256","nodeType":"ElementaryTypeName","src":"3492:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4375,"mutability":"mutable","name":"b","nameLocation":"3511:1:23","nodeType":"VariableDeclaration","scope":4391,"src":"3503:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4374,"name":"uint256","nodeType":"ElementaryTypeName","src":"3503:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3491:22:23"},"returnParameters":{"id":4381,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4378,"mutability":"mutable","name":"success","nameLocation":"3542:7:23","nodeType":"VariableDeclaration","scope":4391,"src":"3537:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4377,"name":"bool","nodeType":"ElementaryTypeName","src":"3537:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4380,"mutability":"mutable","name":"result","nameLocation":"3559:6:23","nodeType":"VariableDeclaration","scope":4391,"src":"3551:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4379,"name":"uint256","nodeType":"ElementaryTypeName","src":"3551:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3536:30:23"},"scope":5830,"src":"3476:322:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4420,"nodeType":"Block","src":"3989:122:23","statements":[{"assignments":[4402,4404],"declarations":[{"constant":false,"id":4402,"mutability":"mutable","name":"success","nameLocation":"4005:7:23","nodeType":"VariableDeclaration","scope":4420,"src":"4000:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4401,"name":"bool","nodeType":"ElementaryTypeName","src":"4000:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4404,"mutability":"mutable","name":"result","nameLocation":"4022:6:23","nodeType":"VariableDeclaration","scope":4420,"src":"4014:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4403,"name":"uint256","nodeType":"ElementaryTypeName","src":"4014:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4409,"initialValue":{"arguments":[{"id":4406,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4394,"src":"4039:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4407,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4396,"src":"4042:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4405,"name":"tryAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4284,"src":"4032:6:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (bool,uint256)"}},"id":4408,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4032:12:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"3999:45:23"},{"expression":{"arguments":[{"id":4411,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4402,"src":"4069:7:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":4412,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4404,"src":"4078:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"arguments":[{"id":4415,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4091:7:23","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4414,"name":"uint256","nodeType":"ElementaryTypeName","src":"4091:7:23","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":4413,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4086:4:23","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":4416,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4086:13:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":4417,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4100:3:23","memberName":"max","nodeType":"MemberAccess","src":"4086:17:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4410,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4498,"src":"4061:7:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":4418,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4061:43:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4400,"id":4419,"nodeType":"Return","src":"4054:50:23"}]},"documentation":{"id":4392,"nodeType":"StructuredDocumentation","src":"3804:103:23","text":" @dev Unsigned saturating addition, bounds to `2²⁵⁶ - 1` instead of overflowing."},"id":4421,"implemented":true,"kind":"function","modifiers":[],"name":"saturatingAdd","nameLocation":"3921:13:23","nodeType":"FunctionDefinition","parameters":{"id":4397,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4394,"mutability":"mutable","name":"a","nameLocation":"3943:1:23","nodeType":"VariableDeclaration","scope":4421,"src":"3935:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4393,"name":"uint256","nodeType":"ElementaryTypeName","src":"3935:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4396,"mutability":"mutable","name":"b","nameLocation":"3954:1:23","nodeType":"VariableDeclaration","scope":4421,"src":"3946:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4395,"name":"uint256","nodeType":"ElementaryTypeName","src":"3946:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3934:22:23"},"returnParameters":{"id":4400,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4399,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4421,"src":"3980:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4398,"name":"uint256","nodeType":"ElementaryTypeName","src":"3980:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3979:9:23"},"scope":5830,"src":"3912:199:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4440,"nodeType":"Block","src":"4294:73:23","statements":[{"assignments":[null,4432],"declarations":[null,{"constant":false,"id":4432,"mutability":"mutable","name":"result","nameLocation":"4315:6:23","nodeType":"VariableDeclaration","scope":4440,"src":"4307:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4431,"name":"uint256","nodeType":"ElementaryTypeName","src":"4307:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4437,"initialValue":{"arguments":[{"id":4434,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4424,"src":"4332:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4435,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4426,"src":"4335:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4433,"name":"trySub","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4319,"src":"4325:6:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (bool,uint256)"}},"id":4436,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4325:12:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"4304:33:23"},{"expression":{"id":4438,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4432,"src":"4354:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4430,"id":4439,"nodeType":"Return","src":"4347:13:23"}]},"documentation":{"id":4422,"nodeType":"StructuredDocumentation","src":"4117:95:23","text":" @dev Unsigned saturating subtraction, bounds to zero instead of overflowing."},"id":4441,"implemented":true,"kind":"function","modifiers":[],"name":"saturatingSub","nameLocation":"4226:13:23","nodeType":"FunctionDefinition","parameters":{"id":4427,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4424,"mutability":"mutable","name":"a","nameLocation":"4248:1:23","nodeType":"VariableDeclaration","scope":4441,"src":"4240:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4423,"name":"uint256","nodeType":"ElementaryTypeName","src":"4240:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4426,"mutability":"mutable","name":"b","nameLocation":"4259:1:23","nodeType":"VariableDeclaration","scope":4441,"src":"4251:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4425,"name":"uint256","nodeType":"ElementaryTypeName","src":"4251:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4239:22:23"},"returnParameters":{"id":4430,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4429,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4441,"src":"4285:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4428,"name":"uint256","nodeType":"ElementaryTypeName","src":"4285:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4284:9:23"},"scope":5830,"src":"4217:150:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4470,"nodeType":"Block","src":"4564:122:23","statements":[{"assignments":[4452,4454],"declarations":[{"constant":false,"id":4452,"mutability":"mutable","name":"success","nameLocation":"4580:7:23","nodeType":"VariableDeclaration","scope":4470,"src":"4575:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4451,"name":"bool","nodeType":"ElementaryTypeName","src":"4575:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4454,"mutability":"mutable","name":"result","nameLocation":"4597:6:23","nodeType":"VariableDeclaration","scope":4470,"src":"4589:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4453,"name":"uint256","nodeType":"ElementaryTypeName","src":"4589:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4459,"initialValue":{"arguments":[{"id":4456,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4444,"src":"4614:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4457,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4446,"src":"4617:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4455,"name":"tryMul","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4349,"src":"4607:6:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (bool,uint256)"}},"id":4458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4607:12:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"4574:45:23"},{"expression":{"arguments":[{"id":4461,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4452,"src":"4644:7:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":4462,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4454,"src":"4653:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"arguments":[{"id":4465,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4666:7:23","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4464,"name":"uint256","nodeType":"ElementaryTypeName","src":"4666:7:23","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":4463,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4661:4:23","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":4466,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4661:13:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":4467,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4675:3:23","memberName":"max","nodeType":"MemberAccess","src":"4661:17:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4460,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4498,"src":"4636:7:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":4468,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4636:43:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4450,"id":4469,"nodeType":"Return","src":"4629:50:23"}]},"documentation":{"id":4442,"nodeType":"StructuredDocumentation","src":"4373:109:23","text":" @dev Unsigned saturating multiplication, bounds to `2²⁵⁶ - 1` instead of overflowing."},"id":4471,"implemented":true,"kind":"function","modifiers":[],"name":"saturatingMul","nameLocation":"4496:13:23","nodeType":"FunctionDefinition","parameters":{"id":4447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4444,"mutability":"mutable","name":"a","nameLocation":"4518:1:23","nodeType":"VariableDeclaration","scope":4471,"src":"4510:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4443,"name":"uint256","nodeType":"ElementaryTypeName","src":"4510:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4446,"mutability":"mutable","name":"b","nameLocation":"4529:1:23","nodeType":"VariableDeclaration","scope":4471,"src":"4521:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4445,"name":"uint256","nodeType":"ElementaryTypeName","src":"4521:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4509:22:23"},"returnParameters":{"id":4450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4449,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4471,"src":"4555:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4448,"name":"uint256","nodeType":"ElementaryTypeName","src":"4555:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4554:9:23"},"scope":5830,"src":"4487:199:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4497,"nodeType":"Block","src":"5158:207:23","statements":[{"id":4496,"nodeType":"UncheckedBlock","src":"5168:191:23","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4494,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4483,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4478,"src":"5306:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4484,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4476,"src":"5312:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":4485,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4478,"src":"5316:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5312:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4487,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5311:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":4490,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4474,"src":"5337:9:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":4488,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"5321:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":4489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5330:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"5321:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":4491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5321:26:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5311:36:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4493,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5310:38:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5306:42:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4482,"id":4495,"nodeType":"Return","src":"5299:49:23"}]}]},"documentation":{"id":4472,"nodeType":"StructuredDocumentation","src":"4692:374:23","text":" @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n one branch when needed, making this function more expensive."},"id":4498,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"5080:7:23","nodeType":"FunctionDefinition","parameters":{"id":4479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4474,"mutability":"mutable","name":"condition","nameLocation":"5093:9:23","nodeType":"VariableDeclaration","scope":4498,"src":"5088:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4473,"name":"bool","nodeType":"ElementaryTypeName","src":"5088:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4476,"mutability":"mutable","name":"a","nameLocation":"5112:1:23","nodeType":"VariableDeclaration","scope":4498,"src":"5104:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4475,"name":"uint256","nodeType":"ElementaryTypeName","src":"5104:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4478,"mutability":"mutable","name":"b","nameLocation":"5123:1:23","nodeType":"VariableDeclaration","scope":4498,"src":"5115:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4477,"name":"uint256","nodeType":"ElementaryTypeName","src":"5115:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5087:38:23"},"returnParameters":{"id":4482,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4481,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4498,"src":"5149:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4480,"name":"uint256","nodeType":"ElementaryTypeName","src":"5149:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5148:9:23"},"scope":5830,"src":"5071:294:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4516,"nodeType":"Block","src":"5502:44:23","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4509,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4501,"src":"5527:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":4510,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4503,"src":"5531:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5527:5:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":4512,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4501,"src":"5534:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4513,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4503,"src":"5537:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4508,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4498,"src":"5519:7:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":4514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5519:20:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4507,"id":4515,"nodeType":"Return","src":"5512:27:23"}]},"documentation":{"id":4499,"nodeType":"StructuredDocumentation","src":"5371:59:23","text":" @dev Returns the largest of two numbers."},"id":4517,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"5444:3:23","nodeType":"FunctionDefinition","parameters":{"id":4504,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4501,"mutability":"mutable","name":"a","nameLocation":"5456:1:23","nodeType":"VariableDeclaration","scope":4517,"src":"5448:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4500,"name":"uint256","nodeType":"ElementaryTypeName","src":"5448:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4503,"mutability":"mutable","name":"b","nameLocation":"5467:1:23","nodeType":"VariableDeclaration","scope":4517,"src":"5459:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4502,"name":"uint256","nodeType":"ElementaryTypeName","src":"5459:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5447:22:23"},"returnParameters":{"id":4507,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4506,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4517,"src":"5493:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4505,"name":"uint256","nodeType":"ElementaryTypeName","src":"5493:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5492:9:23"},"scope":5830,"src":"5435:111:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4535,"nodeType":"Block","src":"5684:44:23","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4530,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4528,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4520,"src":"5709:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":4529,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4522,"src":"5713:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5709:5:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":4531,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4520,"src":"5716:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4532,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4522,"src":"5719:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4527,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4498,"src":"5701:7:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":4533,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5701:20:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4526,"id":4534,"nodeType":"Return","src":"5694:27:23"}]},"documentation":{"id":4518,"nodeType":"StructuredDocumentation","src":"5552:60:23","text":" @dev Returns the smallest of two numbers."},"id":4536,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"5626:3:23","nodeType":"FunctionDefinition","parameters":{"id":4523,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4520,"mutability":"mutable","name":"a","nameLocation":"5638:1:23","nodeType":"VariableDeclaration","scope":4536,"src":"5630:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4519,"name":"uint256","nodeType":"ElementaryTypeName","src":"5630:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4522,"mutability":"mutable","name":"b","nameLocation":"5649:1:23","nodeType":"VariableDeclaration","scope":4536,"src":"5641:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4521,"name":"uint256","nodeType":"ElementaryTypeName","src":"5641:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5629:22:23"},"returnParameters":{"id":4526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4525,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4536,"src":"5675:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4524,"name":"uint256","nodeType":"ElementaryTypeName","src":"5675:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5674:9:23"},"scope":5830,"src":"5617:111:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4558,"nodeType":"Block","src":"5912:82:23","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4556,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4548,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4546,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4539,"src":"5967:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":4547,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4541,"src":"5971:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5967:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4549,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5966:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4555,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4550,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4539,"src":"5977:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":4551,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4541,"src":"5981:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5977:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4553,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5976:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":4554,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5986:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"5976:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5966:21:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4545,"id":4557,"nodeType":"Return","src":"5959:28:23"}]},"documentation":{"id":4537,"nodeType":"StructuredDocumentation","src":"5734:102:23","text":" @dev Returns the average of two numbers. The result is rounded towards\n zero."},"id":4559,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"5850:7:23","nodeType":"FunctionDefinition","parameters":{"id":4542,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4539,"mutability":"mutable","name":"a","nameLocation":"5866:1:23","nodeType":"VariableDeclaration","scope":4559,"src":"5858:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4538,"name":"uint256","nodeType":"ElementaryTypeName","src":"5858:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4541,"mutability":"mutable","name":"b","nameLocation":"5877:1:23","nodeType":"VariableDeclaration","scope":4559,"src":"5869:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4540,"name":"uint256","nodeType":"ElementaryTypeName","src":"5869:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5857:22:23"},"returnParameters":{"id":4545,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4544,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4559,"src":"5903:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4543,"name":"uint256","nodeType":"ElementaryTypeName","src":"5903:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5902:9:23"},"scope":5830,"src":"5841:153:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4599,"nodeType":"Block","src":"6286:633:23","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4571,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4569,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4564,"src":"6300:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4570,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6305:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6300:6:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4580,"nodeType":"IfStatement","src":"6296:150:23","trueBody":{"id":4579,"nodeType":"Block","src":"6308:138:23","statements":[{"expression":{"arguments":[{"expression":{"id":4575,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1769,"src":"6412:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$1769_$","typeString":"type(library Panic)"}},"id":4576,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6418:16:23","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":1736,"src":"6412:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4572,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1769,"src":"6400:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$1769_$","typeString":"type(library Panic)"}},"id":4574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6406:5:23","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":1768,"src":"6400:11:23","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,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6400:35:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4578,"nodeType":"ExpressionStatement","src":"6400:35:23"}]}},{"id":4598,"nodeType":"UncheckedBlock","src":"6829:84:23","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4583,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4562,"src":"6876:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4584,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6880:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6876:5:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":4581,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"6860:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":4582,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6869:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"6860:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":4586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6860:22:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4587,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4562,"src":"6887:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":4588,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6891:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6887:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4590,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6886:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":4591,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4564,"src":"6896:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6886:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":4593,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6900:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6886:15:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4595,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6885:17:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6860:42:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4568,"id":4597,"nodeType":"Return","src":"6853:49:23"}]}]},"documentation":{"id":4560,"nodeType":"StructuredDocumentation","src":"6000:210:23","text":" @dev Returns the ceiling of the division of two numbers.\n This differs from standard division with `/` in that it rounds towards infinity instead\n of rounding towards zero."},"id":4600,"implemented":true,"kind":"function","modifiers":[],"name":"ceilDiv","nameLocation":"6224:7:23","nodeType":"FunctionDefinition","parameters":{"id":4565,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4562,"mutability":"mutable","name":"a","nameLocation":"6240:1:23","nodeType":"VariableDeclaration","scope":4600,"src":"6232:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4561,"name":"uint256","nodeType":"ElementaryTypeName","src":"6232:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4564,"mutability":"mutable","name":"b","nameLocation":"6251:1:23","nodeType":"VariableDeclaration","scope":4600,"src":"6243:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4563,"name":"uint256","nodeType":"ElementaryTypeName","src":"6243:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6231:22:23"},"returnParameters":{"id":4568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4567,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4600,"src":"6277:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4566,"name":"uint256","nodeType":"ElementaryTypeName","src":"6277:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6276:9:23"},"scope":5830,"src":"6215:704:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4735,"nodeType":"Block","src":"7340:3585:23","statements":[{"id":4734,"nodeType":"UncheckedBlock","src":"7350:3569:23","statements":[{"assignments":[4613,4615],"declarations":[{"constant":false,"id":4613,"mutability":"mutable","name":"high","nameLocation":"7383:4:23","nodeType":"VariableDeclaration","scope":4734,"src":"7375:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4612,"name":"uint256","nodeType":"ElementaryTypeName","src":"7375:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4615,"mutability":"mutable","name":"low","nameLocation":"7397:3:23","nodeType":"VariableDeclaration","scope":4734,"src":"7389:11:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4614,"name":"uint256","nodeType":"ElementaryTypeName","src":"7389:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4620,"initialValue":{"arguments":[{"id":4617,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4603,"src":"7411:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4618,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4605,"src":"7414:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4616,"name":"mul512","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4249,"src":"7404:6:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256,uint256)"}},"id":4619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7404:12:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"7374:42:23"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4621,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4613,"src":"7498:4:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4622,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7506:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7498:9:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4629,"nodeType":"IfStatement","src":"7494:365:23","trueBody":{"id":4628,"nodeType":"Block","src":"7509:350:23","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4626,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4624,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4615,"src":"7827:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":4625,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4607,"src":"7833:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7827:17:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4611,"id":4627,"nodeType":"Return","src":"7820:24:23"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4630,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4607,"src":"7969:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":4631,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4613,"src":"7984:4:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7969:19:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4648,"nodeType":"IfStatement","src":"7965:142:23","trueBody":{"id":4647,"nodeType":"Block","src":"7990:117:23","statements":[{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4637,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4607,"src":"8028:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4638,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8043:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8028:16:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"expression":{"id":4640,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1769,"src":"8046:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$1769_$","typeString":"type(library Panic)"}},"id":4641,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8052:16:23","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":1736,"src":"8046:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":4642,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1769,"src":"8070:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$1769_$","typeString":"type(library Panic)"}},"id":4643,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8076:14:23","memberName":"UNDER_OVERFLOW","nodeType":"MemberAccess","referencedDeclaration":1732,"src":"8070:20:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4636,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4498,"src":"8020:7:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":4644,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8020:71:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4633,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1769,"src":"8008:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$1769_$","typeString":"type(library Panic)"}},"id":4635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8014:5:23","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":1768,"src":"8008:11:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":4645,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8008:84:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4646,"nodeType":"ExpressionStatement","src":"8008:84:23"}]}},{"assignments":[4650],"declarations":[{"constant":false,"id":4650,"mutability":"mutable","name":"remainder","nameLocation":"8367:9:23","nodeType":"VariableDeclaration","scope":4734,"src":"8359:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4649,"name":"uint256","nodeType":"ElementaryTypeName","src":"8359:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4651,"nodeType":"VariableDeclarationStatement","src":"8359:17:23"},{"AST":{"nativeSrc":"8415:283:23","nodeType":"YulBlock","src":"8415:283:23","statements":[{"nativeSrc":"8484:38:23","nodeType":"YulAssignment","src":"8484:38:23","value":{"arguments":[{"name":"x","nativeSrc":"8504:1:23","nodeType":"YulIdentifier","src":"8504:1:23"},{"name":"y","nativeSrc":"8507:1:23","nodeType":"YulIdentifier","src":"8507:1:23"},{"name":"denominator","nativeSrc":"8510:11:23","nodeType":"YulIdentifier","src":"8510:11:23"}],"functionName":{"name":"mulmod","nativeSrc":"8497:6:23","nodeType":"YulIdentifier","src":"8497:6:23"},"nativeSrc":"8497:25:23","nodeType":"YulFunctionCall","src":"8497:25:23"},"variableNames":[{"name":"remainder","nativeSrc":"8484:9:23","nodeType":"YulIdentifier","src":"8484:9:23"}]},{"nativeSrc":"8604:37:23","nodeType":"YulAssignment","src":"8604:37:23","value":{"arguments":[{"name":"high","nativeSrc":"8616:4:23","nodeType":"YulIdentifier","src":"8616:4:23"},{"arguments":[{"name":"remainder","nativeSrc":"8625:9:23","nodeType":"YulIdentifier","src":"8625:9:23"},{"name":"low","nativeSrc":"8636:3:23","nodeType":"YulIdentifier","src":"8636:3:23"}],"functionName":{"name":"gt","nativeSrc":"8622:2:23","nodeType":"YulIdentifier","src":"8622:2:23"},"nativeSrc":"8622:18:23","nodeType":"YulFunctionCall","src":"8622:18:23"}],"functionName":{"name":"sub","nativeSrc":"8612:3:23","nodeType":"YulIdentifier","src":"8612:3:23"},"nativeSrc":"8612:29:23","nodeType":"YulFunctionCall","src":"8612:29:23"},"variableNames":[{"name":"high","nativeSrc":"8604:4:23","nodeType":"YulIdentifier","src":"8604:4:23"}]},{"nativeSrc":"8658:26:23","nodeType":"YulAssignment","src":"8658:26:23","value":{"arguments":[{"name":"low","nativeSrc":"8669:3:23","nodeType":"YulIdentifier","src":"8669:3:23"},{"name":"remainder","nativeSrc":"8674:9:23","nodeType":"YulIdentifier","src":"8674:9:23"}],"functionName":{"name":"sub","nativeSrc":"8665:3:23","nodeType":"YulIdentifier","src":"8665:3:23"},"nativeSrc":"8665:19:23","nodeType":"YulFunctionCall","src":"8665:19:23"},"variableNames":[{"name":"low","nativeSrc":"8658:3:23","nodeType":"YulIdentifier","src":"8658:3:23"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":4607,"isOffset":false,"isSlot":false,"src":"8510:11:23","valueSize":1},{"declaration":4613,"isOffset":false,"isSlot":false,"src":"8604:4:23","valueSize":1},{"declaration":4613,"isOffset":false,"isSlot":false,"src":"8616:4:23","valueSize":1},{"declaration":4615,"isOffset":false,"isSlot":false,"src":"8636:3:23","valueSize":1},{"declaration":4615,"isOffset":false,"isSlot":false,"src":"8658:3:23","valueSize":1},{"declaration":4615,"isOffset":false,"isSlot":false,"src":"8669:3:23","valueSize":1},{"declaration":4650,"isOffset":false,"isSlot":false,"src":"8484:9:23","valueSize":1},{"declaration":4650,"isOffset":false,"isSlot":false,"src":"8625:9:23","valueSize":1},{"declaration":4650,"isOffset":false,"isSlot":false,"src":"8674:9:23","valueSize":1},{"declaration":4603,"isOffset":false,"isSlot":false,"src":"8504:1:23","valueSize":1},{"declaration":4605,"isOffset":false,"isSlot":false,"src":"8507:1:23","valueSize":1}],"flags":["memory-safe"],"id":4652,"nodeType":"InlineAssembly","src":"8390:308:23"},{"assignments":[4654],"declarations":[{"constant":false,"id":4654,"mutability":"mutable","name":"twos","nameLocation":"8910:4:23","nodeType":"VariableDeclaration","scope":4734,"src":"8902:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4653,"name":"uint256","nodeType":"ElementaryTypeName","src":"8902:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4661,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4655,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4607,"src":"8917:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4658,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"30","id":4656,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8932:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":4657,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4607,"src":"8936:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8932:15:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4659,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8931:17:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8917:31:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8902:46:23"},{"AST":{"nativeSrc":"8987:359:23","nodeType":"YulBlock","src":"8987:359:23","statements":[{"nativeSrc":"9052:37:23","nodeType":"YulAssignment","src":"9052:37:23","value":{"arguments":[{"name":"denominator","nativeSrc":"9071:11:23","nodeType":"YulIdentifier","src":"9071:11:23"},{"name":"twos","nativeSrc":"9084:4:23","nodeType":"YulIdentifier","src":"9084:4:23"}],"functionName":{"name":"div","nativeSrc":"9067:3:23","nodeType":"YulIdentifier","src":"9067:3:23"},"nativeSrc":"9067:22:23","nodeType":"YulFunctionCall","src":"9067:22:23"},"variableNames":[{"name":"denominator","nativeSrc":"9052:11:23","nodeType":"YulIdentifier","src":"9052:11:23"}]},{"nativeSrc":"9153:21:23","nodeType":"YulAssignment","src":"9153:21:23","value":{"arguments":[{"name":"low","nativeSrc":"9164:3:23","nodeType":"YulIdentifier","src":"9164:3:23"},{"name":"twos","nativeSrc":"9169:4:23","nodeType":"YulIdentifier","src":"9169:4:23"}],"functionName":{"name":"div","nativeSrc":"9160:3:23","nodeType":"YulIdentifier","src":"9160:3:23"},"nativeSrc":"9160:14:23","nodeType":"YulFunctionCall","src":"9160:14:23"},"variableNames":[{"name":"low","nativeSrc":"9153:3:23","nodeType":"YulIdentifier","src":"9153:3:23"}]},{"nativeSrc":"9293:39:23","nodeType":"YulAssignment","src":"9293:39:23","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9313:1:23","nodeType":"YulLiteral","src":"9313:1:23","type":"","value":"0"},{"name":"twos","nativeSrc":"9316:4:23","nodeType":"YulIdentifier","src":"9316:4:23"}],"functionName":{"name":"sub","nativeSrc":"9309:3:23","nodeType":"YulIdentifier","src":"9309:3:23"},"nativeSrc":"9309:12:23","nodeType":"YulFunctionCall","src":"9309:12:23"},{"name":"twos","nativeSrc":"9323:4:23","nodeType":"YulIdentifier","src":"9323:4:23"}],"functionName":{"name":"div","nativeSrc":"9305:3:23","nodeType":"YulIdentifier","src":"9305:3:23"},"nativeSrc":"9305:23:23","nodeType":"YulFunctionCall","src":"9305:23:23"},{"kind":"number","nativeSrc":"9330:1:23","nodeType":"YulLiteral","src":"9330:1:23","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"9301:3:23","nodeType":"YulIdentifier","src":"9301:3:23"},"nativeSrc":"9301:31:23","nodeType":"YulFunctionCall","src":"9301:31:23"},"variableNames":[{"name":"twos","nativeSrc":"9293:4:23","nodeType":"YulIdentifier","src":"9293:4:23"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":4607,"isOffset":false,"isSlot":false,"src":"9052:11:23","valueSize":1},{"declaration":4607,"isOffset":false,"isSlot":false,"src":"9071:11:23","valueSize":1},{"declaration":4615,"isOffset":false,"isSlot":false,"src":"9153:3:23","valueSize":1},{"declaration":4615,"isOffset":false,"isSlot":false,"src":"9164:3:23","valueSize":1},{"declaration":4654,"isOffset":false,"isSlot":false,"src":"9084:4:23","valueSize":1},{"declaration":4654,"isOffset":false,"isSlot":false,"src":"9169:4:23","valueSize":1},{"declaration":4654,"isOffset":false,"isSlot":false,"src":"9293:4:23","valueSize":1},{"declaration":4654,"isOffset":false,"isSlot":false,"src":"9316:4:23","valueSize":1},{"declaration":4654,"isOffset":false,"isSlot":false,"src":"9323:4:23","valueSize":1}],"flags":["memory-safe"],"id":4662,"nodeType":"InlineAssembly","src":"8962:384:23"},{"expression":{"id":4667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4663,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4615,"src":"9409:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4664,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4613,"src":"9416:4:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4665,"name":"twos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4654,"src":"9423:4:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9416:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9409:18:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4668,"nodeType":"ExpressionStatement","src":"9409:18:23"},{"assignments":[4670],"declarations":[{"constant":false,"id":4670,"mutability":"mutable","name":"inverse","nameLocation":"9770:7:23","nodeType":"VariableDeclaration","scope":4734,"src":"9762:15:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4669,"name":"uint256","nodeType":"ElementaryTypeName","src":"9762:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4677,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":4671,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9781:1:23","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4672,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4607,"src":"9785:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9781:15:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4674,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9780:17:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"hexValue":"32","id":4675,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9800:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"9780:21:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9762:39:23"},{"expression":{"id":4684,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4678,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4670,"src":"10018:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":4679,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10029:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4680,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4607,"src":"10033:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4681,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4670,"src":"10047:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10033:21:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10029:25:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10018:36:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4685,"nodeType":"ExpressionStatement","src":"10018:36:23"},{"expression":{"id":4692,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4686,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4670,"src":"10088:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":4687,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10099:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4690,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4688,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4607,"src":"10103:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4689,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4670,"src":"10117:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10103:21:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10099:25:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10088:36:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4693,"nodeType":"ExpressionStatement","src":"10088:36:23"},{"expression":{"id":4700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4694,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4670,"src":"10160:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":4695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10171:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4696,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4607,"src":"10175:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4697,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4670,"src":"10189:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10175:21:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10171:25:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10160:36:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4701,"nodeType":"ExpressionStatement","src":"10160:36:23"},{"expression":{"id":4708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4702,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4670,"src":"10231:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":4703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10242:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4704,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4607,"src":"10246:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4705,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4670,"src":"10260:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10246:21:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10242:25:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10231:36:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4709,"nodeType":"ExpressionStatement","src":"10231:36:23"},{"expression":{"id":4716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4710,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4670,"src":"10304:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4715,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":4711,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10315:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4712,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4607,"src":"10319:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4713,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4670,"src":"10333:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10319:21:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10315:25:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10304:36:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4717,"nodeType":"ExpressionStatement","src":"10304:36:23"},{"expression":{"id":4724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4718,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4670,"src":"10378:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":4719,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10389:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4720,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4607,"src":"10393:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4721,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4670,"src":"10407:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10393:21:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10389:25:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10378:36:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4725,"nodeType":"ExpressionStatement","src":"10378:36:23"},{"expression":{"id":4730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4726,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4610,"src":"10859:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4727,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4615,"src":"10868:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4728,"name":"inverse","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4670,"src":"10874:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10868:13:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10859:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4731,"nodeType":"ExpressionStatement","src":"10859:22:23"},{"expression":{"id":4732,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4610,"src":"10902:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4611,"id":4733,"nodeType":"Return","src":"10895:13:23"}]}]},"documentation":{"id":4601,"nodeType":"StructuredDocumentation","src":"6925:312:23","text":" @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or\n denominator == 0.\n Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by\n Uniswap Labs also under MIT license."},"id":4736,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"7251:6:23","nodeType":"FunctionDefinition","parameters":{"id":4608,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4603,"mutability":"mutable","name":"x","nameLocation":"7266:1:23","nodeType":"VariableDeclaration","scope":4736,"src":"7258:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4602,"name":"uint256","nodeType":"ElementaryTypeName","src":"7258:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4605,"mutability":"mutable","name":"y","nameLocation":"7277:1:23","nodeType":"VariableDeclaration","scope":4736,"src":"7269:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4604,"name":"uint256","nodeType":"ElementaryTypeName","src":"7269:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4607,"mutability":"mutable","name":"denominator","nameLocation":"7288:11:23","nodeType":"VariableDeclaration","scope":4736,"src":"7280:19:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4606,"name":"uint256","nodeType":"ElementaryTypeName","src":"7280:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7257:43:23"},"returnParameters":{"id":4611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4610,"mutability":"mutable","name":"result","nameLocation":"7332:6:23","nodeType":"VariableDeclaration","scope":4736,"src":"7324:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4609,"name":"uint256","nodeType":"ElementaryTypeName","src":"7324:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7323:16:23"},"scope":5830,"src":"7242:3683:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4772,"nodeType":"Block","src":"11164:128:23","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":4752,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4739,"src":"11188:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4753,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4741,"src":"11191:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4754,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4743,"src":"11194:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4751,"name":"mulDiv","nodeType":"Identifier","overloadedDeclarations":[4736,4773],"referencedDeclaration":4736,"src":"11181:6:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":4755,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11181:25:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4768,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":4759,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4746,"src":"11242:8:23","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}],"id":4758,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5829,"src":"11225:16:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$4221_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":4760,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11225:26:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":4762,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4739,"src":"11262:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4763,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4741,"src":"11265:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4764,"name":"denominator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4743,"src":"11268:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4761,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"11255:6:23","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":4765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11255:25:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4766,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11283:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11255:29:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11225:59:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":4756,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"11209:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":4757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11218:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"11209:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":4769,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11209:76:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11181:104:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4750,"id":4771,"nodeType":"Return","src":"11174:111:23"}]},"documentation":{"id":4737,"nodeType":"StructuredDocumentation","src":"10931:118:23","text":" @dev Calculates x * y / denominator with full precision, following the selected rounding direction."},"id":4773,"implemented":true,"kind":"function","modifiers":[],"name":"mulDiv","nameLocation":"11063:6:23","nodeType":"FunctionDefinition","parameters":{"id":4747,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4739,"mutability":"mutable","name":"x","nameLocation":"11078:1:23","nodeType":"VariableDeclaration","scope":4773,"src":"11070:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4738,"name":"uint256","nodeType":"ElementaryTypeName","src":"11070:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4741,"mutability":"mutable","name":"y","nameLocation":"11089:1:23","nodeType":"VariableDeclaration","scope":4773,"src":"11081:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4740,"name":"uint256","nodeType":"ElementaryTypeName","src":"11081:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4743,"mutability":"mutable","name":"denominator","nameLocation":"11100:11:23","nodeType":"VariableDeclaration","scope":4773,"src":"11092:19:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4742,"name":"uint256","nodeType":"ElementaryTypeName","src":"11092:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4746,"mutability":"mutable","name":"rounding","nameLocation":"11122:8:23","nodeType":"VariableDeclaration","scope":4773,"src":"11113:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"},"typeName":{"id":4745,"nodeType":"UserDefinedTypeName","pathNode":{"id":4744,"name":"Rounding","nameLocations":["11113:8:23"],"nodeType":"IdentifierPath","referencedDeclaration":4221,"src":"11113:8:23"},"referencedDeclaration":4221,"src":"11113:8:23","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"11069:62:23"},"returnParameters":{"id":4750,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4749,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4773,"src":"11155:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4748,"name":"uint256","nodeType":"ElementaryTypeName","src":"11155:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11154:9:23"},"scope":5830,"src":"11054:238:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4822,"nodeType":"Block","src":"11500:245:23","statements":[{"id":4821,"nodeType":"UncheckedBlock","src":"11510:229:23","statements":[{"assignments":[4786,4788],"declarations":[{"constant":false,"id":4786,"mutability":"mutable","name":"high","nameLocation":"11543:4:23","nodeType":"VariableDeclaration","scope":4821,"src":"11535:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4785,"name":"uint256","nodeType":"ElementaryTypeName","src":"11535:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4788,"mutability":"mutable","name":"low","nameLocation":"11557:3:23","nodeType":"VariableDeclaration","scope":4821,"src":"11549:11:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4787,"name":"uint256","nodeType":"ElementaryTypeName","src":"11549:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4793,"initialValue":{"arguments":[{"id":4790,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4776,"src":"11571:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4791,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4778,"src":"11574:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4789,"name":"mul512","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4249,"src":"11564:6:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256,uint256)"}},"id":4792,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11564:12:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"11534:42:23"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4794,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4786,"src":"11594:4:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":4795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11602:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":4796,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4780,"src":"11607:1:23","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11602:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11594:14:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4807,"nodeType":"IfStatement","src":"11590:86:23","trueBody":{"id":4806,"nodeType":"Block","src":"11610:66:23","statements":[{"expression":{"arguments":[{"expression":{"id":4802,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1769,"src":"11640:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$1769_$","typeString":"type(library Panic)"}},"id":4803,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11646:14:23","memberName":"UNDER_OVERFLOW","nodeType":"MemberAccess","referencedDeclaration":1732,"src":"11640:20:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4799,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1769,"src":"11628:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$1769_$","typeString":"type(library Panic)"}},"id":4801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11634:5:23","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":1768,"src":"11628:11:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":4804,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11628:33:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4805,"nodeType":"ExpressionStatement","src":"11628:33:23"}]}},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4819,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4808,"name":"high","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4786,"src":"11697:4:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":4811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"323536","id":4809,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11706:3:23","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"value":"256"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":4810,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4780,"src":"11712:1:23","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11706:7:23","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"id":4812,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11705:9:23","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"11697:17:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4814,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11696:19:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4815,"name":"low","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4788,"src":"11719:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":4816,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4780,"src":"11726:1:23","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11719:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4818,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11718:10:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11696:32:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4784,"id":4820,"nodeType":"Return","src":"11689:39:23"}]}]},"documentation":{"id":4774,"nodeType":"StructuredDocumentation","src":"11298:111:23","text":" @dev Calculates floor(x * y >> n) with full precision. Throws if result overflows a uint256."},"id":4823,"implemented":true,"kind":"function","modifiers":[],"name":"mulShr","nameLocation":"11423:6:23","nodeType":"FunctionDefinition","parameters":{"id":4781,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4776,"mutability":"mutable","name":"x","nameLocation":"11438:1:23","nodeType":"VariableDeclaration","scope":4823,"src":"11430:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4775,"name":"uint256","nodeType":"ElementaryTypeName","src":"11430:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4778,"mutability":"mutable","name":"y","nameLocation":"11449:1:23","nodeType":"VariableDeclaration","scope":4823,"src":"11441:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4777,"name":"uint256","nodeType":"ElementaryTypeName","src":"11441:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4780,"mutability":"mutable","name":"n","nameLocation":"11458:1:23","nodeType":"VariableDeclaration","scope":4823,"src":"11452:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4779,"name":"uint8","nodeType":"ElementaryTypeName","src":"11452:5:23","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"11429:31:23"},"returnParameters":{"id":4784,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4783,"mutability":"mutable","name":"result","nameLocation":"11492:6:23","nodeType":"VariableDeclaration","scope":4823,"src":"11484:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4782,"name":"uint256","nodeType":"ElementaryTypeName","src":"11484:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11483:16:23"},"scope":5830,"src":"11414:331:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4861,"nodeType":"Block","src":"11963:113:23","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":4839,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4826,"src":"11987:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4840,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4828,"src":"11990:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4841,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4830,"src":"11993:1:23","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":4838,"name":"mulShr","nodeType":"Identifier","overloadedDeclarations":[4823,4862],"referencedDeclaration":4823,"src":"11980:6:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint8_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint8) pure returns (uint256)"}},"id":4842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11980:15:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4857,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":4846,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4833,"src":"12031:8:23","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}],"id":4845,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5829,"src":"12014:16:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$4221_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":4847,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12014:26:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":4849,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4826,"src":"12051:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4850,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4828,"src":"12054:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":4851,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12057:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":4852,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4830,"src":"12062:1:23","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"12057:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4848,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"12044:6:23","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":4854,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12044:20:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":4855,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12067:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12044:24:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12014:54:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":4843,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"11998:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":4844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12007:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"11998:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":4858,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11998:71:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11980:89:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4837,"id":4860,"nodeType":"Return","src":"11973:96:23"}]},"documentation":{"id":4824,"nodeType":"StructuredDocumentation","src":"11751:109:23","text":" @dev Calculates x * y >> n with full precision, following the selected rounding direction."},"id":4862,"implemented":true,"kind":"function","modifiers":[],"name":"mulShr","nameLocation":"11874:6:23","nodeType":"FunctionDefinition","parameters":{"id":4834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4826,"mutability":"mutable","name":"x","nameLocation":"11889:1:23","nodeType":"VariableDeclaration","scope":4862,"src":"11881:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4825,"name":"uint256","nodeType":"ElementaryTypeName","src":"11881:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4828,"mutability":"mutable","name":"y","nameLocation":"11900:1:23","nodeType":"VariableDeclaration","scope":4862,"src":"11892:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4827,"name":"uint256","nodeType":"ElementaryTypeName","src":"11892:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4830,"mutability":"mutable","name":"n","nameLocation":"11909:1:23","nodeType":"VariableDeclaration","scope":4862,"src":"11903:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4829,"name":"uint8","nodeType":"ElementaryTypeName","src":"11903:5:23","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":4833,"mutability":"mutable","name":"rounding","nameLocation":"11921:8:23","nodeType":"VariableDeclaration","scope":4862,"src":"11912:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"},"typeName":{"id":4832,"nodeType":"UserDefinedTypeName","pathNode":{"id":4831,"name":"Rounding","nameLocations":["11912:8:23"],"nodeType":"IdentifierPath","referencedDeclaration":4221,"src":"11912:8:23"},"referencedDeclaration":4221,"src":"11912:8:23","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"11880:50:23"},"returnParameters":{"id":4837,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4836,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4862,"src":"11954:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4835,"name":"uint256","nodeType":"ElementaryTypeName","src":"11954:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11953:9:23"},"scope":5830,"src":"11865:211:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4958,"nodeType":"Block","src":"12710:1849:23","statements":[{"id":4957,"nodeType":"UncheckedBlock","src":"12720:1833:23","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4872,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4867,"src":"12748:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4873,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12753:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12748:6:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4877,"nodeType":"IfStatement","src":"12744:20:23","trueBody":{"expression":{"hexValue":"30","id":4875,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12763:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":4871,"id":4876,"nodeType":"Return","src":"12756:8:23"}},{"assignments":[4879],"declarations":[{"constant":false,"id":4879,"mutability":"mutable","name":"remainder","nameLocation":"13243:9:23","nodeType":"VariableDeclaration","scope":4957,"src":"13235:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4878,"name":"uint256","nodeType":"ElementaryTypeName","src":"13235:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4883,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4880,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4865,"src":"13255:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"id":4881,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4867,"src":"13259:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13255:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13235:25:23"},{"assignments":[4885],"declarations":[{"constant":false,"id":4885,"mutability":"mutable","name":"gcd","nameLocation":"13282:3:23","nodeType":"VariableDeclaration","scope":4957,"src":"13274:11:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4884,"name":"uint256","nodeType":"ElementaryTypeName","src":"13274:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4887,"initialValue":{"id":4886,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4867,"src":"13288:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13274:15:23"},{"assignments":[4889],"declarations":[{"constant":false,"id":4889,"mutability":"mutable","name":"x","nameLocation":"13432:1:23","nodeType":"VariableDeclaration","scope":4957,"src":"13425:8:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4888,"name":"int256","nodeType":"ElementaryTypeName","src":"13425:6:23","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":4891,"initialValue":{"hexValue":"30","id":4890,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13436:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"13425:12:23"},{"assignments":[4893],"declarations":[{"constant":false,"id":4893,"mutability":"mutable","name":"y","nameLocation":"13458:1:23","nodeType":"VariableDeclaration","scope":4957,"src":"13451:8:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4892,"name":"int256","nodeType":"ElementaryTypeName","src":"13451:6:23","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":4895,"initialValue":{"hexValue":"31","id":4894,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13462:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"13451:12:23"},{"body":{"id":4932,"nodeType":"Block","src":"13501:882:23","statements":[{"assignments":[4900],"declarations":[{"constant":false,"id":4900,"mutability":"mutable","name":"quotient","nameLocation":"13527:8:23","nodeType":"VariableDeclaration","scope":4932,"src":"13519:16:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4899,"name":"uint256","nodeType":"ElementaryTypeName","src":"13519:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4904,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4901,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4885,"src":"13538:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":4902,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4879,"src":"13544:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13538:15:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13519:34:23"},{"expression":{"id":4915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":4905,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4885,"src":"13573:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4906,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4879,"src":"13578:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4907,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"13572:16:23","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":4908,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4879,"src":"13678:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4913,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4909,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4885,"src":"13923:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4910,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4879,"src":"13929:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4911,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4900,"src":"13941:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13929:20:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13923:26:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4914,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13591:376:23","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"src":"13572:395:23","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4916,"nodeType":"ExpressionStatement","src":"13572:395:23"},{"expression":{"id":4930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":4917,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4889,"src":"13987:1:23","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":4918,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4893,"src":"13990:1:23","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":4919,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"13986:6:23","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":4920,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4893,"src":"14072:1:23","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4921,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4889,"src":"14326:1:23","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4927,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4922,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4893,"src":"14330:1:23","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":4925,"name":"quotient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4900,"src":"14341:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4924,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14334:6:23","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":4923,"name":"int256","nodeType":"ElementaryTypeName","src":"14334:6:23","typeDescriptions":{}}},"id":4926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14334:16:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"14330:20:23","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"14326:24:23","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":4929,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13995:373:23","typeDescriptions":{"typeIdentifier":"t_tuple$_t_int256_$_t_int256_$","typeString":"tuple(int256,int256)"}},"src":"13986:382:23","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4931,"nodeType":"ExpressionStatement","src":"13986:382:23"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4898,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4896,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4879,"src":"13485:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":4897,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13498:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13485:14:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4933,"nodeType":"WhileStatement","src":"13478:905:23"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4934,"name":"gcd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4885,"src":"14401:3:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"31","id":4935,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14408:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"14401:8:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4939,"nodeType":"IfStatement","src":"14397:22:23","trueBody":{"expression":{"hexValue":"30","id":4937,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14418:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":4871,"id":4938,"nodeType":"Return","src":"14411:8:23"}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4941,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4889,"src":"14470:1:23","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":4942,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14474:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14470:5:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4944,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4867,"src":"14477:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":4948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"14489:2:23","subExpression":{"id":4947,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4889,"src":"14490:1:23","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4946,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14481:7:23","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4945,"name":"uint256","nodeType":"ElementaryTypeName","src":"14481:7:23","typeDescriptions":{}}},"id":4949,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14481:11:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14477:15:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":4953,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4889,"src":"14502:1:23","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4952,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14494:7:23","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4951,"name":"uint256","nodeType":"ElementaryTypeName","src":"14494:7:23","typeDescriptions":{}}},"id":4954,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14494:10:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4940,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4498,"src":"14462:7:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (bool,uint256,uint256) pure returns (uint256)"}},"id":4955,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14462:43:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4871,"id":4956,"nodeType":"Return","src":"14455:50:23"}]}]},"documentation":{"id":4863,"nodeType":"StructuredDocumentation","src":"12082:553:23","text":" @dev Calculate the modular multiplicative inverse of a number in Z/nZ.\n If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.\n If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.\n If the input value is not inversible, 0 is returned.\n NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the\n inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}."},"id":4959,"implemented":true,"kind":"function","modifiers":[],"name":"invMod","nameLocation":"12649:6:23","nodeType":"FunctionDefinition","parameters":{"id":4868,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4865,"mutability":"mutable","name":"a","nameLocation":"12664:1:23","nodeType":"VariableDeclaration","scope":4959,"src":"12656:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4864,"name":"uint256","nodeType":"ElementaryTypeName","src":"12656:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4867,"mutability":"mutable","name":"n","nameLocation":"12675:1:23","nodeType":"VariableDeclaration","scope":4959,"src":"12667:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4866,"name":"uint256","nodeType":"ElementaryTypeName","src":"12667:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12655:22:23"},"returnParameters":{"id":4871,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4870,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4959,"src":"12701:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4869,"name":"uint256","nodeType":"ElementaryTypeName","src":"12701:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12700:9:23"},"scope":5830,"src":"12640:1919:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4979,"nodeType":"Block","src":"15159:82:23","statements":[{"id":4978,"nodeType":"UncheckedBlock","src":"15169:66:23","statements":[{"expression":{"arguments":[{"id":4971,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4962,"src":"15212:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4972,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4964,"src":"15215:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"32","id":4973,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15219:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"15215:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4975,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4964,"src":"15222:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4969,"name":"Math","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5830,"src":"15200:4:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Math_$5830_$","typeString":"type(library Math)"}},"id":4970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15205:6:23","memberName":"modExp","nodeType":"MemberAccess","referencedDeclaration":5016,"src":"15200:11:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) view returns (uint256)"}},"id":4976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15200:24:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4968,"id":4977,"nodeType":"Return","src":"15193:31:23"}]}]},"documentation":{"id":4960,"nodeType":"StructuredDocumentation","src":"14565:514:23","text":" @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.\n From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is\n prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that\n `a**(p-2)` is the modular multiplicative inverse of a in Fp.\n NOTE: this function does NOT check that `p` is a prime greater than `2`."},"id":4980,"implemented":true,"kind":"function","modifiers":[],"name":"invModPrime","nameLocation":"15093:11:23","nodeType":"FunctionDefinition","parameters":{"id":4965,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4962,"mutability":"mutable","name":"a","nameLocation":"15113:1:23","nodeType":"VariableDeclaration","scope":4980,"src":"15105:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4961,"name":"uint256","nodeType":"ElementaryTypeName","src":"15105:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4964,"mutability":"mutable","name":"p","nameLocation":"15124:1:23","nodeType":"VariableDeclaration","scope":4980,"src":"15116:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4963,"name":"uint256","nodeType":"ElementaryTypeName","src":"15116:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15104:22:23"},"returnParameters":{"id":4968,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4967,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4980,"src":"15150:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4966,"name":"uint256","nodeType":"ElementaryTypeName","src":"15150:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15149:9:23"},"scope":5830,"src":"15084:157:23","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5015,"nodeType":"Block","src":"16011:174:23","statements":[{"assignments":[4993,4995],"declarations":[{"constant":false,"id":4993,"mutability":"mutable","name":"success","nameLocation":"16027:7:23","nodeType":"VariableDeclaration","scope":5015,"src":"16022:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4992,"name":"bool","nodeType":"ElementaryTypeName","src":"16022:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":4995,"mutability":"mutable","name":"result","nameLocation":"16044:6:23","nodeType":"VariableDeclaration","scope":5015,"src":"16036:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4994,"name":"uint256","nodeType":"ElementaryTypeName","src":"16036:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5001,"initialValue":{"arguments":[{"id":4997,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4983,"src":"16064:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4998,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4985,"src":"16067:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4999,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4987,"src":"16070:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4996,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[5040,5122],"referencedDeclaration":5040,"src":"16054:9:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_bool_$_t_uint256_$","typeString":"function (uint256,uint256,uint256) view returns (bool,uint256)"}},"id":5000,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16054:18:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"16021:51:23"},{"condition":{"id":5003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16086:8:23","subExpression":{"id":5002,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4993,"src":"16087:7:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5012,"nodeType":"IfStatement","src":"16082:74:23","trueBody":{"id":5011,"nodeType":"Block","src":"16096:60:23","statements":[{"expression":{"arguments":[{"expression":{"id":5007,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1769,"src":"16122:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$1769_$","typeString":"type(library Panic)"}},"id":5008,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16128:16:23","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":1736,"src":"16122:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5004,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1769,"src":"16110:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$1769_$","typeString":"type(library Panic)"}},"id":5006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16116:5:23","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":1768,"src":"16110:11:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":5009,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16110:35:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5010,"nodeType":"ExpressionStatement","src":"16110:35:23"}]}},{"expression":{"id":5013,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4995,"src":"16172:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4991,"id":5014,"nodeType":"Return","src":"16165:13:23"}]},"documentation":{"id":4981,"nodeType":"StructuredDocumentation","src":"15247:678:23","text":" @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)\n Requirements:\n - modulus can't be zero\n - underlying staticcall to precompile must succeed\n IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make\n sure the chain you're using it on supports the precompiled contract for modular exponentiation\n at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,\n the underlying function will succeed given the lack of a revert, but the result may be incorrectly\n interpreted as 0."},"id":5016,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"15939:6:23","nodeType":"FunctionDefinition","parameters":{"id":4988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4983,"mutability":"mutable","name":"b","nameLocation":"15954:1:23","nodeType":"VariableDeclaration","scope":5016,"src":"15946:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4982,"name":"uint256","nodeType":"ElementaryTypeName","src":"15946:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4985,"mutability":"mutable","name":"e","nameLocation":"15965:1:23","nodeType":"VariableDeclaration","scope":5016,"src":"15957:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4984,"name":"uint256","nodeType":"ElementaryTypeName","src":"15957:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4987,"mutability":"mutable","name":"m","nameLocation":"15976:1:23","nodeType":"VariableDeclaration","scope":5016,"src":"15968:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4986,"name":"uint256","nodeType":"ElementaryTypeName","src":"15968:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15945:33:23"},"returnParameters":{"id":4991,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4990,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5016,"src":"16002:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4989,"name":"uint256","nodeType":"ElementaryTypeName","src":"16002:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16001:9:23"},"scope":5830,"src":"15930:255:23","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5039,"nodeType":"Block","src":"17039:1493:23","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5030,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5023,"src":"17053:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":5031,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17058:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17053:6:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5037,"nodeType":"IfStatement","src":"17049:29:23","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":5033,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"17069:5:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"hexValue":"30","id":5034,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17076:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":5035,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"17068:10:23","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_rational_0_by_1_$","typeString":"tuple(bool,int_const 0)"}},"functionReturnParameters":5029,"id":5036,"nodeType":"Return","src":"17061:17:23"}},{"AST":{"nativeSrc":"17113:1413:23","nodeType":"YulBlock","src":"17113:1413:23","statements":[{"nativeSrc":"17127:22:23","nodeType":"YulVariableDeclaration","src":"17127:22:23","value":{"arguments":[{"kind":"number","nativeSrc":"17144:4:23","nodeType":"YulLiteral","src":"17144:4:23","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"17138:5:23","nodeType":"YulIdentifier","src":"17138:5:23"},"nativeSrc":"17138:11:23","nodeType":"YulFunctionCall","src":"17138:11:23"},"variables":[{"name":"ptr","nativeSrc":"17131:3:23","nodeType":"YulTypedName","src":"17131:3:23","type":""}]},{"expression":{"arguments":[{"name":"ptr","nativeSrc":"18057:3:23","nodeType":"YulIdentifier","src":"18057:3:23"},{"kind":"number","nativeSrc":"18062:4:23","nodeType":"YulLiteral","src":"18062:4:23","type":"","value":"0x20"}],"functionName":{"name":"mstore","nativeSrc":"18050:6:23","nodeType":"YulIdentifier","src":"18050:6:23"},"nativeSrc":"18050:17:23","nodeType":"YulFunctionCall","src":"18050:17:23"},"nativeSrc":"18050:17:23","nodeType":"YulExpressionStatement","src":"18050:17:23"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"18091:3:23","nodeType":"YulIdentifier","src":"18091:3:23"},{"kind":"number","nativeSrc":"18096:4:23","nodeType":"YulLiteral","src":"18096:4:23","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"18087:3:23","nodeType":"YulIdentifier","src":"18087:3:23"},"nativeSrc":"18087:14:23","nodeType":"YulFunctionCall","src":"18087:14:23"},{"kind":"number","nativeSrc":"18103:4:23","nodeType":"YulLiteral","src":"18103:4:23","type":"","value":"0x20"}],"functionName":{"name":"mstore","nativeSrc":"18080:6:23","nodeType":"YulIdentifier","src":"18080:6:23"},"nativeSrc":"18080:28:23","nodeType":"YulFunctionCall","src":"18080:28:23"},"nativeSrc":"18080:28:23","nodeType":"YulExpressionStatement","src":"18080:28:23"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"18132:3:23","nodeType":"YulIdentifier","src":"18132:3:23"},{"kind":"number","nativeSrc":"18137:4:23","nodeType":"YulLiteral","src":"18137:4:23","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"18128:3:23","nodeType":"YulIdentifier","src":"18128:3:23"},"nativeSrc":"18128:14:23","nodeType":"YulFunctionCall","src":"18128:14:23"},{"kind":"number","nativeSrc":"18144:4:23","nodeType":"YulLiteral","src":"18144:4:23","type":"","value":"0x20"}],"functionName":{"name":"mstore","nativeSrc":"18121:6:23","nodeType":"YulIdentifier","src":"18121:6:23"},"nativeSrc":"18121:28:23","nodeType":"YulFunctionCall","src":"18121:28:23"},"nativeSrc":"18121:28:23","nodeType":"YulExpressionStatement","src":"18121:28:23"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"18173:3:23","nodeType":"YulIdentifier","src":"18173:3:23"},{"kind":"number","nativeSrc":"18178:4:23","nodeType":"YulLiteral","src":"18178:4:23","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"18169:3:23","nodeType":"YulIdentifier","src":"18169:3:23"},"nativeSrc":"18169:14:23","nodeType":"YulFunctionCall","src":"18169:14:23"},{"name":"b","nativeSrc":"18185:1:23","nodeType":"YulIdentifier","src":"18185:1:23"}],"functionName":{"name":"mstore","nativeSrc":"18162:6:23","nodeType":"YulIdentifier","src":"18162:6:23"},"nativeSrc":"18162:25:23","nodeType":"YulFunctionCall","src":"18162:25:23"},"nativeSrc":"18162:25:23","nodeType":"YulExpressionStatement","src":"18162:25:23"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"18211:3:23","nodeType":"YulIdentifier","src":"18211:3:23"},{"kind":"number","nativeSrc":"18216:4:23","nodeType":"YulLiteral","src":"18216:4:23","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"18207:3:23","nodeType":"YulIdentifier","src":"18207:3:23"},"nativeSrc":"18207:14:23","nodeType":"YulFunctionCall","src":"18207:14:23"},{"name":"e","nativeSrc":"18223:1:23","nodeType":"YulIdentifier","src":"18223:1:23"}],"functionName":{"name":"mstore","nativeSrc":"18200:6:23","nodeType":"YulIdentifier","src":"18200:6:23"},"nativeSrc":"18200:25:23","nodeType":"YulFunctionCall","src":"18200:25:23"},"nativeSrc":"18200:25:23","nodeType":"YulExpressionStatement","src":"18200:25:23"},{"expression":{"arguments":[{"arguments":[{"name":"ptr","nativeSrc":"18249:3:23","nodeType":"YulIdentifier","src":"18249:3:23"},{"kind":"number","nativeSrc":"18254:4:23","nodeType":"YulLiteral","src":"18254:4:23","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"18245:3:23","nodeType":"YulIdentifier","src":"18245:3:23"},"nativeSrc":"18245:14:23","nodeType":"YulFunctionCall","src":"18245:14:23"},{"name":"m","nativeSrc":"18261:1:23","nodeType":"YulIdentifier","src":"18261:1:23"}],"functionName":{"name":"mstore","nativeSrc":"18238:6:23","nodeType":"YulIdentifier","src":"18238:6:23"},"nativeSrc":"18238:25:23","nodeType":"YulFunctionCall","src":"18238:25:23"},"nativeSrc":"18238:25:23","nodeType":"YulExpressionStatement","src":"18238:25:23"},{"nativeSrc":"18425:57:23","nodeType":"YulAssignment","src":"18425:57:23","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"18447:3:23","nodeType":"YulIdentifier","src":"18447:3:23"},"nativeSrc":"18447:5:23","nodeType":"YulFunctionCall","src":"18447:5:23"},{"kind":"number","nativeSrc":"18454:4:23","nodeType":"YulLiteral","src":"18454:4:23","type":"","value":"0x05"},{"name":"ptr","nativeSrc":"18460:3:23","nodeType":"YulIdentifier","src":"18460:3:23"},{"kind":"number","nativeSrc":"18465:4:23","nodeType":"YulLiteral","src":"18465:4:23","type":"","value":"0xc0"},{"kind":"number","nativeSrc":"18471:4:23","nodeType":"YulLiteral","src":"18471:4:23","type":"","value":"0x00"},{"kind":"number","nativeSrc":"18477:4:23","nodeType":"YulLiteral","src":"18477:4:23","type":"","value":"0x20"}],"functionName":{"name":"staticcall","nativeSrc":"18436:10:23","nodeType":"YulIdentifier","src":"18436:10:23"},"nativeSrc":"18436:46:23","nodeType":"YulFunctionCall","src":"18436:46:23"},"variableNames":[{"name":"success","nativeSrc":"18425:7:23","nodeType":"YulIdentifier","src":"18425:7:23"}]},{"nativeSrc":"18495:21:23","nodeType":"YulAssignment","src":"18495:21:23","value":{"arguments":[{"kind":"number","nativeSrc":"18511:4:23","nodeType":"YulLiteral","src":"18511:4:23","type":"","value":"0x00"}],"functionName":{"name":"mload","nativeSrc":"18505:5:23","nodeType":"YulIdentifier","src":"18505:5:23"},"nativeSrc":"18505:11:23","nodeType":"YulFunctionCall","src":"18505:11:23"},"variableNames":[{"name":"result","nativeSrc":"18495:6:23","nodeType":"YulIdentifier","src":"18495:6:23"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":5019,"isOffset":false,"isSlot":false,"src":"18185:1:23","valueSize":1},{"declaration":5021,"isOffset":false,"isSlot":false,"src":"18223:1:23","valueSize":1},{"declaration":5023,"isOffset":false,"isSlot":false,"src":"18261:1:23","valueSize":1},{"declaration":5028,"isOffset":false,"isSlot":false,"src":"18495:6:23","valueSize":1},{"declaration":5026,"isOffset":false,"isSlot":false,"src":"18425:7:23","valueSize":1}],"flags":["memory-safe"],"id":5038,"nodeType":"InlineAssembly","src":"17088:1438:23"}]},"documentation":{"id":5017,"nodeType":"StructuredDocumentation","src":"16191:738:23","text":" @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).\n It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying\n to operate modulo 0 or if the underlying precompile reverted.\n IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain\n you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in\n https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack\n of a revert, but the result may be incorrectly interpreted as 0."},"id":5040,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"16943:9:23","nodeType":"FunctionDefinition","parameters":{"id":5024,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5019,"mutability":"mutable","name":"b","nameLocation":"16961:1:23","nodeType":"VariableDeclaration","scope":5040,"src":"16953:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5018,"name":"uint256","nodeType":"ElementaryTypeName","src":"16953:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5021,"mutability":"mutable","name":"e","nameLocation":"16972:1:23","nodeType":"VariableDeclaration","scope":5040,"src":"16964:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5020,"name":"uint256","nodeType":"ElementaryTypeName","src":"16964:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5023,"mutability":"mutable","name":"m","nameLocation":"16983:1:23","nodeType":"VariableDeclaration","scope":5040,"src":"16975:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5022,"name":"uint256","nodeType":"ElementaryTypeName","src":"16975:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16952:33:23"},"returnParameters":{"id":5029,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5026,"mutability":"mutable","name":"success","nameLocation":"17014:7:23","nodeType":"VariableDeclaration","scope":5040,"src":"17009:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5025,"name":"bool","nodeType":"ElementaryTypeName","src":"17009:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5028,"mutability":"mutable","name":"result","nameLocation":"17031:6:23","nodeType":"VariableDeclaration","scope":5040,"src":"17023:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5027,"name":"uint256","nodeType":"ElementaryTypeName","src":"17023:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17008:30:23"},"scope":5830,"src":"16934:1598:23","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5075,"nodeType":"Block","src":"18729:179:23","statements":[{"assignments":[5053,5055],"declarations":[{"constant":false,"id":5053,"mutability":"mutable","name":"success","nameLocation":"18745:7:23","nodeType":"VariableDeclaration","scope":5075,"src":"18740:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5052,"name":"bool","nodeType":"ElementaryTypeName","src":"18740:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5055,"mutability":"mutable","name":"result","nameLocation":"18767:6:23","nodeType":"VariableDeclaration","scope":5075,"src":"18754:19:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5054,"name":"bytes","nodeType":"ElementaryTypeName","src":"18754:5:23","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":5061,"initialValue":{"arguments":[{"id":5057,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5043,"src":"18787:1:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":5058,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5045,"src":"18790:1:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":5059,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5047,"src":"18793:1:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":5056,"name":"tryModExp","nodeType":"Identifier","overloadedDeclarations":[5040,5122],"referencedDeclaration":5122,"src":"18777:9:23","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$","typeString":"function (bytes memory,bytes memory,bytes memory) view returns (bool,bytes memory)"}},"id":5060,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18777:18:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"18739:56:23"},{"condition":{"id":5063,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"18809:8:23","subExpression":{"id":5062,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5053,"src":"18810:7:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5072,"nodeType":"IfStatement","src":"18805:74:23","trueBody":{"id":5071,"nodeType":"Block","src":"18819:60:23","statements":[{"expression":{"arguments":[{"expression":{"id":5067,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1769,"src":"18845:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$1769_$","typeString":"type(library Panic)"}},"id":5068,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18851:16:23","memberName":"DIVISION_BY_ZERO","nodeType":"MemberAccess","referencedDeclaration":1736,"src":"18845:22:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5064,"name":"Panic","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1769,"src":"18833:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Panic_$1769_$","typeString":"type(library Panic)"}},"id":5066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18839:5:23","memberName":"panic","nodeType":"MemberAccess","referencedDeclaration":1768,"src":"18833:11:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$__$","typeString":"function (uint256) pure"}},"id":5069,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18833:35:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5070,"nodeType":"ExpressionStatement","src":"18833:35:23"}]}},{"expression":{"id":5073,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5055,"src":"18895:6:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":5051,"id":5074,"nodeType":"Return","src":"18888:13:23"}]},"documentation":{"id":5041,"nodeType":"StructuredDocumentation","src":"18538:85:23","text":" @dev Variant of {modExp} that supports inputs of arbitrary length."},"id":5076,"implemented":true,"kind":"function","modifiers":[],"name":"modExp","nameLocation":"18637:6:23","nodeType":"FunctionDefinition","parameters":{"id":5048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5043,"mutability":"mutable","name":"b","nameLocation":"18657:1:23","nodeType":"VariableDeclaration","scope":5076,"src":"18644:14:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5042,"name":"bytes","nodeType":"ElementaryTypeName","src":"18644:5:23","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":5045,"mutability":"mutable","name":"e","nameLocation":"18673:1:23","nodeType":"VariableDeclaration","scope":5076,"src":"18660:14:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5044,"name":"bytes","nodeType":"ElementaryTypeName","src":"18660:5:23","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":5047,"mutability":"mutable","name":"m","nameLocation":"18689:1:23","nodeType":"VariableDeclaration","scope":5076,"src":"18676:14:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5046,"name":"bytes","nodeType":"ElementaryTypeName","src":"18676:5:23","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"18643:48:23"},"returnParameters":{"id":5051,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5050,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5076,"src":"18715:12:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5049,"name":"bytes","nodeType":"ElementaryTypeName","src":"18715:5:23","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"18714:14:23"},"scope":5830,"src":"18628:280:23","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5121,"nodeType":"Block","src":"19162:771:23","statements":[{"condition":{"arguments":[{"id":5091,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5083,"src":"19187:1:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":5090,"name":"_zeroBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5155,"src":"19176:10:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_bool_$","typeString":"function (bytes memory) pure returns (bool)"}},"id":5092,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19176:13:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5100,"nodeType":"IfStatement","src":"19172:47:23","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":5093,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"19199:5:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},{"arguments":[{"hexValue":"30","id":5096,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19216:1:23","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":5095,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"19206:9:23","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":5094,"name":"bytes","nodeType":"ElementaryTypeName","src":"19210:5:23","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":5097,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19206:12:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":5098,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"19198:21:23","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"functionReturnParameters":5089,"id":5099,"nodeType":"Return","src":"19191:28:23"}},{"assignments":[5102],"declarations":[{"constant":false,"id":5102,"mutability":"mutable","name":"mLen","nameLocation":"19238:4:23","nodeType":"VariableDeclaration","scope":5121,"src":"19230:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5101,"name":"uint256","nodeType":"ElementaryTypeName","src":"19230:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5105,"initialValue":{"expression":{"id":5103,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5083,"src":"19245:1:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":5104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19247:6:23","memberName":"length","nodeType":"MemberAccess","src":"19245:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19230:23:23"},{"expression":{"id":5118,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5106,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5088,"src":"19335:6:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":5109,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5079,"src":"19361:1:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":5110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19363:6:23","memberName":"length","nodeType":"MemberAccess","src":"19361:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":5111,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5081,"src":"19371:1:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":5112,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19373:6:23","memberName":"length","nodeType":"MemberAccess","src":"19371:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5113,"name":"mLen","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5102,"src":"19381:4:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5114,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5079,"src":"19387:1:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":5115,"name":"e","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5081,"src":"19390:1:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":5116,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5083,"src":"19393:1:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":5107,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"19344:3:23","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":5108,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19348:12:23","memberName":"encodePacked","nodeType":"MemberAccess","src":"19344:16:23","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":5117,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19344:51:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"19335:60:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":5119,"nodeType":"ExpressionStatement","src":"19335:60:23"},{"AST":{"nativeSrc":"19431:496:23","nodeType":"YulBlock","src":"19431:496:23","statements":[{"nativeSrc":"19445:32:23","nodeType":"YulVariableDeclaration","src":"19445:32:23","value":{"arguments":[{"name":"result","nativeSrc":"19464:6:23","nodeType":"YulIdentifier","src":"19464:6:23"},{"kind":"number","nativeSrc":"19472:4:23","nodeType":"YulLiteral","src":"19472:4:23","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"19460:3:23","nodeType":"YulIdentifier","src":"19460:3:23"},"nativeSrc":"19460:17:23","nodeType":"YulFunctionCall","src":"19460:17:23"},"variables":[{"name":"dataPtr","nativeSrc":"19449:7:23","nodeType":"YulTypedName","src":"19449:7:23","type":""}]},{"nativeSrc":"19567:73:23","nodeType":"YulAssignment","src":"19567:73:23","value":{"arguments":[{"arguments":[],"functionName":{"name":"gas","nativeSrc":"19589:3:23","nodeType":"YulIdentifier","src":"19589:3:23"},"nativeSrc":"19589:5:23","nodeType":"YulFunctionCall","src":"19589:5:23"},{"kind":"number","nativeSrc":"19596:4:23","nodeType":"YulLiteral","src":"19596:4:23","type":"","value":"0x05"},{"name":"dataPtr","nativeSrc":"19602:7:23","nodeType":"YulIdentifier","src":"19602:7:23"},{"arguments":[{"name":"result","nativeSrc":"19617:6:23","nodeType":"YulIdentifier","src":"19617:6:23"}],"functionName":{"name":"mload","nativeSrc":"19611:5:23","nodeType":"YulIdentifier","src":"19611:5:23"},"nativeSrc":"19611:13:23","nodeType":"YulFunctionCall","src":"19611:13:23"},{"name":"dataPtr","nativeSrc":"19626:7:23","nodeType":"YulIdentifier","src":"19626:7:23"},{"name":"mLen","nativeSrc":"19635:4:23","nodeType":"YulIdentifier","src":"19635:4:23"}],"functionName":{"name":"staticcall","nativeSrc":"19578:10:23","nodeType":"YulIdentifier","src":"19578:10:23"},"nativeSrc":"19578:62:23","nodeType":"YulFunctionCall","src":"19578:62:23"},"variableNames":[{"name":"success","nativeSrc":"19567:7:23","nodeType":"YulIdentifier","src":"19567:7:23"}]},{"expression":{"arguments":[{"name":"result","nativeSrc":"19796:6:23","nodeType":"YulIdentifier","src":"19796:6:23"},{"name":"mLen","nativeSrc":"19804:4:23","nodeType":"YulIdentifier","src":"19804:4:23"}],"functionName":{"name":"mstore","nativeSrc":"19789:6:23","nodeType":"YulIdentifier","src":"19789:6:23"},"nativeSrc":"19789:20:23","nodeType":"YulFunctionCall","src":"19789:20:23"},"nativeSrc":"19789:20:23","nodeType":"YulExpressionStatement","src":"19789:20:23"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"19892:4:23","nodeType":"YulLiteral","src":"19892:4:23","type":"","value":"0x40"},{"arguments":[{"name":"dataPtr","nativeSrc":"19902:7:23","nodeType":"YulIdentifier","src":"19902:7:23"},{"name":"mLen","nativeSrc":"19911:4:23","nodeType":"YulIdentifier","src":"19911:4:23"}],"functionName":{"name":"add","nativeSrc":"19898:3:23","nodeType":"YulIdentifier","src":"19898:3:23"},"nativeSrc":"19898:18:23","nodeType":"YulFunctionCall","src":"19898:18:23"}],"functionName":{"name":"mstore","nativeSrc":"19885:6:23","nodeType":"YulIdentifier","src":"19885:6:23"},"nativeSrc":"19885:32:23","nodeType":"YulFunctionCall","src":"19885:32:23"},"nativeSrc":"19885:32:23","nodeType":"YulExpressionStatement","src":"19885:32:23"}]},"evmVersion":"paris","externalReferences":[{"declaration":5102,"isOffset":false,"isSlot":false,"src":"19635:4:23","valueSize":1},{"declaration":5102,"isOffset":false,"isSlot":false,"src":"19804:4:23","valueSize":1},{"declaration":5102,"isOffset":false,"isSlot":false,"src":"19911:4:23","valueSize":1},{"declaration":5088,"isOffset":false,"isSlot":false,"src":"19464:6:23","valueSize":1},{"declaration":5088,"isOffset":false,"isSlot":false,"src":"19617:6:23","valueSize":1},{"declaration":5088,"isOffset":false,"isSlot":false,"src":"19796:6:23","valueSize":1},{"declaration":5086,"isOffset":false,"isSlot":false,"src":"19567:7:23","valueSize":1}],"flags":["memory-safe"],"id":5120,"nodeType":"InlineAssembly","src":"19406:521:23"}]},"documentation":{"id":5077,"nodeType":"StructuredDocumentation","src":"18914:88:23","text":" @dev Variant of {tryModExp} that supports inputs of arbitrary length."},"id":5122,"implemented":true,"kind":"function","modifiers":[],"name":"tryModExp","nameLocation":"19016:9:23","nodeType":"FunctionDefinition","parameters":{"id":5084,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5079,"mutability":"mutable","name":"b","nameLocation":"19048:1:23","nodeType":"VariableDeclaration","scope":5122,"src":"19035:14:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5078,"name":"bytes","nodeType":"ElementaryTypeName","src":"19035:5:23","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":5081,"mutability":"mutable","name":"e","nameLocation":"19072:1:23","nodeType":"VariableDeclaration","scope":5122,"src":"19059:14:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5080,"name":"bytes","nodeType":"ElementaryTypeName","src":"19059:5:23","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":5083,"mutability":"mutable","name":"m","nameLocation":"19096:1:23","nodeType":"VariableDeclaration","scope":5122,"src":"19083:14:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5082,"name":"bytes","nodeType":"ElementaryTypeName","src":"19083:5:23","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"19025:78:23"},"returnParameters":{"id":5089,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5086,"mutability":"mutable","name":"success","nameLocation":"19132:7:23","nodeType":"VariableDeclaration","scope":5122,"src":"19127:12:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5085,"name":"bool","nodeType":"ElementaryTypeName","src":"19127:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":5088,"mutability":"mutable","name":"result","nameLocation":"19154:6:23","nodeType":"VariableDeclaration","scope":5122,"src":"19141:19:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5087,"name":"bytes","nodeType":"ElementaryTypeName","src":"19141:5:23","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"19126:35:23"},"scope":5830,"src":"19007:926:23","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":5154,"nodeType":"Block","src":"20088:176:23","statements":[{"body":{"id":5150,"nodeType":"Block","src":"20145:92:23","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":5145,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":5141,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5125,"src":"20163:9:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":5143,"indexExpression":{"id":5142,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5131,"src":"20173:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20163:12:23","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":5144,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20179:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20163:17:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5149,"nodeType":"IfStatement","src":"20159:68:23","trueBody":{"id":5148,"nodeType":"Block","src":"20182:45:23","statements":[{"expression":{"hexValue":"66616c7365","id":5146,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"20207:5:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":5129,"id":5147,"nodeType":"Return","src":"20200:12:23"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5134,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5131,"src":"20118:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":5135,"name":"byteArray","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5125,"src":"20122:9:23","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":5136,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20132:6:23","memberName":"length","nodeType":"MemberAccess","src":"20122:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20118:20:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5151,"initializationExpression":{"assignments":[5131],"declarations":[{"constant":false,"id":5131,"mutability":"mutable","name":"i","nameLocation":"20111:1:23","nodeType":"VariableDeclaration","scope":5151,"src":"20103:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5130,"name":"uint256","nodeType":"ElementaryTypeName","src":"20103:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5133,"initialValue":{"hexValue":"30","id":5132,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20115:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"20103:13:23"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":5139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"20140:3:23","subExpression":{"id":5138,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5131,"src":"20142:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5140,"nodeType":"ExpressionStatement","src":"20140:3:23"},"nodeType":"ForStatement","src":"20098:139:23"},{"expression":{"hexValue":"74727565","id":5152,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"20253:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":5129,"id":5153,"nodeType":"Return","src":"20246:11:23"}]},"documentation":{"id":5123,"nodeType":"StructuredDocumentation","src":"19939:72:23","text":" @dev Returns whether the provided byte array is zero."},"id":5155,"implemented":true,"kind":"function","modifiers":[],"name":"_zeroBytes","nameLocation":"20025:10:23","nodeType":"FunctionDefinition","parameters":{"id":5126,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5125,"mutability":"mutable","name":"byteArray","nameLocation":"20049:9:23","nodeType":"VariableDeclaration","scope":5155,"src":"20036:22:23","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":5124,"name":"bytes","nodeType":"ElementaryTypeName","src":"20036:5:23","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"20035:24:23"},"returnParameters":{"id":5129,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5128,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5155,"src":"20082:4:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5127,"name":"bool","nodeType":"ElementaryTypeName","src":"20082:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"20081:6:23"},"scope":5830,"src":"20016:248:23","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":5373,"nodeType":"Block","src":"20624:5124:23","statements":[{"id":5372,"nodeType":"UncheckedBlock","src":"20634:5108:23","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5163,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5158,"src":"20728:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"31","id":5164,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20733:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"20728:6:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5169,"nodeType":"IfStatement","src":"20724:53:23","trueBody":{"id":5168,"nodeType":"Block","src":"20736:41:23","statements":[{"expression":{"id":5166,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5158,"src":"20761:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5162,"id":5167,"nodeType":"Return","src":"20754:8:23"}]}},{"assignments":[5171],"declarations":[{"constant":false,"id":5171,"mutability":"mutable","name":"aa","nameLocation":"21712:2:23","nodeType":"VariableDeclaration","scope":5372,"src":"21704:10:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5170,"name":"uint256","nodeType":"ElementaryTypeName","src":"21704:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5173,"initialValue":{"id":5172,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5158,"src":"21717:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"21704:14:23"},{"assignments":[5175],"declarations":[{"constant":false,"id":5175,"mutability":"mutable","name":"xn","nameLocation":"21740:2:23","nodeType":"VariableDeclaration","scope":5372,"src":"21732:10:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5174,"name":"uint256","nodeType":"ElementaryTypeName","src":"21732:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5177,"initialValue":{"hexValue":"31","id":5176,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21745:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"21732:14:23"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5178,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"21765:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"},"id":5181,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21772:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"313238","id":5180,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21777:3:23","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"21772:8:23","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}}],"id":5182,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21771:10:23","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211456_by_1","typeString":"int_const 3402...(31 digits omitted)...1456"}},"src":"21765:16:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5193,"nodeType":"IfStatement","src":"21761:92:23","trueBody":{"id":5192,"nodeType":"Block","src":"21783:70:23","statements":[{"expression":{"id":5186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5184,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"21801:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"313238","id":5185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21808:3:23","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"21801:10:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5187,"nodeType":"ExpressionStatement","src":"21801:10:23"},{"expression":{"id":5190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5188,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"21829:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3634","id":5189,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21836:2:23","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"21829:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5191,"nodeType":"ExpressionStatement","src":"21829:9:23"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5194,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"21870:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"},"id":5197,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5195,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21877:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3634","id":5196,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21882:2:23","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"21877:7:23","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}}],"id":5198,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21876:9:23","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551616_by_1","typeString":"int_const 18446744073709551616"}},"src":"21870:15:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5209,"nodeType":"IfStatement","src":"21866:90:23","trueBody":{"id":5208,"nodeType":"Block","src":"21887:69:23","statements":[{"expression":{"id":5202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5200,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"21905:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3634","id":5201,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21912:2:23","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"21905:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5203,"nodeType":"ExpressionStatement","src":"21905:9:23"},{"expression":{"id":5206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5204,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"21932:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3332","id":5205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21939:2:23","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"21932:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5207,"nodeType":"ExpressionStatement","src":"21932:9:23"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5210,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"21973:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"},"id":5213,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5211,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21980:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3332","id":5212,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21985:2:23","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"21980:7:23","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}}],"id":5214,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"21979:9:23","typeDescriptions":{"typeIdentifier":"t_rational_4294967296_by_1","typeString":"int_const 4294967296"}},"src":"21973:15:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5225,"nodeType":"IfStatement","src":"21969:90:23","trueBody":{"id":5224,"nodeType":"Block","src":"21990:69:23","statements":[{"expression":{"id":5218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5216,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"22008:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3332","id":5217,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22015:2:23","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"22008:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5219,"nodeType":"ExpressionStatement","src":"22008:9:23"},{"expression":{"id":5222,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5220,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"22035:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"3136","id":5221,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22042:2:23","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"22035:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5223,"nodeType":"ExpressionStatement","src":"22035:9:23"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5226,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"22076:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"},"id":5229,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22083:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3136","id":5228,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22088:2:23","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"22083:7:23","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}}],"id":5230,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22082:9:23","typeDescriptions":{"typeIdentifier":"t_rational_65536_by_1","typeString":"int_const 65536"}},"src":"22076:15:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5241,"nodeType":"IfStatement","src":"22072:89:23","trueBody":{"id":5240,"nodeType":"Block","src":"22093:68:23","statements":[{"expression":{"id":5234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5232,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"22111:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"3136","id":5233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22118:2:23","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"22111:9:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5235,"nodeType":"ExpressionStatement","src":"22111:9:23"},{"expression":{"id":5238,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5236,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"22138:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"38","id":5237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22145:1:23","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"22138:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5239,"nodeType":"ExpressionStatement","src":"22138:8:23"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5242,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"22178:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"id":5245,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5243,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22185:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"38","id":5244,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22190:1:23","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"22185:6:23","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}}],"id":5246,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22184:8:23","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"}},"src":"22178:14:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5257,"nodeType":"IfStatement","src":"22174:87:23","trueBody":{"id":5256,"nodeType":"Block","src":"22194:67:23","statements":[{"expression":{"id":5250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5248,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"22212:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"38","id":5249,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22219:1:23","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"22212:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5251,"nodeType":"ExpressionStatement","src":"22212:8:23"},{"expression":{"id":5254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5252,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"22238:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"34","id":5253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22245:1:23","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"22238:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5255,"nodeType":"ExpressionStatement","src":"22238:8:23"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5258,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"22278:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"id":5261,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5259,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22285:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":5260,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22290:1:23","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"22285:6:23","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}}],"id":5262,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22284:8:23","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"}},"src":"22278:14:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5273,"nodeType":"IfStatement","src":"22274:87:23","trueBody":{"id":5272,"nodeType":"Block","src":"22294:67:23","statements":[{"expression":{"id":5266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5264,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"22312:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":">>=","rightHandSide":{"hexValue":"34","id":5265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22319:1:23","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"22312:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5267,"nodeType":"ExpressionStatement","src":"22312:8:23"},{"expression":{"id":5270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5268,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"22338:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"32","id":5269,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22345:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"22338:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5271,"nodeType":"ExpressionStatement","src":"22338:8:23"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5274,"name":"aa","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"22378:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"id":5277,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5275,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22385:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":5276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22390:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"22385:6:23","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}}],"id":5278,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"22384:8:23","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}},"src":"22378:14:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5285,"nodeType":"IfStatement","src":"22374:61:23","trueBody":{"id":5284,"nodeType":"Block","src":"22394:41:23","statements":[{"expression":{"id":5282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5280,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"22412:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"<<=","rightHandSide":{"hexValue":"31","id":5281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22419:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22412:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5283,"nodeType":"ExpressionStatement","src":"22412:8:23"}]}},{"expression":{"id":5293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5286,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"22855:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"33","id":5287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22861:1:23","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5288,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"22865:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22861:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5290,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22860:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":5291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22872:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22860:13:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22855:18:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5294,"nodeType":"ExpressionStatement","src":"22855:18:23"},{"expression":{"id":5304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5295,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"24760:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5296,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"24766:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5297,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5158,"src":"24771:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5298,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"24775:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24771:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24766:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5301,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"24765:13:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":5302,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24782:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24765:18:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24760:23:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5305,"nodeType":"ExpressionStatement","src":"24760:23:23"},{"expression":{"id":5315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5306,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"24869:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5307,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"24875:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5308,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5158,"src":"24880:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5309,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"24884:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24880:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24875:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5312,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"24874:13:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":5313,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24891:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24874:18:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24869:23:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5316,"nodeType":"ExpressionStatement","src":"24869:23:23"},{"expression":{"id":5326,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5317,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"24980:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5318,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"24986:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5319,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5158,"src":"24991:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5320,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"24995:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24991:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24986:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5323,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"24985:13:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":5324,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25002:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"24985:18:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24980:23:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5327,"nodeType":"ExpressionStatement","src":"24980:23:23"},{"expression":{"id":5337,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5328,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"25089:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5329,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"25095:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5330,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5158,"src":"25100:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5331,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"25104:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25100:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25095:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5334,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25094:13:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":5335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25111:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25094:18:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25089:23:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5338,"nodeType":"ExpressionStatement","src":"25089:23:23"},{"expression":{"id":5348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5339,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"25199:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5340,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"25205:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5341,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5158,"src":"25210:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5342,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"25214:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25210:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25205:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5345,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25204:13:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":5346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25221:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25204:18:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25199:23:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5349,"nodeType":"ExpressionStatement","src":"25199:23:23"},{"expression":{"id":5359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5350,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"25309:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5351,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"25315:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5352,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5158,"src":"25320:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5353,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"25324:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25320:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25315:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5356,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25314:13:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":5357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25331:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"25314:18:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25309:23:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5360,"nodeType":"ExpressionStatement","src":"25309:23:23"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5361,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"25698:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5364,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"25719:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5365,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5158,"src":"25724:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5366,"name":"xn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5175,"src":"25728:2:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25724:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25719:11:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5362,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"25703:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25712:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"25703:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5369,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25703:28:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25698:33:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5162,"id":5371,"nodeType":"Return","src":"25691:40:23"}]}]},"documentation":{"id":5156,"nodeType":"StructuredDocumentation","src":"20270:292:23","text":" @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded\n towards zero.\n This method is based on Newton's method for computing square roots; the algorithm is restricted to only\n using integer operations."},"id":5374,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"20576:4:23","nodeType":"FunctionDefinition","parameters":{"id":5159,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5158,"mutability":"mutable","name":"a","nameLocation":"20589:1:23","nodeType":"VariableDeclaration","scope":5374,"src":"20581:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5157,"name":"uint256","nodeType":"ElementaryTypeName","src":"20581:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20580:11:23"},"returnParameters":{"id":5162,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5161,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5374,"src":"20615:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5160,"name":"uint256","nodeType":"ElementaryTypeName","src":"20615:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20614:9:23"},"scope":5830,"src":"20567:5181:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5407,"nodeType":"Block","src":"25921:171:23","statements":[{"id":5406,"nodeType":"UncheckedBlock","src":"25931:155:23","statements":[{"assignments":[5386],"declarations":[{"constant":false,"id":5386,"mutability":"mutable","name":"result","nameLocation":"25963:6:23","nodeType":"VariableDeclaration","scope":5406,"src":"25955:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5385,"name":"uint256","nodeType":"ElementaryTypeName","src":"25955:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5390,"initialValue":{"arguments":[{"id":5388,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5377,"src":"25977:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5387,"name":"sqrt","nodeType":"Identifier","overloadedDeclarations":[5374,5408],"referencedDeclaration":5374,"src":"25972:4:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":5389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25972:7:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25955:24:23"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5391,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5386,"src":"26000:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":5395,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5380,"src":"26042:8:23","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}],"id":5394,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5829,"src":"26025:16:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$4221_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":5396,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26025:26:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5401,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5397,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5386,"src":"26055:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5398,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5386,"src":"26064:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26055:15:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":5400,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5377,"src":"26073:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26055:19:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"26025:49:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5392,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"26009:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26018:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"26009:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26009:66:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26000:75:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5384,"id":5405,"nodeType":"Return","src":"25993:82:23"}]}]},"documentation":{"id":5375,"nodeType":"StructuredDocumentation","src":"25754:86:23","text":" @dev Calculates sqrt(a), following the selected rounding direction."},"id":5408,"implemented":true,"kind":"function","modifiers":[],"name":"sqrt","nameLocation":"25854:4:23","nodeType":"FunctionDefinition","parameters":{"id":5381,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5377,"mutability":"mutable","name":"a","nameLocation":"25867:1:23","nodeType":"VariableDeclaration","scope":5408,"src":"25859:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5376,"name":"uint256","nodeType":"ElementaryTypeName","src":"25859:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5380,"mutability":"mutable","name":"rounding","nameLocation":"25879:8:23","nodeType":"VariableDeclaration","scope":5408,"src":"25870:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"},"typeName":{"id":5379,"nodeType":"UserDefinedTypeName","pathNode":{"id":5378,"name":"Rounding","nameLocations":["25870:8:23"],"nodeType":"IdentifierPath","referencedDeclaration":4221,"src":"25870:8:23"},"referencedDeclaration":4221,"src":"25870:8:23","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"25858:30:23"},"returnParameters":{"id":5384,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5383,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5408,"src":"25912:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5382,"name":"uint256","nodeType":"ElementaryTypeName","src":"25912:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25911:9:23"},"scope":5830,"src":"25845:247:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5498,"nodeType":"Block","src":"26281:2334:23","statements":[{"expression":{"id":5425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5416,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"26363:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5424,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5419,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5411,"src":"26383:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666666666666666666666666666666666666666666666666666","id":5420,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26387:34:23","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"value":"0xffffffffffffffffffffffffffffffff"},"src":"26383:38:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5417,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"26367:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26376:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"26367:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5422,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26367:55:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"37","id":5423,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26426:1:23","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"26367:60:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26363:64:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5426,"nodeType":"ExpressionStatement","src":"26363:64:23"},{"expression":{"id":5439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5427,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"26503:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5430,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5411,"src":"26525:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":5431,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"26530:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26525:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5433,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26524:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666666666666666666666666666","id":5434,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26535:18:23","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"value":"0xffffffffffffffff"},"src":"26524:29:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5428,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"26508:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26517:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"26508:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5436,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26508:46:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"36","id":5437,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26558:1:23","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"26508:51:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26503:56:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5440,"nodeType":"ExpressionStatement","src":"26503:56:23"},{"expression":{"id":5453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5441,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"26634:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5444,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5411,"src":"26656:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":5445,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"26661:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26656:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5447,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26655:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666","id":5448,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26666:10:23","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"value":"0xffffffff"},"src":"26655:21:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5442,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"26639:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26648:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"26639:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5450,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26639:38:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"35","id":5451,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26681:1:23","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"26639:43:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26634:48:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5454,"nodeType":"ExpressionStatement","src":"26634:48:23"},{"expression":{"id":5467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5455,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"26757:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5466,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5458,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5411,"src":"26779:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":5459,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"26784:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26779:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5461,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26778:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666","id":5462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26789:6:23","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"value":"0xffff"},"src":"26778:17:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5456,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"26762:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5457,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26771:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"26762:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26762:34:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":5465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26800:1:23","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"26762:39:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26757:44:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5468,"nodeType":"ExpressionStatement","src":"26757:44:23"},{"expression":{"id":5481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5469,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"26874:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5472,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5411,"src":"26896:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":5473,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"26901:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26896:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5475,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26895:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666","id":5476,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26906:4:23","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xff"},"src":"26895:15:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5470,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"26879:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26888:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"26879:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5478,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26879:32:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"33","id":5479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26915:1:23","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"26879:37:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26874:42:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5482,"nodeType":"ExpressionStatement","src":"26874:42:23"},{"expression":{"id":5495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5483,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"26988:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5494,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5488,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5486,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5411,"src":"27010:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":5487,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5414,"src":"27015:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27010:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5489,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"27009:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866","id":5490,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27020:3:23","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"27009:14:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5484,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"26993:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27002:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"26993:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5492,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26993:31:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"32","id":5493,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27028:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"26993:36:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26988:41:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5496,"nodeType":"ExpressionStatement","src":"26988:41:23"},{"AST":{"nativeSrc":"28490:119:23","nodeType":"YulBlock","src":"28490:119:23","statements":[{"nativeSrc":"28504:95:23","nodeType":"YulAssignment","src":"28504:95:23","value":{"arguments":[{"name":"r","nativeSrc":"28512:1:23","nodeType":"YulIdentifier","src":"28512:1:23"},{"arguments":[{"arguments":[{"name":"r","nativeSrc":"28524:1:23","nodeType":"YulIdentifier","src":"28524:1:23"},{"name":"x","nativeSrc":"28527:1:23","nodeType":"YulIdentifier","src":"28527:1:23"}],"functionName":{"name":"shr","nativeSrc":"28520:3:23","nodeType":"YulIdentifier","src":"28520:3:23"},"nativeSrc":"28520:9:23","nodeType":"YulFunctionCall","src":"28520:9:23"},{"kind":"number","nativeSrc":"28531:66:23","nodeType":"YulLiteral","src":"28531:66:23","type":"","value":"0x0000010102020202030303030303030300000000000000000000000000000000"}],"functionName":{"name":"byte","nativeSrc":"28515:4:23","nodeType":"YulIdentifier","src":"28515:4:23"},"nativeSrc":"28515:83:23","nodeType":"YulFunctionCall","src":"28515:83:23"}],"functionName":{"name":"or","nativeSrc":"28509:2:23","nodeType":"YulIdentifier","src":"28509:2:23"},"nativeSrc":"28509:90:23","nodeType":"YulFunctionCall","src":"28509:90:23"},"variableNames":[{"name":"r","nativeSrc":"28504:1:23","nodeType":"YulIdentifier","src":"28504:1:23"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":5414,"isOffset":false,"isSlot":false,"src":"28504:1:23","valueSize":1},{"declaration":5414,"isOffset":false,"isSlot":false,"src":"28512:1:23","valueSize":1},{"declaration":5414,"isOffset":false,"isSlot":false,"src":"28524:1:23","valueSize":1},{"declaration":5411,"isOffset":false,"isSlot":false,"src":"28527:1:23","valueSize":1}],"flags":["memory-safe"],"id":5497,"nodeType":"InlineAssembly","src":"28465:144:23"}]},"documentation":{"id":5409,"nodeType":"StructuredDocumentation","src":"26098:119:23","text":" @dev Return the log in base 2 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":5499,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"26231:4:23","nodeType":"FunctionDefinition","parameters":{"id":5412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5411,"mutability":"mutable","name":"x","nameLocation":"26244:1:23","nodeType":"VariableDeclaration","scope":5499,"src":"26236:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5410,"name":"uint256","nodeType":"ElementaryTypeName","src":"26236:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26235:11:23"},"returnParameters":{"id":5415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5414,"mutability":"mutable","name":"r","nameLocation":"26278:1:23","nodeType":"VariableDeclaration","scope":5499,"src":"26270:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5413,"name":"uint256","nodeType":"ElementaryTypeName","src":"26270:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26269:11:23"},"scope":5830,"src":"26222:2393:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5532,"nodeType":"Block","src":"28848:175:23","statements":[{"id":5531,"nodeType":"UncheckedBlock","src":"28858:159:23","statements":[{"assignments":[5511],"declarations":[{"constant":false,"id":5511,"mutability":"mutable","name":"result","nameLocation":"28890:6:23","nodeType":"VariableDeclaration","scope":5531,"src":"28882:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5510,"name":"uint256","nodeType":"ElementaryTypeName","src":"28882:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5515,"initialValue":{"arguments":[{"id":5513,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5502,"src":"28904:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5512,"name":"log2","nodeType":"Identifier","overloadedDeclarations":[5499,5533],"referencedDeclaration":5499,"src":"28899:4:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":5514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28899:11:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"28882:28:23"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5516,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5511,"src":"28931:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5527,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":5520,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5505,"src":"28973:8:23","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}],"id":5519,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5829,"src":"28956:16:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$4221_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":5521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28956:26:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5522,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28986:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":5523,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5511,"src":"28991:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28986:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":5525,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5502,"src":"29000:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28986:19:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"28956:49:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5517,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"28940:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"28949:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"28940:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28940:66:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"28931:75:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5509,"id":5530,"nodeType":"Return","src":"28924:82:23"}]}]},"documentation":{"id":5500,"nodeType":"StructuredDocumentation","src":"28621:142:23","text":" @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":5533,"implemented":true,"kind":"function","modifiers":[],"name":"log2","nameLocation":"28777:4:23","nodeType":"FunctionDefinition","parameters":{"id":5506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5502,"mutability":"mutable","name":"value","nameLocation":"28790:5:23","nodeType":"VariableDeclaration","scope":5533,"src":"28782:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5501,"name":"uint256","nodeType":"ElementaryTypeName","src":"28782:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5505,"mutability":"mutable","name":"rounding","nameLocation":"28806:8:23","nodeType":"VariableDeclaration","scope":5533,"src":"28797:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"},"typeName":{"id":5504,"nodeType":"UserDefinedTypeName","pathNode":{"id":5503,"name":"Rounding","nameLocations":["28797:8:23"],"nodeType":"IdentifierPath","referencedDeclaration":4221,"src":"28797:8:23"},"referencedDeclaration":4221,"src":"28797:8:23","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"28781:34:23"},"returnParameters":{"id":5509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5508,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5533,"src":"28839:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5507,"name":"uint256","nodeType":"ElementaryTypeName","src":"28839:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"28838:9:23"},"scope":5830,"src":"28768:255:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5661,"nodeType":"Block","src":"29216:854:23","statements":[{"assignments":[5542],"declarations":[{"constant":false,"id":5542,"mutability":"mutable","name":"result","nameLocation":"29234:6:23","nodeType":"VariableDeclaration","scope":5661,"src":"29226:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5541,"name":"uint256","nodeType":"ElementaryTypeName","src":"29226:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5544,"initialValue":{"hexValue":"30","id":5543,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29243:1:23","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"29226:18:23"},{"id":5658,"nodeType":"UncheckedBlock","src":"29254:787:23","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5545,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5536,"src":"29282:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"},"id":5548,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":5546,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29291:2:23","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":5547,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29297:2:23","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"29291:8:23","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"29282:17:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5561,"nodeType":"IfStatement","src":"29278:103:23","trueBody":{"id":5560,"nodeType":"Block","src":"29301:80:23","statements":[{"expression":{"id":5554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5550,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5536,"src":"29319:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"},"id":5553,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":5551,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29328:2:23","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3634","id":5552,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29334:2:23","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"29328:8:23","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000000000000000000000000000000000000000000000000000_by_1","typeString":"int_const 1000...(57 digits omitted)...0000"}},"src":"29319:17:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5555,"nodeType":"ExpressionStatement","src":"29319:17:23"},{"expression":{"id":5558,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5556,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5542,"src":"29354:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3634","id":5557,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29364:2:23","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"29354:12:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5559,"nodeType":"ExpressionStatement","src":"29354:12:23"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5566,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5562,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5536,"src":"29398:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"},"id":5565,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":5563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29407:2:23","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":5564,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29413:2:23","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"29407:8:23","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"29398:17:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5578,"nodeType":"IfStatement","src":"29394:103:23","trueBody":{"id":5577,"nodeType":"Block","src":"29417:80:23","statements":[{"expression":{"id":5571,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5567,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5536,"src":"29435:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"},"id":5570,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":5568,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29444:2:23","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3332","id":5569,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29450:2:23","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"29444:8:23","typeDescriptions":{"typeIdentifier":"t_rational_100000000000000000000000000000000_by_1","typeString":"int_const 1000...(25 digits omitted)...0000"}},"src":"29435:17:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5572,"nodeType":"ExpressionStatement","src":"29435:17:23"},{"expression":{"id":5575,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5573,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5542,"src":"29470:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":5574,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29480:2:23","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"29470:12:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5576,"nodeType":"ExpressionStatement","src":"29470:12:23"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5579,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5536,"src":"29514:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":5582,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":5580,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29523:2:23","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":5581,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29529:2:23","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"29523:8:23","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"29514:17:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5595,"nodeType":"IfStatement","src":"29510:103:23","trueBody":{"id":5594,"nodeType":"Block","src":"29533:80:23","statements":[{"expression":{"id":5588,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5584,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5536,"src":"29551:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"},"id":5587,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":5585,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29560:2:23","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3136","id":5586,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29566:2:23","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"29560:8:23","typeDescriptions":{"typeIdentifier":"t_rational_10000000000000000_by_1","typeString":"int_const 10000000000000000"}},"src":"29551:17:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5589,"nodeType":"ExpressionStatement","src":"29551:17:23"},{"expression":{"id":5592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5590,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5542,"src":"29586:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":5591,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29596:2:23","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"29586:12:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5593,"nodeType":"ExpressionStatement","src":"29586:12:23"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5596,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5536,"src":"29630:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":5599,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":5597,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29639:2:23","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":5598,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29645:1:23","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"29639:7:23","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"29630:16:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5612,"nodeType":"IfStatement","src":"29626:100:23","trueBody":{"id":5611,"nodeType":"Block","src":"29648:78:23","statements":[{"expression":{"id":5605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5601,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5536,"src":"29666:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"},"id":5604,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":5602,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29675:2:23","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"38","id":5603,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29681:1:23","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"29675:7:23","typeDescriptions":{"typeIdentifier":"t_rational_100000000_by_1","typeString":"int_const 100000000"}},"src":"29666:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5606,"nodeType":"ExpressionStatement","src":"29666:16:23"},{"expression":{"id":5609,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5607,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5542,"src":"29700:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":5608,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29710:1:23","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"29700:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5610,"nodeType":"ExpressionStatement","src":"29700:11:23"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5613,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5536,"src":"29743:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":5616,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":5614,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29752:2:23","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":5615,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29758:1:23","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"29752:7:23","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"29743:16:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5629,"nodeType":"IfStatement","src":"29739:100:23","trueBody":{"id":5628,"nodeType":"Block","src":"29761:78:23","statements":[{"expression":{"id":5622,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5618,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5536,"src":"29779:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"id":5621,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":5619,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29788:2:23","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"34","id":5620,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29794:1:23","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"29788:7:23","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"}},"src":"29779:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5623,"nodeType":"ExpressionStatement","src":"29779:16:23"},{"expression":{"id":5626,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5624,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5542,"src":"29813:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":5625,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29823:1:23","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"29813:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5627,"nodeType":"ExpressionStatement","src":"29813:11:23"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5630,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5536,"src":"29856:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":5633,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":5631,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29865:2:23","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":5632,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29871:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"29865:7:23","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"29856:16:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5646,"nodeType":"IfStatement","src":"29852:100:23","trueBody":{"id":5645,"nodeType":"Block","src":"29874:78:23","statements":[{"expression":{"id":5639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5635,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5536,"src":"29892:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"/=","rightHandSide":{"commonType":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"id":5638,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":5636,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29901:2:23","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"32","id":5637,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29907:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"29901:7:23","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"}},"src":"29892:16:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5640,"nodeType":"ExpressionStatement","src":"29892:16:23"},{"expression":{"id":5643,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5641,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5542,"src":"29926:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":5642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29936:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"29926:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5644,"nodeType":"ExpressionStatement","src":"29926:11:23"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5647,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5536,"src":"29969:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"id":5650,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":5648,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29978:2:23","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"31","id":5649,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29984:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"29978:7:23","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"}},"src":"29969:16:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5657,"nodeType":"IfStatement","src":"29965:66:23","trueBody":{"id":5656,"nodeType":"Block","src":"29987:44:23","statements":[{"expression":{"id":5654,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5652,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5542,"src":"30005:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"31","id":5653,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30015:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"30005:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5655,"nodeType":"ExpressionStatement","src":"30005:11:23"}]}}]},{"expression":{"id":5659,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5542,"src":"30057:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5540,"id":5660,"nodeType":"Return","src":"30050:13:23"}]},"documentation":{"id":5534,"nodeType":"StructuredDocumentation","src":"29029:120:23","text":" @dev Return the log in base 10 of a positive value rounded towards zero.\n Returns 0 if given 0."},"id":5662,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"29163:5:23","nodeType":"FunctionDefinition","parameters":{"id":5537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5536,"mutability":"mutable","name":"value","nameLocation":"29177:5:23","nodeType":"VariableDeclaration","scope":5662,"src":"29169:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5535,"name":"uint256","nodeType":"ElementaryTypeName","src":"29169:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"29168:15:23"},"returnParameters":{"id":5540,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5539,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5662,"src":"29207:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5538,"name":"uint256","nodeType":"ElementaryTypeName","src":"29207:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"29206:9:23"},"scope":5830,"src":"29154:916:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5695,"nodeType":"Block","src":"30305:177:23","statements":[{"id":5694,"nodeType":"UncheckedBlock","src":"30315:161:23","statements":[{"assignments":[5674],"declarations":[{"constant":false,"id":5674,"mutability":"mutable","name":"result","nameLocation":"30347:6:23","nodeType":"VariableDeclaration","scope":5694,"src":"30339:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5673,"name":"uint256","nodeType":"ElementaryTypeName","src":"30339:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5678,"initialValue":{"arguments":[{"id":5676,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5665,"src":"30362:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5675,"name":"log10","nodeType":"Identifier","overloadedDeclarations":[5662,5696],"referencedDeclaration":5662,"src":"30356:5:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":5677,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30356:12:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"30339:29:23"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5692,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5679,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5674,"src":"30389:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5690,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":5683,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5668,"src":"30431:8:23","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}],"id":5682,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5829,"src":"30414:16:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$4221_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":5684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30414:26:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":5685,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30444:2:23","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"id":5686,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5674,"src":"30450:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30444:12:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":5688,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5665,"src":"30459:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30444:20:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"30414:50:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5680,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"30398:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5681,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30407:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"30398:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5691,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30398:67:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30389:76:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5672,"id":5693,"nodeType":"Return","src":"30382:83:23"}]}]},"documentation":{"id":5663,"nodeType":"StructuredDocumentation","src":"30076:143:23","text":" @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":5696,"implemented":true,"kind":"function","modifiers":[],"name":"log10","nameLocation":"30233:5:23","nodeType":"FunctionDefinition","parameters":{"id":5669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5665,"mutability":"mutable","name":"value","nameLocation":"30247:5:23","nodeType":"VariableDeclaration","scope":5696,"src":"30239:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5664,"name":"uint256","nodeType":"ElementaryTypeName","src":"30239:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5668,"mutability":"mutable","name":"rounding","nameLocation":"30263:8:23","nodeType":"VariableDeclaration","scope":5696,"src":"30254:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"},"typeName":{"id":5667,"nodeType":"UserDefinedTypeName","pathNode":{"id":5666,"name":"Rounding","nameLocations":["30254:8:23"],"nodeType":"IdentifierPath","referencedDeclaration":4221,"src":"30254:8:23"},"referencedDeclaration":4221,"src":"30254:8:23","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"30238:34:23"},"returnParameters":{"id":5672,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5671,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5696,"src":"30296:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5670,"name":"uint256","nodeType":"ElementaryTypeName","src":"30296:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30295:9:23"},"scope":5830,"src":"30224:258:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5772,"nodeType":"Block","src":"30800:675:23","statements":[{"expression":{"id":5713,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5704,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5702,"src":"30882:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5712,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5707,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"30902:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666666666666666666666666666666666666666666666666666","id":5708,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30906:34:23","typeDescriptions":{"typeIdentifier":"t_rational_340282366920938463463374607431768211455_by_1","typeString":"int_const 3402...(31 digits omitted)...1455"},"value":"0xffffffffffffffffffffffffffffffff"},"src":"30902:38:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5705,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"30886:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"30895:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"30886:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5710,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30886:55:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"37","id":5711,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30945:1:23","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"30886:60:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"30882:64:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5714,"nodeType":"ExpressionStatement","src":"30882:64:23"},{"expression":{"id":5727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5715,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5702,"src":"31022:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5726,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5718,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"31044:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":5719,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5702,"src":"31049:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31044:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5721,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31043:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666666666666666666666666666","id":5722,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31054:18:23","typeDescriptions":{"typeIdentifier":"t_rational_18446744073709551615_by_1","typeString":"int_const 18446744073709551615"},"value":"0xffffffffffffffff"},"src":"31043:29:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5716,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"31027:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31036:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"31027:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5724,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31027:46:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"36","id":5725,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31077:1:23","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"31027:51:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31022:56:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5728,"nodeType":"ExpressionStatement","src":"31022:56:23"},{"expression":{"id":5741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5729,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5702,"src":"31153:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5740,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5734,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5732,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"31175:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":5733,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5702,"src":"31180:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31175:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5735,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31174:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666666666666666","id":5736,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31185:10:23","typeDescriptions":{"typeIdentifier":"t_rational_4294967295_by_1","typeString":"int_const 4294967295"},"value":"0xffffffff"},"src":"31174:21:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5730,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"31158:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31167:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"31158:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5738,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31158:38:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"35","id":5739,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31200:1:23","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"31158:43:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31153:48:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5742,"nodeType":"ExpressionStatement","src":"31153:48:23"},{"expression":{"id":5755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5743,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5702,"src":"31276:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5751,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5746,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"31298:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":5747,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5702,"src":"31303:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31298:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5749,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31297:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307866666666","id":5750,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31308:6:23","typeDescriptions":{"typeIdentifier":"t_rational_65535_by_1","typeString":"int_const 65535"},"value":"0xffff"},"src":"31297:17:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5744,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"31281:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31290:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"31281:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31281:34:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"34","id":5753,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31319:1:23","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"31281:39:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31276:44:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5756,"nodeType":"ExpressionStatement","src":"31276:44:23"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5759,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5757,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5702,"src":"31426:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"33","id":5758,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31431:1:23","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"31426:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5760,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31425:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5768,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5765,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5763,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5699,"src":"31453:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":5764,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5702,"src":"31458:1:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31453:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5766,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31452:8:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30786666","id":5767,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31463:4:23","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xff"},"src":"31452:15:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5761,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"31436:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31445:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"31436:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5769,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31436:32:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31425:43:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5703,"id":5771,"nodeType":"Return","src":"31418:50:23"}]},"documentation":{"id":5697,"nodeType":"StructuredDocumentation","src":"30488:246:23","text":" @dev Return the log in base 256 of a positive value rounded towards zero.\n Returns 0 if given 0.\n Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string."},"id":5773,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"30748:6:23","nodeType":"FunctionDefinition","parameters":{"id":5700,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5699,"mutability":"mutable","name":"x","nameLocation":"30763:1:23","nodeType":"VariableDeclaration","scope":5773,"src":"30755:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5698,"name":"uint256","nodeType":"ElementaryTypeName","src":"30755:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30754:11:23"},"returnParameters":{"id":5703,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5702,"mutability":"mutable","name":"r","nameLocation":"30797:1:23","nodeType":"VariableDeclaration","scope":5773,"src":"30789:9:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5701,"name":"uint256","nodeType":"ElementaryTypeName","src":"30789:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"30788:11:23"},"scope":5830,"src":"30739:736:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5809,"nodeType":"Block","src":"31712:184:23","statements":[{"id":5808,"nodeType":"UncheckedBlock","src":"31722:168:23","statements":[{"assignments":[5785],"declarations":[{"constant":false,"id":5785,"mutability":"mutable","name":"result","nameLocation":"31754:6:23","nodeType":"VariableDeclaration","scope":5808,"src":"31746:14:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5784,"name":"uint256","nodeType":"ElementaryTypeName","src":"31746:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5789,"initialValue":{"arguments":[{"id":5787,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5776,"src":"31770:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5786,"name":"log256","nodeType":"Identifier","overloadedDeclarations":[5773,5810],"referencedDeclaration":5773,"src":"31763:6:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) pure returns (uint256)"}},"id":5788,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31763:13:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"31746:30:23"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5790,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5785,"src":"31797:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":5794,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5779,"src":"31839:8:23","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}],"id":5793,"name":"unsignedRoundsUp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5829,"src":"31822:16:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_Rounding_$4221_$returns$_t_bool_$","typeString":"function (enum Math.Rounding) pure returns (bool)"}},"id":5795,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31822:26:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":5796,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31852:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5799,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5797,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5785,"src":"31858:6:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"33","id":5798,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31868:1:23","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"31858:11:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5800,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"31857:13:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31852:18:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":5802,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5776,"src":"31873:5:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31852:26:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"31822:56:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":5791,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"31806:8:23","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":5792,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"31815:6:23","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"31806:15:23","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":5805,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31806:73:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"31797:82:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5783,"id":5807,"nodeType":"Return","src":"31790:89:23"}]}]},"documentation":{"id":5774,"nodeType":"StructuredDocumentation","src":"31481:144:23","text":" @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n Returns 0 if given 0."},"id":5810,"implemented":true,"kind":"function","modifiers":[],"name":"log256","nameLocation":"31639:6:23","nodeType":"FunctionDefinition","parameters":{"id":5780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5776,"mutability":"mutable","name":"value","nameLocation":"31654:5:23","nodeType":"VariableDeclaration","scope":5810,"src":"31646:13:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5775,"name":"uint256","nodeType":"ElementaryTypeName","src":"31646:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5779,"mutability":"mutable","name":"rounding","nameLocation":"31670:8:23","nodeType":"VariableDeclaration","scope":5810,"src":"31661:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"},"typeName":{"id":5778,"nodeType":"UserDefinedTypeName","pathNode":{"id":5777,"name":"Rounding","nameLocations":["31661:8:23"],"nodeType":"IdentifierPath","referencedDeclaration":4221,"src":"31661:8:23"},"referencedDeclaration":4221,"src":"31661:8:23","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"31645:34:23"},"returnParameters":{"id":5783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5782,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5810,"src":"31703:7:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5781,"name":"uint256","nodeType":"ElementaryTypeName","src":"31703:7:23","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31702:9:23"},"scope":5830,"src":"31630:266:23","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5828,"nodeType":"Block","src":"32094:48:23","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":5826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":5824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":5821,"name":"rounding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5814,"src":"32117:8:23","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}],"id":5820,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32111:5:23","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":5819,"name":"uint8","nodeType":"ElementaryTypeName","src":"32111:5:23","typeDescriptions":{}}},"id":5822,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32111:15:23","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"32","id":5823,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32129:1:23","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"32111:19:23","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":5825,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32134:1:23","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"32111:24:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":5818,"id":5827,"nodeType":"Return","src":"32104:31:23"}]},"documentation":{"id":5811,"nodeType":"StructuredDocumentation","src":"31902:113:23","text":" @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers."},"id":5829,"implemented":true,"kind":"function","modifiers":[],"name":"unsignedRoundsUp","nameLocation":"32029:16:23","nodeType":"FunctionDefinition","parameters":{"id":5815,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5814,"mutability":"mutable","name":"rounding","nameLocation":"32055:8:23","nodeType":"VariableDeclaration","scope":5829,"src":"32046:17:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"},"typeName":{"id":5813,"nodeType":"UserDefinedTypeName","pathNode":{"id":5812,"name":"Rounding","nameLocations":["32046:8:23"],"nodeType":"IdentifierPath","referencedDeclaration":4221,"src":"32046:8:23"},"referencedDeclaration":4221,"src":"32046:8:23","typeDescriptions":{"typeIdentifier":"t_enum$_Rounding_$4221","typeString":"enum Math.Rounding"}},"visibility":"internal"}],"src":"32045:19:23"},"returnParameters":{"id":5818,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5817,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5829,"src":"32088:4:23","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5816,"name":"bool","nodeType":"ElementaryTypeName","src":"32088:4:23","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"32087:6:23"},"scope":5830,"src":"32020:122:23","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":5831,"src":"281:31863:23","usedErrors":[],"usedEvents":[]}],"src":"103:32042:23"},"id":23},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","exportedSymbols":{"SafeCast":[7595]},"id":7596,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":5832,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"192:24:24"},{"abstract":false,"baseContracts":[],"canonicalName":"SafeCast","contractDependencies":[],"contractKind":"library","documentation":{"id":5833,"nodeType":"StructuredDocumentation","src":"218:550:24","text":" @dev Wrappers over Solidity's uintXX/intXX/bool 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."},"fullyImplemented":true,"id":7595,"linearizedBaseContracts":[7595],"name":"SafeCast","nameLocation":"777:8:24","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":5834,"nodeType":"StructuredDocumentation","src":"792:68:24","text":" @dev Value doesn't fit in an uint of `bits` size."},"errorSelector":"6dfcc650","id":5840,"name":"SafeCastOverflowedUintDowncast","nameLocation":"871:30:24","nodeType":"ErrorDefinition","parameters":{"id":5839,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5836,"mutability":"mutable","name":"bits","nameLocation":"908:4:24","nodeType":"VariableDeclaration","scope":5840,"src":"902:10:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":5835,"name":"uint8","nodeType":"ElementaryTypeName","src":"902:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":5838,"mutability":"mutable","name":"value","nameLocation":"922:5:24","nodeType":"VariableDeclaration","scope":5840,"src":"914:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5837,"name":"uint256","nodeType":"ElementaryTypeName","src":"914:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"901:27:24"},"src":"865:64:24"},{"documentation":{"id":5841,"nodeType":"StructuredDocumentation","src":"935:75:24","text":" @dev An int value doesn't fit in an uint of `bits` size."},"errorSelector":"a8ce4432","id":5845,"name":"SafeCastOverflowedIntToUint","nameLocation":"1021:27:24","nodeType":"ErrorDefinition","parameters":{"id":5844,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5843,"mutability":"mutable","name":"value","nameLocation":"1056:5:24","nodeType":"VariableDeclaration","scope":5845,"src":"1049:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":5842,"name":"int256","nodeType":"ElementaryTypeName","src":"1049:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1048:14:24"},"src":"1015:48:24"},{"documentation":{"id":5846,"nodeType":"StructuredDocumentation","src":"1069:67:24","text":" @dev Value doesn't fit in an int of `bits` size."},"errorSelector":"327269a7","id":5852,"name":"SafeCastOverflowedIntDowncast","nameLocation":"1147:29:24","nodeType":"ErrorDefinition","parameters":{"id":5851,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5848,"mutability":"mutable","name":"bits","nameLocation":"1183:4:24","nodeType":"VariableDeclaration","scope":5852,"src":"1177:10:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":5847,"name":"uint8","nodeType":"ElementaryTypeName","src":"1177:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":5850,"mutability":"mutable","name":"value","nameLocation":"1196:5:24","nodeType":"VariableDeclaration","scope":5852,"src":"1189:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":5849,"name":"int256","nodeType":"ElementaryTypeName","src":"1189:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1176:26:24"},"src":"1141:62:24"},{"documentation":{"id":5853,"nodeType":"StructuredDocumentation","src":"1209:75:24","text":" @dev An uint value doesn't fit in an int of `bits` size."},"errorSelector":"24775e06","id":5857,"name":"SafeCastOverflowedUintToInt","nameLocation":"1295:27:24","nodeType":"ErrorDefinition","parameters":{"id":5856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5855,"mutability":"mutable","name":"value","nameLocation":"1331:5:24","nodeType":"VariableDeclaration","scope":5857,"src":"1323:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5854,"name":"uint256","nodeType":"ElementaryTypeName","src":"1323:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1322:15:24"},"src":"1289:49:24"},{"body":{"id":5884,"nodeType":"Block","src":"1695:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5871,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5865,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5860,"src":"1709:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":5868,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1722:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":5867,"name":"uint248","nodeType":"ElementaryTypeName","src":"1722:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"}],"id":5866,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1717:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":5869,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1717:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint248","typeString":"type(uint248)"}},"id":5870,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1731:3:24","memberName":"max","nodeType":"MemberAccess","src":"1717:17:24","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"src":"1709:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5878,"nodeType":"IfStatement","src":"1705:105:24","trueBody":{"id":5877,"nodeType":"Block","src":"1736:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":5873,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1788:3:24","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":5874,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5860,"src":"1793:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5872,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"1757:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":5875,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1757:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5876,"nodeType":"RevertStatement","src":"1750:49:24"}]}},{"expression":{"arguments":[{"id":5881,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5860,"src":"1834:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5880,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1826:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":5879,"name":"uint248","nodeType":"ElementaryTypeName","src":"1826:7:24","typeDescriptions":{}}},"id":5882,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1826:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"functionReturnParameters":5864,"id":5883,"nodeType":"Return","src":"1819:21:24"}]},"documentation":{"id":5858,"nodeType":"StructuredDocumentation","src":"1344:280:24","text":" @dev Returns the downcasted uint248 from uint256, reverting on\n overflow (when the input is greater than largest uint248).\n Counterpart to Solidity's `uint248` operator.\n Requirements:\n - input must fit into 248 bits"},"id":5885,"implemented":true,"kind":"function","modifiers":[],"name":"toUint248","nameLocation":"1638:9:24","nodeType":"FunctionDefinition","parameters":{"id":5861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5860,"mutability":"mutable","name":"value","nameLocation":"1656:5:24","nodeType":"VariableDeclaration","scope":5885,"src":"1648:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5859,"name":"uint256","nodeType":"ElementaryTypeName","src":"1648:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1647:15:24"},"returnParameters":{"id":5864,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5863,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5885,"src":"1686:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"},"typeName":{"id":5862,"name":"uint248","nodeType":"ElementaryTypeName","src":"1686:7:24","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"visibility":"internal"}],"src":"1685:9:24"},"scope":7595,"src":"1629:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5912,"nodeType":"Block","src":"2204:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5899,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5893,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5888,"src":"2218:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":5896,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2231:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":5895,"name":"uint240","nodeType":"ElementaryTypeName","src":"2231:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"}],"id":5894,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2226:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":5897,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2226:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint240","typeString":"type(uint240)"}},"id":5898,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2240:3:24","memberName":"max","nodeType":"MemberAccess","src":"2226:17:24","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"src":"2218:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5906,"nodeType":"IfStatement","src":"2214:105:24","trueBody":{"id":5905,"nodeType":"Block","src":"2245:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":5901,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2297:3:24","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":5902,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5888,"src":"2302:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5900,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"2266:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":5903,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2266:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5904,"nodeType":"RevertStatement","src":"2259:49:24"}]}},{"expression":{"arguments":[{"id":5909,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5888,"src":"2343:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5908,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2335:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":5907,"name":"uint240","nodeType":"ElementaryTypeName","src":"2335:7:24","typeDescriptions":{}}},"id":5910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2335:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"functionReturnParameters":5892,"id":5911,"nodeType":"Return","src":"2328:21:24"}]},"documentation":{"id":5886,"nodeType":"StructuredDocumentation","src":"1853:280:24","text":" @dev Returns the downcasted uint240 from uint256, reverting on\n overflow (when the input is greater than largest uint240).\n Counterpart to Solidity's `uint240` operator.\n Requirements:\n - input must fit into 240 bits"},"id":5913,"implemented":true,"kind":"function","modifiers":[],"name":"toUint240","nameLocation":"2147:9:24","nodeType":"FunctionDefinition","parameters":{"id":5889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5888,"mutability":"mutable","name":"value","nameLocation":"2165:5:24","nodeType":"VariableDeclaration","scope":5913,"src":"2157:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5887,"name":"uint256","nodeType":"ElementaryTypeName","src":"2157:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2156:15:24"},"returnParameters":{"id":5892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5891,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5913,"src":"2195:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"},"typeName":{"id":5890,"name":"uint240","nodeType":"ElementaryTypeName","src":"2195:7:24","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"visibility":"internal"}],"src":"2194:9:24"},"scope":7595,"src":"2138:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5940,"nodeType":"Block","src":"2713:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5927,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5921,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5916,"src":"2727:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":5924,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2740:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":5923,"name":"uint232","nodeType":"ElementaryTypeName","src":"2740:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"}],"id":5922,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"2735:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":5925,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2735:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint232","typeString":"type(uint232)"}},"id":5926,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2749:3:24","memberName":"max","nodeType":"MemberAccess","src":"2735:17:24","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"src":"2727:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5934,"nodeType":"IfStatement","src":"2723:105:24","trueBody":{"id":5933,"nodeType":"Block","src":"2754:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":5929,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2806:3:24","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":5930,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5916,"src":"2811:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5928,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"2775:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":5931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2775:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5932,"nodeType":"RevertStatement","src":"2768:49:24"}]}},{"expression":{"arguments":[{"id":5937,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5916,"src":"2852:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5936,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2844:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":5935,"name":"uint232","nodeType":"ElementaryTypeName","src":"2844:7:24","typeDescriptions":{}}},"id":5938,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2844:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"functionReturnParameters":5920,"id":5939,"nodeType":"Return","src":"2837:21:24"}]},"documentation":{"id":5914,"nodeType":"StructuredDocumentation","src":"2362:280:24","text":" @dev Returns the downcasted uint232 from uint256, reverting on\n overflow (when the input is greater than largest uint232).\n Counterpart to Solidity's `uint232` operator.\n Requirements:\n - input must fit into 232 bits"},"id":5941,"implemented":true,"kind":"function","modifiers":[],"name":"toUint232","nameLocation":"2656:9:24","nodeType":"FunctionDefinition","parameters":{"id":5917,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5916,"mutability":"mutable","name":"value","nameLocation":"2674:5:24","nodeType":"VariableDeclaration","scope":5941,"src":"2666:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5915,"name":"uint256","nodeType":"ElementaryTypeName","src":"2666:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2665:15:24"},"returnParameters":{"id":5920,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5919,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5941,"src":"2704:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"},"typeName":{"id":5918,"name":"uint232","nodeType":"ElementaryTypeName","src":"2704:7:24","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"visibility":"internal"}],"src":"2703:9:24"},"scope":7595,"src":"2647:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5968,"nodeType":"Block","src":"3222:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5955,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5949,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5944,"src":"3236:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":5952,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3249:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":5951,"name":"uint224","nodeType":"ElementaryTypeName","src":"3249:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"}],"id":5950,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3244:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":5953,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3244:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint224","typeString":"type(uint224)"}},"id":5954,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3258:3:24","memberName":"max","nodeType":"MemberAccess","src":"3244:17:24","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"src":"3236:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5962,"nodeType":"IfStatement","src":"3232:105:24","trueBody":{"id":5961,"nodeType":"Block","src":"3263:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":5957,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3315:3:24","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":5958,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5944,"src":"3320:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5956,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"3284:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":5959,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3284:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5960,"nodeType":"RevertStatement","src":"3277:49:24"}]}},{"expression":{"arguments":[{"id":5965,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5944,"src":"3361:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5964,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3353:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":5963,"name":"uint224","nodeType":"ElementaryTypeName","src":"3353:7:24","typeDescriptions":{}}},"id":5966,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3353:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":5948,"id":5967,"nodeType":"Return","src":"3346:21:24"}]},"documentation":{"id":5942,"nodeType":"StructuredDocumentation","src":"2871:280:24","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":5969,"implemented":true,"kind":"function","modifiers":[],"name":"toUint224","nameLocation":"3165:9:24","nodeType":"FunctionDefinition","parameters":{"id":5945,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5944,"mutability":"mutable","name":"value","nameLocation":"3183:5:24","nodeType":"VariableDeclaration","scope":5969,"src":"3175:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5943,"name":"uint256","nodeType":"ElementaryTypeName","src":"3175:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3174:15:24"},"returnParameters":{"id":5948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5947,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5969,"src":"3213:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":5946,"name":"uint224","nodeType":"ElementaryTypeName","src":"3213:7:24","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"3212:9:24"},"scope":7595,"src":"3156:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":5996,"nodeType":"Block","src":"3731:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5977,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5972,"src":"3745:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":5980,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3758:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":5979,"name":"uint216","nodeType":"ElementaryTypeName","src":"3758:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"}],"id":5978,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"3753:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":5981,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3753:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint216","typeString":"type(uint216)"}},"id":5982,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3767:3:24","memberName":"max","nodeType":"MemberAccess","src":"3753:17:24","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"3745:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5990,"nodeType":"IfStatement","src":"3741:105:24","trueBody":{"id":5989,"nodeType":"Block","src":"3772:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":5985,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3824:3:24","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":5986,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5972,"src":"3829:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5984,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"3793:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":5987,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3793:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":5988,"nodeType":"RevertStatement","src":"3786:49:24"}]}},{"expression":{"arguments":[{"id":5993,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5972,"src":"3870:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5992,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3862:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":5991,"name":"uint216","nodeType":"ElementaryTypeName","src":"3862:7:24","typeDescriptions":{}}},"id":5994,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3862:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"functionReturnParameters":5976,"id":5995,"nodeType":"Return","src":"3855:21:24"}]},"documentation":{"id":5970,"nodeType":"StructuredDocumentation","src":"3380:280:24","text":" @dev Returns the downcasted uint216 from uint256, reverting on\n overflow (when the input is greater than largest uint216).\n Counterpart to Solidity's `uint216` operator.\n Requirements:\n - input must fit into 216 bits"},"id":5997,"implemented":true,"kind":"function","modifiers":[],"name":"toUint216","nameLocation":"3674:9:24","nodeType":"FunctionDefinition","parameters":{"id":5973,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5972,"mutability":"mutable","name":"value","nameLocation":"3692:5:24","nodeType":"VariableDeclaration","scope":5997,"src":"3684:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5971,"name":"uint256","nodeType":"ElementaryTypeName","src":"3684:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3683:15:24"},"returnParameters":{"id":5976,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5975,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5997,"src":"3722:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":5974,"name":"uint216","nodeType":"ElementaryTypeName","src":"3722:7:24","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"3721:9:24"},"scope":7595,"src":"3665:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6024,"nodeType":"Block","src":"4240:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6005,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6000,"src":"4254:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6008,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4267:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":6007,"name":"uint208","nodeType":"ElementaryTypeName","src":"4267:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"}],"id":6006,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4262:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6009,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4262:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint208","typeString":"type(uint208)"}},"id":6010,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4276:3:24","memberName":"max","nodeType":"MemberAccess","src":"4262:17:24","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"4254:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6018,"nodeType":"IfStatement","src":"4250:105:24","trueBody":{"id":6017,"nodeType":"Block","src":"4281:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":6013,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4333:3:24","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":6014,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6000,"src":"4338:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6012,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"4302:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6015,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4302:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6016,"nodeType":"RevertStatement","src":"4295:49:24"}]}},{"expression":{"arguments":[{"id":6021,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6000,"src":"4379:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6020,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4371:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":6019,"name":"uint208","nodeType":"ElementaryTypeName","src":"4371:7:24","typeDescriptions":{}}},"id":6022,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4371:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":6004,"id":6023,"nodeType":"Return","src":"4364:21:24"}]},"documentation":{"id":5998,"nodeType":"StructuredDocumentation","src":"3889:280:24","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":6025,"implemented":true,"kind":"function","modifiers":[],"name":"toUint208","nameLocation":"4183:9:24","nodeType":"FunctionDefinition","parameters":{"id":6001,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6000,"mutability":"mutable","name":"value","nameLocation":"4201:5:24","nodeType":"VariableDeclaration","scope":6025,"src":"4193:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5999,"name":"uint256","nodeType":"ElementaryTypeName","src":"4193:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4192:15:24"},"returnParameters":{"id":6004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6003,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6025,"src":"4231:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":6002,"name":"uint208","nodeType":"ElementaryTypeName","src":"4231:7:24","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"4230:9:24"},"scope":7595,"src":"4174:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6052,"nodeType":"Block","src":"4749:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6033,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6028,"src":"4763:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6036,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4776:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":6035,"name":"uint200","nodeType":"ElementaryTypeName","src":"4776:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"}],"id":6034,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"4771:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6037,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4771:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint200","typeString":"type(uint200)"}},"id":6038,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4785:3:24","memberName":"max","nodeType":"MemberAccess","src":"4771:17:24","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"src":"4763:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6046,"nodeType":"IfStatement","src":"4759:105:24","trueBody":{"id":6045,"nodeType":"Block","src":"4790:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":6041,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4842:3:24","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":6042,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6028,"src":"4847:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6040,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"4811:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6043,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4811:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6044,"nodeType":"RevertStatement","src":"4804:49:24"}]}},{"expression":{"arguments":[{"id":6049,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6028,"src":"4888:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6048,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4880:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":6047,"name":"uint200","nodeType":"ElementaryTypeName","src":"4880:7:24","typeDescriptions":{}}},"id":6050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4880:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"functionReturnParameters":6032,"id":6051,"nodeType":"Return","src":"4873:21:24"}]},"documentation":{"id":6026,"nodeType":"StructuredDocumentation","src":"4398:280:24","text":" @dev Returns the downcasted uint200 from uint256, reverting on\n overflow (when the input is greater than largest uint200).\n Counterpart to Solidity's `uint200` operator.\n Requirements:\n - input must fit into 200 bits"},"id":6053,"implemented":true,"kind":"function","modifiers":[],"name":"toUint200","nameLocation":"4692:9:24","nodeType":"FunctionDefinition","parameters":{"id":6029,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6028,"mutability":"mutable","name":"value","nameLocation":"4710:5:24","nodeType":"VariableDeclaration","scope":6053,"src":"4702:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6027,"name":"uint256","nodeType":"ElementaryTypeName","src":"4702:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4701:15:24"},"returnParameters":{"id":6032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6031,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6053,"src":"4740:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"},"typeName":{"id":6030,"name":"uint200","nodeType":"ElementaryTypeName","src":"4740:7:24","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"visibility":"internal"}],"src":"4739:9:24"},"scope":7595,"src":"4683:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6080,"nodeType":"Block","src":"5258:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6061,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6056,"src":"5272:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6064,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5285:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":6063,"name":"uint192","nodeType":"ElementaryTypeName","src":"5285:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"}],"id":6062,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5280:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6065,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5280:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint192","typeString":"type(uint192)"}},"id":6066,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5294:3:24","memberName":"max","nodeType":"MemberAccess","src":"5280:17:24","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"src":"5272:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6074,"nodeType":"IfStatement","src":"5268:105:24","trueBody":{"id":6073,"nodeType":"Block","src":"5299:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":6069,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5351:3:24","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":6070,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6056,"src":"5356:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6068,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"5320:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5320:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6072,"nodeType":"RevertStatement","src":"5313:49:24"}]}},{"expression":{"arguments":[{"id":6077,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6056,"src":"5397:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6076,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5389:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":6075,"name":"uint192","nodeType":"ElementaryTypeName","src":"5389:7:24","typeDescriptions":{}}},"id":6078,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5389:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"functionReturnParameters":6060,"id":6079,"nodeType":"Return","src":"5382:21:24"}]},"documentation":{"id":6054,"nodeType":"StructuredDocumentation","src":"4907:280:24","text":" @dev Returns the downcasted uint192 from uint256, reverting on\n overflow (when the input is greater than largest uint192).\n Counterpart to Solidity's `uint192` operator.\n Requirements:\n - input must fit into 192 bits"},"id":6081,"implemented":true,"kind":"function","modifiers":[],"name":"toUint192","nameLocation":"5201:9:24","nodeType":"FunctionDefinition","parameters":{"id":6057,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6056,"mutability":"mutable","name":"value","nameLocation":"5219:5:24","nodeType":"VariableDeclaration","scope":6081,"src":"5211:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6055,"name":"uint256","nodeType":"ElementaryTypeName","src":"5211:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5210:15:24"},"returnParameters":{"id":6060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6059,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6081,"src":"5249:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":6058,"name":"uint192","nodeType":"ElementaryTypeName","src":"5249:7:24","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"5248:9:24"},"scope":7595,"src":"5192:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6108,"nodeType":"Block","src":"5767:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6089,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6084,"src":"5781:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6092,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5794:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":6091,"name":"uint184","nodeType":"ElementaryTypeName","src":"5794:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"}],"id":6090,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"5789:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6093,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5789:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint184","typeString":"type(uint184)"}},"id":6094,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5803:3:24","memberName":"max","nodeType":"MemberAccess","src":"5789:17:24","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"src":"5781:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6102,"nodeType":"IfStatement","src":"5777:105:24","trueBody":{"id":6101,"nodeType":"Block","src":"5808:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":6097,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5860:3:24","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":6098,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6084,"src":"5865:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6096,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"5829:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6099,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5829:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6100,"nodeType":"RevertStatement","src":"5822:49:24"}]}},{"expression":{"arguments":[{"id":6105,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6084,"src":"5906:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6104,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5898:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":6103,"name":"uint184","nodeType":"ElementaryTypeName","src":"5898:7:24","typeDescriptions":{}}},"id":6106,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5898:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"functionReturnParameters":6088,"id":6107,"nodeType":"Return","src":"5891:21:24"}]},"documentation":{"id":6082,"nodeType":"StructuredDocumentation","src":"5416:280:24","text":" @dev Returns the downcasted uint184 from uint256, reverting on\n overflow (when the input is greater than largest uint184).\n Counterpart to Solidity's `uint184` operator.\n Requirements:\n - input must fit into 184 bits"},"id":6109,"implemented":true,"kind":"function","modifiers":[],"name":"toUint184","nameLocation":"5710:9:24","nodeType":"FunctionDefinition","parameters":{"id":6085,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6084,"mutability":"mutable","name":"value","nameLocation":"5728:5:24","nodeType":"VariableDeclaration","scope":6109,"src":"5720:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6083,"name":"uint256","nodeType":"ElementaryTypeName","src":"5720:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5719:15:24"},"returnParameters":{"id":6088,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6087,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6109,"src":"5758:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"},"typeName":{"id":6086,"name":"uint184","nodeType":"ElementaryTypeName","src":"5758:7:24","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"visibility":"internal"}],"src":"5757:9:24"},"scope":7595,"src":"5701:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6136,"nodeType":"Block","src":"6276:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6123,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6117,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6112,"src":"6290:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6120,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6303:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":6119,"name":"uint176","nodeType":"ElementaryTypeName","src":"6303:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"}],"id":6118,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6298:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6121,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6298:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint176","typeString":"type(uint176)"}},"id":6122,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6312:3:24","memberName":"max","nodeType":"MemberAccess","src":"6298:17:24","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"src":"6290:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6130,"nodeType":"IfStatement","src":"6286:105:24","trueBody":{"id":6129,"nodeType":"Block","src":"6317:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":6125,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6369:3:24","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":6126,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6112,"src":"6374:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6124,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"6338:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6338:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6128,"nodeType":"RevertStatement","src":"6331:49:24"}]}},{"expression":{"arguments":[{"id":6133,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6112,"src":"6415:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6132,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6407:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":6131,"name":"uint176","nodeType":"ElementaryTypeName","src":"6407:7:24","typeDescriptions":{}}},"id":6134,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6407:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"functionReturnParameters":6116,"id":6135,"nodeType":"Return","src":"6400:21:24"}]},"documentation":{"id":6110,"nodeType":"StructuredDocumentation","src":"5925:280:24","text":" @dev Returns the downcasted uint176 from uint256, reverting on\n overflow (when the input is greater than largest uint176).\n Counterpart to Solidity's `uint176` operator.\n Requirements:\n - input must fit into 176 bits"},"id":6137,"implemented":true,"kind":"function","modifiers":[],"name":"toUint176","nameLocation":"6219:9:24","nodeType":"FunctionDefinition","parameters":{"id":6113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6112,"mutability":"mutable","name":"value","nameLocation":"6237:5:24","nodeType":"VariableDeclaration","scope":6137,"src":"6229:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6111,"name":"uint256","nodeType":"ElementaryTypeName","src":"6229:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6228:15:24"},"returnParameters":{"id":6116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6115,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6137,"src":"6267:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"},"typeName":{"id":6114,"name":"uint176","nodeType":"ElementaryTypeName","src":"6267:7:24","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"visibility":"internal"}],"src":"6266:9:24"},"scope":7595,"src":"6210:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6164,"nodeType":"Block","src":"6785:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6145,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6140,"src":"6799:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6148,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6812:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":6147,"name":"uint168","nodeType":"ElementaryTypeName","src":"6812:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"}],"id":6146,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"6807:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6807:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint168","typeString":"type(uint168)"}},"id":6150,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6821:3:24","memberName":"max","nodeType":"MemberAccess","src":"6807:17:24","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"src":"6799:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6158,"nodeType":"IfStatement","src":"6795:105:24","trueBody":{"id":6157,"nodeType":"Block","src":"6826:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":6153,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6878:3:24","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":6154,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6140,"src":"6883:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6152,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"6847:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6847:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6156,"nodeType":"RevertStatement","src":"6840:49:24"}]}},{"expression":{"arguments":[{"id":6161,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6140,"src":"6924:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6160,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6916:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":6159,"name":"uint168","nodeType":"ElementaryTypeName","src":"6916:7:24","typeDescriptions":{}}},"id":6162,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6916:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"functionReturnParameters":6144,"id":6163,"nodeType":"Return","src":"6909:21:24"}]},"documentation":{"id":6138,"nodeType":"StructuredDocumentation","src":"6434:280:24","text":" @dev Returns the downcasted uint168 from uint256, reverting on\n overflow (when the input is greater than largest uint168).\n Counterpart to Solidity's `uint168` operator.\n Requirements:\n - input must fit into 168 bits"},"id":6165,"implemented":true,"kind":"function","modifiers":[],"name":"toUint168","nameLocation":"6728:9:24","nodeType":"FunctionDefinition","parameters":{"id":6141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6140,"mutability":"mutable","name":"value","nameLocation":"6746:5:24","nodeType":"VariableDeclaration","scope":6165,"src":"6738:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6139,"name":"uint256","nodeType":"ElementaryTypeName","src":"6738:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6737:15:24"},"returnParameters":{"id":6144,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6143,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6165,"src":"6776:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"},"typeName":{"id":6142,"name":"uint168","nodeType":"ElementaryTypeName","src":"6776:7:24","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"visibility":"internal"}],"src":"6775:9:24"},"scope":7595,"src":"6719:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6192,"nodeType":"Block","src":"7294:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6173,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6168,"src":"7308:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6176,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7321:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":6175,"name":"uint160","nodeType":"ElementaryTypeName","src":"7321:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"}],"id":6174,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7316:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7316:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint160","typeString":"type(uint160)"}},"id":6178,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7330:3:24","memberName":"max","nodeType":"MemberAccess","src":"7316:17:24","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"src":"7308:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6186,"nodeType":"IfStatement","src":"7304:105:24","trueBody":{"id":6185,"nodeType":"Block","src":"7335:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":6181,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7387:3:24","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":6182,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6168,"src":"7392:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6180,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"7356:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7356:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6184,"nodeType":"RevertStatement","src":"7349:49:24"}]}},{"expression":{"arguments":[{"id":6189,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6168,"src":"7433:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6188,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7425:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":6187,"name":"uint160","nodeType":"ElementaryTypeName","src":"7425:7:24","typeDescriptions":{}}},"id":6190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7425:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":6172,"id":6191,"nodeType":"Return","src":"7418:21:24"}]},"documentation":{"id":6166,"nodeType":"StructuredDocumentation","src":"6943:280:24","text":" @dev Returns the downcasted uint160 from uint256, reverting on\n overflow (when the input is greater than largest uint160).\n Counterpart to Solidity's `uint160` operator.\n Requirements:\n - input must fit into 160 bits"},"id":6193,"implemented":true,"kind":"function","modifiers":[],"name":"toUint160","nameLocation":"7237:9:24","nodeType":"FunctionDefinition","parameters":{"id":6169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6168,"mutability":"mutable","name":"value","nameLocation":"7255:5:24","nodeType":"VariableDeclaration","scope":6193,"src":"7247:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6167,"name":"uint256","nodeType":"ElementaryTypeName","src":"7247:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7246:15:24"},"returnParameters":{"id":6172,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6171,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6193,"src":"7285:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":6170,"name":"uint160","nodeType":"ElementaryTypeName","src":"7285:7:24","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"7284:9:24"},"scope":7595,"src":"7228:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6220,"nodeType":"Block","src":"7803:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6201,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6196,"src":"7817:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6204,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7830:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":6203,"name":"uint152","nodeType":"ElementaryTypeName","src":"7830:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"}],"id":6202,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"7825:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7825:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint152","typeString":"type(uint152)"}},"id":6206,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7839:3:24","memberName":"max","nodeType":"MemberAccess","src":"7825:17:24","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"src":"7817:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6214,"nodeType":"IfStatement","src":"7813:105:24","trueBody":{"id":6213,"nodeType":"Block","src":"7844:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":6209,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7896:3:24","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":6210,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6196,"src":"7901:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6208,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"7865:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7865:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6212,"nodeType":"RevertStatement","src":"7858:49:24"}]}},{"expression":{"arguments":[{"id":6217,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6196,"src":"7942:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6216,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7934:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":6215,"name":"uint152","nodeType":"ElementaryTypeName","src":"7934:7:24","typeDescriptions":{}}},"id":6218,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7934:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"functionReturnParameters":6200,"id":6219,"nodeType":"Return","src":"7927:21:24"}]},"documentation":{"id":6194,"nodeType":"StructuredDocumentation","src":"7452:280:24","text":" @dev Returns the downcasted uint152 from uint256, reverting on\n overflow (when the input is greater than largest uint152).\n Counterpart to Solidity's `uint152` operator.\n Requirements:\n - input must fit into 152 bits"},"id":6221,"implemented":true,"kind":"function","modifiers":[],"name":"toUint152","nameLocation":"7746:9:24","nodeType":"FunctionDefinition","parameters":{"id":6197,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6196,"mutability":"mutable","name":"value","nameLocation":"7764:5:24","nodeType":"VariableDeclaration","scope":6221,"src":"7756:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6195,"name":"uint256","nodeType":"ElementaryTypeName","src":"7756:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7755:15:24"},"returnParameters":{"id":6200,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6199,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6221,"src":"7794:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"},"typeName":{"id":6198,"name":"uint152","nodeType":"ElementaryTypeName","src":"7794:7:24","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"visibility":"internal"}],"src":"7793:9:24"},"scope":7595,"src":"7737:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6248,"nodeType":"Block","src":"8312:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6235,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6229,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6224,"src":"8326:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6232,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8339:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":6231,"name":"uint144","nodeType":"ElementaryTypeName","src":"8339:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"}],"id":6230,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8334:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8334:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint144","typeString":"type(uint144)"}},"id":6234,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8348:3:24","memberName":"max","nodeType":"MemberAccess","src":"8334:17:24","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"src":"8326:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6242,"nodeType":"IfStatement","src":"8322:105:24","trueBody":{"id":6241,"nodeType":"Block","src":"8353:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":6237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8405:3:24","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":6238,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6224,"src":"8410:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6236,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"8374:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6239,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8374:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6240,"nodeType":"RevertStatement","src":"8367:49:24"}]}},{"expression":{"arguments":[{"id":6245,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6224,"src":"8451:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6244,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8443:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":6243,"name":"uint144","nodeType":"ElementaryTypeName","src":"8443:7:24","typeDescriptions":{}}},"id":6246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8443:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"functionReturnParameters":6228,"id":6247,"nodeType":"Return","src":"8436:21:24"}]},"documentation":{"id":6222,"nodeType":"StructuredDocumentation","src":"7961:280:24","text":" @dev Returns the downcasted uint144 from uint256, reverting on\n overflow (when the input is greater than largest uint144).\n Counterpart to Solidity's `uint144` operator.\n Requirements:\n - input must fit into 144 bits"},"id":6249,"implemented":true,"kind":"function","modifiers":[],"name":"toUint144","nameLocation":"8255:9:24","nodeType":"FunctionDefinition","parameters":{"id":6225,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6224,"mutability":"mutable","name":"value","nameLocation":"8273:5:24","nodeType":"VariableDeclaration","scope":6249,"src":"8265:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6223,"name":"uint256","nodeType":"ElementaryTypeName","src":"8265:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8264:15:24"},"returnParameters":{"id":6228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6227,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6249,"src":"8303:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"},"typeName":{"id":6226,"name":"uint144","nodeType":"ElementaryTypeName","src":"8303:7:24","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"visibility":"internal"}],"src":"8302:9:24"},"scope":7595,"src":"8246:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6276,"nodeType":"Block","src":"8821:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6257,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6252,"src":"8835:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6260,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8848:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":6259,"name":"uint136","nodeType":"ElementaryTypeName","src":"8848:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"}],"id":6258,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"8843:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6261,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8843:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint136","typeString":"type(uint136)"}},"id":6262,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8857:3:24","memberName":"max","nodeType":"MemberAccess","src":"8843:17:24","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"src":"8835:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6270,"nodeType":"IfStatement","src":"8831:105:24","trueBody":{"id":6269,"nodeType":"Block","src":"8862:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":6265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8914:3:24","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":6266,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6252,"src":"8919:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6264,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"8883:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6267,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8883:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6268,"nodeType":"RevertStatement","src":"8876:49:24"}]}},{"expression":{"arguments":[{"id":6273,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6252,"src":"8960:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6272,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8952:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":6271,"name":"uint136","nodeType":"ElementaryTypeName","src":"8952:7:24","typeDescriptions":{}}},"id":6274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8952:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"functionReturnParameters":6256,"id":6275,"nodeType":"Return","src":"8945:21:24"}]},"documentation":{"id":6250,"nodeType":"StructuredDocumentation","src":"8470:280:24","text":" @dev Returns the downcasted uint136 from uint256, reverting on\n overflow (when the input is greater than largest uint136).\n Counterpart to Solidity's `uint136` operator.\n Requirements:\n - input must fit into 136 bits"},"id":6277,"implemented":true,"kind":"function","modifiers":[],"name":"toUint136","nameLocation":"8764:9:24","nodeType":"FunctionDefinition","parameters":{"id":6253,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6252,"mutability":"mutable","name":"value","nameLocation":"8782:5:24","nodeType":"VariableDeclaration","scope":6277,"src":"8774:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6251,"name":"uint256","nodeType":"ElementaryTypeName","src":"8774:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8773:15:24"},"returnParameters":{"id":6256,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6255,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6277,"src":"8812:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"},"typeName":{"id":6254,"name":"uint136","nodeType":"ElementaryTypeName","src":"8812:7:24","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"visibility":"internal"}],"src":"8811:9:24"},"scope":7595,"src":"8755:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6304,"nodeType":"Block","src":"9330:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6285,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6280,"src":"9344:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6288,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9357:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":6287,"name":"uint128","nodeType":"ElementaryTypeName","src":"9357:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"}],"id":6286,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9352:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6289,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9352:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint128","typeString":"type(uint128)"}},"id":6290,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9366:3:24","memberName":"max","nodeType":"MemberAccess","src":"9352:17:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"9344:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6298,"nodeType":"IfStatement","src":"9340:105:24","trueBody":{"id":6297,"nodeType":"Block","src":"9371:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":6293,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9423:3:24","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":6294,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6280,"src":"9428:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6292,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"9392:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6295,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9392:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6296,"nodeType":"RevertStatement","src":"9385:49:24"}]}},{"expression":{"arguments":[{"id":6301,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6280,"src":"9469:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6300,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9461:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":6299,"name":"uint128","nodeType":"ElementaryTypeName","src":"9461:7:24","typeDescriptions":{}}},"id":6302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9461:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":6284,"id":6303,"nodeType":"Return","src":"9454:21:24"}]},"documentation":{"id":6278,"nodeType":"StructuredDocumentation","src":"8979:280:24","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":6305,"implemented":true,"kind":"function","modifiers":[],"name":"toUint128","nameLocation":"9273:9:24","nodeType":"FunctionDefinition","parameters":{"id":6281,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6280,"mutability":"mutable","name":"value","nameLocation":"9291:5:24","nodeType":"VariableDeclaration","scope":6305,"src":"9283:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6279,"name":"uint256","nodeType":"ElementaryTypeName","src":"9283:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9282:15:24"},"returnParameters":{"id":6284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6283,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6305,"src":"9321:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":6282,"name":"uint128","nodeType":"ElementaryTypeName","src":"9321:7:24","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"9320:9:24"},"scope":7595,"src":"9264:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6332,"nodeType":"Block","src":"9839:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6313,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6308,"src":"9853:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6316,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9866:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":6315,"name":"uint120","nodeType":"ElementaryTypeName","src":"9866:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"}],"id":6314,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"9861:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9861:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint120","typeString":"type(uint120)"}},"id":6318,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9875:3:24","memberName":"max","nodeType":"MemberAccess","src":"9861:17:24","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"src":"9853:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6326,"nodeType":"IfStatement","src":"9849:105:24","trueBody":{"id":6325,"nodeType":"Block","src":"9880:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":6321,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9932:3:24","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":6322,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6308,"src":"9937:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6320,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"9901:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9901:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6324,"nodeType":"RevertStatement","src":"9894:49:24"}]}},{"expression":{"arguments":[{"id":6329,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6308,"src":"9978:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6328,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9970:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":6327,"name":"uint120","nodeType":"ElementaryTypeName","src":"9970:7:24","typeDescriptions":{}}},"id":6330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9970:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"functionReturnParameters":6312,"id":6331,"nodeType":"Return","src":"9963:21:24"}]},"documentation":{"id":6306,"nodeType":"StructuredDocumentation","src":"9488:280:24","text":" @dev Returns the downcasted uint120 from uint256, reverting on\n overflow (when the input is greater than largest uint120).\n Counterpart to Solidity's `uint120` operator.\n Requirements:\n - input must fit into 120 bits"},"id":6333,"implemented":true,"kind":"function","modifiers":[],"name":"toUint120","nameLocation":"9782:9:24","nodeType":"FunctionDefinition","parameters":{"id":6309,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6308,"mutability":"mutable","name":"value","nameLocation":"9800:5:24","nodeType":"VariableDeclaration","scope":6333,"src":"9792:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6307,"name":"uint256","nodeType":"ElementaryTypeName","src":"9792:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9791:15:24"},"returnParameters":{"id":6312,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6311,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6333,"src":"9830:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"},"typeName":{"id":6310,"name":"uint120","nodeType":"ElementaryTypeName","src":"9830:7:24","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"visibility":"internal"}],"src":"9829:9:24"},"scope":7595,"src":"9773:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6360,"nodeType":"Block","src":"10348:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6341,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6336,"src":"10362:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6344,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10375:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":6343,"name":"uint112","nodeType":"ElementaryTypeName","src":"10375:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"}],"id":6342,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10370:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6345,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10370:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint112","typeString":"type(uint112)"}},"id":6346,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10384:3:24","memberName":"max","nodeType":"MemberAccess","src":"10370:17:24","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"10362:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6354,"nodeType":"IfStatement","src":"10358:105:24","trueBody":{"id":6353,"nodeType":"Block","src":"10389:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":6349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10441:3:24","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":6350,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6336,"src":"10446:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6348,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"10410:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10410:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6352,"nodeType":"RevertStatement","src":"10403:49:24"}]}},{"expression":{"arguments":[{"id":6357,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6336,"src":"10487:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6356,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10479:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":6355,"name":"uint112","nodeType":"ElementaryTypeName","src":"10479:7:24","typeDescriptions":{}}},"id":6358,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10479:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"functionReturnParameters":6340,"id":6359,"nodeType":"Return","src":"10472:21:24"}]},"documentation":{"id":6334,"nodeType":"StructuredDocumentation","src":"9997:280:24","text":" @dev Returns the downcasted uint112 from uint256, reverting on\n overflow (when the input is greater than largest uint112).\n Counterpart to Solidity's `uint112` operator.\n Requirements:\n - input must fit into 112 bits"},"id":6361,"implemented":true,"kind":"function","modifiers":[],"name":"toUint112","nameLocation":"10291:9:24","nodeType":"FunctionDefinition","parameters":{"id":6337,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6336,"mutability":"mutable","name":"value","nameLocation":"10309:5:24","nodeType":"VariableDeclaration","scope":6361,"src":"10301:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6335,"name":"uint256","nodeType":"ElementaryTypeName","src":"10301:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10300:15:24"},"returnParameters":{"id":6340,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6339,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6361,"src":"10339:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":6338,"name":"uint112","nodeType":"ElementaryTypeName","src":"10339:7:24","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"src":"10338:9:24"},"scope":7595,"src":"10282:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6388,"nodeType":"Block","src":"10857:152:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6369,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6364,"src":"10871:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6372,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10884:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":6371,"name":"uint104","nodeType":"ElementaryTypeName","src":"10884:7:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"}],"id":6370,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10879:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6373,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10879:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint104","typeString":"type(uint104)"}},"id":6374,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10893:3:24","memberName":"max","nodeType":"MemberAccess","src":"10879:17:24","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"src":"10871:25:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6382,"nodeType":"IfStatement","src":"10867:105:24","trueBody":{"id":6381,"nodeType":"Block","src":"10898:74:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":6377,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10950:3:24","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":6378,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6364,"src":"10955:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6376,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"10919:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6379,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10919:42:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6380,"nodeType":"RevertStatement","src":"10912:49:24"}]}},{"expression":{"arguments":[{"id":6385,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6364,"src":"10996:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6384,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10988:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":6383,"name":"uint104","nodeType":"ElementaryTypeName","src":"10988:7:24","typeDescriptions":{}}},"id":6386,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10988:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"functionReturnParameters":6368,"id":6387,"nodeType":"Return","src":"10981:21:24"}]},"documentation":{"id":6362,"nodeType":"StructuredDocumentation","src":"10506:280:24","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":6389,"implemented":true,"kind":"function","modifiers":[],"name":"toUint104","nameLocation":"10800:9:24","nodeType":"FunctionDefinition","parameters":{"id":6365,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6364,"mutability":"mutable","name":"value","nameLocation":"10818:5:24","nodeType":"VariableDeclaration","scope":6389,"src":"10810:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6363,"name":"uint256","nodeType":"ElementaryTypeName","src":"10810:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10809:15:24"},"returnParameters":{"id":6368,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6367,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6389,"src":"10848:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"},"typeName":{"id":6366,"name":"uint104","nodeType":"ElementaryTypeName","src":"10848:7:24","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"visibility":"internal"}],"src":"10847:9:24"},"scope":7595,"src":"10791:218:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6416,"nodeType":"Block","src":"11360:149:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6397,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6392,"src":"11374:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6400,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11387:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":6399,"name":"uint96","nodeType":"ElementaryTypeName","src":"11387:6:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"}],"id":6398,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11382:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6401,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11382:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint96","typeString":"type(uint96)"}},"id":6402,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11395:3:24","memberName":"max","nodeType":"MemberAccess","src":"11382:16:24","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"11374:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6410,"nodeType":"IfStatement","src":"11370:103:24","trueBody":{"id":6409,"nodeType":"Block","src":"11400:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":6405,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11452:2:24","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":6406,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6392,"src":"11456:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6404,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"11421:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11421:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6408,"nodeType":"RevertStatement","src":"11414:48:24"}]}},{"expression":{"arguments":[{"id":6413,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6392,"src":"11496:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6412,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11489:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":6411,"name":"uint96","nodeType":"ElementaryTypeName","src":"11489:6:24","typeDescriptions":{}}},"id":6414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11489:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"functionReturnParameters":6396,"id":6415,"nodeType":"Return","src":"11482:20:24"}]},"documentation":{"id":6390,"nodeType":"StructuredDocumentation","src":"11015:276:24","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":6417,"implemented":true,"kind":"function","modifiers":[],"name":"toUint96","nameLocation":"11305:8:24","nodeType":"FunctionDefinition","parameters":{"id":6393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6392,"mutability":"mutable","name":"value","nameLocation":"11322:5:24","nodeType":"VariableDeclaration","scope":6417,"src":"11314:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6391,"name":"uint256","nodeType":"ElementaryTypeName","src":"11314:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11313:15:24"},"returnParameters":{"id":6396,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6395,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6417,"src":"11352:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":6394,"name":"uint96","nodeType":"ElementaryTypeName","src":"11352:6:24","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"11351:8:24"},"scope":7595,"src":"11296:213:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6444,"nodeType":"Block","src":"11860:149:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6425,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6420,"src":"11874:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6428,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11887:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":6427,"name":"uint88","nodeType":"ElementaryTypeName","src":"11887:6:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"}],"id":6426,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"11882:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11882:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint88","typeString":"type(uint88)"}},"id":6430,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11895:3:24","memberName":"max","nodeType":"MemberAccess","src":"11882:16:24","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"src":"11874:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6438,"nodeType":"IfStatement","src":"11870:103:24","trueBody":{"id":6437,"nodeType":"Block","src":"11900:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":6433,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11952:2:24","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":6434,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6420,"src":"11956:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6432,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"11921:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6435,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11921:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6436,"nodeType":"RevertStatement","src":"11914:48:24"}]}},{"expression":{"arguments":[{"id":6441,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6420,"src":"11996:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6440,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11989:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":6439,"name":"uint88","nodeType":"ElementaryTypeName","src":"11989:6:24","typeDescriptions":{}}},"id":6442,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11989:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"functionReturnParameters":6424,"id":6443,"nodeType":"Return","src":"11982:20:24"}]},"documentation":{"id":6418,"nodeType":"StructuredDocumentation","src":"11515:276:24","text":" @dev Returns the downcasted uint88 from uint256, reverting on\n overflow (when the input is greater than largest uint88).\n Counterpart to Solidity's `uint88` operator.\n Requirements:\n - input must fit into 88 bits"},"id":6445,"implemented":true,"kind":"function","modifiers":[],"name":"toUint88","nameLocation":"11805:8:24","nodeType":"FunctionDefinition","parameters":{"id":6421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6420,"mutability":"mutable","name":"value","nameLocation":"11822:5:24","nodeType":"VariableDeclaration","scope":6445,"src":"11814:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6419,"name":"uint256","nodeType":"ElementaryTypeName","src":"11814:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11813:15:24"},"returnParameters":{"id":6424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6423,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6445,"src":"11852:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"},"typeName":{"id":6422,"name":"uint88","nodeType":"ElementaryTypeName","src":"11852:6:24","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"visibility":"internal"}],"src":"11851:8:24"},"scope":7595,"src":"11796:213:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6472,"nodeType":"Block","src":"12360:149:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6453,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6448,"src":"12374:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6456,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12387:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":6455,"name":"uint80","nodeType":"ElementaryTypeName","src":"12387:6:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"}],"id":6454,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"12382:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12382:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint80","typeString":"type(uint80)"}},"id":6458,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12395:3:24","memberName":"max","nodeType":"MemberAccess","src":"12382:16:24","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"src":"12374:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6466,"nodeType":"IfStatement","src":"12370:103:24","trueBody":{"id":6465,"nodeType":"Block","src":"12400:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":6461,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12452:2:24","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":6462,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6448,"src":"12456:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6460,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"12421:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12421:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6464,"nodeType":"RevertStatement","src":"12414:48:24"}]}},{"expression":{"arguments":[{"id":6469,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6448,"src":"12496:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6468,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12489:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":6467,"name":"uint80","nodeType":"ElementaryTypeName","src":"12489:6:24","typeDescriptions":{}}},"id":6470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12489:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"functionReturnParameters":6452,"id":6471,"nodeType":"Return","src":"12482:20:24"}]},"documentation":{"id":6446,"nodeType":"StructuredDocumentation","src":"12015:276:24","text":" @dev Returns the downcasted uint80 from uint256, reverting on\n overflow (when the input is greater than largest uint80).\n Counterpart to Solidity's `uint80` operator.\n Requirements:\n - input must fit into 80 bits"},"id":6473,"implemented":true,"kind":"function","modifiers":[],"name":"toUint80","nameLocation":"12305:8:24","nodeType":"FunctionDefinition","parameters":{"id":6449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6448,"mutability":"mutable","name":"value","nameLocation":"12322:5:24","nodeType":"VariableDeclaration","scope":6473,"src":"12314:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6447,"name":"uint256","nodeType":"ElementaryTypeName","src":"12314:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12313:15:24"},"returnParameters":{"id":6452,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6451,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6473,"src":"12352:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"},"typeName":{"id":6450,"name":"uint80","nodeType":"ElementaryTypeName","src":"12352:6:24","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"visibility":"internal"}],"src":"12351:8:24"},"scope":7595,"src":"12296:213:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6500,"nodeType":"Block","src":"12860:149:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6481,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6476,"src":"12874:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6484,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12887:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":6483,"name":"uint72","nodeType":"ElementaryTypeName","src":"12887:6:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"}],"id":6482,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"12882:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6485,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12882:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint72","typeString":"type(uint72)"}},"id":6486,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12895:3:24","memberName":"max","nodeType":"MemberAccess","src":"12882:16:24","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"src":"12874:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6494,"nodeType":"IfStatement","src":"12870:103:24","trueBody":{"id":6493,"nodeType":"Block","src":"12900:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":6489,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12952:2:24","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":6490,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6476,"src":"12956:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6488,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"12921:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12921:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6492,"nodeType":"RevertStatement","src":"12914:48:24"}]}},{"expression":{"arguments":[{"id":6497,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6476,"src":"12996:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6496,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12989:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":6495,"name":"uint72","nodeType":"ElementaryTypeName","src":"12989:6:24","typeDescriptions":{}}},"id":6498,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12989:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"functionReturnParameters":6480,"id":6499,"nodeType":"Return","src":"12982:20:24"}]},"documentation":{"id":6474,"nodeType":"StructuredDocumentation","src":"12515:276:24","text":" @dev Returns the downcasted uint72 from uint256, reverting on\n overflow (when the input is greater than largest uint72).\n Counterpart to Solidity's `uint72` operator.\n Requirements:\n - input must fit into 72 bits"},"id":6501,"implemented":true,"kind":"function","modifiers":[],"name":"toUint72","nameLocation":"12805:8:24","nodeType":"FunctionDefinition","parameters":{"id":6477,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6476,"mutability":"mutable","name":"value","nameLocation":"12822:5:24","nodeType":"VariableDeclaration","scope":6501,"src":"12814:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6475,"name":"uint256","nodeType":"ElementaryTypeName","src":"12814:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12813:15:24"},"returnParameters":{"id":6480,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6479,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6501,"src":"12852:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"},"typeName":{"id":6478,"name":"uint72","nodeType":"ElementaryTypeName","src":"12852:6:24","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"visibility":"internal"}],"src":"12851:8:24"},"scope":7595,"src":"12796:213:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6528,"nodeType":"Block","src":"13360:149:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6509,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6504,"src":"13374:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6512,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13387:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":6511,"name":"uint64","nodeType":"ElementaryTypeName","src":"13387:6:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":6510,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"13382:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6513,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13382:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":6514,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13395:3:24","memberName":"max","nodeType":"MemberAccess","src":"13382:16:24","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13374:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6522,"nodeType":"IfStatement","src":"13370:103:24","trueBody":{"id":6521,"nodeType":"Block","src":"13400:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":6517,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13452:2:24","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":6518,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6504,"src":"13456:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6516,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"13421:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13421:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6520,"nodeType":"RevertStatement","src":"13414:48:24"}]}},{"expression":{"arguments":[{"id":6525,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6504,"src":"13496:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6524,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13489:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":6523,"name":"uint64","nodeType":"ElementaryTypeName","src":"13489:6:24","typeDescriptions":{}}},"id":6526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13489:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":6508,"id":6527,"nodeType":"Return","src":"13482:20:24"}]},"documentation":{"id":6502,"nodeType":"StructuredDocumentation","src":"13015:276:24","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":6529,"implemented":true,"kind":"function","modifiers":[],"name":"toUint64","nameLocation":"13305:8:24","nodeType":"FunctionDefinition","parameters":{"id":6505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6504,"mutability":"mutable","name":"value","nameLocation":"13322:5:24","nodeType":"VariableDeclaration","scope":6529,"src":"13314:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6503,"name":"uint256","nodeType":"ElementaryTypeName","src":"13314:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13313:15:24"},"returnParameters":{"id":6508,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6507,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6529,"src":"13352:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":6506,"name":"uint64","nodeType":"ElementaryTypeName","src":"13352:6:24","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"13351:8:24"},"scope":7595,"src":"13296:213:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6556,"nodeType":"Block","src":"13860:149:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6537,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6532,"src":"13874:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6540,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13887:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":6539,"name":"uint56","nodeType":"ElementaryTypeName","src":"13887:6:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"}],"id":6538,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"13882:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6541,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13882:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint56","typeString":"type(uint56)"}},"id":6542,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13895:3:24","memberName":"max","nodeType":"MemberAccess","src":"13882:16:24","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"src":"13874:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6550,"nodeType":"IfStatement","src":"13870:103:24","trueBody":{"id":6549,"nodeType":"Block","src":"13900:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":6545,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13952:2:24","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":6546,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6532,"src":"13956:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6544,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"13921:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6547,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13921:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6548,"nodeType":"RevertStatement","src":"13914:48:24"}]}},{"expression":{"arguments":[{"id":6553,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6532,"src":"13996:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6552,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13989:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":6551,"name":"uint56","nodeType":"ElementaryTypeName","src":"13989:6:24","typeDescriptions":{}}},"id":6554,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13989:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"functionReturnParameters":6536,"id":6555,"nodeType":"Return","src":"13982:20:24"}]},"documentation":{"id":6530,"nodeType":"StructuredDocumentation","src":"13515:276:24","text":" @dev Returns the downcasted uint56 from uint256, reverting on\n overflow (when the input is greater than largest uint56).\n Counterpart to Solidity's `uint56` operator.\n Requirements:\n - input must fit into 56 bits"},"id":6557,"implemented":true,"kind":"function","modifiers":[],"name":"toUint56","nameLocation":"13805:8:24","nodeType":"FunctionDefinition","parameters":{"id":6533,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6532,"mutability":"mutable","name":"value","nameLocation":"13822:5:24","nodeType":"VariableDeclaration","scope":6557,"src":"13814:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6531,"name":"uint256","nodeType":"ElementaryTypeName","src":"13814:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13813:15:24"},"returnParameters":{"id":6536,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6535,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6557,"src":"13852:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"},"typeName":{"id":6534,"name":"uint56","nodeType":"ElementaryTypeName","src":"13852:6:24","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"visibility":"internal"}],"src":"13851:8:24"},"scope":7595,"src":"13796:213:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6584,"nodeType":"Block","src":"14360:149:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6571,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6565,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6560,"src":"14374:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6568,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14387:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":6567,"name":"uint48","nodeType":"ElementaryTypeName","src":"14387:6:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"}],"id":6566,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14382:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6569,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14382:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint48","typeString":"type(uint48)"}},"id":6570,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14395:3:24","memberName":"max","nodeType":"MemberAccess","src":"14382:16:24","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"14374:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6578,"nodeType":"IfStatement","src":"14370:103:24","trueBody":{"id":6577,"nodeType":"Block","src":"14400:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":6573,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14452:2:24","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":6574,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6560,"src":"14456:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6572,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"14421:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6575,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14421:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6576,"nodeType":"RevertStatement","src":"14414:48:24"}]}},{"expression":{"arguments":[{"id":6581,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6560,"src":"14496:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6580,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14489:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":6579,"name":"uint48","nodeType":"ElementaryTypeName","src":"14489:6:24","typeDescriptions":{}}},"id":6582,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14489:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":6564,"id":6583,"nodeType":"Return","src":"14482:20:24"}]},"documentation":{"id":6558,"nodeType":"StructuredDocumentation","src":"14015:276:24","text":" @dev Returns the downcasted uint48 from uint256, reverting on\n overflow (when the input is greater than largest uint48).\n Counterpart to Solidity's `uint48` operator.\n Requirements:\n - input must fit into 48 bits"},"id":6585,"implemented":true,"kind":"function","modifiers":[],"name":"toUint48","nameLocation":"14305:8:24","nodeType":"FunctionDefinition","parameters":{"id":6561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6560,"mutability":"mutable","name":"value","nameLocation":"14322:5:24","nodeType":"VariableDeclaration","scope":6585,"src":"14314:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6559,"name":"uint256","nodeType":"ElementaryTypeName","src":"14314:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14313:15:24"},"returnParameters":{"id":6564,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6563,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6585,"src":"14352:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":6562,"name":"uint48","nodeType":"ElementaryTypeName","src":"14352:6:24","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"14351:8:24"},"scope":7595,"src":"14296:213:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6612,"nodeType":"Block","src":"14860:149:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6593,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6588,"src":"14874:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6596,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14887:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":6595,"name":"uint40","nodeType":"ElementaryTypeName","src":"14887:6:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"}],"id":6594,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"14882:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6597,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14882:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint40","typeString":"type(uint40)"}},"id":6598,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"14895:3:24","memberName":"max","nodeType":"MemberAccess","src":"14882:16:24","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"14874:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6606,"nodeType":"IfStatement","src":"14870:103:24","trueBody":{"id":6605,"nodeType":"Block","src":"14900:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":6601,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14952:2:24","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":6602,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6588,"src":"14956:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6600,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"14921:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6603,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14921:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6604,"nodeType":"RevertStatement","src":"14914:48:24"}]}},{"expression":{"arguments":[{"id":6609,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6588,"src":"14996:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6608,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14989:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":6607,"name":"uint40","nodeType":"ElementaryTypeName","src":"14989:6:24","typeDescriptions":{}}},"id":6610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14989:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"functionReturnParameters":6592,"id":6611,"nodeType":"Return","src":"14982:20:24"}]},"documentation":{"id":6586,"nodeType":"StructuredDocumentation","src":"14515:276:24","text":" @dev Returns the downcasted uint40 from uint256, reverting on\n overflow (when the input is greater than largest uint40).\n Counterpart to Solidity's `uint40` operator.\n Requirements:\n - input must fit into 40 bits"},"id":6613,"implemented":true,"kind":"function","modifiers":[],"name":"toUint40","nameLocation":"14805:8:24","nodeType":"FunctionDefinition","parameters":{"id":6589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6588,"mutability":"mutable","name":"value","nameLocation":"14822:5:24","nodeType":"VariableDeclaration","scope":6613,"src":"14814:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6587,"name":"uint256","nodeType":"ElementaryTypeName","src":"14814:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14813:15:24"},"returnParameters":{"id":6592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6591,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6613,"src":"14852:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":6590,"name":"uint40","nodeType":"ElementaryTypeName","src":"14852:6:24","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"14851:8:24"},"scope":7595,"src":"14796:213:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6640,"nodeType":"Block","src":"15360:149:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6621,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6616,"src":"15374:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6624,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15387:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":6623,"name":"uint32","nodeType":"ElementaryTypeName","src":"15387:6:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"}],"id":6622,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15382:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6625,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15382:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint32","typeString":"type(uint32)"}},"id":6626,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15395:3:24","memberName":"max","nodeType":"MemberAccess","src":"15382:16:24","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"15374:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6634,"nodeType":"IfStatement","src":"15370:103:24","trueBody":{"id":6633,"nodeType":"Block","src":"15400:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":6629,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15452:2:24","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":6630,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6616,"src":"15456:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6628,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"15421:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15421:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6632,"nodeType":"RevertStatement","src":"15414:48:24"}]}},{"expression":{"arguments":[{"id":6637,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6616,"src":"15496:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6636,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15489:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":6635,"name":"uint32","nodeType":"ElementaryTypeName","src":"15489:6:24","typeDescriptions":{}}},"id":6638,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15489:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":6620,"id":6639,"nodeType":"Return","src":"15482:20:24"}]},"documentation":{"id":6614,"nodeType":"StructuredDocumentation","src":"15015:276:24","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":6641,"implemented":true,"kind":"function","modifiers":[],"name":"toUint32","nameLocation":"15305:8:24","nodeType":"FunctionDefinition","parameters":{"id":6617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6616,"mutability":"mutable","name":"value","nameLocation":"15322:5:24","nodeType":"VariableDeclaration","scope":6641,"src":"15314:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6615,"name":"uint256","nodeType":"ElementaryTypeName","src":"15314:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15313:15:24"},"returnParameters":{"id":6620,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6619,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6641,"src":"15352:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6618,"name":"uint32","nodeType":"ElementaryTypeName","src":"15352:6:24","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"15351:8:24"},"scope":7595,"src":"15296:213:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6668,"nodeType":"Block","src":"15860:149:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6649,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6644,"src":"15874:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6652,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15887:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":6651,"name":"uint24","nodeType":"ElementaryTypeName","src":"15887:6:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"}],"id":6650,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"15882:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6653,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15882:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint24","typeString":"type(uint24)"}},"id":6654,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"15895:3:24","memberName":"max","nodeType":"MemberAccess","src":"15882:16:24","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"src":"15874:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6662,"nodeType":"IfStatement","src":"15870:103:24","trueBody":{"id":6661,"nodeType":"Block","src":"15900:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":6657,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15952:2:24","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":6658,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6644,"src":"15956:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6656,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"15921:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15921:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6660,"nodeType":"RevertStatement","src":"15914:48:24"}]}},{"expression":{"arguments":[{"id":6665,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6644,"src":"15996:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6664,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15989:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":6663,"name":"uint24","nodeType":"ElementaryTypeName","src":"15989:6:24","typeDescriptions":{}}},"id":6666,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15989:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"functionReturnParameters":6648,"id":6667,"nodeType":"Return","src":"15982:20:24"}]},"documentation":{"id":6642,"nodeType":"StructuredDocumentation","src":"15515:276:24","text":" @dev Returns the downcasted uint24 from uint256, reverting on\n overflow (when the input is greater than largest uint24).\n Counterpart to Solidity's `uint24` operator.\n Requirements:\n - input must fit into 24 bits"},"id":6669,"implemented":true,"kind":"function","modifiers":[],"name":"toUint24","nameLocation":"15805:8:24","nodeType":"FunctionDefinition","parameters":{"id":6645,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6644,"mutability":"mutable","name":"value","nameLocation":"15822:5:24","nodeType":"VariableDeclaration","scope":6669,"src":"15814:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6643,"name":"uint256","nodeType":"ElementaryTypeName","src":"15814:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15813:15:24"},"returnParameters":{"id":6648,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6647,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6669,"src":"15852:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":6646,"name":"uint24","nodeType":"ElementaryTypeName","src":"15852:6:24","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"15851:8:24"},"scope":7595,"src":"15796:213:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6696,"nodeType":"Block","src":"16360:149:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6677,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6672,"src":"16374:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6680,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16387:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":6679,"name":"uint16","nodeType":"ElementaryTypeName","src":"16387:6:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"}],"id":6678,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16382:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6681,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16382:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint16","typeString":"type(uint16)"}},"id":6682,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16395:3:24","memberName":"max","nodeType":"MemberAccess","src":"16382:16:24","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"16374:24:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6690,"nodeType":"IfStatement","src":"16370:103:24","trueBody":{"id":6689,"nodeType":"Block","src":"16400:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":6685,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16452:2:24","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":6686,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6672,"src":"16456:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6684,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"16421:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16421:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6688,"nodeType":"RevertStatement","src":"16414:48:24"}]}},{"expression":{"arguments":[{"id":6693,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6672,"src":"16496:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6692,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16489:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":6691,"name":"uint16","nodeType":"ElementaryTypeName","src":"16489:6:24","typeDescriptions":{}}},"id":6694,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16489:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"functionReturnParameters":6676,"id":6695,"nodeType":"Return","src":"16482:20:24"}]},"documentation":{"id":6670,"nodeType":"StructuredDocumentation","src":"16015:276:24","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":6697,"implemented":true,"kind":"function","modifiers":[],"name":"toUint16","nameLocation":"16305:8:24","nodeType":"FunctionDefinition","parameters":{"id":6673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6672,"mutability":"mutable","name":"value","nameLocation":"16322:5:24","nodeType":"VariableDeclaration","scope":6697,"src":"16314:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6671,"name":"uint256","nodeType":"ElementaryTypeName","src":"16314:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16313:15:24"},"returnParameters":{"id":6676,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6675,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6697,"src":"16352:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":6674,"name":"uint16","nodeType":"ElementaryTypeName","src":"16352:6:24","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"16351:8:24"},"scope":7595,"src":"16296:213:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6724,"nodeType":"Block","src":"16854:146:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6705,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"16868:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":6708,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16881:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":6707,"name":"uint8","nodeType":"ElementaryTypeName","src":"16881:5:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":6706,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16876:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6709,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16876:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":6710,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16888:3:24","memberName":"max","nodeType":"MemberAccess","src":"16876:15:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"16868:23:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6718,"nodeType":"IfStatement","src":"16864:101:24","trueBody":{"id":6717,"nodeType":"Block","src":"16893:72:24","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":6713,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16945:1:24","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":6714,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"16948:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6712,"name":"SafeCastOverflowedUintDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5840,"src":"16914:30:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_uint256_$returns$_t_error_$","typeString":"function (uint8,uint256) pure returns (error)"}},"id":6715,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16914:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6716,"nodeType":"RevertStatement","src":"16907:47:24"}]}},{"expression":{"arguments":[{"id":6721,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6700,"src":"16987:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6720,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16981:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":6719,"name":"uint8","nodeType":"ElementaryTypeName","src":"16981:5:24","typeDescriptions":{}}},"id":6722,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16981:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":6704,"id":6723,"nodeType":"Return","src":"16974:19:24"}]},"documentation":{"id":6698,"nodeType":"StructuredDocumentation","src":"16515:272:24","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":6725,"implemented":true,"kind":"function","modifiers":[],"name":"toUint8","nameLocation":"16801:7:24","nodeType":"FunctionDefinition","parameters":{"id":6701,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6700,"mutability":"mutable","name":"value","nameLocation":"16817:5:24","nodeType":"VariableDeclaration","scope":6725,"src":"16809:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6699,"name":"uint256","nodeType":"ElementaryTypeName","src":"16809:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16808:15:24"},"returnParameters":{"id":6704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6703,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6725,"src":"16847:5:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":6702,"name":"uint8","nodeType":"ElementaryTypeName","src":"16847:5:24","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"16846:7:24"},"scope":7595,"src":"16792:208:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6747,"nodeType":"Block","src":"17236:128:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":6735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6733,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6728,"src":"17250:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":6734,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17258:1:24","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17250:9:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6741,"nodeType":"IfStatement","src":"17246:81:24","trueBody":{"id":6740,"nodeType":"Block","src":"17261:66:24","statements":[{"errorCall":{"arguments":[{"id":6737,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6728,"src":"17310:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6736,"name":"SafeCastOverflowedIntToUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5845,"src":"17282:27:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_int256_$returns$_t_error_$","typeString":"function (int256) pure returns (error)"}},"id":6738,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17282:34:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6739,"nodeType":"RevertStatement","src":"17275:41:24"}]}},{"expression":{"arguments":[{"id":6744,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6728,"src":"17351:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6743,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17343:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6742,"name":"uint256","nodeType":"ElementaryTypeName","src":"17343:7:24","typeDescriptions":{}}},"id":6745,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17343:14:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6732,"id":6746,"nodeType":"Return","src":"17336:21:24"}]},"documentation":{"id":6726,"nodeType":"StructuredDocumentation","src":"17006:160:24","text":" @dev Converts a signed int256 into an unsigned uint256.\n Requirements:\n - input must be greater than or equal to 0."},"id":6748,"implemented":true,"kind":"function","modifiers":[],"name":"toUint256","nameLocation":"17180:9:24","nodeType":"FunctionDefinition","parameters":{"id":6729,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6728,"mutability":"mutable","name":"value","nameLocation":"17197:5:24","nodeType":"VariableDeclaration","scope":6748,"src":"17190:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6727,"name":"int256","nodeType":"ElementaryTypeName","src":"17190:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17189:14:24"},"returnParameters":{"id":6732,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6731,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6748,"src":"17227:7:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6730,"name":"uint256","nodeType":"ElementaryTypeName","src":"17227:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"17226:9:24"},"scope":7595,"src":"17171:193:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6773,"nodeType":"Block","src":"17761:150:24","statements":[{"expression":{"id":6761,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6756,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6754,"src":"17771:10:24","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6759,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6751,"src":"17791:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6758,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17784:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int248_$","typeString":"type(int248)"},"typeName":{"id":6757,"name":"int248","nodeType":"ElementaryTypeName","src":"17784:6:24","typeDescriptions":{}}},"id":6760,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17784:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"src":"17771:26:24","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"id":6762,"nodeType":"ExpressionStatement","src":"17771:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":6765,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6763,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6754,"src":"17811:10:24","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":6764,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6751,"src":"17825:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"17811:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6772,"nodeType":"IfStatement","src":"17807:98:24","trueBody":{"id":6771,"nodeType":"Block","src":"17832:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"323438","id":6767,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17883:3:24","typeDescriptions":{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},"value":"248"},{"id":6768,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6751,"src":"17888:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_248_by_1","typeString":"int_const 248"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6766,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"17853:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":6769,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17853:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6770,"nodeType":"RevertStatement","src":"17846:48:24"}]}}]},"documentation":{"id":6749,"nodeType":"StructuredDocumentation","src":"17370:312:24","text":" @dev Returns the downcasted int248 from int256, reverting on\n overflow (when the input is less than smallest int248 or\n greater than largest int248).\n Counterpart to Solidity's `int248` operator.\n Requirements:\n - input must fit into 248 bits"},"id":6774,"implemented":true,"kind":"function","modifiers":[],"name":"toInt248","nameLocation":"17696:8:24","nodeType":"FunctionDefinition","parameters":{"id":6752,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6751,"mutability":"mutable","name":"value","nameLocation":"17712:5:24","nodeType":"VariableDeclaration","scope":6774,"src":"17705:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6750,"name":"int256","nodeType":"ElementaryTypeName","src":"17705:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"17704:14:24"},"returnParameters":{"id":6755,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6754,"mutability":"mutable","name":"downcasted","nameLocation":"17749:10:24","nodeType":"VariableDeclaration","scope":6774,"src":"17742:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"},"typeName":{"id":6753,"name":"int248","nodeType":"ElementaryTypeName","src":"17742:6:24","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"visibility":"internal"}],"src":"17741:19:24"},"scope":7595,"src":"17687:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6799,"nodeType":"Block","src":"18308:150:24","statements":[{"expression":{"id":6787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6782,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6780,"src":"18318:10:24","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6785,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6777,"src":"18338:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6784,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18331:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int240_$","typeString":"type(int240)"},"typeName":{"id":6783,"name":"int240","nodeType":"ElementaryTypeName","src":"18331:6:24","typeDescriptions":{}}},"id":6786,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18331:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"src":"18318:26:24","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"id":6788,"nodeType":"ExpressionStatement","src":"18318:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":6791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6789,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6780,"src":"18358:10:24","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":6790,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6777,"src":"18372:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18358:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6798,"nodeType":"IfStatement","src":"18354:98:24","trueBody":{"id":6797,"nodeType":"Block","src":"18379:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"323430","id":6793,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18430:3:24","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"240"},{"id":6794,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6777,"src":"18435:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6792,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"18400:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":6795,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18400:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6796,"nodeType":"RevertStatement","src":"18393:48:24"}]}}]},"documentation":{"id":6775,"nodeType":"StructuredDocumentation","src":"17917:312:24","text":" @dev Returns the downcasted int240 from int256, reverting on\n overflow (when the input is less than smallest int240 or\n greater than largest int240).\n Counterpart to Solidity's `int240` operator.\n Requirements:\n - input must fit into 240 bits"},"id":6800,"implemented":true,"kind":"function","modifiers":[],"name":"toInt240","nameLocation":"18243:8:24","nodeType":"FunctionDefinition","parameters":{"id":6778,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6777,"mutability":"mutable","name":"value","nameLocation":"18259:5:24","nodeType":"VariableDeclaration","scope":6800,"src":"18252:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6776,"name":"int256","nodeType":"ElementaryTypeName","src":"18252:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18251:14:24"},"returnParameters":{"id":6781,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6780,"mutability":"mutable","name":"downcasted","nameLocation":"18296:10:24","nodeType":"VariableDeclaration","scope":6800,"src":"18289:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"},"typeName":{"id":6779,"name":"int240","nodeType":"ElementaryTypeName","src":"18289:6:24","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"visibility":"internal"}],"src":"18288:19:24"},"scope":7595,"src":"18234:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6825,"nodeType":"Block","src":"18855:150:24","statements":[{"expression":{"id":6813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6808,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6806,"src":"18865:10:24","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6811,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6803,"src":"18885:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6810,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18878:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int232_$","typeString":"type(int232)"},"typeName":{"id":6809,"name":"int232","nodeType":"ElementaryTypeName","src":"18878:6:24","typeDescriptions":{}}},"id":6812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18878:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"src":"18865:26:24","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"id":6814,"nodeType":"ExpressionStatement","src":"18865:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":6817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6815,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6806,"src":"18905:10:24","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":6816,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6803,"src":"18919:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"18905:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6824,"nodeType":"IfStatement","src":"18901:98:24","trueBody":{"id":6823,"nodeType":"Block","src":"18926:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"323332","id":6819,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18977:3:24","typeDescriptions":{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},"value":"232"},{"id":6820,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6803,"src":"18982:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_232_by_1","typeString":"int_const 232"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6818,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"18947:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":6821,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18947:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6822,"nodeType":"RevertStatement","src":"18940:48:24"}]}}]},"documentation":{"id":6801,"nodeType":"StructuredDocumentation","src":"18464:312:24","text":" @dev Returns the downcasted int232 from int256, reverting on\n overflow (when the input is less than smallest int232 or\n greater than largest int232).\n Counterpart to Solidity's `int232` operator.\n Requirements:\n - input must fit into 232 bits"},"id":6826,"implemented":true,"kind":"function","modifiers":[],"name":"toInt232","nameLocation":"18790:8:24","nodeType":"FunctionDefinition","parameters":{"id":6804,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6803,"mutability":"mutable","name":"value","nameLocation":"18806:5:24","nodeType":"VariableDeclaration","scope":6826,"src":"18799:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6802,"name":"int256","nodeType":"ElementaryTypeName","src":"18799:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"18798:14:24"},"returnParameters":{"id":6807,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6806,"mutability":"mutable","name":"downcasted","nameLocation":"18843:10:24","nodeType":"VariableDeclaration","scope":6826,"src":"18836:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"},"typeName":{"id":6805,"name":"int232","nodeType":"ElementaryTypeName","src":"18836:6:24","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"visibility":"internal"}],"src":"18835:19:24"},"scope":7595,"src":"18781:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6851,"nodeType":"Block","src":"19402:150:24","statements":[{"expression":{"id":6839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6834,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6832,"src":"19412:10:24","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6837,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6829,"src":"19432:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6836,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19425:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int224_$","typeString":"type(int224)"},"typeName":{"id":6835,"name":"int224","nodeType":"ElementaryTypeName","src":"19425:6:24","typeDescriptions":{}}},"id":6838,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19425:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"src":"19412:26:24","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"id":6840,"nodeType":"ExpressionStatement","src":"19412:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":6843,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6841,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6832,"src":"19452:10:24","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":6842,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6829,"src":"19466:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19452:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6850,"nodeType":"IfStatement","src":"19448:98:24","trueBody":{"id":6849,"nodeType":"Block","src":"19473:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"323234","id":6845,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19524:3:24","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},{"id":6846,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6829,"src":"19529:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6844,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"19494:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":6847,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19494:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6848,"nodeType":"RevertStatement","src":"19487:48:24"}]}}]},"documentation":{"id":6827,"nodeType":"StructuredDocumentation","src":"19011:312:24","text":" @dev Returns the downcasted int224 from int256, reverting on\n overflow (when the input is less than smallest int224 or\n greater than largest int224).\n Counterpart to Solidity's `int224` operator.\n Requirements:\n - input must fit into 224 bits"},"id":6852,"implemented":true,"kind":"function","modifiers":[],"name":"toInt224","nameLocation":"19337:8:24","nodeType":"FunctionDefinition","parameters":{"id":6830,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6829,"mutability":"mutable","name":"value","nameLocation":"19353:5:24","nodeType":"VariableDeclaration","scope":6852,"src":"19346:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6828,"name":"int256","nodeType":"ElementaryTypeName","src":"19346:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19345:14:24"},"returnParameters":{"id":6833,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6832,"mutability":"mutable","name":"downcasted","nameLocation":"19390:10:24","nodeType":"VariableDeclaration","scope":6852,"src":"19383:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"},"typeName":{"id":6831,"name":"int224","nodeType":"ElementaryTypeName","src":"19383:6:24","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"visibility":"internal"}],"src":"19382:19:24"},"scope":7595,"src":"19328:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6877,"nodeType":"Block","src":"19949:150:24","statements":[{"expression":{"id":6865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6860,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6858,"src":"19959:10:24","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6863,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6855,"src":"19979:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6862,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19972:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int216_$","typeString":"type(int216)"},"typeName":{"id":6861,"name":"int216","nodeType":"ElementaryTypeName","src":"19972:6:24","typeDescriptions":{}}},"id":6864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19972:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"src":"19959:26:24","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"id":6866,"nodeType":"ExpressionStatement","src":"19959:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":6869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6867,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6858,"src":"19999:10:24","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":6868,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6855,"src":"20013:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"19999:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6876,"nodeType":"IfStatement","src":"19995:98:24","trueBody":{"id":6875,"nodeType":"Block","src":"20020:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"323136","id":6871,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20071:3:24","typeDescriptions":{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},"value":"216"},{"id":6872,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6855,"src":"20076:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_216_by_1","typeString":"int_const 216"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6870,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"20041:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":6873,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20041:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6874,"nodeType":"RevertStatement","src":"20034:48:24"}]}}]},"documentation":{"id":6853,"nodeType":"StructuredDocumentation","src":"19558:312:24","text":" @dev Returns the downcasted int216 from int256, reverting on\n overflow (when the input is less than smallest int216 or\n greater than largest int216).\n Counterpart to Solidity's `int216` operator.\n Requirements:\n - input must fit into 216 bits"},"id":6878,"implemented":true,"kind":"function","modifiers":[],"name":"toInt216","nameLocation":"19884:8:24","nodeType":"FunctionDefinition","parameters":{"id":6856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6855,"mutability":"mutable","name":"value","nameLocation":"19900:5:24","nodeType":"VariableDeclaration","scope":6878,"src":"19893:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6854,"name":"int256","nodeType":"ElementaryTypeName","src":"19893:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"19892:14:24"},"returnParameters":{"id":6859,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6858,"mutability":"mutable","name":"downcasted","nameLocation":"19937:10:24","nodeType":"VariableDeclaration","scope":6878,"src":"19930:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"},"typeName":{"id":6857,"name":"int216","nodeType":"ElementaryTypeName","src":"19930:6:24","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"visibility":"internal"}],"src":"19929:19:24"},"scope":7595,"src":"19875:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6903,"nodeType":"Block","src":"20496:150:24","statements":[{"expression":{"id":6891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6886,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6884,"src":"20506:10:24","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6889,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6881,"src":"20526:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6888,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"20519:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int208_$","typeString":"type(int208)"},"typeName":{"id":6887,"name":"int208","nodeType":"ElementaryTypeName","src":"20519:6:24","typeDescriptions":{}}},"id":6890,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20519:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"src":"20506:26:24","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"id":6892,"nodeType":"ExpressionStatement","src":"20506:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":6895,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6893,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6884,"src":"20546:10:24","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":6894,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6881,"src":"20560:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"20546:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6902,"nodeType":"IfStatement","src":"20542:98:24","trueBody":{"id":6901,"nodeType":"Block","src":"20567:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"323038","id":6897,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20618:3:24","typeDescriptions":{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},"value":"208"},{"id":6898,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6881,"src":"20623:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_208_by_1","typeString":"int_const 208"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6896,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"20588:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":6899,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20588:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6900,"nodeType":"RevertStatement","src":"20581:48:24"}]}}]},"documentation":{"id":6879,"nodeType":"StructuredDocumentation","src":"20105:312:24","text":" @dev Returns the downcasted int208 from int256, reverting on\n overflow (when the input is less than smallest int208 or\n greater than largest int208).\n Counterpart to Solidity's `int208` operator.\n Requirements:\n - input must fit into 208 bits"},"id":6904,"implemented":true,"kind":"function","modifiers":[],"name":"toInt208","nameLocation":"20431:8:24","nodeType":"FunctionDefinition","parameters":{"id":6882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6881,"mutability":"mutable","name":"value","nameLocation":"20447:5:24","nodeType":"VariableDeclaration","scope":6904,"src":"20440:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6880,"name":"int256","nodeType":"ElementaryTypeName","src":"20440:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20439:14:24"},"returnParameters":{"id":6885,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6884,"mutability":"mutable","name":"downcasted","nameLocation":"20484:10:24","nodeType":"VariableDeclaration","scope":6904,"src":"20477:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"},"typeName":{"id":6883,"name":"int208","nodeType":"ElementaryTypeName","src":"20477:6:24","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"visibility":"internal"}],"src":"20476:19:24"},"scope":7595,"src":"20422:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6929,"nodeType":"Block","src":"21043:150:24","statements":[{"expression":{"id":6917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6912,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6910,"src":"21053:10:24","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6915,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6907,"src":"21073:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6914,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21066:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int200_$","typeString":"type(int200)"},"typeName":{"id":6913,"name":"int200","nodeType":"ElementaryTypeName","src":"21066:6:24","typeDescriptions":{}}},"id":6916,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21066:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"src":"21053:26:24","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"id":6918,"nodeType":"ExpressionStatement","src":"21053:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":6921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6919,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6910,"src":"21093:10:24","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":6920,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6907,"src":"21107:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21093:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6928,"nodeType":"IfStatement","src":"21089:98:24","trueBody":{"id":6927,"nodeType":"Block","src":"21114:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"323030","id":6923,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21165:3:24","typeDescriptions":{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},"value":"200"},{"id":6924,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6907,"src":"21170:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_200_by_1","typeString":"int_const 200"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6922,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"21135:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":6925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21135:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6926,"nodeType":"RevertStatement","src":"21128:48:24"}]}}]},"documentation":{"id":6905,"nodeType":"StructuredDocumentation","src":"20652:312:24","text":" @dev Returns the downcasted int200 from int256, reverting on\n overflow (when the input is less than smallest int200 or\n greater than largest int200).\n Counterpart to Solidity's `int200` operator.\n Requirements:\n - input must fit into 200 bits"},"id":6930,"implemented":true,"kind":"function","modifiers":[],"name":"toInt200","nameLocation":"20978:8:24","nodeType":"FunctionDefinition","parameters":{"id":6908,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6907,"mutability":"mutable","name":"value","nameLocation":"20994:5:24","nodeType":"VariableDeclaration","scope":6930,"src":"20987:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6906,"name":"int256","nodeType":"ElementaryTypeName","src":"20987:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"20986:14:24"},"returnParameters":{"id":6911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6910,"mutability":"mutable","name":"downcasted","nameLocation":"21031:10:24","nodeType":"VariableDeclaration","scope":6930,"src":"21024:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"},"typeName":{"id":6909,"name":"int200","nodeType":"ElementaryTypeName","src":"21024:6:24","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"visibility":"internal"}],"src":"21023:19:24"},"scope":7595,"src":"20969:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6955,"nodeType":"Block","src":"21590:150:24","statements":[{"expression":{"id":6943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6938,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6936,"src":"21600:10:24","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6941,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6933,"src":"21620:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6940,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"21613:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int192_$","typeString":"type(int192)"},"typeName":{"id":6939,"name":"int192","nodeType":"ElementaryTypeName","src":"21613:6:24","typeDescriptions":{}}},"id":6942,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21613:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"src":"21600:26:24","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"id":6944,"nodeType":"ExpressionStatement","src":"21600:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":6947,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6945,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6936,"src":"21640:10:24","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":6946,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6933,"src":"21654:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"21640:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6954,"nodeType":"IfStatement","src":"21636:98:24","trueBody":{"id":6953,"nodeType":"Block","src":"21661:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313932","id":6949,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21712:3:24","typeDescriptions":{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},"value":"192"},{"id":6950,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6933,"src":"21717:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_192_by_1","typeString":"int_const 192"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6948,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"21682:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":6951,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21682:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6952,"nodeType":"RevertStatement","src":"21675:48:24"}]}}]},"documentation":{"id":6931,"nodeType":"StructuredDocumentation","src":"21199:312:24","text":" @dev Returns the downcasted int192 from int256, reverting on\n overflow (when the input is less than smallest int192 or\n greater than largest int192).\n Counterpart to Solidity's `int192` operator.\n Requirements:\n - input must fit into 192 bits"},"id":6956,"implemented":true,"kind":"function","modifiers":[],"name":"toInt192","nameLocation":"21525:8:24","nodeType":"FunctionDefinition","parameters":{"id":6934,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6933,"mutability":"mutable","name":"value","nameLocation":"21541:5:24","nodeType":"VariableDeclaration","scope":6956,"src":"21534:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6932,"name":"int256","nodeType":"ElementaryTypeName","src":"21534:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"21533:14:24"},"returnParameters":{"id":6937,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6936,"mutability":"mutable","name":"downcasted","nameLocation":"21578:10:24","nodeType":"VariableDeclaration","scope":6956,"src":"21571:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"},"typeName":{"id":6935,"name":"int192","nodeType":"ElementaryTypeName","src":"21571:6:24","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"visibility":"internal"}],"src":"21570:19:24"},"scope":7595,"src":"21516:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":6981,"nodeType":"Block","src":"22137:150:24","statements":[{"expression":{"id":6969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6964,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6962,"src":"22147:10:24","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6967,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6959,"src":"22167:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6966,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22160:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int184_$","typeString":"type(int184)"},"typeName":{"id":6965,"name":"int184","nodeType":"ElementaryTypeName","src":"22160:6:24","typeDescriptions":{}}},"id":6968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22160:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"src":"22147:26:24","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"id":6970,"nodeType":"ExpressionStatement","src":"22147:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":6973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6971,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6962,"src":"22187:10:24","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":6972,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6959,"src":"22201:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22187:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6980,"nodeType":"IfStatement","src":"22183:98:24","trueBody":{"id":6979,"nodeType":"Block","src":"22208:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313834","id":6975,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22259:3:24","typeDescriptions":{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},"value":"184"},{"id":6976,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6959,"src":"22264:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_184_by_1","typeString":"int_const 184"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6974,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"22229:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":6977,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22229:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":6978,"nodeType":"RevertStatement","src":"22222:48:24"}]}}]},"documentation":{"id":6957,"nodeType":"StructuredDocumentation","src":"21746:312:24","text":" @dev Returns the downcasted int184 from int256, reverting on\n overflow (when the input is less than smallest int184 or\n greater than largest int184).\n Counterpart to Solidity's `int184` operator.\n Requirements:\n - input must fit into 184 bits"},"id":6982,"implemented":true,"kind":"function","modifiers":[],"name":"toInt184","nameLocation":"22072:8:24","nodeType":"FunctionDefinition","parameters":{"id":6960,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6959,"mutability":"mutable","name":"value","nameLocation":"22088:5:24","nodeType":"VariableDeclaration","scope":6982,"src":"22081:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6958,"name":"int256","nodeType":"ElementaryTypeName","src":"22081:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22080:14:24"},"returnParameters":{"id":6963,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6962,"mutability":"mutable","name":"downcasted","nameLocation":"22125:10:24","nodeType":"VariableDeclaration","scope":6982,"src":"22118:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"},"typeName":{"id":6961,"name":"int184","nodeType":"ElementaryTypeName","src":"22118:6:24","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"visibility":"internal"}],"src":"22117:19:24"},"scope":7595,"src":"22063:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7007,"nodeType":"Block","src":"22684:150:24","statements":[{"expression":{"id":6995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6990,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6988,"src":"22694:10:24","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":6993,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6985,"src":"22714:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":6992,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22707:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int176_$","typeString":"type(int176)"},"typeName":{"id":6991,"name":"int176","nodeType":"ElementaryTypeName","src":"22707:6:24","typeDescriptions":{}}},"id":6994,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22707:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"src":"22694:26:24","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"id":6996,"nodeType":"ExpressionStatement","src":"22694:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":6999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6997,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6988,"src":"22734:10:24","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":6998,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6985,"src":"22748:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"22734:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7006,"nodeType":"IfStatement","src":"22730:98:24","trueBody":{"id":7005,"nodeType":"Block","src":"22755:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313736","id":7001,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22806:3:24","typeDescriptions":{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},"value":"176"},{"id":7002,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6985,"src":"22811:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_176_by_1","typeString":"int_const 176"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7000,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"22776:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7003,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22776:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7004,"nodeType":"RevertStatement","src":"22769:48:24"}]}}]},"documentation":{"id":6983,"nodeType":"StructuredDocumentation","src":"22293:312:24","text":" @dev Returns the downcasted int176 from int256, reverting on\n overflow (when the input is less than smallest int176 or\n greater than largest int176).\n Counterpart to Solidity's `int176` operator.\n Requirements:\n - input must fit into 176 bits"},"id":7008,"implemented":true,"kind":"function","modifiers":[],"name":"toInt176","nameLocation":"22619:8:24","nodeType":"FunctionDefinition","parameters":{"id":6986,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6985,"mutability":"mutable","name":"value","nameLocation":"22635:5:24","nodeType":"VariableDeclaration","scope":7008,"src":"22628:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":6984,"name":"int256","nodeType":"ElementaryTypeName","src":"22628:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"22627:14:24"},"returnParameters":{"id":6989,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6988,"mutability":"mutable","name":"downcasted","nameLocation":"22672:10:24","nodeType":"VariableDeclaration","scope":7008,"src":"22665:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"},"typeName":{"id":6987,"name":"int176","nodeType":"ElementaryTypeName","src":"22665:6:24","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"visibility":"internal"}],"src":"22664:19:24"},"scope":7595,"src":"22610:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7033,"nodeType":"Block","src":"23231:150:24","statements":[{"expression":{"id":7021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7016,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7014,"src":"23241:10:24","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7019,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7011,"src":"23261:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7018,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23254:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int168_$","typeString":"type(int168)"},"typeName":{"id":7017,"name":"int168","nodeType":"ElementaryTypeName","src":"23254:6:24","typeDescriptions":{}}},"id":7020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23254:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"src":"23241:26:24","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"id":7022,"nodeType":"ExpressionStatement","src":"23241:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7025,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7023,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7014,"src":"23281:10:24","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7024,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7011,"src":"23295:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23281:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7032,"nodeType":"IfStatement","src":"23277:98:24","trueBody":{"id":7031,"nodeType":"Block","src":"23302:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313638","id":7027,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23353:3:24","typeDescriptions":{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},"value":"168"},{"id":7028,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7011,"src":"23358:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_168_by_1","typeString":"int_const 168"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7026,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"23323:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7029,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23323:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7030,"nodeType":"RevertStatement","src":"23316:48:24"}]}}]},"documentation":{"id":7009,"nodeType":"StructuredDocumentation","src":"22840:312:24","text":" @dev Returns the downcasted int168 from int256, reverting on\n overflow (when the input is less than smallest int168 or\n greater than largest int168).\n Counterpart to Solidity's `int168` operator.\n Requirements:\n - input must fit into 168 bits"},"id":7034,"implemented":true,"kind":"function","modifiers":[],"name":"toInt168","nameLocation":"23166:8:24","nodeType":"FunctionDefinition","parameters":{"id":7012,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7011,"mutability":"mutable","name":"value","nameLocation":"23182:5:24","nodeType":"VariableDeclaration","scope":7034,"src":"23175:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7010,"name":"int256","nodeType":"ElementaryTypeName","src":"23175:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23174:14:24"},"returnParameters":{"id":7015,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7014,"mutability":"mutable","name":"downcasted","nameLocation":"23219:10:24","nodeType":"VariableDeclaration","scope":7034,"src":"23212:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"},"typeName":{"id":7013,"name":"int168","nodeType":"ElementaryTypeName","src":"23212:6:24","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"visibility":"internal"}],"src":"23211:19:24"},"scope":7595,"src":"23157:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7059,"nodeType":"Block","src":"23778:150:24","statements":[{"expression":{"id":7047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7042,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7040,"src":"23788:10:24","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7045,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7037,"src":"23808:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7044,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23801:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int160_$","typeString":"type(int160)"},"typeName":{"id":7043,"name":"int160","nodeType":"ElementaryTypeName","src":"23801:6:24","typeDescriptions":{}}},"id":7046,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23801:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"src":"23788:26:24","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"id":7048,"nodeType":"ExpressionStatement","src":"23788:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7051,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7049,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7040,"src":"23828:10:24","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7050,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7037,"src":"23842:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"23828:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7058,"nodeType":"IfStatement","src":"23824:98:24","trueBody":{"id":7057,"nodeType":"Block","src":"23849:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313630","id":7053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23900:3:24","typeDescriptions":{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},"value":"160"},{"id":7054,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7037,"src":"23905:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_160_by_1","typeString":"int_const 160"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7052,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"23870:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7055,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23870:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7056,"nodeType":"RevertStatement","src":"23863:48:24"}]}}]},"documentation":{"id":7035,"nodeType":"StructuredDocumentation","src":"23387:312:24","text":" @dev Returns the downcasted int160 from int256, reverting on\n overflow (when the input is less than smallest int160 or\n greater than largest int160).\n Counterpart to Solidity's `int160` operator.\n Requirements:\n - input must fit into 160 bits"},"id":7060,"implemented":true,"kind":"function","modifiers":[],"name":"toInt160","nameLocation":"23713:8:24","nodeType":"FunctionDefinition","parameters":{"id":7038,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7037,"mutability":"mutable","name":"value","nameLocation":"23729:5:24","nodeType":"VariableDeclaration","scope":7060,"src":"23722:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7036,"name":"int256","nodeType":"ElementaryTypeName","src":"23722:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"23721:14:24"},"returnParameters":{"id":7041,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7040,"mutability":"mutable","name":"downcasted","nameLocation":"23766:10:24","nodeType":"VariableDeclaration","scope":7060,"src":"23759:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"},"typeName":{"id":7039,"name":"int160","nodeType":"ElementaryTypeName","src":"23759:6:24","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"visibility":"internal"}],"src":"23758:19:24"},"scope":7595,"src":"23704:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7085,"nodeType":"Block","src":"24325:150:24","statements":[{"expression":{"id":7073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7068,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7066,"src":"24335:10:24","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7071,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7063,"src":"24355:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7070,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24348:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int152_$","typeString":"type(int152)"},"typeName":{"id":7069,"name":"int152","nodeType":"ElementaryTypeName","src":"24348:6:24","typeDescriptions":{}}},"id":7072,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24348:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"src":"24335:26:24","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"id":7074,"nodeType":"ExpressionStatement","src":"24335:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7077,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7075,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7066,"src":"24375:10:24","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7076,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7063,"src":"24389:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24375:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7084,"nodeType":"IfStatement","src":"24371:98:24","trueBody":{"id":7083,"nodeType":"Block","src":"24396:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313532","id":7079,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24447:3:24","typeDescriptions":{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},"value":"152"},{"id":7080,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7063,"src":"24452:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_152_by_1","typeString":"int_const 152"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7078,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"24417:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7081,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24417:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7082,"nodeType":"RevertStatement","src":"24410:48:24"}]}}]},"documentation":{"id":7061,"nodeType":"StructuredDocumentation","src":"23934:312:24","text":" @dev Returns the downcasted int152 from int256, reverting on\n overflow (when the input is less than smallest int152 or\n greater than largest int152).\n Counterpart to Solidity's `int152` operator.\n Requirements:\n - input must fit into 152 bits"},"id":7086,"implemented":true,"kind":"function","modifiers":[],"name":"toInt152","nameLocation":"24260:8:24","nodeType":"FunctionDefinition","parameters":{"id":7064,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7063,"mutability":"mutable","name":"value","nameLocation":"24276:5:24","nodeType":"VariableDeclaration","scope":7086,"src":"24269:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7062,"name":"int256","nodeType":"ElementaryTypeName","src":"24269:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24268:14:24"},"returnParameters":{"id":7067,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7066,"mutability":"mutable","name":"downcasted","nameLocation":"24313:10:24","nodeType":"VariableDeclaration","scope":7086,"src":"24306:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"},"typeName":{"id":7065,"name":"int152","nodeType":"ElementaryTypeName","src":"24306:6:24","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"visibility":"internal"}],"src":"24305:19:24"},"scope":7595,"src":"24251:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7111,"nodeType":"Block","src":"24872:150:24","statements":[{"expression":{"id":7099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7094,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7092,"src":"24882:10:24","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7097,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7089,"src":"24902:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7096,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24895:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int144_$","typeString":"type(int144)"},"typeName":{"id":7095,"name":"int144","nodeType":"ElementaryTypeName","src":"24895:6:24","typeDescriptions":{}}},"id":7098,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24895:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"src":"24882:26:24","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"id":7100,"nodeType":"ExpressionStatement","src":"24882:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7101,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7092,"src":"24922:10:24","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7102,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7089,"src":"24936:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"24922:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7110,"nodeType":"IfStatement","src":"24918:98:24","trueBody":{"id":7109,"nodeType":"Block","src":"24943:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313434","id":7105,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24994:3:24","typeDescriptions":{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},"value":"144"},{"id":7106,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7089,"src":"24999:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_144_by_1","typeString":"int_const 144"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7104,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"24964:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7107,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24964:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7108,"nodeType":"RevertStatement","src":"24957:48:24"}]}}]},"documentation":{"id":7087,"nodeType":"StructuredDocumentation","src":"24481:312:24","text":" @dev Returns the downcasted int144 from int256, reverting on\n overflow (when the input is less than smallest int144 or\n greater than largest int144).\n Counterpart to Solidity's `int144` operator.\n Requirements:\n - input must fit into 144 bits"},"id":7112,"implemented":true,"kind":"function","modifiers":[],"name":"toInt144","nameLocation":"24807:8:24","nodeType":"FunctionDefinition","parameters":{"id":7090,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7089,"mutability":"mutable","name":"value","nameLocation":"24823:5:24","nodeType":"VariableDeclaration","scope":7112,"src":"24816:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7088,"name":"int256","nodeType":"ElementaryTypeName","src":"24816:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"24815:14:24"},"returnParameters":{"id":7093,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7092,"mutability":"mutable","name":"downcasted","nameLocation":"24860:10:24","nodeType":"VariableDeclaration","scope":7112,"src":"24853:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"},"typeName":{"id":7091,"name":"int144","nodeType":"ElementaryTypeName","src":"24853:6:24","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"visibility":"internal"}],"src":"24852:19:24"},"scope":7595,"src":"24798:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7137,"nodeType":"Block","src":"25419:150:24","statements":[{"expression":{"id":7125,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7120,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7118,"src":"25429:10:24","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7123,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7115,"src":"25449:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7122,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25442:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int136_$","typeString":"type(int136)"},"typeName":{"id":7121,"name":"int136","nodeType":"ElementaryTypeName","src":"25442:6:24","typeDescriptions":{}}},"id":7124,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25442:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"src":"25429:26:24","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"id":7126,"nodeType":"ExpressionStatement","src":"25429:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7129,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7127,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7118,"src":"25469:10:24","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7128,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7115,"src":"25483:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"25469:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7136,"nodeType":"IfStatement","src":"25465:98:24","trueBody":{"id":7135,"nodeType":"Block","src":"25490:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313336","id":7131,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25541:3:24","typeDescriptions":{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},"value":"136"},{"id":7132,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7115,"src":"25546:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_136_by_1","typeString":"int_const 136"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7130,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"25511:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7133,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25511:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7134,"nodeType":"RevertStatement","src":"25504:48:24"}]}}]},"documentation":{"id":7113,"nodeType":"StructuredDocumentation","src":"25028:312:24","text":" @dev Returns the downcasted int136 from int256, reverting on\n overflow (when the input is less than smallest int136 or\n greater than largest int136).\n Counterpart to Solidity's `int136` operator.\n Requirements:\n - input must fit into 136 bits"},"id":7138,"implemented":true,"kind":"function","modifiers":[],"name":"toInt136","nameLocation":"25354:8:24","nodeType":"FunctionDefinition","parameters":{"id":7116,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7115,"mutability":"mutable","name":"value","nameLocation":"25370:5:24","nodeType":"VariableDeclaration","scope":7138,"src":"25363:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7114,"name":"int256","nodeType":"ElementaryTypeName","src":"25363:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25362:14:24"},"returnParameters":{"id":7119,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7118,"mutability":"mutable","name":"downcasted","nameLocation":"25407:10:24","nodeType":"VariableDeclaration","scope":7138,"src":"25400:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"},"typeName":{"id":7117,"name":"int136","nodeType":"ElementaryTypeName","src":"25400:6:24","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"visibility":"internal"}],"src":"25399:19:24"},"scope":7595,"src":"25345:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7163,"nodeType":"Block","src":"25966:150:24","statements":[{"expression":{"id":7151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7146,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7144,"src":"25976:10:24","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7149,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7141,"src":"25996:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7148,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25989:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int128_$","typeString":"type(int128)"},"typeName":{"id":7147,"name":"int128","nodeType":"ElementaryTypeName","src":"25989:6:24","typeDescriptions":{}}},"id":7150,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25989:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"src":"25976:26:24","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"id":7152,"nodeType":"ExpressionStatement","src":"25976:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7153,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7144,"src":"26016:10:24","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7154,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7141,"src":"26030:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26016:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7162,"nodeType":"IfStatement","src":"26012:98:24","trueBody":{"id":7161,"nodeType":"Block","src":"26037:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313238","id":7157,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26088:3:24","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},{"id":7158,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7141,"src":"26093:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7156,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"26058:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7159,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26058:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7160,"nodeType":"RevertStatement","src":"26051:48:24"}]}}]},"documentation":{"id":7139,"nodeType":"StructuredDocumentation","src":"25575:312:24","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"},"id":7164,"implemented":true,"kind":"function","modifiers":[],"name":"toInt128","nameLocation":"25901:8:24","nodeType":"FunctionDefinition","parameters":{"id":7142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7141,"mutability":"mutable","name":"value","nameLocation":"25917:5:24","nodeType":"VariableDeclaration","scope":7164,"src":"25910:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7140,"name":"int256","nodeType":"ElementaryTypeName","src":"25910:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"25909:14:24"},"returnParameters":{"id":7145,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7144,"mutability":"mutable","name":"downcasted","nameLocation":"25954:10:24","nodeType":"VariableDeclaration","scope":7164,"src":"25947:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"},"typeName":{"id":7143,"name":"int128","nodeType":"ElementaryTypeName","src":"25947:6:24","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"visibility":"internal"}],"src":"25946:19:24"},"scope":7595,"src":"25892:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7189,"nodeType":"Block","src":"26513:150:24","statements":[{"expression":{"id":7177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7172,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7170,"src":"26523:10:24","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7175,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7167,"src":"26543:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7174,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26536:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int120_$","typeString":"type(int120)"},"typeName":{"id":7173,"name":"int120","nodeType":"ElementaryTypeName","src":"26536:6:24","typeDescriptions":{}}},"id":7176,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26536:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"src":"26523:26:24","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"id":7178,"nodeType":"ExpressionStatement","src":"26523:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7179,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7170,"src":"26563:10:24","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7180,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7167,"src":"26577:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"26563:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7188,"nodeType":"IfStatement","src":"26559:98:24","trueBody":{"id":7187,"nodeType":"Block","src":"26584:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313230","id":7183,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26635:3:24","typeDescriptions":{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},"value":"120"},{"id":7184,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7167,"src":"26640:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_120_by_1","typeString":"int_const 120"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7182,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"26605:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7185,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26605:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7186,"nodeType":"RevertStatement","src":"26598:48:24"}]}}]},"documentation":{"id":7165,"nodeType":"StructuredDocumentation","src":"26122:312:24","text":" @dev Returns the downcasted int120 from int256, reverting on\n overflow (when the input is less than smallest int120 or\n greater than largest int120).\n Counterpart to Solidity's `int120` operator.\n Requirements:\n - input must fit into 120 bits"},"id":7190,"implemented":true,"kind":"function","modifiers":[],"name":"toInt120","nameLocation":"26448:8:24","nodeType":"FunctionDefinition","parameters":{"id":7168,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7167,"mutability":"mutable","name":"value","nameLocation":"26464:5:24","nodeType":"VariableDeclaration","scope":7190,"src":"26457:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7166,"name":"int256","nodeType":"ElementaryTypeName","src":"26457:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"26456:14:24"},"returnParameters":{"id":7171,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7170,"mutability":"mutable","name":"downcasted","nameLocation":"26501:10:24","nodeType":"VariableDeclaration","scope":7190,"src":"26494:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"},"typeName":{"id":7169,"name":"int120","nodeType":"ElementaryTypeName","src":"26494:6:24","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"visibility":"internal"}],"src":"26493:19:24"},"scope":7595,"src":"26439:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7215,"nodeType":"Block","src":"27060:150:24","statements":[{"expression":{"id":7203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7198,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7196,"src":"27070:10:24","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7201,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7193,"src":"27090:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7200,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27083:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int112_$","typeString":"type(int112)"},"typeName":{"id":7199,"name":"int112","nodeType":"ElementaryTypeName","src":"27083:6:24","typeDescriptions":{}}},"id":7202,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27083:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"src":"27070:26:24","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"id":7204,"nodeType":"ExpressionStatement","src":"27070:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7205,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7196,"src":"27110:10:24","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7206,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7193,"src":"27124:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27110:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7214,"nodeType":"IfStatement","src":"27106:98:24","trueBody":{"id":7213,"nodeType":"Block","src":"27131:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313132","id":7209,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27182:3:24","typeDescriptions":{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},"value":"112"},{"id":7210,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7193,"src":"27187:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_112_by_1","typeString":"int_const 112"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7208,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"27152:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7211,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27152:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7212,"nodeType":"RevertStatement","src":"27145:48:24"}]}}]},"documentation":{"id":7191,"nodeType":"StructuredDocumentation","src":"26669:312:24","text":" @dev Returns the downcasted int112 from int256, reverting on\n overflow (when the input is less than smallest int112 or\n greater than largest int112).\n Counterpart to Solidity's `int112` operator.\n Requirements:\n - input must fit into 112 bits"},"id":7216,"implemented":true,"kind":"function","modifiers":[],"name":"toInt112","nameLocation":"26995:8:24","nodeType":"FunctionDefinition","parameters":{"id":7194,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7193,"mutability":"mutable","name":"value","nameLocation":"27011:5:24","nodeType":"VariableDeclaration","scope":7216,"src":"27004:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7192,"name":"int256","nodeType":"ElementaryTypeName","src":"27004:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27003:14:24"},"returnParameters":{"id":7197,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7196,"mutability":"mutable","name":"downcasted","nameLocation":"27048:10:24","nodeType":"VariableDeclaration","scope":7216,"src":"27041:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"},"typeName":{"id":7195,"name":"int112","nodeType":"ElementaryTypeName","src":"27041:6:24","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"visibility":"internal"}],"src":"27040:19:24"},"scope":7595,"src":"26986:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7241,"nodeType":"Block","src":"27607:150:24","statements":[{"expression":{"id":7229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7224,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7222,"src":"27617:10:24","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7227,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7219,"src":"27637:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7226,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27630:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int104_$","typeString":"type(int104)"},"typeName":{"id":7225,"name":"int104","nodeType":"ElementaryTypeName","src":"27630:6:24","typeDescriptions":{}}},"id":7228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27630:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"src":"27617:26:24","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"id":7230,"nodeType":"ExpressionStatement","src":"27617:26:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7233,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7231,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7222,"src":"27657:10:24","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7232,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7219,"src":"27671:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"27657:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7240,"nodeType":"IfStatement","src":"27653:98:24","trueBody":{"id":7239,"nodeType":"Block","src":"27678:73:24","statements":[{"errorCall":{"arguments":[{"hexValue":"313034","id":7235,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"27729:3:24","typeDescriptions":{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},"value":"104"},{"id":7236,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7219,"src":"27734:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_104_by_1","typeString":"int_const 104"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7234,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"27699:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7237,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27699:41:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7238,"nodeType":"RevertStatement","src":"27692:48:24"}]}}]},"documentation":{"id":7217,"nodeType":"StructuredDocumentation","src":"27216:312:24","text":" @dev Returns the downcasted int104 from int256, reverting on\n overflow (when the input is less than smallest int104 or\n greater than largest int104).\n Counterpart to Solidity's `int104` operator.\n Requirements:\n - input must fit into 104 bits"},"id":7242,"implemented":true,"kind":"function","modifiers":[],"name":"toInt104","nameLocation":"27542:8:24","nodeType":"FunctionDefinition","parameters":{"id":7220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7219,"mutability":"mutable","name":"value","nameLocation":"27558:5:24","nodeType":"VariableDeclaration","scope":7242,"src":"27551:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7218,"name":"int256","nodeType":"ElementaryTypeName","src":"27551:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"27550:14:24"},"returnParameters":{"id":7223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7222,"mutability":"mutable","name":"downcasted","nameLocation":"27595:10:24","nodeType":"VariableDeclaration","scope":7242,"src":"27588:17:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"},"typeName":{"id":7221,"name":"int104","nodeType":"ElementaryTypeName","src":"27588:6:24","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"visibility":"internal"}],"src":"27587:19:24"},"scope":7595,"src":"27533:224:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7267,"nodeType":"Block","src":"28147:148:24","statements":[{"expression":{"id":7255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7250,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7248,"src":"28157:10:24","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7253,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7245,"src":"28176:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7252,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28170:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int96_$","typeString":"type(int96)"},"typeName":{"id":7251,"name":"int96","nodeType":"ElementaryTypeName","src":"28170:5:24","typeDescriptions":{}}},"id":7254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28170:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"src":"28157:25:24","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"id":7256,"nodeType":"ExpressionStatement","src":"28157:25:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7257,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7248,"src":"28196:10:24","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7258,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7245,"src":"28210:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28196:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7266,"nodeType":"IfStatement","src":"28192:97:24","trueBody":{"id":7265,"nodeType":"Block","src":"28217:72:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3936","id":7261,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28268:2:24","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},{"id":7262,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7245,"src":"28272:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7260,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"28238:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7263,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28238:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7264,"nodeType":"RevertStatement","src":"28231:47:24"}]}}]},"documentation":{"id":7243,"nodeType":"StructuredDocumentation","src":"27763:307:24","text":" @dev Returns the downcasted int96 from int256, reverting on\n overflow (when the input is less than smallest int96 or\n greater than largest int96).\n Counterpart to Solidity's `int96` operator.\n Requirements:\n - input must fit into 96 bits"},"id":7268,"implemented":true,"kind":"function","modifiers":[],"name":"toInt96","nameLocation":"28084:7:24","nodeType":"FunctionDefinition","parameters":{"id":7246,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7245,"mutability":"mutable","name":"value","nameLocation":"28099:5:24","nodeType":"VariableDeclaration","scope":7268,"src":"28092:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7244,"name":"int256","nodeType":"ElementaryTypeName","src":"28092:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28091:14:24"},"returnParameters":{"id":7249,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7248,"mutability":"mutable","name":"downcasted","nameLocation":"28135:10:24","nodeType":"VariableDeclaration","scope":7268,"src":"28129:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"},"typeName":{"id":7247,"name":"int96","nodeType":"ElementaryTypeName","src":"28129:5:24","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"visibility":"internal"}],"src":"28128:18:24"},"scope":7595,"src":"28075:220:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7293,"nodeType":"Block","src":"28685:148:24","statements":[{"expression":{"id":7281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7276,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7274,"src":"28695:10:24","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7279,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7271,"src":"28714:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7278,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"28708:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int88_$","typeString":"type(int88)"},"typeName":{"id":7277,"name":"int88","nodeType":"ElementaryTypeName","src":"28708:5:24","typeDescriptions":{}}},"id":7280,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28708:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"src":"28695:25:24","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"id":7282,"nodeType":"ExpressionStatement","src":"28695:25:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7283,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7274,"src":"28734:10:24","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7284,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7271,"src":"28748:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"28734:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7292,"nodeType":"IfStatement","src":"28730:97:24","trueBody":{"id":7291,"nodeType":"Block","src":"28755:72:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3838","id":7287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"28806:2:24","typeDescriptions":{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},"value":"88"},{"id":7288,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7271,"src":"28810:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_88_by_1","typeString":"int_const 88"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7286,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"28776:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7289,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28776:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7290,"nodeType":"RevertStatement","src":"28769:47:24"}]}}]},"documentation":{"id":7269,"nodeType":"StructuredDocumentation","src":"28301:307:24","text":" @dev Returns the downcasted int88 from int256, reverting on\n overflow (when the input is less than smallest int88 or\n greater than largest int88).\n Counterpart to Solidity's `int88` operator.\n Requirements:\n - input must fit into 88 bits"},"id":7294,"implemented":true,"kind":"function","modifiers":[],"name":"toInt88","nameLocation":"28622:7:24","nodeType":"FunctionDefinition","parameters":{"id":7272,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7271,"mutability":"mutable","name":"value","nameLocation":"28637:5:24","nodeType":"VariableDeclaration","scope":7294,"src":"28630:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7270,"name":"int256","nodeType":"ElementaryTypeName","src":"28630:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"28629:14:24"},"returnParameters":{"id":7275,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7274,"mutability":"mutable","name":"downcasted","nameLocation":"28673:10:24","nodeType":"VariableDeclaration","scope":7294,"src":"28667:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"},"typeName":{"id":7273,"name":"int88","nodeType":"ElementaryTypeName","src":"28667:5:24","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"visibility":"internal"}],"src":"28666:18:24"},"scope":7595,"src":"28613:220:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7319,"nodeType":"Block","src":"29223:148:24","statements":[{"expression":{"id":7307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7302,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7300,"src":"29233:10:24","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7305,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7297,"src":"29252:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7304,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29246:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int80_$","typeString":"type(int80)"},"typeName":{"id":7303,"name":"int80","nodeType":"ElementaryTypeName","src":"29246:5:24","typeDescriptions":{}}},"id":7306,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29246:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"src":"29233:25:24","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"id":7308,"nodeType":"ExpressionStatement","src":"29233:25:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7309,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7300,"src":"29272:10:24","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7310,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7297,"src":"29286:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29272:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7318,"nodeType":"IfStatement","src":"29268:97:24","trueBody":{"id":7317,"nodeType":"Block","src":"29293:72:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3830","id":7313,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29344:2:24","typeDescriptions":{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},"value":"80"},{"id":7314,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7297,"src":"29348:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_80_by_1","typeString":"int_const 80"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7312,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"29314:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29314:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7316,"nodeType":"RevertStatement","src":"29307:47:24"}]}}]},"documentation":{"id":7295,"nodeType":"StructuredDocumentation","src":"28839:307:24","text":" @dev Returns the downcasted int80 from int256, reverting on\n overflow (when the input is less than smallest int80 or\n greater than largest int80).\n Counterpart to Solidity's `int80` operator.\n Requirements:\n - input must fit into 80 bits"},"id":7320,"implemented":true,"kind":"function","modifiers":[],"name":"toInt80","nameLocation":"29160:7:24","nodeType":"FunctionDefinition","parameters":{"id":7298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7297,"mutability":"mutable","name":"value","nameLocation":"29175:5:24","nodeType":"VariableDeclaration","scope":7320,"src":"29168:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7296,"name":"int256","nodeType":"ElementaryTypeName","src":"29168:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29167:14:24"},"returnParameters":{"id":7301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7300,"mutability":"mutable","name":"downcasted","nameLocation":"29211:10:24","nodeType":"VariableDeclaration","scope":7320,"src":"29205:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"},"typeName":{"id":7299,"name":"int80","nodeType":"ElementaryTypeName","src":"29205:5:24","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"visibility":"internal"}],"src":"29204:18:24"},"scope":7595,"src":"29151:220:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7345,"nodeType":"Block","src":"29761:148:24","statements":[{"expression":{"id":7333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7328,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7326,"src":"29771:10:24","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7331,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7323,"src":"29790:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7330,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"29784:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int72_$","typeString":"type(int72)"},"typeName":{"id":7329,"name":"int72","nodeType":"ElementaryTypeName","src":"29784:5:24","typeDescriptions":{}}},"id":7332,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29784:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"src":"29771:25:24","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"id":7334,"nodeType":"ExpressionStatement","src":"29771:25:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7337,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7335,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7326,"src":"29810:10:24","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7336,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7323,"src":"29824:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"29810:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7344,"nodeType":"IfStatement","src":"29806:97:24","trueBody":{"id":7343,"nodeType":"Block","src":"29831:72:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3732","id":7339,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"29882:2:24","typeDescriptions":{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},"value":"72"},{"id":7340,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7323,"src":"29886:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_72_by_1","typeString":"int_const 72"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7338,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"29852:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7341,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29852:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7342,"nodeType":"RevertStatement","src":"29845:47:24"}]}}]},"documentation":{"id":7321,"nodeType":"StructuredDocumentation","src":"29377:307:24","text":" @dev Returns the downcasted int72 from int256, reverting on\n overflow (when the input is less than smallest int72 or\n greater than largest int72).\n Counterpart to Solidity's `int72` operator.\n Requirements:\n - input must fit into 72 bits"},"id":7346,"implemented":true,"kind":"function","modifiers":[],"name":"toInt72","nameLocation":"29698:7:24","nodeType":"FunctionDefinition","parameters":{"id":7324,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7323,"mutability":"mutable","name":"value","nameLocation":"29713:5:24","nodeType":"VariableDeclaration","scope":7346,"src":"29706:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7322,"name":"int256","nodeType":"ElementaryTypeName","src":"29706:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"29705:14:24"},"returnParameters":{"id":7327,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7326,"mutability":"mutable","name":"downcasted","nameLocation":"29749:10:24","nodeType":"VariableDeclaration","scope":7346,"src":"29743:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"},"typeName":{"id":7325,"name":"int72","nodeType":"ElementaryTypeName","src":"29743:5:24","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"visibility":"internal"}],"src":"29742:18:24"},"scope":7595,"src":"29689:220:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7371,"nodeType":"Block","src":"30299:148:24","statements":[{"expression":{"id":7359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7354,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7352,"src":"30309:10:24","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7357,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7349,"src":"30328:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7356,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30322:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int64_$","typeString":"type(int64)"},"typeName":{"id":7355,"name":"int64","nodeType":"ElementaryTypeName","src":"30322:5:24","typeDescriptions":{}}},"id":7358,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30322:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"src":"30309:25:24","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":7360,"nodeType":"ExpressionStatement","src":"30309:25:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7361,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7352,"src":"30348:10:24","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7362,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7349,"src":"30362:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30348:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7370,"nodeType":"IfStatement","src":"30344:97:24","trueBody":{"id":7369,"nodeType":"Block","src":"30369:72:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3634","id":7365,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30420:2:24","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},{"id":7366,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7349,"src":"30424:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7364,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"30390:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30390:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7368,"nodeType":"RevertStatement","src":"30383:47:24"}]}}]},"documentation":{"id":7347,"nodeType":"StructuredDocumentation","src":"29915:307:24","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"},"id":7372,"implemented":true,"kind":"function","modifiers":[],"name":"toInt64","nameLocation":"30236:7:24","nodeType":"FunctionDefinition","parameters":{"id":7350,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7349,"mutability":"mutable","name":"value","nameLocation":"30251:5:24","nodeType":"VariableDeclaration","scope":7372,"src":"30244:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7348,"name":"int256","nodeType":"ElementaryTypeName","src":"30244:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30243:14:24"},"returnParameters":{"id":7353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7352,"mutability":"mutable","name":"downcasted","nameLocation":"30287:10:24","nodeType":"VariableDeclaration","scope":7372,"src":"30281:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"},"typeName":{"id":7351,"name":"int64","nodeType":"ElementaryTypeName","src":"30281:5:24","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"visibility":"internal"}],"src":"30280:18:24"},"scope":7595,"src":"30227:220:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7397,"nodeType":"Block","src":"30837:148:24","statements":[{"expression":{"id":7385,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7380,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7378,"src":"30847:10:24","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7383,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7375,"src":"30866:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7382,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"30860:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int56_$","typeString":"type(int56)"},"typeName":{"id":7381,"name":"int56","nodeType":"ElementaryTypeName","src":"30860:5:24","typeDescriptions":{}}},"id":7384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30860:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"src":"30847:25:24","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"id":7386,"nodeType":"ExpressionStatement","src":"30847:25:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7389,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7387,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7378,"src":"30886:10:24","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7388,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7375,"src":"30900:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"30886:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7396,"nodeType":"IfStatement","src":"30882:97:24","trueBody":{"id":7395,"nodeType":"Block","src":"30907:72:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3536","id":7391,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"30958:2:24","typeDescriptions":{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},"value":"56"},{"id":7392,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7375,"src":"30962:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_56_by_1","typeString":"int_const 56"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7390,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"30928:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7393,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30928:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7394,"nodeType":"RevertStatement","src":"30921:47:24"}]}}]},"documentation":{"id":7373,"nodeType":"StructuredDocumentation","src":"30453:307:24","text":" @dev Returns the downcasted int56 from int256, reverting on\n overflow (when the input is less than smallest int56 or\n greater than largest int56).\n Counterpart to Solidity's `int56` operator.\n Requirements:\n - input must fit into 56 bits"},"id":7398,"implemented":true,"kind":"function","modifiers":[],"name":"toInt56","nameLocation":"30774:7:24","nodeType":"FunctionDefinition","parameters":{"id":7376,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7375,"mutability":"mutable","name":"value","nameLocation":"30789:5:24","nodeType":"VariableDeclaration","scope":7398,"src":"30782:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7374,"name":"int256","nodeType":"ElementaryTypeName","src":"30782:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"30781:14:24"},"returnParameters":{"id":7379,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7378,"mutability":"mutable","name":"downcasted","nameLocation":"30825:10:24","nodeType":"VariableDeclaration","scope":7398,"src":"30819:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"},"typeName":{"id":7377,"name":"int56","nodeType":"ElementaryTypeName","src":"30819:5:24","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"visibility":"internal"}],"src":"30818:18:24"},"scope":7595,"src":"30765:220:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7423,"nodeType":"Block","src":"31375:148:24","statements":[{"expression":{"id":7411,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7406,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7404,"src":"31385:10:24","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7409,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7401,"src":"31404:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7408,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31398:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int48_$","typeString":"type(int48)"},"typeName":{"id":7407,"name":"int48","nodeType":"ElementaryTypeName","src":"31398:5:24","typeDescriptions":{}}},"id":7410,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31398:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"src":"31385:25:24","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"id":7412,"nodeType":"ExpressionStatement","src":"31385:25:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7413,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7404,"src":"31424:10:24","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7414,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7401,"src":"31438:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31424:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7422,"nodeType":"IfStatement","src":"31420:97:24","trueBody":{"id":7421,"nodeType":"Block","src":"31445:72:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3438","id":7417,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"31496:2:24","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},{"id":7418,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7401,"src":"31500:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7416,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"31466:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7419,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31466:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7420,"nodeType":"RevertStatement","src":"31459:47:24"}]}}]},"documentation":{"id":7399,"nodeType":"StructuredDocumentation","src":"30991:307:24","text":" @dev Returns the downcasted int48 from int256, reverting on\n overflow (when the input is less than smallest int48 or\n greater than largest int48).\n Counterpart to Solidity's `int48` operator.\n Requirements:\n - input must fit into 48 bits"},"id":7424,"implemented":true,"kind":"function","modifiers":[],"name":"toInt48","nameLocation":"31312:7:24","nodeType":"FunctionDefinition","parameters":{"id":7402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7401,"mutability":"mutable","name":"value","nameLocation":"31327:5:24","nodeType":"VariableDeclaration","scope":7424,"src":"31320:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7400,"name":"int256","nodeType":"ElementaryTypeName","src":"31320:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31319:14:24"},"returnParameters":{"id":7405,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7404,"mutability":"mutable","name":"downcasted","nameLocation":"31363:10:24","nodeType":"VariableDeclaration","scope":7424,"src":"31357:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"},"typeName":{"id":7403,"name":"int48","nodeType":"ElementaryTypeName","src":"31357:5:24","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"visibility":"internal"}],"src":"31356:18:24"},"scope":7595,"src":"31303:220:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7449,"nodeType":"Block","src":"31913:148:24","statements":[{"expression":{"id":7437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7432,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7430,"src":"31923:10:24","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7435,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7427,"src":"31942:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7434,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"31936:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int40_$","typeString":"type(int40)"},"typeName":{"id":7433,"name":"int40","nodeType":"ElementaryTypeName","src":"31936:5:24","typeDescriptions":{}}},"id":7436,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31936:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"src":"31923:25:24","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"id":7438,"nodeType":"ExpressionStatement","src":"31923:25:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7439,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7430,"src":"31962:10:24","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7440,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7427,"src":"31976:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"31962:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7448,"nodeType":"IfStatement","src":"31958:97:24","trueBody":{"id":7447,"nodeType":"Block","src":"31983:72:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3430","id":7443,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32034:2:24","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},{"id":7444,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7427,"src":"32038:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7442,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"32004:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7445,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32004:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7446,"nodeType":"RevertStatement","src":"31997:47:24"}]}}]},"documentation":{"id":7425,"nodeType":"StructuredDocumentation","src":"31529:307:24","text":" @dev Returns the downcasted int40 from int256, reverting on\n overflow (when the input is less than smallest int40 or\n greater than largest int40).\n Counterpart to Solidity's `int40` operator.\n Requirements:\n - input must fit into 40 bits"},"id":7450,"implemented":true,"kind":"function","modifiers":[],"name":"toInt40","nameLocation":"31850:7:24","nodeType":"FunctionDefinition","parameters":{"id":7428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7427,"mutability":"mutable","name":"value","nameLocation":"31865:5:24","nodeType":"VariableDeclaration","scope":7450,"src":"31858:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7426,"name":"int256","nodeType":"ElementaryTypeName","src":"31858:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"31857:14:24"},"returnParameters":{"id":7431,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7430,"mutability":"mutable","name":"downcasted","nameLocation":"31901:10:24","nodeType":"VariableDeclaration","scope":7450,"src":"31895:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"},"typeName":{"id":7429,"name":"int40","nodeType":"ElementaryTypeName","src":"31895:5:24","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"visibility":"internal"}],"src":"31894:18:24"},"scope":7595,"src":"31841:220:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7475,"nodeType":"Block","src":"32451:148:24","statements":[{"expression":{"id":7463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7458,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7456,"src":"32461:10:24","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7461,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7453,"src":"32480:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7460,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32474:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int32_$","typeString":"type(int32)"},"typeName":{"id":7459,"name":"int32","nodeType":"ElementaryTypeName","src":"32474:5:24","typeDescriptions":{}}},"id":7462,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32474:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"src":"32461:25:24","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":7464,"nodeType":"ExpressionStatement","src":"32461:25:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7465,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7456,"src":"32500:10:24","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7466,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7453,"src":"32514:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"32500:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7474,"nodeType":"IfStatement","src":"32496:97:24","trueBody":{"id":7473,"nodeType":"Block","src":"32521:72:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3332","id":7469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32572:2:24","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},{"id":7470,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7453,"src":"32576:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7468,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"32542:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7471,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32542:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7472,"nodeType":"RevertStatement","src":"32535:47:24"}]}}]},"documentation":{"id":7451,"nodeType":"StructuredDocumentation","src":"32067:307:24","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"},"id":7476,"implemented":true,"kind":"function","modifiers":[],"name":"toInt32","nameLocation":"32388:7:24","nodeType":"FunctionDefinition","parameters":{"id":7454,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7453,"mutability":"mutable","name":"value","nameLocation":"32403:5:24","nodeType":"VariableDeclaration","scope":7476,"src":"32396:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7452,"name":"int256","nodeType":"ElementaryTypeName","src":"32396:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32395:14:24"},"returnParameters":{"id":7457,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7456,"mutability":"mutable","name":"downcasted","nameLocation":"32439:10:24","nodeType":"VariableDeclaration","scope":7476,"src":"32433:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":7455,"name":"int32","nodeType":"ElementaryTypeName","src":"32433:5:24","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"src":"32432:18:24"},"scope":7595,"src":"32379:220:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7501,"nodeType":"Block","src":"32989:148:24","statements":[{"expression":{"id":7489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7484,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7482,"src":"32999:10:24","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7487,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7479,"src":"33018:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7486,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33012:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int24_$","typeString":"type(int24)"},"typeName":{"id":7485,"name":"int24","nodeType":"ElementaryTypeName","src":"33012:5:24","typeDescriptions":{}}},"id":7488,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33012:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"src":"32999:25:24","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"id":7490,"nodeType":"ExpressionStatement","src":"32999:25:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7493,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7491,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7482,"src":"33038:10:24","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7492,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7479,"src":"33052:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33038:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7500,"nodeType":"IfStatement","src":"33034:97:24","trueBody":{"id":7499,"nodeType":"Block","src":"33059:72:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3234","id":7495,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33110:2:24","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},{"id":7496,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7479,"src":"33114:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7494,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"33080:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7497,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33080:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7498,"nodeType":"RevertStatement","src":"33073:47:24"}]}}]},"documentation":{"id":7477,"nodeType":"StructuredDocumentation","src":"32605:307:24","text":" @dev Returns the downcasted int24 from int256, reverting on\n overflow (when the input is less than smallest int24 or\n greater than largest int24).\n Counterpart to Solidity's `int24` operator.\n Requirements:\n - input must fit into 24 bits"},"id":7502,"implemented":true,"kind":"function","modifiers":[],"name":"toInt24","nameLocation":"32926:7:24","nodeType":"FunctionDefinition","parameters":{"id":7480,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7479,"mutability":"mutable","name":"value","nameLocation":"32941:5:24","nodeType":"VariableDeclaration","scope":7502,"src":"32934:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7478,"name":"int256","nodeType":"ElementaryTypeName","src":"32934:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"32933:14:24"},"returnParameters":{"id":7483,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7482,"mutability":"mutable","name":"downcasted","nameLocation":"32977:10:24","nodeType":"VariableDeclaration","scope":7502,"src":"32971:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":7481,"name":"int24","nodeType":"ElementaryTypeName","src":"32971:5:24","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"32970:18:24"},"scope":7595,"src":"32917:220:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7527,"nodeType":"Block","src":"33527:148:24","statements":[{"expression":{"id":7515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7510,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7508,"src":"33537:10:24","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7513,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7505,"src":"33556:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7512,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"33550:5:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int16_$","typeString":"type(int16)"},"typeName":{"id":7511,"name":"int16","nodeType":"ElementaryTypeName","src":"33550:5:24","typeDescriptions":{}}},"id":7514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33550:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"src":"33537:25:24","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"id":7516,"nodeType":"ExpressionStatement","src":"33537:25:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7519,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7517,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7508,"src":"33576:10:24","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7518,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7505,"src":"33590:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"33576:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7526,"nodeType":"IfStatement","src":"33572:97:24","trueBody":{"id":7525,"nodeType":"Block","src":"33597:72:24","statements":[{"errorCall":{"arguments":[{"hexValue":"3136","id":7521,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33648:2:24","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},{"id":7522,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7505,"src":"33652:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7520,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"33618:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7523,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33618:40:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7524,"nodeType":"RevertStatement","src":"33611:47:24"}]}}]},"documentation":{"id":7503,"nodeType":"StructuredDocumentation","src":"33143:307:24","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"},"id":7528,"implemented":true,"kind":"function","modifiers":[],"name":"toInt16","nameLocation":"33464:7:24","nodeType":"FunctionDefinition","parameters":{"id":7506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7505,"mutability":"mutable","name":"value","nameLocation":"33479:5:24","nodeType":"VariableDeclaration","scope":7528,"src":"33472:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7504,"name":"int256","nodeType":"ElementaryTypeName","src":"33472:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"33471:14:24"},"returnParameters":{"id":7509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7508,"mutability":"mutable","name":"downcasted","nameLocation":"33515:10:24","nodeType":"VariableDeclaration","scope":7528,"src":"33509:16:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"},"typeName":{"id":7507,"name":"int16","nodeType":"ElementaryTypeName","src":"33509:5:24","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"visibility":"internal"}],"src":"33508:18:24"},"scope":7595,"src":"33455:220:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7553,"nodeType":"Block","src":"34058:146:24","statements":[{"expression":{"id":7541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7536,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7534,"src":"34068:10:24","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7539,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7531,"src":"34086:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7538,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34081:4:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int8_$","typeString":"type(int8)"},"typeName":{"id":7537,"name":"int8","nodeType":"ElementaryTypeName","src":"34081:4:24","typeDescriptions":{}}},"id":7540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34081:11:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"src":"34068:24:24","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"id":7542,"nodeType":"ExpressionStatement","src":"34068:24:24"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7545,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7543,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7534,"src":"34106:10:24","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":7544,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7531,"src":"34120:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"34106:19:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7552,"nodeType":"IfStatement","src":"34102:96:24","trueBody":{"id":7551,"nodeType":"Block","src":"34127:71:24","statements":[{"errorCall":{"arguments":[{"hexValue":"38","id":7547,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34178:1:24","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":7548,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7531,"src":"34181:5:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7546,"name":"SafeCastOverflowedIntDowncast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5852,"src":"34148:29:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint8_$_t_int256_$returns$_t_error_$","typeString":"function (uint8,int256) pure returns (error)"}},"id":7549,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34148:39:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7550,"nodeType":"RevertStatement","src":"34141:46:24"}]}}]},"documentation":{"id":7529,"nodeType":"StructuredDocumentation","src":"33681:302:24","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"},"id":7554,"implemented":true,"kind":"function","modifiers":[],"name":"toInt8","nameLocation":"33997:6:24","nodeType":"FunctionDefinition","parameters":{"id":7532,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7531,"mutability":"mutable","name":"value","nameLocation":"34011:5:24","nodeType":"VariableDeclaration","scope":7554,"src":"34004:12:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7530,"name":"int256","nodeType":"ElementaryTypeName","src":"34004:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34003:14:24"},"returnParameters":{"id":7535,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7534,"mutability":"mutable","name":"downcasted","nameLocation":"34046:10:24","nodeType":"VariableDeclaration","scope":7554,"src":"34041:15:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"},"typeName":{"id":7533,"name":"int8","nodeType":"ElementaryTypeName","src":"34041:4:24","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"visibility":"internal"}],"src":"34040:17:24"},"scope":7595,"src":"33988:216:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7583,"nodeType":"Block","src":"34444:250:24","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7571,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7562,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7557,"src":"34557:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"expression":{"arguments":[{"id":7567,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34578:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":7566,"name":"int256","nodeType":"ElementaryTypeName","src":"34578:6:24","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":7565,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"34573:4:24","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":7568,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34573:12:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":7569,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"34586:3:24","memberName":"max","nodeType":"MemberAccess","src":"34573:16:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7564,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34565:7:24","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7563,"name":"uint256","nodeType":"ElementaryTypeName","src":"34565:7:24","typeDescriptions":{}}},"id":7570,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34565:25:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"34557:33:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7577,"nodeType":"IfStatement","src":"34553:105:24","trueBody":{"id":7576,"nodeType":"Block","src":"34592:66:24","statements":[{"errorCall":{"arguments":[{"id":7573,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7557,"src":"34641:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7572,"name":"SafeCastOverflowedUintToInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5857,"src":"34613:27:24","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":7574,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34613:34:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":7575,"nodeType":"RevertStatement","src":"34606:41:24"}]}},{"expression":{"arguments":[{"id":7580,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7557,"src":"34681:5:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7579,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34674:6:24","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":7578,"name":"int256","nodeType":"ElementaryTypeName","src":"34674:6:24","typeDescriptions":{}}},"id":7581,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34674:13:24","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":7561,"id":7582,"nodeType":"Return","src":"34667:20:24"}]},"documentation":{"id":7555,"nodeType":"StructuredDocumentation","src":"34210:165:24","text":" @dev Converts an unsigned uint256 into a signed int256.\n Requirements:\n - input must be less than or equal to maxInt256."},"id":7584,"implemented":true,"kind":"function","modifiers":[],"name":"toInt256","nameLocation":"34389:8:24","nodeType":"FunctionDefinition","parameters":{"id":7558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7557,"mutability":"mutable","name":"value","nameLocation":"34406:5:24","nodeType":"VariableDeclaration","scope":7584,"src":"34398:13:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7556,"name":"uint256","nodeType":"ElementaryTypeName","src":"34398:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34397:15:24"},"returnParameters":{"id":7561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7560,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7584,"src":"34436:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7559,"name":"int256","nodeType":"ElementaryTypeName","src":"34436:6:24","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"34435:8:24"},"scope":7595,"src":"34380:314:24","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7593,"nodeType":"Block","src":"34853:87:24","statements":[{"AST":{"nativeSrc":"34888:46:24","nodeType":"YulBlock","src":"34888:46:24","statements":[{"nativeSrc":"34902:22:24","nodeType":"YulAssignment","src":"34902:22:24","value":{"arguments":[{"arguments":[{"name":"b","nativeSrc":"34921:1:24","nodeType":"YulIdentifier","src":"34921:1:24"}],"functionName":{"name":"iszero","nativeSrc":"34914:6:24","nodeType":"YulIdentifier","src":"34914:6:24"},"nativeSrc":"34914:9:24","nodeType":"YulFunctionCall","src":"34914:9:24"}],"functionName":{"name":"iszero","nativeSrc":"34907:6:24","nodeType":"YulIdentifier","src":"34907:6:24"},"nativeSrc":"34907:17:24","nodeType":"YulFunctionCall","src":"34907:17:24"},"variableNames":[{"name":"u","nativeSrc":"34902:1:24","nodeType":"YulIdentifier","src":"34902:1:24"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":7587,"isOffset":false,"isSlot":false,"src":"34921:1:24","valueSize":1},{"declaration":7590,"isOffset":false,"isSlot":false,"src":"34902:1:24","valueSize":1}],"flags":["memory-safe"],"id":7592,"nodeType":"InlineAssembly","src":"34863:71:24"}]},"documentation":{"id":7585,"nodeType":"StructuredDocumentation","src":"34700:90:24","text":" @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump."},"id":7594,"implemented":true,"kind":"function","modifiers":[],"name":"toUint","nameLocation":"34804:6:24","nodeType":"FunctionDefinition","parameters":{"id":7588,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7587,"mutability":"mutable","name":"b","nameLocation":"34816:1:24","nodeType":"VariableDeclaration","scope":7594,"src":"34811:6:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7586,"name":"bool","nodeType":"ElementaryTypeName","src":"34811:4:24","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"34810:8:24"},"returnParameters":{"id":7591,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7590,"mutability":"mutable","name":"u","nameLocation":"34850:1:24","nodeType":"VariableDeclaration","scope":7594,"src":"34842:9:24","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7589,"name":"uint256","nodeType":"ElementaryTypeName","src":"34842:7:24","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34841:11:24"},"scope":7595,"src":"34795:145:24","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":7596,"src":"769:34173:24","usedErrors":[5840,5845,5852,5857],"usedEvents":[]}],"src":"192:34751:24"},"id":24},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"ast":{"absolutePath":"@openzeppelin/contracts/utils/math/SignedMath.sol","exportedSymbols":{"SafeCast":[7595],"SignedMath":[7739]},"id":7740,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7597,"literals":["solidity","^","0.8",".20"],"nodeType":"PragmaDirective","src":"109:24:25"},{"absolutePath":"@openzeppelin/contracts/utils/math/SafeCast.sol","file":"./SafeCast.sol","id":7599,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":7740,"sourceUnit":7596,"src":"135:40:25","symbolAliases":[{"foreign":{"id":7598,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"143:8:25","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"SignedMath","contractDependencies":[],"contractKind":"library","documentation":{"id":7600,"nodeType":"StructuredDocumentation","src":"177:80:25","text":" @dev Standard signed math utilities missing in the Solidity language."},"fullyImplemented":true,"id":7739,"linearizedBaseContracts":[7739],"name":"SignedMath","nameLocation":"266:10:25","nodeType":"ContractDefinition","nodes":[{"body":{"id":7629,"nodeType":"Block","src":"746:215:25","statements":[{"id":7628,"nodeType":"UncheckedBlock","src":"756:199:25","statements":[{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7626,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7612,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7607,"src":"894:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7624,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7615,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7613,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7605,"src":"900:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":7614,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7607,"src":"904:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"900:5:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":7616,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"899:7:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"arguments":[{"id":7621,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7603,"src":"932:9:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":7619,"name":"SafeCast","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7595,"src":"916:8:25","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_SafeCast_$7595_$","typeString":"type(library SafeCast)"}},"id":7620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"925:6:25","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"916:15:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$returns$_t_uint256_$","typeString":"function (bool) pure returns (uint256)"}},"id":7622,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"916:26:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7618,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"909:6:25","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":7617,"name":"int256","nodeType":"ElementaryTypeName","src":"909:6:25","typeDescriptions":{}}},"id":7623,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"909:34:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"899:44:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":7625,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"898:46:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"894:50:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":7611,"id":7627,"nodeType":"Return","src":"887:57:25"}]}]},"documentation":{"id":7601,"nodeType":"StructuredDocumentation","src":"283:374:25","text":" @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.\n IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.\n However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute\n one branch when needed, making this function more expensive."},"id":7630,"implemented":true,"kind":"function","modifiers":[],"name":"ternary","nameLocation":"671:7:25","nodeType":"FunctionDefinition","parameters":{"id":7608,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7603,"mutability":"mutable","name":"condition","nameLocation":"684:9:25","nodeType":"VariableDeclaration","scope":7630,"src":"679:14:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7602,"name":"bool","nodeType":"ElementaryTypeName","src":"679:4:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":7605,"mutability":"mutable","name":"a","nameLocation":"702:1:25","nodeType":"VariableDeclaration","scope":7630,"src":"695:8:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7604,"name":"int256","nodeType":"ElementaryTypeName","src":"695:6:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":7607,"mutability":"mutable","name":"b","nameLocation":"712:1:25","nodeType":"VariableDeclaration","scope":7630,"src":"705:8:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7606,"name":"int256","nodeType":"ElementaryTypeName","src":"705:6:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"678:36:25"},"returnParameters":{"id":7611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7610,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7630,"src":"738:6:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7609,"name":"int256","nodeType":"ElementaryTypeName","src":"738:6:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"737:8:25"},"scope":7739,"src":"662:299:25","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7648,"nodeType":"Block","src":"1102:44:25","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7643,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7641,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7633,"src":"1127:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":7642,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7635,"src":"1131:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1127:5:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":7644,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7633,"src":"1134:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":7645,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7635,"src":"1137:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7640,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7630,"src":"1119:7:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":7646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1119:20:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":7639,"id":7647,"nodeType":"Return","src":"1112:27:25"}]},"documentation":{"id":7631,"nodeType":"StructuredDocumentation","src":"967:66:25","text":" @dev Returns the largest of two signed numbers."},"id":7649,"implemented":true,"kind":"function","modifiers":[],"name":"max","nameLocation":"1047:3:25","nodeType":"FunctionDefinition","parameters":{"id":7636,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7633,"mutability":"mutable","name":"a","nameLocation":"1058:1:25","nodeType":"VariableDeclaration","scope":7649,"src":"1051:8:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7632,"name":"int256","nodeType":"ElementaryTypeName","src":"1051:6:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":7635,"mutability":"mutable","name":"b","nameLocation":"1068:1:25","nodeType":"VariableDeclaration","scope":7649,"src":"1061:8:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7634,"name":"int256","nodeType":"ElementaryTypeName","src":"1061:6:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1050:20:25"},"returnParameters":{"id":7639,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7638,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7649,"src":"1094:6:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7637,"name":"int256","nodeType":"ElementaryTypeName","src":"1094:6:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1093:8:25"},"scope":7739,"src":"1038:108:25","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7667,"nodeType":"Block","src":"1288:44:25","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7660,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7652,"src":"1313:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":7661,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7654,"src":"1317:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1313:5:25","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":7663,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7652,"src":"1320:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},{"id":7664,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7654,"src":"1323:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_int256","typeString":"int256"},{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7659,"name":"ternary","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7630,"src":"1305:7:25","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_int256_$_t_int256_$returns$_t_int256_$","typeString":"function (bool,int256,int256) pure returns (int256)"}},"id":7665,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1305:20:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":7658,"id":7666,"nodeType":"Return","src":"1298:27:25"}]},"documentation":{"id":7650,"nodeType":"StructuredDocumentation","src":"1152:67:25","text":" @dev Returns the smallest of two signed numbers."},"id":7668,"implemented":true,"kind":"function","modifiers":[],"name":"min","nameLocation":"1233:3:25","nodeType":"FunctionDefinition","parameters":{"id":7655,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7652,"mutability":"mutable","name":"a","nameLocation":"1244:1:25","nodeType":"VariableDeclaration","scope":7668,"src":"1237:8:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7651,"name":"int256","nodeType":"ElementaryTypeName","src":"1237:6:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":7654,"mutability":"mutable","name":"b","nameLocation":"1254:1:25","nodeType":"VariableDeclaration","scope":7668,"src":"1247:8:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7653,"name":"int256","nodeType":"ElementaryTypeName","src":"1247:6:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1236:20:25"},"returnParameters":{"id":7658,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7657,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7668,"src":"1280:6:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7656,"name":"int256","nodeType":"ElementaryTypeName","src":"1280:6:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1279:8:25"},"scope":7739,"src":"1224:108:25","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7711,"nodeType":"Block","src":"1537:162:25","statements":[{"assignments":[7679],"declarations":[{"constant":false,"id":7679,"mutability":"mutable","name":"x","nameLocation":"1606:1:25","nodeType":"VariableDeclaration","scope":7711,"src":"1599:8:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7678,"name":"int256","nodeType":"ElementaryTypeName","src":"1599:6:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":7692,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7680,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7671,"src":"1611:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":7681,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7673,"src":"1615:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1611:5:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":7683,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1610:7:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7684,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7671,"src":"1622:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":7685,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7673,"src":"1626:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1622:5:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":7687,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1621:7:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":7688,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1632:1:25","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1621:12:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":7690,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1620:14:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1610:24:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"1599:35:25"},{"expression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7693,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7679,"src":"1651:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7698,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7679,"src":"1671:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7697,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1663:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7696,"name":"uint256","nodeType":"ElementaryTypeName","src":"1663:7:25","typeDescriptions":{}}},"id":7699,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1663:10:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":7700,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1677:3:25","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"1663:17:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7695,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1656:6:25","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":7694,"name":"int256","nodeType":"ElementaryTypeName","src":"1656:6:25","typeDescriptions":{}}},"id":7702,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1656:25:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7703,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7671,"src":"1685:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":7704,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7673,"src":"1689:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1685:5:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":7706,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1684:7:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1656:35:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":7708,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1655:37:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"1651:41:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":7677,"id":7710,"nodeType":"Return","src":"1644:48:25"}]},"documentation":{"id":7669,"nodeType":"StructuredDocumentation","src":"1338:126:25","text":" @dev Returns the average of two signed numbers without overflow.\n The result is rounded towards zero."},"id":7712,"implemented":true,"kind":"function","modifiers":[],"name":"average","nameLocation":"1478:7:25","nodeType":"FunctionDefinition","parameters":{"id":7674,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7671,"mutability":"mutable","name":"a","nameLocation":"1493:1:25","nodeType":"VariableDeclaration","scope":7712,"src":"1486:8:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7670,"name":"int256","nodeType":"ElementaryTypeName","src":"1486:6:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"},{"constant":false,"id":7673,"mutability":"mutable","name":"b","nameLocation":"1503:1:25","nodeType":"VariableDeclaration","scope":7712,"src":"1496:8:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7672,"name":"int256","nodeType":"ElementaryTypeName","src":"1496:6:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1485:20:25"},"returnParameters":{"id":7677,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7676,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7712,"src":"1529:6:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7675,"name":"int256","nodeType":"ElementaryTypeName","src":"1529:6:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1528:8:25"},"scope":7739,"src":"1469:230:25","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":7737,"nodeType":"Block","src":"1843:767:25","statements":[{"id":7736,"nodeType":"UncheckedBlock","src":"1853:751:25","statements":[{"assignments":[7721],"declarations":[{"constant":false,"id":7721,"mutability":"mutable","name":"mask","nameLocation":"2424:4:25","nodeType":"VariableDeclaration","scope":7736,"src":"2417:11:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7720,"name":"int256","nodeType":"ElementaryTypeName","src":"2417:6:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":7725,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7722,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7715,"src":"2431:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323535","id":7723,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2436:3:25","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"2431:8:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"2417:22:25"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":7730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7728,"name":"n","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7715,"src":"2576:1:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":7729,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7721,"src":"2580:4:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2576:8:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":7731,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2575:10:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":7732,"name":"mask","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7721,"src":"2588:4:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"2575:17:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":7727,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2567:7:25","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7726,"name":"uint256","nodeType":"ElementaryTypeName","src":"2567:7:25","typeDescriptions":{}}},"id":7734,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2567:26:25","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7719,"id":7735,"nodeType":"Return","src":"2560:33:25"}]}]},"documentation":{"id":7713,"nodeType":"StructuredDocumentation","src":"1705:78:25","text":" @dev Returns the absolute unsigned value of a signed value."},"id":7738,"implemented":true,"kind":"function","modifiers":[],"name":"abs","nameLocation":"1797:3:25","nodeType":"FunctionDefinition","parameters":{"id":7716,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7715,"mutability":"mutable","name":"n","nameLocation":"1808:1:25","nodeType":"VariableDeclaration","scope":7738,"src":"1801:8:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":7714,"name":"int256","nodeType":"ElementaryTypeName","src":"1801:6:25","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"1800:10:25"},"returnParameters":{"id":7719,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7718,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7738,"src":"1834:7:25","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7717,"name":"uint256","nodeType":"ElementaryTypeName","src":"1834:7:25","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1833:9:25"},"scope":7739,"src":"1788:822:25","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":7740,"src":"258:2354:25","usedErrors":[],"usedEvents":[]}],"src":"109:2504:25"},"id":25},"contracts/Create3.sol":{"ast":{"absolutePath":"contracts/Create3.sol","exportedSymbols":{"Create3":[7886]},"id":7887,"license":"AGPL-3.0-only","nodeType":"SourceUnit","nodes":[{"id":7741,"literals":["solidity",">=","0.8",".20","<","0.9",".0"],"nodeType":"PragmaDirective","src":"45:32:26"},{"abstract":false,"baseContracts":[],"canonicalName":"Create3","contractDependencies":[],"contractKind":"library","documentation":{"id":7742,"nodeType":"StructuredDocumentation","src":"81:271:26","text":"@notice Deploy to deterministic addresses without an initcode factor.\n @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/CREATE3.sol)\n @author 0xSequence (https://github.com/0xSequence/create3/blob/master/contracts/Create3.sol)"},"fullyImplemented":true,"id":7886,"linearizedBaseContracts":[7886],"name":"Create3","nameLocation":"362:7:26","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":7745,"mutability":"constant","name":"CREATE3_FACTORY_BYTECODE","nameLocation":"2300:24:26","nodeType":"VariableDeclaration","scope":7886,"src":"2276:103:26","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7743,"name":"bytes","nodeType":"ElementaryTypeName","src":"2276:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"value":{"hexValue":"67363d3d37363d34f03d5260086018f3","id":7744,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"2327:52:26","typeDescriptions":{"typeIdentifier":"t_stringliteral_21c35dbe1b344a2488cf3321d6ce542f8e9f305544ff09e4993a62319a497c1f","typeString":"literal_string hex\"67363d3d37363d34f03d5260086018f3\""}},"visibility":"internal"},{"constant":true,"id":7750,"mutability":"constant","name":"CREATE3_FACTORY_CODEHASH","nameLocation":"2412:24:26","nodeType":"VariableDeclaration","scope":7886,"src":"2386:88:26","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7746,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2386:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"id":7748,"name":"CREATE3_FACTORY_BYTECODE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7745,"src":"2449:24:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7747,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2439:9:26","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":7749,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2439:35:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"body":{"id":7766,"nodeType":"Block","src":"2985:57:26","statements":[{"expression":{"arguments":[{"id":7761,"name":"_salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7753,"src":"3010:5:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":7762,"name":"_creationCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7755,"src":"3017:13:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":7763,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3032:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":7760,"name":"deploy","nodeType":"Identifier","overloadedDeclarations":[7767,7834],"referencedDeclaration":7834,"src":"3003:6:26","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_address_$","typeString":"function (bytes32,bytes memory,uint256) returns (address)"}},"id":7764,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3003:31:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":7759,"id":7765,"nodeType":"Return","src":"2996:38:26"}]},"documentation":{"id":7751,"nodeType":"StructuredDocumentation","src":"2483:386:26","text":"@notice Creates a new contract with given `_creationCode` and `_salt`\n @param _salt Salt of the contract creation, resulting address will be derivated from this value only\n @param _creationCode Creation code (constructor) of the contract to be deployed, this value doesn't affect the resulting address\n @return addr of the deployed contract, reverts on error"},"id":7767,"implemented":true,"kind":"function","modifiers":[],"name":"deploy","nameLocation":"2884:6:26","nodeType":"FunctionDefinition","parameters":{"id":7756,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7753,"mutability":"mutable","name":"_salt","nameLocation":"2899:5:26","nodeType":"VariableDeclaration","scope":7767,"src":"2891:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7752,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2891:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":7755,"mutability":"mutable","name":"_creationCode","nameLocation":"2919:13:26","nodeType":"VariableDeclaration","scope":7767,"src":"2906:26:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7754,"name":"bytes","nodeType":"ElementaryTypeName","src":"2906:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2890:43:26"},"returnParameters":{"id":7759,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7758,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7767,"src":"2971:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7757,"name":"address","nodeType":"ElementaryTypeName","src":"2971:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2970:9:26"},"scope":7886,"src":"2875:167:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":7833,"nodeType":"Block","src":"3660:921:26","statements":[{"expression":{"id":7783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7779,"name":"_deployed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7777,"src":"3708:9:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7781,"name":"_salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7770,"src":"3734:5:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":7780,"name":"determineAddr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7885,"src":"3720:13:26","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_address_$","typeString":"function (bytes32) view returns (address)"}},"id":7782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3720:20:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3708:32:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":7784,"nodeType":"ExpressionStatement","src":"3708:32:26"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":7785,"name":"_deployed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7777,"src":"3755:9:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":7786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3765:4:26","memberName":"code","nodeType":"MemberAccess","src":"3755:14:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3770:6:26","memberName":"length","nodeType":"MemberAccess","src":"3755:21:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":7788,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3780:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3755:26:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7794,"nodeType":"IfStatement","src":"3751:72:26","trueBody":{"expression":{"arguments":[{"hexValue":"437265617465333a2074617267657420616c726561647920657869737473","id":7791,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3790:32:26","typeDescriptions":{"typeIdentifier":"t_stringliteral_eff5890756d2c5621f001169bb16c941329db031eba2edbb4865370c160b3eae","typeString":"literal_string \"Create3: target already exists\""},"value":"Create3: target already exists"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_eff5890756d2c5621f001169bb16c941329db031eba2edbb4865370c160b3eae","typeString":"literal_string \"Create3: target already exists\""}],"id":7790,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"3783:6:26","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":7792,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3783:40:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7793,"nodeType":"ExpressionStatement","src":"3783:40:26"}},{"assignments":[7796],"declarations":[{"constant":false,"id":7796,"mutability":"mutable","name":"_factory","nameLocation":"3871:8:26","nodeType":"VariableDeclaration","scope":7833,"src":"3863:16:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7795,"name":"address","nodeType":"ElementaryTypeName","src":"3863:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":7797,"nodeType":"VariableDeclarationStatement","src":"3863:16:26"},{"assignments":[7799],"declarations":[{"constant":false,"id":7799,"mutability":"mutable","name":"_factoryBytecode","nameLocation":"3903:16:26","nodeType":"VariableDeclaration","scope":7833,"src":"3890:29:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7798,"name":"bytes","nodeType":"ElementaryTypeName","src":"3890:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":7801,"initialValue":{"id":7800,"name":"CREATE3_FACTORY_BYTECODE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7745,"src":"3922:24:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3890:56:26"},{"AST":{"nativeSrc":"4010:271:26","nodeType":"YulBlock","src":"4010:271:26","statements":[{"nativeSrc":"4189:81:26","nodeType":"YulAssignment","src":"4189:81:26","value":{"arguments":[{"kind":"number","nativeSrc":"4209:1:26","nodeType":"YulLiteral","src":"4209:1:26","type":"","value":"0"},{"arguments":[{"name":"_factoryBytecode","nativeSrc":"4216:16:26","nodeType":"YulIdentifier","src":"4216:16:26"},{"kind":"number","nativeSrc":"4234:2:26","nodeType":"YulLiteral","src":"4234:2:26","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4212:3:26","nodeType":"YulIdentifier","src":"4212:3:26"},"nativeSrc":"4212:25:26","nodeType":"YulFunctionCall","src":"4212:25:26"},{"arguments":[{"name":"_factoryBytecode","nativeSrc":"4245:16:26","nodeType":"YulIdentifier","src":"4245:16:26"}],"functionName":{"name":"mload","nativeSrc":"4239:5:26","nodeType":"YulIdentifier","src":"4239:5:26"},"nativeSrc":"4239:23:26","nodeType":"YulFunctionCall","src":"4239:23:26"},{"name":"_salt","nativeSrc":"4264:5:26","nodeType":"YulIdentifier","src":"4264:5:26"}],"functionName":{"name":"create2","nativeSrc":"4201:7:26","nodeType":"YulIdentifier","src":"4201:7:26"},"nativeSrc":"4201:69:26","nodeType":"YulFunctionCall","src":"4201:69:26"},"variableNames":[{"name":"_factory","nativeSrc":"4189:8:26","nodeType":"YulIdentifier","src":"4189:8:26"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"paris","externalReferences":[{"declaration":7796,"isOffset":false,"isSlot":false,"src":"4189:8:26","valueSize":1},{"declaration":7799,"isOffset":false,"isSlot":false,"src":"4216:16:26","valueSize":1},{"declaration":7799,"isOffset":false,"isSlot":false,"src":"4245:16:26","valueSize":1},{"declaration":7770,"isOffset":false,"isSlot":false,"src":"4264:5:26","valueSize":1}],"id":7802,"nodeType":"InlineAssembly","src":"4001:280:26"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7804,"name":"_factory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7796,"src":"4299:8:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":7807,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4319:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":7806,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4311:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7805,"name":"address","nodeType":"ElementaryTypeName","src":"4311:7:26","typeDescriptions":{}}},"id":7808,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4311:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4299:22:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"437265617465333a206572726f72206372656174696e6720666163746f7279","id":7810,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4323:33:26","typeDescriptions":{"typeIdentifier":"t_stringliteral_9c800ce8d486c3397a1a9cc324cfcd264ced53e7b922ccf3390ef85c645102b0","typeString":"literal_string \"Create3: error creating factory\""},"value":"Create3: error creating factory"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9c800ce8d486c3397a1a9cc324cfcd264ced53e7b922ccf3390ef85c645102b0","typeString":"literal_string \"Create3: error creating factory\""}],"id":7803,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4291:7:26","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":7811,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4291:66:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7812,"nodeType":"ExpressionStatement","src":"4291:66:26"},{"assignments":[7814,null],"declarations":[{"constant":false,"id":7814,"mutability":"mutable","name":"_success","nameLocation":"4424:8:26","nodeType":"VariableDeclaration","scope":7833,"src":"4419:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7813,"name":"bool","nodeType":"ElementaryTypeName","src":"4419:4:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":7821,"initialValue":{"arguments":[{"id":7819,"name":"_creationCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7772,"src":"4467:13:26","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":7815,"name":"_factory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7796,"src":"4438:8:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":7816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4447:4:26","memberName":"call","nodeType":"MemberAccess","src":"4438:13:26","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":7818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":7817,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7774,"src":"4459:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"4438:28:26","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":7820,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4438:43:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"4418:63:26"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":7829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7823,"name":"_success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7814,"src":"4500:8:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":7824,"name":"_deployed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7777,"src":"4512:9:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":7825,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4522:4:26","memberName":"code","nodeType":"MemberAccess","src":"4512:14:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4527:6:26","memberName":"length","nodeType":"MemberAccess","src":"4512:21:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":7827,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4537:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4512:26:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4500:38:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"437265617465333a206572726f72206372656174696e6720746172676574","id":7830,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4540:32:26","typeDescriptions":{"typeIdentifier":"t_stringliteral_1398d0fda5c4dd82767513d52fb4e190bf03bb7a57b33af8f2bf0a3f254cffa0","typeString":"literal_string \"Create3: error creating target\""},"value":"Create3: error creating target"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_1398d0fda5c4dd82767513d52fb4e190bf03bb7a57b33af8f2bf0a3f254cffa0","typeString":"literal_string \"Create3: error creating target\""}],"id":7822,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4492:7:26","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":7831,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4492:81:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7832,"nodeType":"ExpressionStatement","src":"4492:81:26"}]},"documentation":{"id":7768,"nodeType":"StructuredDocumentation","src":"3050:469:26","text":"@notice Creates a new contract with given `_creationCode`, `_salt` and `_value`. \n @param _salt Salt of the contract creation, resulting address will be derivated from this value only\n @param _creationCode Creation code (constructor) of the contract to be deployed, this value doesn't affect the resulting address\n @param _value In WEI of ETH to be forwarded to child contract\n @return _deployed The address of the deployed contract."},"id":7834,"implemented":true,"kind":"function","modifiers":[],"name":"deploy","nameLocation":"3534:6:26","nodeType":"FunctionDefinition","parameters":{"id":7775,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7770,"mutability":"mutable","name":"_salt","nameLocation":"3549:5:26","nodeType":"VariableDeclaration","scope":7834,"src":"3541:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7769,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3541:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":7772,"mutability":"mutable","name":"_creationCode","nameLocation":"3569:13:26","nodeType":"VariableDeclaration","scope":7834,"src":"3556:26:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7771,"name":"bytes","nodeType":"ElementaryTypeName","src":"3556:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":7774,"mutability":"mutable","name":"_value","nameLocation":"3592:6:26","nodeType":"VariableDeclaration","scope":7834,"src":"3584:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7773,"name":"uint256","nodeType":"ElementaryTypeName","src":"3584:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3540:59:26"},"returnParameters":{"id":7778,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7777,"mutability":"mutable","name":"_deployed","nameLocation":"3644:9:26","nodeType":"VariableDeclaration","scope":7834,"src":"3636:17:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7776,"name":"address","nodeType":"ElementaryTypeName","src":"3636:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3635:19:26"},"scope":7886,"src":"3525:1056:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":7884,"nodeType":"Block","src":"5093:1093:26","statements":[{"assignments":[7843],"declarations":[{"constant":false,"id":7843,"mutability":"mutable","name":"_factory","nameLocation":"5112:8:26","nodeType":"VariableDeclaration","scope":7884,"src":"5104:16:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7842,"name":"address","nodeType":"ElementaryTypeName","src":"5104:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":7865,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"hexValue":"ff","id":7853,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"5284:7:26","typeDescriptions":{"typeIdentifier":"t_stringliteral_8b1a944cf13a9a1c08facb2c9e98623ef3254d2ddb48113885c3e8e97fec8db9","typeString":"literal_string hex\"ff\""}},{"arguments":[{"id":7856,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5330:4:26","typeDescriptions":{"typeIdentifier":"t_contract$_Create3_$7886","typeString":"library Create3"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Create3_$7886","typeString":"library Create3"}],"id":7855,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5322:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7854,"name":"address","nodeType":"ElementaryTypeName","src":"5322:7:26","typeDescriptions":{}}},"id":7857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5322:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7858,"name":"_salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7837,"src":"5366:5:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":7859,"name":"CREATE3_FACTORY_CODEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7750,"src":"5402:24:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_8b1a944cf13a9a1c08facb2c9e98623ef3254d2ddb48113885c3e8e97fec8db9","typeString":"literal_string hex\"ff\""},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":7851,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5237:3:26","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":7852,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5241:12:26","memberName":"encodePacked","nodeType":"MemberAccess","src":"5237:16:26","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":7860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5237:216:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7850,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"5201:9:26","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":7861,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5201:275:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":7849,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5171:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7848,"name":"uint256","nodeType":"ElementaryTypeName","src":"5171:7:26","typeDescriptions":{}}},"id":7862,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5171:324:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7847,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5145:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":7846,"name":"uint160","nodeType":"ElementaryTypeName","src":"5145:7:26","typeDescriptions":{}}},"id":7863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5145:365:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":7845,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5123:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7844,"name":"address","nodeType":"ElementaryTypeName","src":"5123:7:26","typeDescriptions":{}}},"id":7864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5123:398:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5104:417:26"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"hexValue":"d694","id":7875,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"5911:10:26","typeDescriptions":{"typeIdentifier":"t_stringliteral_4fdc04d28c8d22070e5fd0f23f00bae0b21cc4e5091b5fd7a9cad9babd3668cf","typeString":"literal_string hex\"d694\""},"value":"֔"},{"id":7876,"name":"_factory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7843,"src":"5952:8:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"hexValue":"01","id":7877,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"6076:7:26","typeDescriptions":{"typeIdentifier":"t_stringliteral_5fe7f977e71dba2ea1a68e21057beebb9be2ac30c6410aa38d4f3fbe41dcffd2","typeString":"literal_string hex\"01\""},"value":"\u0001"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_4fdc04d28c8d22070e5fd0f23f00bae0b21cc4e5091b5fd7a9cad9babd3668cf","typeString":"literal_string hex\"d694\""},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_stringliteral_5fe7f977e71dba2ea1a68e21057beebb9be2ac30c6410aa38d4f3fbe41dcffd2","typeString":"literal_string hex\"01\""}],"expression":{"id":7873,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"5653:3:26","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":7874,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5657:12:26","memberName":"encodePacked","nodeType":"MemberAccess","src":"5653:16:26","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":7878,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5653:457:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":7872,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"5617:9:26","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":7879,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5617:516:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":7871,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5587:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7870,"name":"uint256","nodeType":"ElementaryTypeName","src":"5587:7:26","typeDescriptions":{}}},"id":7880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5587:565:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7869,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5561:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":7868,"name":"uint160","nodeType":"ElementaryTypeName","src":"5561:7:26","typeDescriptions":{}}},"id":7881,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5561:606:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint160","typeString":"uint160"}],"id":7867,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5539:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7866,"name":"address","nodeType":"ElementaryTypeName","src":"5539:7:26","typeDescriptions":{}}},"id":7882,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5539:639:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":7841,"id":7883,"nodeType":"Return","src":"5532:646:26"}]},"documentation":{"id":7835,"nodeType":"StructuredDocumentation","src":"4589:428:26","text":"@notice Computes the resulting address of a contract deployed using address(this) and the given `_salt`\n @param _salt Salt of the contract creation, resulting address will be derivated from this value only\n @return addr of the deployed contract, reverts on error\n @dev The address creation formula is: keccak256(rlp([keccak256(0xff ++ address(this) ++ _salt ++ keccak256(childBytecode))[12:], 0x01]))"},"id":7885,"implemented":true,"kind":"function","modifiers":[],"name":"determineAddr","nameLocation":"5032:13:26","nodeType":"FunctionDefinition","parameters":{"id":7838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7837,"mutability":"mutable","name":"_salt","nameLocation":"5054:5:26","nodeType":"VariableDeclaration","scope":7885,"src":"5046:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7836,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5046:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5045:15:26"},"returnParameters":{"id":7841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7840,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7885,"src":"5084:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7839,"name":"address","nodeType":"ElementaryTypeName","src":"5084:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5083:9:26"},"scope":7886,"src":"5023:1163:26","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":7887,"src":"354:5837:26","usedErrors":[],"usedEvents":[]}],"src":"45:6146:26"},"id":26},"contracts/IWrappedWIT.sol":{"ast":{"absolutePath":"contracts/IWrappedWIT.sol","exportedSymbols":{"Bech32":[12200],"IWitAppliance":[9990],"IWitOracle":[10055],"IWitOracleAppliance":[10067],"IWitOracleQueriable":[10250],"IWitOracleQueriableEvents":[10347],"IWitOracleRadonRegistry":[10616],"IWrappedWIT":[8082],"Secp256k1":[13216],"WitOracle":[9915],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200]},"id":8083,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7888,"literals":["solidity",">=","0.8",".20","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:32:27"},{"absolutePath":"witnet-solidity-bridge/contracts/WitOracle.sol","file":"witnet-solidity-bridge/contracts/WitOracle.sol","id":7889,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8083,"sourceUnit":9916,"src":"71:56:27","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWrappedWIT","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":8082,"linearizedBaseContracts":[8082],"name":"IWrappedWIT","nameLocation":"141:11:27","nodeType":"ContractDefinition","nodes":[{"errorSelector":"82b42900","id":7891,"name":"Unauthorized","nameLocation":"168:12:27","nodeType":"ErrorDefinition","parameters":{"id":7890,"nodeType":"ParameterList","parameters":[],"src":"180:2:27"},"src":"162:21:27"},{"anonymous":false,"eventSelector":"c63757acc12b39558fe5b88c5393e4b0353ffddaae3a2d07e121a8fc62d39c37","id":7897,"name":"CuratorshipTransferred","nameLocation":"197:22:27","nodeType":"EventDefinition","parameters":{"id":7896,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7893,"indexed":true,"mutability":"mutable","name":"evmPrevCurator","nameLocation":"236:14:27","nodeType":"VariableDeclaration","scope":7897,"src":"220:30:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7892,"name":"address","nodeType":"ElementaryTypeName","src":"220:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7895,"indexed":true,"mutability":"mutable","name":"evmNewCurator","nameLocation":"268:13:27","nodeType":"VariableDeclaration","scope":7897,"src":"252:29:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7894,"name":"address","nodeType":"ElementaryTypeName","src":"252:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"219:63:27"},"src":"191:92:27"},{"anonymous":false,"eventSelector":"af2313438cf7747b4740d0822c1e7683638361ace0daa8f1c4d5a15d57f4ef04","id":7901,"name":"NewCustodianUnwrapper","nameLocation":"295:21:27","nodeType":"EventDefinition","parameters":{"id":7900,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7899,"indexed":false,"mutability":"mutable","name":"witCustodianUnwrapper","nameLocation":"324:21:27","nodeType":"VariableDeclaration","scope":7901,"src":"317:28:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7898,"name":"string","nodeType":"ElementaryTypeName","src":"317:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"316:30:27"},"src":"289:58:27"},{"anonymous":false,"eventSelector":"8a01b18bdca3d556adc5e6a85f562b83d2c1933f166e93421ff507cfccb09a07","id":7911,"name":"ReserveUpdate","nameLocation":"359:13:27","nodeType":"EventDefinition","parameters":{"id":7910,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7903,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"381:5:27","nodeType":"VariableDeclaration","scope":7911,"src":"373:13:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7902,"name":"uint256","nodeType":"ElementaryTypeName","src":"373:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7906,"indexed":false,"mutability":"mutable","name":"timestamp","nameLocation":"405:9:27","nodeType":"VariableDeclaration","scope":7911,"src":"388:26:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":7905,"nodeType":"UserDefinedTypeName","pathNode":{"id":7904,"name":"Witnet.Timestamp","nameLocations":["388:6:27","395:9:27"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"388:16:27"},"referencedDeclaration":13254,"src":"388:16:27","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":7909,"indexed":false,"mutability":"mutable","name":"witDrtHash","nameLocation":"439:10:27","nodeType":"VariableDeclaration","scope":7911,"src":"416:33:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":7908,"nodeType":"UserDefinedTypeName","pathNode":{"id":7907,"name":"Witnet.TransactionHash","nameLocations":["416:6:27","423:15:27"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"416:22:27"},"referencedDeclaration":13256,"src":"416:22:27","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"372:78:27"},"src":"353:98:27"},{"anonymous":false,"eventSelector":"bae099c209765c02c309f0fac06aec3ac516a3cc60d09f1a3da4b52d673d28a3","id":7922,"name":"Wrapped","nameLocation":"463:7:27","nodeType":"EventDefinition","parameters":{"id":7921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7913,"indexed":false,"mutability":"mutable","name":"witSender","nameLocation":"478:9:27","nodeType":"VariableDeclaration","scope":7922,"src":"471:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7912,"name":"string","nodeType":"ElementaryTypeName","src":"471:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7915,"indexed":false,"mutability":"mutable","name":"evmRecipient","nameLocation":"497:12:27","nodeType":"VariableDeclaration","scope":7922,"src":"489:20:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7914,"name":"address","nodeType":"ElementaryTypeName","src":"489:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7917,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"519:5:27","nodeType":"VariableDeclaration","scope":7922,"src":"511:13:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7916,"name":"uint256","nodeType":"ElementaryTypeName","src":"511:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7920,"indexed":false,"mutability":"mutable","name":"witVttHash","nameLocation":"549:10:27","nodeType":"VariableDeclaration","scope":7922,"src":"526:33:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":7919,"nodeType":"UserDefinedTypeName","pathNode":{"id":7918,"name":"Witnet.TransactionHash","nameLocations":["526:6:27","533:15:27"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"526:22:27"},"referencedDeclaration":13256,"src":"526:22:27","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"470:90:27"},"src":"457:104:27"},{"anonymous":false,"eventSelector":"0ac1547df8510f30b54430e0e4e1e93ce326490aec9cebf0f78b8faa55dc1ded","id":7932,"name":"Unwrapped","nameLocation":"573:9:27","nodeType":"EventDefinition","parameters":{"id":7931,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7924,"indexed":false,"mutability":"mutable","name":"evmSender","nameLocation":"591:9:27","nodeType":"VariableDeclaration","scope":7932,"src":"583:17:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7923,"name":"address","nodeType":"ElementaryTypeName","src":"583:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7926,"indexed":false,"mutability":"mutable","name":"witRecipient","nameLocation":"609:12:27","nodeType":"VariableDeclaration","scope":7932,"src":"602:19:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7925,"name":"string","nodeType":"ElementaryTypeName","src":"602:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7928,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"631:5:27","nodeType":"VariableDeclaration","scope":7932,"src":"623:13:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7927,"name":"uint256","nodeType":"ElementaryTypeName","src":"623:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7930,"indexed":false,"mutability":"mutable","name":"nonce","nameLocation":"646:5:27","nodeType":"VariableDeclaration","scope":7932,"src":"638:13:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7929,"name":"uint256","nodeType":"ElementaryTypeName","src":"638:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"582:70:27"},"src":"567:86:27"},{"canonicalName":"IWrappedWIT.WitOracleSettings","id":7941,"members":[{"constant":false,"id":7934,"mutability":"mutable","name":"minWitnesses","nameLocation":"704:12:27","nodeType":"VariableDeclaration","scope":7941,"src":"697:19:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":7933,"name":"uint16","nodeType":"ElementaryTypeName","src":"697:6:27","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":7936,"mutability":"mutable","name":"baseFeeOverhead100","nameLocation":"734:18:27","nodeType":"VariableDeclaration","scope":7941,"src":"727:25:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":7935,"name":"uint16","nodeType":"ElementaryTypeName","src":"727:6:27","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":7938,"mutability":"mutable","name":"unitaryRewardNanowits","nameLocation":"770:21:27","nodeType":"VariableDeclaration","scope":7941,"src":"763:28:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7937,"name":"uint64","nodeType":"ElementaryTypeName","src":"763:6:27","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":7940,"mutability":"mutable","name":"responseCallbackGasLimit","nameLocation":"809:24:27","nodeType":"VariableDeclaration","scope":7941,"src":"802:31:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":7939,"name":"uint24","nodeType":"ElementaryTypeName","src":"802:6:27","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"name":"WitOracleSettings","nameLocation":"668:17:27","nodeType":"StructDefinition","scope":8082,"src":"661:180:27","visibility":"public"},{"canonicalName":"IWrappedWIT.WrappingStatus","id":7946,"members":[{"id":7942,"name":"Unknown","nameLocation":"880:7:27","nodeType":"EnumValue","src":"880:7:27"},{"id":7943,"name":"Awaiting","nameLocation":"898:8:27","nodeType":"EnumValue","src":"898:8:27"},{"id":7944,"name":"Retry","nameLocation":"917:5:27","nodeType":"EnumValue","src":"917:5:27"},{"id":7945,"name":"Done","nameLocation":"933:4:27","nodeType":"EnumValue","src":"933:4:27"}],"name":"WrappingStatus","nameLocation":"854:14:27","nodeType":"EnumDefinition","src":"849:95:27"},{"documentation":{"id":7947,"nodeType":"StructuredDocumentation","src":"952:115:27","text":"--- Read-only methods -----------------------------------------------------------------------------------------"},"functionSelector":"01367f73","id":7952,"implemented":false,"kind":"function","modifiers":[],"name":"evmCurator","nameLocation":"1082:10:27","nodeType":"FunctionDefinition","parameters":{"id":7948,"nodeType":"ParameterList","parameters":[],"src":"1092:2:27"},"returnParameters":{"id":7951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7950,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7952,"src":"1118:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7949,"name":"address","nodeType":"ElementaryTypeName","src":"1118:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1117:9:27"},"scope":8082,"src":"1073:54:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"77cc7a3a","id":7960,"implemented":false,"kind":"function","modifiers":[],"name":"getWrapTransactionLastQueryId","nameLocation":"1142:29:27","nodeType":"FunctionDefinition","parameters":{"id":7956,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7955,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7960,"src":"1172:22:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":7954,"nodeType":"UserDefinedTypeName","pathNode":{"id":7953,"name":"Witnet.TransactionHash","nameLocations":["1172:6:27","1179:15:27"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"1172:22:27"},"referencedDeclaration":13256,"src":"1172:22:27","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"1171:24:27"},"returnParameters":{"id":7959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7958,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7960,"src":"1219:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7957,"name":"uint256","nodeType":"ElementaryTypeName","src":"1219:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1218:9:27"},"scope":8082,"src":"1133:95:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"a53cb851","id":7969,"implemented":false,"kind":"function","modifiers":[],"name":"getWrapTransactionStatus","nameLocation":"1243:24:27","nodeType":"FunctionDefinition","parameters":{"id":7964,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7963,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7969,"src":"1268:22:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":7962,"nodeType":"UserDefinedTypeName","pathNode":{"id":7961,"name":"Witnet.TransactionHash","nameLocations":["1268:6:27","1275:15:27"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"1268:22:27"},"referencedDeclaration":13256,"src":"1268:22:27","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"1267:24:27"},"returnParameters":{"id":7968,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7967,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7969,"src":"1315:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"},"typeName":{"id":7966,"nodeType":"UserDefinedTypeName","pathNode":{"id":7965,"name":"WrappingStatus","nameLocations":["1315:14:27"],"nodeType":"IdentifierPath","referencedDeclaration":7946,"src":"1315:14:27"},"referencedDeclaration":7946,"src":"1315:14:27","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"}},"visibility":"internal"}],"src":"1314:16:27"},"scope":8082,"src":"1234:97:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"aa22dc33","id":7980,"implemented":false,"kind":"function","modifiers":[],"name":"getWrapTransactionStatuses","nameLocation":"1346:26:27","nodeType":"FunctionDefinition","parameters":{"id":7974,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7973,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7980,"src":"1373:33:27","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_userDefinedValueType$_TransactionHash_$13256_$dyn_calldata_ptr","typeString":"Witnet.TransactionHash[]"},"typeName":{"baseType":{"id":7971,"nodeType":"UserDefinedTypeName","pathNode":{"id":7970,"name":"Witnet.TransactionHash","nameLocations":["1373:6:27","1380:15:27"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"1373:22:27"},"referencedDeclaration":13256,"src":"1373:22:27","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"id":7972,"nodeType":"ArrayTypeName","src":"1373:24:27","typeDescriptions":{"typeIdentifier":"t_array$_t_userDefinedValueType$_TransactionHash_$13256_$dyn_storage_ptr","typeString":"Witnet.TransactionHash[]"}},"visibility":"internal"}],"src":"1372:35:27"},"returnParameters":{"id":7979,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7978,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7980,"src":"1431:23:27","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_enum$_WrappingStatus_$7946_$dyn_memory_ptr","typeString":"enum IWrappedWIT.WrappingStatus[]"},"typeName":{"baseType":{"id":7976,"nodeType":"UserDefinedTypeName","pathNode":{"id":7975,"name":"WrappingStatus","nameLocations":["1431:14:27"],"nodeType":"IdentifierPath","referencedDeclaration":7946,"src":"1431:14:27"},"referencedDeclaration":7946,"src":"1431:14:27","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"}},"id":7977,"nodeType":"ArrayTypeName","src":"1431:16:27","typeDescriptions":{"typeIdentifier":"t_array$_t_enum$_WrappingStatus_$7946_$dyn_storage_ptr","typeString":"enum IWrappedWIT.WrappingStatus[]"}},"visibility":"internal"}],"src":"1430:25:27"},"scope":8082,"src":"1337:119:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"91f4f96c","id":7985,"implemented":false,"kind":"function","modifiers":[],"name":"totalReserveSupply","nameLocation":"1471:18:27","nodeType":"FunctionDefinition","parameters":{"id":7981,"nodeType":"ParameterList","parameters":[],"src":"1489:2:27"},"returnParameters":{"id":7984,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7983,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7985,"src":"1515:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7982,"name":"uint256","nodeType":"ElementaryTypeName","src":"1515:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1514:9:27"},"scope":8082,"src":"1462:62:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"520a5495","id":7990,"implemented":false,"kind":"function","modifiers":[],"name":"totalUnwraps","nameLocation":"1539:12:27","nodeType":"FunctionDefinition","parameters":{"id":7986,"nodeType":"ParameterList","parameters":[],"src":"1551:2:27"},"returnParameters":{"id":7989,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7988,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7990,"src":"1577:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7987,"name":"uint256","nodeType":"ElementaryTypeName","src":"1577:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1576:9:27"},"scope":8082,"src":"1530:56:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"6aaa54cf","id":7995,"implemented":false,"kind":"function","modifiers":[],"name":"totalWraps","nameLocation":"1601:10:27","nodeType":"FunctionDefinition","parameters":{"id":7991,"nodeType":"ParameterList","parameters":[],"src":"1611:2:27"},"returnParameters":{"id":7994,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7993,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7995,"src":"1639:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7992,"name":"uint256","nodeType":"ElementaryTypeName","src":"1639:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1638:9:27"},"scope":8082,"src":"1592:56:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"b3f120a1","id":8000,"implemented":false,"kind":"function","modifiers":[],"name":"witCustodianWrapper","nameLocation":"1669:19:27","nodeType":"FunctionDefinition","parameters":{"id":7996,"nodeType":"ParameterList","parameters":[],"src":"1688:2:27"},"returnParameters":{"id":7999,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7998,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8000,"src":"1714:13:27","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7997,"name":"string","nodeType":"ElementaryTypeName","src":"1714:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1713:15:27"},"scope":8082,"src":"1660:69:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"147040de","id":8005,"implemented":false,"kind":"function","modifiers":[],"name":"witCustodianUnwrapper","nameLocation":"1744:21:27","nodeType":"FunctionDefinition","parameters":{"id":8001,"nodeType":"ParameterList","parameters":[],"src":"1765:2:27"},"returnParameters":{"id":8004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8003,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8005,"src":"1791:13:27","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8002,"name":"string","nodeType":"ElementaryTypeName","src":"1791:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1790:15:27"},"scope":8082,"src":"1735:71:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"71d41eb3","id":8011,"implemented":false,"kind":"function","modifiers":[],"name":"witOracleCrossChainRpcProviders","nameLocation":"1823:31:27","nodeType":"FunctionDefinition","parameters":{"id":8006,"nodeType":"ParameterList","parameters":[],"src":"1854:2:27"},"returnParameters":{"id":8010,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8009,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8011,"src":"1880:15:27","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":8007,"name":"string","nodeType":"ElementaryTypeName","src":"1880:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8008,"nodeType":"ArrayTypeName","src":"1880:8:27","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"src":"1879:17:27"},"scope":8082,"src":"1814:83:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"ddb2bf5c","id":8018,"implemented":false,"kind":"function","modifiers":[],"name":"witOracleEstimateWrappingFee","nameLocation":"1912:28:27","nodeType":"FunctionDefinition","parameters":{"id":8014,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8013,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8018,"src":"1941:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8012,"name":"uint256","nodeType":"ElementaryTypeName","src":"1941:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1940:9:27"},"returnParameters":{"id":8017,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8016,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8018,"src":"1973:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8015,"name":"uint256","nodeType":"ElementaryTypeName","src":"1973:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1972:9:27"},"scope":8082,"src":"1903:79:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"30315dc4","id":8024,"implemented":false,"kind":"function","modifiers":[],"name":"witOracleProofOfReserveLastUpdate","nameLocation":"1997:33:27","nodeType":"FunctionDefinition","parameters":{"id":8019,"nodeType":"ParameterList","parameters":[],"src":"2030:2:27"},"returnParameters":{"id":8023,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8022,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8024,"src":"2056:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":8021,"nodeType":"UserDefinedTypeName","pathNode":{"id":8020,"name":"Witnet.Timestamp","nameLocations":["2056:6:27","2063:9:27"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"2056:16:27"},"referencedDeclaration":13254,"src":"2056:16:27","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"2055:18:27"},"scope":8082,"src":"1988:86:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"acb734bb","id":8029,"implemented":false,"kind":"function","modifiers":[],"name":"witOracleProofOfReserveRadonBytecode","nameLocation":"2089:36:27","nodeType":"FunctionDefinition","parameters":{"id":8025,"nodeType":"ParameterList","parameters":[],"src":"2125:2:27"},"returnParameters":{"id":8028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8027,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8029,"src":"2151:12:27","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8026,"name":"bytes","nodeType":"ElementaryTypeName","src":"2151:5:27","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2150:14:27"},"scope":8082,"src":"2080:85:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"fec53a14","id":8035,"implemented":false,"kind":"function","modifiers":[],"name":"witOracleProofOfReserveRadonHash","nameLocation":"2180:32:27","nodeType":"FunctionDefinition","parameters":{"id":8030,"nodeType":"ParameterList","parameters":[],"src":"2212:2:27"},"returnParameters":{"id":8034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8033,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8035,"src":"2238:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":8032,"nodeType":"UserDefinedTypeName","pathNode":{"id":8031,"name":"Witnet.RadonHash","nameLocations":["2238:6:27","2245:9:27"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"2238:16:27"},"referencedDeclaration":13250,"src":"2238:16:27","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"2237:18:27"},"scope":8082,"src":"2171:85:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"873234cf","id":8041,"implemented":false,"kind":"function","modifiers":[],"name":"witOracleQuerySettings","nameLocation":"2271:22:27","nodeType":"FunctionDefinition","parameters":{"id":8036,"nodeType":"ParameterList","parameters":[],"src":"2293:2:27"},"returnParameters":{"id":8040,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8039,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8041,"src":"2319:24:27","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_memory_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"},"typeName":{"id":8038,"nodeType":"UserDefinedTypeName","pathNode":{"id":8037,"name":"WitOracleSettings","nameLocations":["2319:17:27"],"nodeType":"IdentifierPath","referencedDeclaration":7941,"src":"2319:17:27"},"referencedDeclaration":7941,"src":"2319:17:27","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"}},"visibility":"internal"}],"src":"2318:26:27"},"scope":8082,"src":"2262:83:27","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":8042,"nodeType":"StructuredDocumentation","src":"2357:115:27","text":"--- Authoritative methods -------------------------------------------------------------------------------------"},"functionSelector":"ea9e96a6","id":8048,"implemented":false,"kind":"function","modifiers":[],"name":"settleWitOracleCrossChainRpcProviders","nameLocation":"2487:37:27","nodeType":"FunctionDefinition","parameters":{"id":8046,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8045,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8048,"src":"2525:17:27","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_string_calldata_ptr_$dyn_calldata_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":8043,"name":"string","nodeType":"ElementaryTypeName","src":"2525:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8044,"nodeType":"ArrayTypeName","src":"2525:8:27","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"src":"2524:19:27"},"returnParameters":{"id":8047,"nodeType":"ParameterList","parameters":[],"src":"2552:0:27"},"scope":8082,"src":"2478:75:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"6df0627e","id":8054,"implemented":false,"kind":"function","modifiers":[],"name":"settleWitOracleSettings","nameLocation":"2568:23:27","nodeType":"FunctionDefinition","parameters":{"id":8052,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8051,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8054,"src":"2592:26:27","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_calldata_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"},"typeName":{"id":8050,"nodeType":"UserDefinedTypeName","pathNode":{"id":8049,"name":"WitOracleSettings","nameLocations":["2592:17:27"],"nodeType":"IdentifierPath","referencedDeclaration":7941,"src":"2592:17:27"},"referencedDeclaration":7941,"src":"2592:17:27","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"}},"visibility":"internal"}],"src":"2591:28:27"},"returnParameters":{"id":8053,"nodeType":"ParameterList","parameters":[],"src":"2628:0:27"},"scope":8082,"src":"2559:70:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"c65a20f0","id":8059,"implemented":false,"kind":"function","modifiers":[],"name":"settleWitCustodianUnwrapper","nameLocation":"2644:27:27","nodeType":"FunctionDefinition","parameters":{"id":8057,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8056,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8059,"src":"2672:15:27","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":8055,"name":"string","nodeType":"ElementaryTypeName","src":"2672:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2671:17:27"},"returnParameters":{"id":8058,"nodeType":"ParameterList","parameters":[],"src":"2697:0:27"},"scope":8082,"src":"2635:63:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"a41942a4","id":8064,"implemented":false,"kind":"function","modifiers":[],"name":"transferCuratorship","nameLocation":"2713:19:27","nodeType":"FunctionDefinition","parameters":{"id":8062,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8061,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8064,"src":"2733:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8060,"name":"address","nodeType":"ElementaryTypeName","src":"2733:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2732:9:27"},"returnParameters":{"id":8063,"nodeType":"ParameterList","parameters":[],"src":"2750:0:27"},"scope":8082,"src":"2704:47:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"5f029ebe","id":8072,"implemented":false,"kind":"function","modifiers":[],"name":"wrap","nameLocation":"2889:4:27","nodeType":"FunctionDefinition","parameters":{"id":8068,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8067,"mutability":"mutable","name":"witTxHash","nameLocation":"2917:9:27","nodeType":"VariableDeclaration","scope":8072,"src":"2894:32:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":8066,"nodeType":"UserDefinedTypeName","pathNode":{"id":8065,"name":"Witnet.TransactionHash","nameLocations":["2894:6:27","2901:15:27"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"2894:22:27"},"referencedDeclaration":13256,"src":"2894:22:27","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"2893:34:27"},"returnParameters":{"id":8071,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8070,"mutability":"mutable","name":"witOracleQueryId","nameLocation":"2962:16:27","nodeType":"VariableDeclaration","scope":8072,"src":"2954:24:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8069,"name":"uint256","nodeType":"ElementaryTypeName","src":"2954:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2953:26:27"},"scope":8082,"src":"2880:100:27","stateMutability":"payable","virtual":false,"visibility":"external"},{"functionSelector":"8a510f27","id":8081,"implemented":false,"kind":"function","modifiers":[],"name":"unwrap","nameLocation":"2995:6:27","nodeType":"FunctionDefinition","parameters":{"id":8077,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8074,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8081,"src":"3002:6:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":8073,"name":"uint64","nodeType":"ElementaryTypeName","src":"3002:6:27","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":8076,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8081,"src":"3010:15:27","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":8075,"name":"string","nodeType":"ElementaryTypeName","src":"3010:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3001:25:27"},"returnParameters":{"id":8080,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8079,"mutability":"mutable","name":"evmUnwrapId","nameLocation":"3053:11:27","nodeType":"VariableDeclaration","scope":8081,"src":"3045:19:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8078,"name":"uint256","nodeType":"ElementaryTypeName","src":"3045:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3044:21:27"},"scope":8082,"src":"2986:80:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":8083,"src":"131:2938:27","usedErrors":[7891],"usedEvents":[7897,7901,7911,7922,7932]}],"src":"35:3036:27"},"id":27},"contracts/WrappedWIT.sol":{"ast":{"absolutePath":"contracts/WrappedWIT.sol","exportedSymbols":{"Bech32":[12200],"ERC20":[1325],"ERC20Bridgeable":[146],"ERC20Permit":[1557],"IWitAppliance":[9990],"IWitOracle":[10055],"IWitOracleAppliance":[10067],"IWitOracleConsumer":[10080],"IWitOracleQueriable":[10250],"IWitOracleQueriableConsumer":[10270],"IWitOracleQueriableEvents":[10347],"IWitOracleRadonRegistry":[10616],"IWitOracleRadonRequestFactory":[10711],"IWitOracleRadonRequestModal":[10761],"IWitOracleRadonRequestTemplate":[10812],"IWrappedWIT":[8082],"Initializable":[414],"Secp256k1":[13216],"WitOracle":[9915],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200],"WrappedWIT":[9235],"WrappedWITLib":[9825]},"id":9236,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":8084,"literals":["solidity",">=","0.8",".20","<","0.9",".0"],"nodeType":"PragmaDirective","src":"83:32:28"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":8086,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9236,"sourceUnit":1326,"src":"119:68:28","symbolAliases":[{"foreign":{"id":8085,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1325,"src":"127:5:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/community-contracts/contracts/token/ERC20/extensions/ERC20Bridgeable.sol","file":"@openzeppelin/community-contracts/contracts/token/ERC20/extensions/ERC20Bridgeable.sol","id":8088,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9236,"sourceUnit":147,"src":"189:119:28","symbolAliases":[{"foreign":{"id":8087,"name":"ERC20Bridgeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":146,"src":"197:15:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol","id":8090,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9236,"sourceUnit":1558,"src":"310:91:28","symbolAliases":[{"foreign":{"id":8089,"name":"ERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1557,"src":"318:11:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","file":"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol","id":8092,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9236,"sourceUnit":415,"src":"403:96:28","symbolAliases":[{"foreign":{"id":8091,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":414,"src":"411:13:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/WitOracle.sol","file":"witnet-solidity-bridge/contracts/WitOracle.sol","id":8093,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9236,"sourceUnit":9916,"src":"503:56:28","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol","file":"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol","id":8097,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9236,"sourceUnit":9941,"src":"563:191:28","symbolAliases":[{"foreign":{"id":8094,"name":"IWitOracleRadonRequestModal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10761,"src":"577:27:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":8095,"name":"IWitOracleRadonRequestTemplate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10812,"src":"611:30:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":8096,"name":"IWitOracleRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10711,"src":"648:29:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleConsumer.sol","file":"witnet-solidity-bridge/contracts/interfaces/IWitOracleConsumer.sol","id":8099,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9236,"sourceUnit":10081,"src":"758:102:28","symbolAliases":[{"foreign":{"id":8098,"name":"IWitOracleConsumer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10080,"src":"766:18:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableConsumer.sol","file":"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableConsumer.sol","id":8101,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9236,"sourceUnit":10271,"src":"862:120:28","symbolAliases":[{"foreign":{"id":8100,"name":"IWitOracleQueriableConsumer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10270,"src":"870:27:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/WrappedWITLib.sol","file":"./WrappedWITLib.sol","id":8104,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9236,"sourceUnit":9826,"src":"986:63:28","symbolAliases":[{"foreign":{"id":8102,"name":"IWrappedWIT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8082,"src":"994:11:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":8103,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9825,"src":"1007:13:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":8106,"name":"ERC20","nameLocations":["1144:5:28"],"nodeType":"IdentifierPath","referencedDeclaration":1325,"src":"1144:5:28"},"id":8107,"nodeType":"InheritanceSpecifier","src":"1144:5:28"},{"baseName":{"id":8108,"name":"ERC20Bridgeable","nameLocations":["1160:15:28"],"nodeType":"IdentifierPath","referencedDeclaration":146,"src":"1160:15:28"},"id":8109,"nodeType":"InheritanceSpecifier","src":"1160:15:28"},{"baseName":{"id":8110,"name":"ERC20Permit","nameLocations":["1186:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":1557,"src":"1186:11:28"},"id":8111,"nodeType":"InheritanceSpecifier","src":"1186:11:28"},{"baseName":{"id":8112,"name":"Initializable","nameLocations":["1208:13:28"],"nodeType":"IdentifierPath","referencedDeclaration":414,"src":"1208:13:28"},"id":8113,"nodeType":"InheritanceSpecifier","src":"1208:13:28"},{"baseName":{"id":8114,"name":"IWitOracleConsumer","nameLocations":["1232:18:28"],"nodeType":"IdentifierPath","referencedDeclaration":10080,"src":"1232:18:28"},"id":8115,"nodeType":"InheritanceSpecifier","src":"1232:18:28"},{"baseName":{"id":8116,"name":"IWitOracleQueriableConsumer","nameLocations":["1261:27:28"],"nodeType":"IdentifierPath","referencedDeclaration":10270,"src":"1261:27:28"},"id":8117,"nodeType":"InheritanceSpecifier","src":"1261:27:28"},{"baseName":{"id":8118,"name":"IWrappedWIT","nameLocations":["1299:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":8082,"src":"1299:11:28"},"id":8119,"nodeType":"InheritanceSpecifier","src":"1299:11:28"}],"canonicalName":"WrappedWIT","contractDependencies":[],"contractKind":"contract","documentation":{"id":8105,"nodeType":"StructuredDocumentation","src":"1053:53:28","text":"@custom:security-contact info@witnet.foundation"},"fullyImplemented":true,"id":9235,"linearizedBaseContracts":[9235,8082,10270,10080,414,1557,1717,4087,673,1619,146,41,4197,4209,1325,715,1583,1403,1649],"name":"WrappedWIT","nameLocation":"1115:10:28","nodeType":"ContractDefinition","nodes":[{"global":false,"id":8123,"libraryName":{"id":8120,"name":"Witnet","nameLocations":["1325:6:28"],"nodeType":"IdentifierPath","referencedDeclaration":16767,"src":"1325:6:28"},"nodeType":"UsingForDirective","src":"1319:32:28","typeName":{"id":8122,"nodeType":"UserDefinedTypeName","pathNode":{"id":8121,"name":"Witnet.Address","nameLocations":["1336:6:28","1343:7:28"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"1336:14:28"},"referencedDeclaration":13240,"src":"1336:14:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}}},{"global":false,"id":8127,"libraryName":{"id":8124,"name":"Witnet","nameLocations":["1363:6:28"],"nodeType":"IdentifierPath","referencedDeclaration":16767,"src":"1363:6:28"},"nodeType":"UsingForDirective","src":"1357:34:28","typeName":{"id":8126,"nodeType":"UserDefinedTypeName","pathNode":{"id":8125,"name":"Witnet.RadonHash","nameLocations":["1374:6:28","1381:9:28"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"1374:16:28"},"referencedDeclaration":13250,"src":"1374:16:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}}},{"constant":true,"id":8130,"mutability":"constant","name":"_CANONICAL_CHAIN_ID","nameLocation":"1425:19:28","nodeType":"VariableDeclaration","scope":9235,"src":"1399:49:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8128,"name":"uint256","nodeType":"ElementaryTypeName","src":"1399:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31","id":8129,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1447:1:28","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"internal"},{"constant":true,"id":8133,"mutability":"constant","name":"_DECIMALS","nameLocation":"1501:9:28","nodeType":"VariableDeclaration","scope":9235,"src":"1475:39:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8131,"name":"uint8","nodeType":"ElementaryTypeName","src":"1475:5:28","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"39","id":8132,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1513:1:28","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"visibility":"internal"},{"constant":true,"id":8136,"mutability":"constant","name":"_SUPERCHAIN_TOKEN_BRIDGE","nameLocation":"1547:24:28","nodeType":"VariableDeclaration","scope":9235,"src":"1521:95:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8134,"name":"address","nodeType":"ElementaryTypeName","src":"1521:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"value":{"hexValue":"307834323030303030303030303030303030303030303030303030303030303030303030303030303238","id":8135,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1574:42:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"value":"0x4200000000000000000000000000000000000028"},"visibility":"internal"},{"constant":true,"id":8139,"mutability":"constant","name":"_WIT_ORACLE_REPORTS_MIN_MIN_WITNESSES","nameLocation":"1675:37:28","nodeType":"VariableDeclaration","scope":9235,"src":"1650:66:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":8137,"name":"uint16","nodeType":"ElementaryTypeName","src":"1650:6:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"value":{"hexValue":"33","id":8138,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1715:1:28","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"visibility":"internal"},{"constant":true,"id":8142,"mutability":"constant","name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MAX_BASE_FEE_OVERHEAD","nameLocation":"1748:52:28","nodeType":"VariableDeclaration","scope":9235,"src":"1723:82:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":8140,"name":"uint16","nodeType":"ElementaryTypeName","src":"1723:6:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"value":{"hexValue":"3530","id":8141,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1803:2:28","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"visibility":"internal"},{"constant":true,"id":8145,"mutability":"constant","name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MIN_UNITARY_REWARD","nameLocation":"1837:49:28","nodeType":"VariableDeclaration","scope":9235,"src":"1812:88:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":8143,"name":"uint64","nodeType":"ElementaryTypeName","src":"1812:6:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"value":{"hexValue":"3230305f3030305f303030","id":8144,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1889:11:28","typeDescriptions":{"typeIdentifier":"t_rational_200000000_by_1","typeString":"int_const 200000000"},"value":"200_000_000"},"visibility":"internal"},{"constant":true,"id":8148,"mutability":"constant","name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MIN_RESPONSE_CALLBACK_GAS","nameLocation":"1944:56:28","nodeType":"VariableDeclaration","scope":9235,"src":"1919:91:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":8146,"name":"uint24","nodeType":"ElementaryTypeName","src":"1919:6:28","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"value":{"hexValue":"3231305f303030","id":8147,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2003:7:28","typeDescriptions":{"typeIdentifier":"t_rational_210000_by_1","typeString":"int_const 210000"},"value":"210_000"},"visibility":"internal"},{"constant":false,"functionSelector":"1014d375","id":8151,"mutability":"immutable","name":"witOracle","nameLocation":"2050:9:28","nodeType":"VariableDeclaration","scope":9235,"src":"2023:36:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"},"typeName":{"id":8150,"nodeType":"UserDefinedTypeName","pathNode":{"id":8149,"name":"WitOracle","nameLocations":["2023:9:28"],"nodeType":"IdentifierPath","referencedDeclaration":9915,"src":"2023:9:28"},"referencedDeclaration":9915,"src":"2023:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}},"visibility":"public"},{"constant":false,"functionSelector":"27ae6883","id":8154,"mutability":"immutable","name":"witOracleCrossChainProofOfReserveTemplate","nameLocation":"2111:41:28","nodeType":"VariableDeclaration","scope":9235,"src":"2066:86:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"},"typeName":{"id":8153,"nodeType":"UserDefinedTypeName","pathNode":{"id":8152,"name":"IWitOracleRadonRequestModal","nameLocations":["2066:27:28"],"nodeType":"IdentifierPath","referencedDeclaration":10761,"src":"2066:27:28"},"referencedDeclaration":10761,"src":"2066:27:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"}},"visibility":"public"},{"constant":false,"functionSelector":"f69a00b6","id":8157,"mutability":"immutable","name":"witOracleCrossChainProofOfInclusionTemplate","nameLocation":"2204:43:28","nodeType":"VariableDeclaration","scope":9235,"src":"2159:88:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"},"typeName":{"id":8156,"nodeType":"UserDefinedTypeName","pathNode":{"id":8155,"name":"IWitOracleRadonRequestModal","nameLocations":["2159:27:28"],"nodeType":"IdentifierPath","referencedDeclaration":10761,"src":"2159:27:28"},"referencedDeclaration":10761,"src":"2159:27:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"}},"visibility":"public"},{"constant":false,"id":8160,"mutability":"immutable","name":"__witCustodianWrapper","nameLocation":"2294:21:28","nodeType":"VariableDeclaration","scope":9235,"src":"2260:55:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"},"typeName":{"id":8159,"nodeType":"UserDefinedTypeName","pathNode":{"id":8158,"name":"Witnet.Address","nameLocations":["2260:6:28","2267:7:28"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"2260:14:28"},"referencedDeclaration":13240,"src":"2260:14:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"visibility":"internal"},{"constant":false,"id":8162,"mutability":"immutable","name":"__witCustodianWrapperBech32Hash","nameLocation":"2349:31:28","nodeType":"VariableDeclaration","scope":9235,"src":"2322:58:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8161,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2322:7:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"body":{"id":8176,"nodeType":"Block","src":"2410:123:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8170,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":8165,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"2443:10:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2443:12:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8167,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"2459:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2459:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8169,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2471:10:28","memberName":"evmCurator","nodeType":"MemberAccess","referencedDeclaration":9387,"src":"2459:22:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2443:38:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":8171,"name":"Unauthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7891,"src":"2497:12:28","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":8172,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2497:14:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":8164,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2421:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":8173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2421:101:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8174,"nodeType":"ExpressionStatement","src":"2421:101:28"},{"id":8175,"nodeType":"PlaceholderStatement","src":"2524:1:28"}]},"id":8177,"name":"onlyCurator","nameLocation":"2398:11:28","nodeType":"ModifierDefinition","parameters":{"id":8163,"nodeType":"ParameterList","parameters":[],"src":"2410:0:28"},"src":"2389:144:28","virtual":false,"visibility":"internal"},{"body":{"id":8302,"nodeType":"Block","src":"2764:2242:28","statements":[{"expression":{"id":8201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8192,"name":"__witCustodianWrapper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8160,"src":"2896:21:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8195,"name":"_witCustodianBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8182,"src":"2938:19:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8196,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"2959:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2965:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"2959:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8198,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8130,"src":"2976:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2959:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":8193,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"2920:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":8194,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2927:10:28","memberName":"fromBech32","nodeType":"MemberAccess","referencedDeclaration":13909,"src":"2920:17:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_bool_$returns$_t_userDefinedValueType$_Address_$13240_$","typeString":"function (string memory,bool) pure returns (Witnet.Address)"}},"id":8200,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2920:76:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"src":"2896:100:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"id":8202,"nodeType":"ExpressionStatement","src":"2896:100:28"},{"expression":{"id":8210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8203,"name":"__witCustodianWrapperBech32Hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8162,"src":"3007:31:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":8207,"name":"_witCustodianBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8182,"src":"3057:19:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8206,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3051:5:28","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8205,"name":"bytes","nodeType":"ElementaryTypeName","src":"3051:5:28","typeDescriptions":{}}},"id":8208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3051:26:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8204,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"3041:9:28","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8209,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3041:37:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3007:71:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":8211,"nodeType":"ExpressionStatement","src":"3007:71:28"},{"assignments":[8218],"declarations":[{"constant":false,"id":8218,"mutability":"mutable","name":"_httpRequestHeaders","nameLocation":"3110:19:28","nodeType":"VariableDeclaration","scope":8302,"src":"3091:38:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_memory_ptr_$2_memory_ptr_$dyn_memory_ptr","typeString":"string[2][]"},"typeName":{"baseType":{"baseType":{"id":8215,"name":"string","nodeType":"ElementaryTypeName","src":"3091:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8216,"length":{"hexValue":"32","id":8214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3098:1:28","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"ArrayTypeName","src":"3091:9:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$2_storage_ptr","typeString":"string[2]"}},"id":8217,"nodeType":"ArrayTypeName","src":"3091:11:28","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_storage_$2_storage_$dyn_storage_ptr","typeString":"string[2][]"}},"visibility":"internal"}],"id":8226,"initialValue":{"arguments":[{"hexValue":"31","id":8224,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3148:1:28","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":8223,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"3132:15:28","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_array$_t_string_memory_ptr_$2_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (string memory[2] memory[] memory)"},"typeName":{"baseType":{"baseType":{"id":8219,"name":"string","nodeType":"ElementaryTypeName","src":"3136:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8221,"length":{"hexValue":"32","id":8220,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3143:1:28","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"ArrayTypeName","src":"3136:9:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$2_storage_ptr","typeString":"string[2]"}},"id":8222,"nodeType":"ArrayTypeName","src":"3136:11:28","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_storage_$2_storage_$dyn_storage_ptr","typeString":"string[2][]"}}},"id":8225,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3132:18:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_memory_ptr_$2_memory_ptr_$dyn_memory_ptr","typeString":"string memory[2] memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"3091:59:28"},{"expression":{"id":8233,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8227,"name":"_httpRequestHeaders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8218,"src":"3161:19:28","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_memory_ptr_$2_memory_ptr_$dyn_memory_ptr","typeString":"string memory[2] memory[] memory"}},"id":8229,"indexExpression":{"hexValue":"30","id":8228,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3181:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3161:22:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$2_memory_ptr","typeString":"string memory[2] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"hexValue":"436f6e74656e742d54797065","id":8230,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3188:14:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_b431c786f1941b6f5ba364ef0a2adc84fa99fd99eba90363ee3faba31cbcd6b3","typeString":"literal_string \"Content-Type\""},"value":"Content-Type"},{"hexValue":"6170706c69636174696f6e2f6a736f6e3b636861727365743d5554462d38","id":8231,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3204:32:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_57a0bd54351ae082c2ff8b8a37021e4ac998ce5b8cab0d1c3bd2fbdd92fe8921","typeString":"literal_string \"application/json;charset=UTF-8\""},"value":"application/json;charset=UTF-8"}],"id":8232,"isConstant":false,"isInlineArray":true,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"3186:52:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$2_memory_ptr","typeString":"string memory[2] memory"}},"src":"3161:77:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$2_memory_ptr","typeString":"string memory[2] memory"}},"id":8234,"nodeType":"ExpressionStatement","src":"3161:77:28"},{"expression":{"id":8260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8235,"name":"witOracleCrossChainProofOfReserveTemplate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8154,"src":"3249:41:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"expression":{"expression":{"id":8240,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"3435:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":8241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3442:21:28","memberName":"RadonRetrievalMethods","nodeType":"MemberAccess","referencedDeclaration":13833,"src":"3435:28:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonRetrievalMethods_$13833_$","typeString":"type(enum Witnet.RadonRetrievalMethods)"}},"id":8242,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3464:8:28","memberName":"HttpPost","nodeType":"MemberAccess","referencedDeclaration":13831,"src":"3435:37:28","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13833","typeString":"enum Witnet.RadonRetrievalMethods"}},{"hexValue":"7b226a736f6e727063223a22322e30222c226d6574686f64223a2267657442616c616e636532222c22706172616d73223a7b22706b68223a225c315c3b5c325c227d2c226964223a317d","id":8243,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3497:80:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_e91498e368b5a1302bf2a79659cf67dc50e8a3e7a713370fc4880dd37d7132f3","typeString":"literal_string \"{\"jsonrpc\":\"2.0\",\"method\":\"getBalance2\",\"params\":{\"pkh\":\"\\1\\;\\2\\\"},\"id\":1}\""},"value":"{\"jsonrpc\":\"2.0\",\"method\":\"getBalance2\",\"params\":{\"pkh\":\"\\1\\;\\2\\\"},\"id\":1}"},{"id":8244,"name":"_httpRequestHeaders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8218,"src":"3605:19:28","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_memory_ptr_$2_memory_ptr_$dyn_memory_ptr","typeString":"string memory[2] memory[] memory"}},{"hexValue":"83187782186666726573756c741869","id":8245,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"3818:35:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_5cec49a16113dc4beefa5c78f402aad7a3febb57b3f96b02974f1b89842ef5a9","typeString":"literal_string hex\"83187782186666726573756c741869\""}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13833","typeString":"enum Witnet.RadonRetrievalMethods"},{"typeIdentifier":"t_stringliteral_e91498e368b5a1302bf2a79659cf67dc50e8a3e7a713370fc4880dd37d7132f3","typeString":"literal_string \"{\"jsonrpc\":\"2.0\",\"method\":\"getBalance2\",\"params\":{\"pkh\":\"\\1\\;\\2\\\"},\"id\":1}\""},{"typeIdentifier":"t_array$_t_array$_t_string_memory_ptr_$2_memory_ptr_$dyn_memory_ptr","typeString":"string memory[2] memory[] memory"},{"typeIdentifier":"t_stringliteral_5cec49a16113dc4beefa5c78f402aad7a3febb57b3f96b02974f1b89842ef5a9","typeString":"literal_string hex\"83187782186666726573756c741869\""}],"expression":{"id":8238,"name":"IWitOracleRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10711,"src":"3360:29:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IWitOracleRadonRequestFactory_$10711_$","typeString":"type(contract IWitOracleRadonRequestFactory)"}},"id":8239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3390:17:28","memberName":"DataSourceRequest","nodeType":"MemberAccess","referencedDeclaration":10667,"src":"3360:47:28","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_DataSourceRequest_$10667_storage_ptr_$","typeString":"type(struct IWitOracleRadonRequestFactory.DataSourceRequest storage pointer)"}},"id":8246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["3427:6:28","3491:4:28","3596:7:28","3643:6:28"],"names":["method","body","headers","script"],"nodeType":"FunctionCall","src":"3360:510:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_DataSourceRequest_$10667_memory_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest memory"}},{"arguments":[{"expression":{"expression":{"id":8249,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"3932:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":8250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3939:18:28","memberName":"RadonReduceOpcodes","nodeType":"MemberAccess","referencedDeclaration":13793,"src":"3932:25:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonReduceOpcodes_$13793_$","typeString":"type(enum Witnet.RadonReduceOpcodes)"}},"id":8251,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3958:4:28","memberName":"Mode","nodeType":"MemberAccess","referencedDeclaration":13783,"src":"3932:30:28","typeDescriptions":{"typeIdentifier":"t_enum$_RadonReduceOpcodes_$13793","typeString":"enum Witnet.RadonReduceOpcodes"}},{"arguments":[{"hexValue":"30","id":8256,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4015:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8255,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"3990:24:28","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_RadonFilter_$13758_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct Witnet.RadonFilter memory[] memory)"},"typeName":{"baseType":{"id":8253,"nodeType":"UserDefinedTypeName","pathNode":{"id":8252,"name":"Witnet.RadonFilter","nameLocations":["3994:6:28","4001:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":13758,"src":"3994:18:28"},"referencedDeclaration":13758,"src":"3994:18:28","typeDescriptions":{"typeIdentifier":"t_struct$_RadonFilter_$13758_storage_ptr","typeString":"struct Witnet.RadonFilter"}},"id":8254,"nodeType":"ArrayTypeName","src":"3994:20:28","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13758_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonFilter[]"}}},"id":8257,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3990:27:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13758_memory_ptr_$dyn_memory_ptr","typeString":"struct Witnet.RadonFilter memory[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RadonReduceOpcodes_$13793","typeString":"enum Witnet.RadonReduceOpcodes"},{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13758_memory_ptr_$dyn_memory_ptr","typeString":"struct Witnet.RadonFilter memory[] memory"}],"expression":{"id":8247,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"3885:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":8248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3892:12:28","memberName":"RadonReducer","nodeType":"MemberAccess","referencedDeclaration":13779,"src":"3885:19:28","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_RadonReducer_$13779_storage_ptr_$","typeString":"type(struct Witnet.RadonReducer storage pointer)"}},"id":8258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["3924:6:28","3981:7:28"],"names":["opcode","filters"],"nodeType":"FunctionCall","src":"3885:148:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_memory_ptr","typeString":"struct Witnet.RadonReducer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_DataSourceRequest_$10667_memory_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest memory"},{"typeIdentifier":"t_struct$_RadonReducer_$13779_memory_ptr","typeString":"struct Witnet.RadonReducer memory"}],"expression":{"id":8236,"name":"_witOracleRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8180,"src":"3293:29:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestFactory_$10711","typeString":"contract IWitOracleRadonRequestFactory"}},"id":8237,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3323:22:28","memberName":"buildRadonRequestModal","nodeType":"MemberAccess","referencedDeclaration":10679,"src":"3293:52:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_DataSourceRequest_$10667_memory_ptr_$_t_struct$_RadonReducer_$13779_memory_ptr_$returns$_t_contract$_IWitOracleRadonRequestModal_$10761_$","typeString":"function (struct IWitOracleRadonRequestFactory.DataSourceRequest memory,struct Witnet.RadonReducer memory) external returns (contract IWitOracleRadonRequestModal)"}},"id":8259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3293:751:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"}},"src":"3249:795:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"}},"id":8261,"nodeType":"ExpressionStatement","src":"3249:795:28"},{"expression":{"id":8287,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8262,"name":"witOracleCrossChainProofOfInclusionTemplate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8157,"src":"4055:43:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"expression":{"expression":{"id":8267,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"4243:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":8268,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4250:21:28","memberName":"RadonRetrievalMethods","nodeType":"MemberAccess","referencedDeclaration":13833,"src":"4243:28:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonRetrievalMethods_$13833_$","typeString":"type(enum Witnet.RadonRetrievalMethods)"}},"id":8269,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4272:8:28","memberName":"HttpPost","nodeType":"MemberAccess","referencedDeclaration":13831,"src":"4243:37:28","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13833","typeString":"enum Witnet.RadonRetrievalMethods"}},{"hexValue":"7b226a736f6e727063223a22322e30222c226d6574686f64223a2267657456616c75655472616e73666572222c22706172616d73223a7b2268617368223a225c315c222c226d6f6465223a22657468657265616c222c22666f726365223a747275657d2c226964223a317d","id":8270,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4305:111:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_6ecbe8d412cad2f94a2c032ddd07137cdb5a70752aa273537a1a81dac8e6067b","typeString":"literal_string \"{\"jsonrpc\":\"2.0\",\"method\":\"getValueTransfer\",\"params\":{\"hash\":\"\\1\\\",\"mode\":\"ethereal\",\"force\":true},\"id\":1}\""},"value":"{\"jsonrpc\":\"2.0\",\"method\":\"getValueTransfer\",\"params\":{\"hash\":\"\\1\\\",\"mode\":\"ethereal\",\"force\":true},\"id\":1}"},{"id":8271,"name":"_httpRequestHeaders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8218,"src":"4444:19:28","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_memory_ptr_$2_memory_ptr_$dyn_memory_ptr","typeString":"string memory[2] memory[] memory"}},{"hexValue":"83187782186666726573756c741869","id":8272,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"4666:35:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_5cec49a16113dc4beefa5c78f402aad7a3febb57b3f96b02974f1b89842ef5a9","typeString":"literal_string hex\"83187782186666726573756c741869\""}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13833","typeString":"enum Witnet.RadonRetrievalMethods"},{"typeIdentifier":"t_stringliteral_6ecbe8d412cad2f94a2c032ddd07137cdb5a70752aa273537a1a81dac8e6067b","typeString":"literal_string \"{\"jsonrpc\":\"2.0\",\"method\":\"getValueTransfer\",\"params\":{\"hash\":\"\\1\\\",\"mode\":\"ethereal\",\"force\":true},\"id\":1}\""},{"typeIdentifier":"t_array$_t_array$_t_string_memory_ptr_$2_memory_ptr_$dyn_memory_ptr","typeString":"string memory[2] memory[] memory"},{"typeIdentifier":"t_stringliteral_5cec49a16113dc4beefa5c78f402aad7a3febb57b3f96b02974f1b89842ef5a9","typeString":"literal_string hex\"83187782186666726573756c741869\""}],"expression":{"id":8265,"name":"IWitOracleRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10711,"src":"4168:29:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IWitOracleRadonRequestFactory_$10711_$","typeString":"type(contract IWitOracleRadonRequestFactory)"}},"id":8266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4198:17:28","memberName":"DataSourceRequest","nodeType":"MemberAccess","referencedDeclaration":10667,"src":"4168:47:28","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_DataSourceRequest_$10667_storage_ptr_$","typeString":"type(struct IWitOracleRadonRequestFactory.DataSourceRequest storage pointer)"}},"id":8273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["4235:6:28","4299:4:28","4435:7:28","4491:6:28"],"names":["method","body","headers","script"],"nodeType":"FunctionCall","src":"4168:549:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_DataSourceRequest_$10667_memory_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest memory"}},{"arguments":[{"expression":{"expression":{"id":8276,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"4779:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":8277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4786:18:28","memberName":"RadonReduceOpcodes","nodeType":"MemberAccess","referencedDeclaration":13793,"src":"4779:25:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonReduceOpcodes_$13793_$","typeString":"type(enum Witnet.RadonReduceOpcodes)"}},"id":8278,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4805:4:28","memberName":"Mode","nodeType":"MemberAccess","referencedDeclaration":13783,"src":"4779:30:28","typeDescriptions":{"typeIdentifier":"t_enum$_RadonReduceOpcodes_$13793","typeString":"enum Witnet.RadonReduceOpcodes"}},{"arguments":[{"hexValue":"30","id":8283,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4862:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8282,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"4837:24:28","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_RadonFilter_$13758_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct Witnet.RadonFilter memory[] memory)"},"typeName":{"baseType":{"id":8280,"nodeType":"UserDefinedTypeName","pathNode":{"id":8279,"name":"Witnet.RadonFilter","nameLocations":["4841:6:28","4848:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":13758,"src":"4841:18:28"},"referencedDeclaration":13758,"src":"4841:18:28","typeDescriptions":{"typeIdentifier":"t_struct$_RadonFilter_$13758_storage_ptr","typeString":"struct Witnet.RadonFilter"}},"id":8281,"nodeType":"ArrayTypeName","src":"4841:20:28","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13758_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonFilter[]"}}},"id":8284,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4837:27:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13758_memory_ptr_$dyn_memory_ptr","typeString":"struct Witnet.RadonFilter memory[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RadonReduceOpcodes_$13793","typeString":"enum Witnet.RadonReduceOpcodes"},{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13758_memory_ptr_$dyn_memory_ptr","typeString":"struct Witnet.RadonFilter memory[] memory"}],"expression":{"id":8274,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"4732:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":8275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4739:12:28","memberName":"RadonReducer","nodeType":"MemberAccess","referencedDeclaration":13779,"src":"4732:19:28","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_RadonReducer_$13779_storage_ptr_$","typeString":"type(struct Witnet.RadonReducer storage pointer)"}},"id":8285,"isConstant":false,"isLValue":false,"isPure":true,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["4771:6:28","4828:7:28"],"names":["opcode","filters"],"nodeType":"FunctionCall","src":"4732:148:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_memory_ptr","typeString":"struct Witnet.RadonReducer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_DataSourceRequest_$10667_memory_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest memory"},{"typeIdentifier":"t_struct$_RadonReducer_$13779_memory_ptr","typeString":"struct Witnet.RadonReducer memory"}],"expression":{"id":8263,"name":"_witOracleRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8180,"src":"4101:29:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestFactory_$10711","typeString":"contract IWitOracleRadonRequestFactory"}},"id":8264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4131:22:28","memberName":"buildRadonRequestModal","nodeType":"MemberAccess","referencedDeclaration":10679,"src":"4101:52:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_DataSourceRequest_$10667_memory_ptr_$_t_struct$_RadonReducer_$13779_memory_ptr_$returns$_t_contract$_IWitOracleRadonRequestModal_$10761_$","typeString":"function (struct IWitOracleRadonRequestFactory.DataSourceRequest memory,struct Witnet.RadonReducer memory) external returns (contract IWitOracleRadonRequestModal)"}},"id":8286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4101:790:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"}},"src":"4055:836:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"}},"id":8288,"nodeType":"ExpressionStatement","src":"4055:836:28"},{"expression":{"id":8300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8289,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8151,"src":"4904:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"id":8294,"name":"_witOracleRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8180,"src":"4954:29:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestFactory_$10711","typeString":"contract IWitOracleRadonRequestFactory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IWitOracleRadonRequestFactory_$10711","typeString":"contract IWitOracleRadonRequestFactory"}],"id":8293,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4946:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8292,"name":"address","nodeType":"ElementaryTypeName","src":"4946:7:28","typeDescriptions":{}}},"id":8295,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4946:38:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8291,"name":"IWitOracleAppliance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10067,"src":"4926:19:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IWitOracleAppliance_$10067_$","typeString":"type(contract IWitOracleAppliance)"}},"id":8296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4926:59:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleAppliance_$10067","typeString":"contract IWitOracleAppliance"}},"id":8297,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4986:9:28","memberName":"witOracle","nodeType":"MemberAccess","referencedDeclaration":10066,"src":"4926:69:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":8298,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4926:71:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8290,"name":"WitOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9915,"src":"4916:9:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WitOracle_$9915_$","typeString":"type(contract WitOracle)"}},"id":8299,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4916:82:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}},"src":"4904:94:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}},"id":8301,"nodeType":"ExpressionStatement","src":"4904:94:28"}]},"id":8303,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"hexValue":"5772617070656420574954","id":8185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2701:13:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_ddba658d9abef0b3615c5bde8328f7c593061dba9ad4d400484e4bc2a83fb435","typeString":"literal_string \"Wrapped WIT\""},"value":"Wrapped WIT"},{"hexValue":"574954","id":8186,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2716:5:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_b372e206e3c85161b5e32ecd4de3bf2364f9afd6efd773022e11c36b6710a1f3","typeString":"literal_string \"WIT\""},"value":"WIT"}],"id":8187,"kind":"baseConstructorSpecifier","modifierName":{"id":8184,"name":"ERC20","nameLocations":["2695:5:28"],"nodeType":"IdentifierPath","referencedDeclaration":1325,"src":"2695:5:28"},"nodeType":"ModifierInvocation","src":"2695:27:28"},{"arguments":[{"hexValue":"577261707065642f574954","id":8189,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2744:13:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_93ce1e72a8e55be216fb1da8de58b117bb03feaf9a7e09034e3e83dd710d480f","typeString":"literal_string \"Wrapped/WIT\""},"value":"Wrapped/WIT"}],"id":8190,"kind":"baseConstructorSpecifier","modifierName":{"id":8188,"name":"ERC20Permit","nameLocations":["2732:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":1557,"src":"2732:11:28"},"nodeType":"ModifierInvocation","src":"2732:26:28"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":8183,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8180,"mutability":"mutable","name":"_witOracleRadonRequestFactory","nameLocation":"2597:29:28","nodeType":"VariableDeclaration","scope":8303,"src":"2567:59:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestFactory_$10711","typeString":"contract IWitOracleRadonRequestFactory"},"typeName":{"id":8179,"nodeType":"UserDefinedTypeName","pathNode":{"id":8178,"name":"IWitOracleRadonRequestFactory","nameLocations":["2567:29:28"],"nodeType":"IdentifierPath","referencedDeclaration":10711,"src":"2567:29:28"},"referencedDeclaration":10711,"src":"2567:29:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestFactory_$10711","typeString":"contract IWitOracleRadonRequestFactory"}},"visibility":"internal"},{"constant":false,"id":8182,"mutability":"mutable","name":"_witCustodianBech32","nameLocation":"2655:19:28","nodeType":"VariableDeclaration","scope":8303,"src":"2641:33:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8181,"name":"string","nodeType":"ElementaryTypeName","src":"2641:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2552:133:28"},"returnParameters":{"id":8191,"nodeType":"ParameterList","parameters":[],"src":"2764:0:28"},"scope":9235,"src":"2541:2465:28","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":8379,"nodeType":"Block","src":"5184:1253:28","statements":[{"expression":{"id":8316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8312,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"5237:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8313,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5237:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8314,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5249:10:28","memberName":"evmCurator","nodeType":"MemberAccess","referencedDeclaration":9387,"src":"5237:22:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8315,"name":"_evmCurator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8305,"src":"5262:11:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5237:36:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":8317,"nodeType":"ExpressionStatement","src":"5237:36:28"},{"eventCall":{"arguments":[{"arguments":[{"hexValue":"30","id":8321,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5320:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8320,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5312:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8319,"name":"address","nodeType":"ElementaryTypeName","src":"5312:7:28","typeDescriptions":{}}},"id":8322,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5312:10:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8323,"name":"_evmCurator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8305,"src":"5324:11:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":8318,"name":"CuratorshipTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7897,"src":"5289:22:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":8324,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5289:47:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8325,"nodeType":"EmitStatement","src":"5284:52:28"},{"expression":{"id":8343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8326,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"5467:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5467:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8328,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5479:22:28","memberName":"witOracleQuerySettings","nodeType":"MemberAccess","referencedDeclaration":9404,"src":"5467:34:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8330,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5551:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5557:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"5551:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8332,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8130,"src":"5568:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5551:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":8335,"name":"_WIT_ORACLE_REPORTS_MIN_MIN_WITNESSES","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8139,"src":"5595:37:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"id":8336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"5551:81:28","trueExpression":{"hexValue":"3132","id":8334,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5590:2:28","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":8339,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"id":8337,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MAX_BASE_FEE_OVERHEAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8142,"src":"5667:52:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130","id":8338,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5722:2:28","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"5667:57:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"id":8340,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MIN_UNITARY_REWARD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8145,"src":"5763:49:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":8341,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MIN_RESPONSE_CALLBACK_GAS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8148,"src":"5853:56:28","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"},{"typeIdentifier":"t_uint16","typeString":"uint16"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint24","typeString":"uint24"}],"id":8329,"name":"WitOracleSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7941,"src":"5504:17:28","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_WitOracleSettings_$7941_storage_ptr_$","typeString":"type(struct IWrappedWIT.WitOracleSettings storage pointer)"}},"id":8342,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["5537:12:28","5647:18:28","5740:21:28","5827:24:28"],"names":["minWitnesses","baseFeeOverhead100","unitaryRewardNanowits","responseCallbackGasLimit"],"nodeType":"FunctionCall","src":"5504:417:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_memory_ptr","typeString":"struct IWrappedWIT.WitOracleSettings memory"}},"src":"5467:454:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"id":8344,"nodeType":"ExpressionStatement","src":"5467:454:28"},{"assignments":[8349],"declarations":[{"constant":false,"id":8349,"mutability":"mutable","name":"_witOracleRpcProviders","nameLocation":"5948:22:28","nodeType":"VariableDeclaration","scope":8379,"src":"5932:38:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":8347,"name":"string","nodeType":"ElementaryTypeName","src":"5932:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8348,"nodeType":"ArrayTypeName","src":"5932:8:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"id":8355,"initialValue":{"arguments":[{"hexValue":"31","id":8353,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5986:1:28","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":8352,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"5973:12:28","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (string memory[] memory)"},"typeName":{"baseType":{"id":8350,"name":"string","nodeType":"ElementaryTypeName","src":"5977:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8351,"nodeType":"ArrayTypeName","src":"5977:8:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}}},"id":8354,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5973:15:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"5932:56:28"},{"expression":{"id":8367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8356,"name":"_witOracleRpcProviders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8349,"src":"5999:22:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":8358,"indexExpression":{"hexValue":"30","id":8357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6022:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"5999:25:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8359,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"6042:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6048:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"6042:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8361,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8130,"src":"6059:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6042:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"68747470733a2f2f7270632d746573746e65742e7769746e65742e696f","id":8364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6146:31:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_04084d6435a98e6a16a64a0b22917bcd767a40f0b4574a95a57113e04adedd68","typeString":"literal_string \"https://rpc-testnet.witnet.io\""},"value":"https://rpc-testnet.witnet.io"},"id":8365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"6042:135:28","trueExpression":{"hexValue":"68747470733a2f2f7270632d30312e7769746e65742e696f","id":8363,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6099:26:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_46bcf3cc9f425487ca8bfeb1ce73923f36811961f81162a0e9791ad5e12a4867","typeString":"literal_string \"https://rpc-01.witnet.io\""},"value":"https://rpc-01.witnet.io"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"id":8366,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6027:161:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"5999:189:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":8368,"nodeType":"ExpressionStatement","src":"5999:189:28"},{"expression":{"id":8373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8369,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"6199:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8370,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6199:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8371,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"6211:31:28","memberName":"witOracleCrossChainRpcProviders","nodeType":"MemberAccess","referencedDeclaration":9407,"src":"6199:43:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage","typeString":"string storage ref[] storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8372,"name":"_witOracleRpcProviders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8349,"src":"6245:22:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"src":"6199:68:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage","typeString":"string storage ref[] storage ref"}},"id":8374,"nodeType":"ExpressionStatement","src":"6199:68:28"},{"expression":{"arguments":[{"id":8376,"name":"_witCustodianUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8307,"src":"6400:28:28","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":8375,"name":"__settleWitCustodianUnwrapper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9223,"src":"6370:29:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory)"}},"id":8377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6370:59:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8378,"nodeType":"ExpressionStatement","src":"6370:59:28"}]},"functionSelector":"f399e22e","id":8380,"implemented":true,"kind":"function","modifiers":[{"id":8310,"kind":"modifierInvocation","modifierName":{"id":8309,"name":"initializer","nameLocations":["5167:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":254,"src":"5167:11:28"},"nodeType":"ModifierInvocation","src":"5167:11:28"}],"name":"initialize","nameLocation":"5023:10:28","nodeType":"FunctionDefinition","parameters":{"id":8308,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8305,"mutability":"mutable","name":"_evmCurator","nameLocation":"5056:11:28","nodeType":"VariableDeclaration","scope":8380,"src":"5048:19:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8304,"name":"address","nodeType":"ElementaryTypeName","src":"5048:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8307,"mutability":"mutable","name":"_witCustodianUnwrapperBech32","nameLocation":"5098:28:28","nodeType":"VariableDeclaration","scope":8380,"src":"5082:44:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":8306,"name":"string","nodeType":"ElementaryTypeName","src":"5082:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5033:104:28"},"returnParameters":{"id":8311,"nodeType":"ParameterList","parameters":[],"src":"5184:0:28"},"scope":9235,"src":"5014:1423:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[889],"body":{"id":8389,"nodeType":"Block","src":"6749:35:28","statements":[{"expression":{"id":8387,"name":"_DECIMALS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8133,"src":"6767:9:28","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":8386,"id":8388,"nodeType":"Return","src":"6760:16:28"}]},"documentation":{"id":8381,"nodeType":"StructuredDocumentation","src":"6448:238:28","text":"===============================================================================================================\n --- ERC20 -----------------------------------------------------------------------------------------------------"},"functionSelector":"313ce567","id":8390,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"6701:8:28","nodeType":"FunctionDefinition","overrides":{"id":8383,"nodeType":"OverrideSpecifier","overrides":[],"src":"6712:8:28"},"parameters":{"id":8382,"nodeType":"ParameterList","parameters":[],"src":"6709:2:28"},"returnParameters":{"id":8386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8385,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8390,"src":"6742:5:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8384,"name":"uint8","nodeType":"ElementaryTypeName","src":"6742:5:28","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"6741:7:28"},"scope":9235,"src":"6692:92:28","stateMutability":"pure","virtual":false,"visibility":"public"},{"baseFunctions":[145],"body":{"id":8404,"nodeType":"Block","src":"7104:80:28","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8399,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8397,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8393,"src":"7119:6:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8398,"name":"_SUPERCHAIN_TOKEN_BRIDGE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8136,"src":"7129:24:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7119:34:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8403,"nodeType":"IfStatement","src":"7115:61:28","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8400,"name":"Unauthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7891,"src":"7162:12:28","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":8401,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7162:14:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8402,"nodeType":"RevertStatement","src":"7155:21:28"}}]},"documentation":{"id":8391,"nodeType":"StructuredDocumentation","src":"6794:238:28","text":"===============================================================================================================\n --- ERC20Bridgeable -------------------------------------------------------------------------------------------"},"id":8405,"implemented":true,"kind":"function","modifiers":[],"name":"_checkTokenBridge","nameLocation":"7047:17:28","nodeType":"FunctionDefinition","overrides":{"id":8395,"nodeType":"OverrideSpecifier","overrides":[],"src":"7081:8:28"},"parameters":{"id":8394,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8393,"mutability":"mutable","name":"caller","nameLocation":"7073:6:28","nodeType":"VariableDeclaration","scope":8405,"src":"7065:14:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8392,"name":"address","nodeType":"ElementaryTypeName","src":"7065:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7064:16:28"},"returnParameters":{"id":8396,"nodeType":"ParameterList","parameters":[],"src":"7104:0:28"},"scope":9235,"src":"7038:146:28","stateMutability":"pure","virtual":false,"visibility":"internal"},{"baseFunctions":[7952],"body":{"id":8416,"nodeType":"Block","src":"7505:48:28","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8412,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"7523:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8413,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7523:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8414,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7535:10:28","memberName":"evmCurator","nodeType":"MemberAccess","referencedDeclaration":9387,"src":"7523:22:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8411,"id":8415,"nodeType":"Return","src":"7516:29:28"}]},"documentation":{"id":8406,"nodeType":"StructuredDocumentation","src":"7194:236:28","text":"===============================================================================================================\n --- Wrapped/WIT read-only methods -----------------------------------------------------------------------------"},"functionSelector":"01367f73","id":8417,"implemented":true,"kind":"function","modifiers":[],"name":"evmCurator","nameLocation":"7451:10:28","nodeType":"FunctionDefinition","overrides":{"id":8408,"nodeType":"OverrideSpecifier","overrides":[],"src":"7464:8:28"},"parameters":{"id":8407,"nodeType":"ParameterList","parameters":[],"src":"7461:2:28"},"returnParameters":{"id":8411,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8410,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8417,"src":"7496:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8409,"name":"address","nodeType":"ElementaryTypeName","src":"7496:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7495:9:28"},"scope":9235,"src":"7442:111:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[7960],"body":{"id":8432,"nodeType":"Block","src":"7725:114:28","statements":[{"expression":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8426,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"7743:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8427,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7743:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8428,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7755:39:28","memberName":"witOracleWrappingTransactionLastQueryId","nodeType":"MemberAccess","referencedDeclaration":9415,"src":"7743:51:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13256_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"}},"id":8430,"indexExpression":{"id":8429,"name":"_witnetValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8420,"src":"7795:35:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7743:88:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8425,"id":8431,"nodeType":"Return","src":"7736:95:28"}]},"functionSelector":"77cc7a3a","id":8433,"implemented":true,"kind":"function","modifiers":[],"name":"getWrapTransactionLastQueryId","nameLocation":"7570:29:28","nodeType":"FunctionDefinition","overrides":{"id":8422,"nodeType":"OverrideSpecifier","overrides":[],"src":"7669:8:28"},"parameters":{"id":8421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8420,"mutability":"mutable","name":"_witnetValueTransferTransactionHash","nameLocation":"7623:35:28","nodeType":"VariableDeclaration","scope":8433,"src":"7600:58:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":8419,"nodeType":"UserDefinedTypeName","pathNode":{"id":8418,"name":"Witnet.TransactionHash","nameLocations":["7600:6:28","7607:15:28"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"7600:22:28"},"referencedDeclaration":13256,"src":"7600:22:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"7599:60:28"},"returnParameters":{"id":8425,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8424,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8433,"src":"7711:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8423,"name":"uint256","nodeType":"ElementaryTypeName","src":"7711:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7710:9:28"},"scope":9235,"src":"7561:278:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[7969],"body":{"id":8484,"nodeType":"Block","src":"8012:667:28","statements":[{"assignments":[8444],"declarations":[{"constant":false,"id":8444,"mutability":"mutable","name":"_witOracleLastQueryId","nameLocation":"8031:21:28","nodeType":"VariableDeclaration","scope":8484,"src":"8023:29:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8443,"name":"uint256","nodeType":"ElementaryTypeName","src":"8023:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8450,"initialValue":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8445,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"8055:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8055:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8447,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8067:39:28","memberName":"witOracleWrappingTransactionLastQueryId","nodeType":"MemberAccess","referencedDeclaration":9415,"src":"8055:51:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13256_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"}},"id":8449,"indexExpression":{"id":8448,"name":"_witnetValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8436,"src":"8121:35:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8055:112:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8023:144:28"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8451,"name":"_witOracleLastQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8444,"src":"8182:21:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":8452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8207:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8182:26:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8461,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8458,"name":"_witOracleLastQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8444,"src":"8286:21:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":8459,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9825,"src":"8311:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WrappedWITLib_$9825_$","typeString":"type(library WrappedWITLib)"}},"id":8460,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8325:49:28","memberName":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED","nodeType":"MemberAccess","referencedDeclaration":9382,"src":"8311:63:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8286:88:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":8481,"nodeType":"Block","src":"8445:227:28","statements":[{"expression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_QueryStatus_$13430","typeString":"enum Witnet.QueryStatus"},"id":8473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8468,"name":"_witOracleLastQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8444,"src":"8511:21:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":8466,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8151,"src":"8486:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}},"id":8467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8496:14:28","memberName":"getQueryStatus","nodeType":"MemberAccess","referencedDeclaration":10198,"src":"8486:24:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_enum$_QueryStatus_$13430_$","typeString":"function (uint256) view external returns (enum Witnet.QueryStatus)"}},"id":8469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8486:47:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_QueryStatus_$13430","typeString":"enum Witnet.QueryStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":8470,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"8537:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":8471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8544:11:28","memberName":"QueryStatus","nodeType":"MemberAccess","referencedDeclaration":13430,"src":"8537:18:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_QueryStatus_$13430_$","typeString":"type(enum Witnet.QueryStatus)"}},"id":8472,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8556:6:28","memberName":"Posted","nodeType":"MemberAccess","referencedDeclaration":13424,"src":"8537:25:28","typeDescriptions":{"typeIdentifier":"t_enum$_QueryStatus_$13430","typeString":"enum Witnet.QueryStatus"}},"src":"8486:76:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"id":8476,"name":"WrappingStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7946,"src":"8625:14:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WrappingStatus_$7946_$","typeString":"type(enum IWrappedWIT.WrappingStatus)"}},"id":8477,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8640:5:28","memberName":"Retry","nodeType":"MemberAccess","referencedDeclaration":7944,"src":"8625:20:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"}},"id":8478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"8486:159:28","trueExpression":{"expression":{"id":8474,"name":"WrappingStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7946,"src":"8582:14:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WrappingStatus_$7946_$","typeString":"type(enum IWrappedWIT.WrappingStatus)"}},"id":8475,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8597:8:28","memberName":"Awaiting","nodeType":"MemberAccess","referencedDeclaration":7943,"src":"8582:23:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"}},"typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"}}],"id":8479,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8467:193:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"}},"functionReturnParameters":8442,"id":8480,"nodeType":"Return","src":"8460:200:28"}]},"id":8482,"nodeType":"IfStatement","src":"8282:390:28","trueBody":{"id":8465,"nodeType":"Block","src":"8376:63:28","statements":[{"expression":{"expression":{"id":8462,"name":"WrappingStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7946,"src":"8398:14:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WrappingStatus_$7946_$","typeString":"type(enum IWrappedWIT.WrappingStatus)"}},"id":8463,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8413:4:28","memberName":"Done","nodeType":"MemberAccess","referencedDeclaration":7945,"src":"8398:19:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"}},"functionReturnParameters":8442,"id":8464,"nodeType":"Return","src":"8391:26:28"}]}},"id":8483,"nodeType":"IfStatement","src":"8178:494:28","trueBody":{"id":8457,"nodeType":"Block","src":"8210:66:28","statements":[{"expression":{"expression":{"id":8454,"name":"WrappingStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7946,"src":"8232:14:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WrappingStatus_$7946_$","typeString":"type(enum IWrappedWIT.WrappingStatus)"}},"id":8455,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8247:7:28","memberName":"Unknown","nodeType":"MemberAccess","referencedDeclaration":7942,"src":"8232:22:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"}},"functionReturnParameters":8442,"id":8456,"nodeType":"Return","src":"8225:29:28"}]}}]},"functionSelector":"a53cb851","id":8485,"implemented":true,"kind":"function","modifiers":[],"name":"getWrapTransactionStatus","nameLocation":"7856:24:28","nodeType":"FunctionDefinition","overrides":{"id":8438,"nodeType":"OverrideSpecifier","overrides":[],"src":"7951:8:28"},"parameters":{"id":8437,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8436,"mutability":"mutable","name":"_witnetValueTransferTransactionHash","nameLocation":"7904:35:28","nodeType":"VariableDeclaration","scope":8485,"src":"7881:58:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":8435,"nodeType":"UserDefinedTypeName","pathNode":{"id":8434,"name":"Witnet.TransactionHash","nameLocations":["7881:6:28","7888:15:28"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"7881:22:28"},"referencedDeclaration":13256,"src":"7881:22:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"7880:60:28"},"returnParameters":{"id":8442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8441,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8485,"src":"7991:14:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"},"typeName":{"id":8440,"nodeType":"UserDefinedTypeName","pathNode":{"id":8439,"name":"WrappingStatus","nameLocations":["7991:14:28"],"nodeType":"IdentifierPath","referencedDeclaration":7946,"src":"7991:14:28"},"referencedDeclaration":7946,"src":"7991:14:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"}},"visibility":"internal"}],"src":"7990:16:28"},"scope":9235,"src":"7847:832:28","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[7980],"body":{"id":8530,"nodeType":"Block","src":"8856:208:28","statements":[{"expression":{"id":8505,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8497,"name":"_statuses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8495,"src":"8867:9:28","typeDescriptions":{"typeIdentifier":"t_array$_t_enum$_WrappingStatus_$7946_$dyn_memory_ptr","typeString":"enum IWrappedWIT.WrappingStatus[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":8502,"name":"_hashes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8489,"src":"8900:7:28","typeDescriptions":{"typeIdentifier":"t_array$_t_userDefinedValueType$_TransactionHash_$13256_$dyn_calldata_ptr","typeString":"Witnet.TransactionHash[] calldata"}},"id":8503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8908:6:28","memberName":"length","nodeType":"MemberAccess","src":"8900:14:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8501,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"8879:20:28","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_enum$_WrappingStatus_$7946_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (enum IWrappedWIT.WrappingStatus[] memory)"},"typeName":{"baseType":{"id":8499,"nodeType":"UserDefinedTypeName","pathNode":{"id":8498,"name":"WrappingStatus","nameLocations":["8883:14:28"],"nodeType":"IdentifierPath","referencedDeclaration":7946,"src":"8883:14:28"},"referencedDeclaration":7946,"src":"8883:14:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"}},"id":8500,"nodeType":"ArrayTypeName","src":"8883:16:28","typeDescriptions":{"typeIdentifier":"t_array$_t_enum$_WrappingStatus_$7946_$dyn_storage_ptr","typeString":"enum IWrappedWIT.WrappingStatus[]"}}},"id":8504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8879:36:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_enum$_WrappingStatus_$7946_$dyn_memory_ptr","typeString":"enum IWrappedWIT.WrappingStatus[] memory"}},"src":"8867:48:28","typeDescriptions":{"typeIdentifier":"t_array$_t_enum$_WrappingStatus_$7946_$dyn_memory_ptr","typeString":"enum IWrappedWIT.WrappingStatus[] memory"}},"id":8506,"nodeType":"ExpressionStatement","src":"8867:48:28"},{"body":{"id":8528,"nodeType":"Block","src":"8975:82:28","statements":[{"expression":{"id":8526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8518,"name":"_statuses","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8495,"src":"8990:9:28","typeDescriptions":{"typeIdentifier":"t_array$_t_enum$_WrappingStatus_$7946_$dyn_memory_ptr","typeString":"enum IWrappedWIT.WrappingStatus[] memory"}},"id":8520,"indexExpression":{"id":8519,"name":"_ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8508,"src":"9000:3:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8990:14:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":8522,"name":"_hashes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8489,"src":"9032:7:28","typeDescriptions":{"typeIdentifier":"t_array$_t_userDefinedValueType$_TransactionHash_$13256_$dyn_calldata_ptr","typeString":"Witnet.TransactionHash[] calldata"}},"id":8524,"indexExpression":{"id":8523,"name":"_ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8508,"src":"9040:3:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9032:12:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}],"id":8521,"name":"getWrapTransactionStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8485,"src":"9007:24:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_userDefinedValueType$_TransactionHash_$13256_$returns$_t_enum$_WrappingStatus_$7946_$","typeString":"function (Witnet.TransactionHash) view returns (enum IWrappedWIT.WrappingStatus)"}},"id":8525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9007:38:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"}},"src":"8990:55:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"}},"id":8527,"nodeType":"ExpressionStatement","src":"8990:55:28"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8511,"name":"_ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8508,"src":"8945:3:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":8512,"name":"_hashes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8489,"src":"8951:7:28","typeDescriptions":{"typeIdentifier":"t_array$_t_userDefinedValueType$_TransactionHash_$13256_$dyn_calldata_ptr","typeString":"Witnet.TransactionHash[] calldata"}},"id":8513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8959:6:28","memberName":"length","nodeType":"MemberAccess","src":"8951:14:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8945:20:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8529,"initializationExpression":{"assignments":[8508],"declarations":[{"constant":false,"id":8508,"mutability":"mutable","name":"_ix","nameLocation":"8936:3:28","nodeType":"VariableDeclaration","scope":8529,"src":"8931:8:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8507,"name":"uint","nodeType":"ElementaryTypeName","src":"8931:4:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8510,"initialValue":{"hexValue":"30","id":8509,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8942:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"8931:12:28"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":8516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"8967:6:28","subExpression":{"id":8515,"name":"_ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8508,"src":"8970:3:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8517,"nodeType":"ExpressionStatement","src":"8967:6:28"},"nodeType":"ForStatement","src":"8926:131:28"}]},"functionSelector":"aa22dc33","id":8531,"implemented":true,"kind":"function","modifiers":[],"name":"getWrapTransactionStatuses","nameLocation":"8696:26:28","nodeType":"FunctionDefinition","overrides":{"id":8491,"nodeType":"OverrideSpecifier","overrides":[],"src":"8775:8:28"},"parameters":{"id":8490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8489,"mutability":"mutable","name":"_hashes","nameLocation":"8757:7:28","nodeType":"VariableDeclaration","scope":8531,"src":"8723:41:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_userDefinedValueType$_TransactionHash_$13256_$dyn_calldata_ptr","typeString":"Witnet.TransactionHash[]"},"typeName":{"baseType":{"id":8487,"nodeType":"UserDefinedTypeName","pathNode":{"id":8486,"name":"Witnet.TransactionHash","nameLocations":["8723:6:28","8730:15:28"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"8723:22:28"},"referencedDeclaration":13256,"src":"8723:22:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"id":8488,"nodeType":"ArrayTypeName","src":"8723:24:28","typeDescriptions":{"typeIdentifier":"t_array$_t_userDefinedValueType$_TransactionHash_$13256_$dyn_storage_ptr","typeString":"Witnet.TransactionHash[]"}},"visibility":"internal"}],"src":"8722:43:28"},"returnParameters":{"id":8496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8495,"mutability":"mutable","name":"_statuses","nameLocation":"8840:9:28","nodeType":"VariableDeclaration","scope":8531,"src":"8816:33:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_enum$_WrappingStatus_$7946_$dyn_memory_ptr","typeString":"enum IWrappedWIT.WrappingStatus[]"},"typeName":{"baseType":{"id":8493,"nodeType":"UserDefinedTypeName","pathNode":{"id":8492,"name":"WrappingStatus","nameLocations":["8816:14:28"],"nodeType":"IdentifierPath","referencedDeclaration":7946,"src":"8816:14:28"},"referencedDeclaration":7946,"src":"8816:14:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7946","typeString":"enum IWrappedWIT.WrappingStatus"}},"id":8494,"nodeType":"ArrayTypeName","src":"8816:16:28","typeDescriptions":{"typeIdentifier":"t_array$_t_enum$_WrappingStatus_$7946_$dyn_storage_ptr","typeString":"enum IWrappedWIT.WrappingStatus[]"}},"visibility":"internal"}],"src":"8815:35:28"},"scope":9235,"src":"8687:377:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[7985],"body":{"id":8541,"nodeType":"Block","src":"9143:60:28","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8537,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"9161:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9161:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8539,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9173:22:28","memberName":"evmLastReserveNanowits","nodeType":"MemberAccess","referencedDeclaration":9394,"src":"9161:34:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":8536,"id":8540,"nodeType":"Return","src":"9154:41:28"}]},"functionSelector":"91f4f96c","id":8542,"implemented":true,"kind":"function","modifiers":[],"name":"totalReserveSupply","nameLocation":"9081:18:28","nodeType":"FunctionDefinition","overrides":{"id":8533,"nodeType":"OverrideSpecifier","overrides":[],"src":"9102:8:28"},"parameters":{"id":8532,"nodeType":"ParameterList","parameters":[],"src":"9099:2:28"},"returnParameters":{"id":8536,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8535,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8542,"src":"9134:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8534,"name":"uint256","nodeType":"ElementaryTypeName","src":"9134:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9133:9:28"},"scope":9235,"src":"9072:131:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[7990],"body":{"id":8552,"nodeType":"Block","src":"9276:48:28","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8548,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"9294:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8549,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9294:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8550,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9306:10:28","memberName":"evmUnwraps","nodeType":"MemberAccess","referencedDeclaration":9396,"src":"9294:22:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":8547,"id":8551,"nodeType":"Return","src":"9287:29:28"}]},"functionSelector":"520a5495","id":8553,"implemented":true,"kind":"function","modifiers":[],"name":"totalUnwraps","nameLocation":"9220:12:28","nodeType":"FunctionDefinition","overrides":{"id":8544,"nodeType":"OverrideSpecifier","overrides":[],"src":"9235:8:28"},"parameters":{"id":8543,"nodeType":"ParameterList","parameters":[],"src":"9232:2:28"},"returnParameters":{"id":8547,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8546,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8553,"src":"9267:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8545,"name":"uint256","nodeType":"ElementaryTypeName","src":"9267:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9266:9:28"},"scope":9235,"src":"9211:113:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[7995],"body":{"id":8563,"nodeType":"Block","src":"9399:46:28","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8559,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"9417:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8560,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9417:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8561,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9429:8:28","memberName":"evmWraps","nodeType":"MemberAccess","referencedDeclaration":9398,"src":"9417:20:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":8558,"id":8562,"nodeType":"Return","src":"9410:27:28"}]},"functionSelector":"6aaa54cf","id":8564,"implemented":true,"kind":"function","modifiers":[],"name":"totalWraps","nameLocation":"9345:10:28","nodeType":"FunctionDefinition","overrides":{"id":8555,"nodeType":"OverrideSpecifier","overrides":[],"src":"9358:8:28"},"parameters":{"id":8554,"nodeType":"ParameterList","parameters":[],"src":"9355:2:28"},"returnParameters":{"id":8558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8557,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8564,"src":"9390:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8556,"name":"uint256","nodeType":"ElementaryTypeName","src":"9390:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9389:9:28"},"scope":9235,"src":"9336:109:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[8000],"body":{"id":8578,"nodeType":"Block","src":"9529:94:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8575,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8572,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"9578:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9584:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"9578:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8574,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8130,"src":"9595:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9578:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":8570,"name":"__witCustodianWrapper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8160,"src":"9547:21:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"id":8571,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9569:8:28","memberName":"toBech32","nodeType":"MemberAccess","referencedDeclaration":13935,"src":"9547:30:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Address_$13240_$_t_bool_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_Address_$13240_$","typeString":"function (Witnet.Address,bool) pure returns (string memory)"}},"id":8576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9547:68:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":8569,"id":8577,"nodeType":"Return","src":"9540:75:28"}]},"functionSelector":"b3f120a1","id":8579,"implemented":true,"kind":"function","modifiers":[],"name":"witCustodianWrapper","nameLocation":"9462:19:28","nodeType":"FunctionDefinition","overrides":{"id":8566,"nodeType":"OverrideSpecifier","overrides":[],"src":"9484:8:28"},"parameters":{"id":8565,"nodeType":"ParameterList","parameters":[],"src":"9481:2:28"},"returnParameters":{"id":8569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8568,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8579,"src":"9514:13:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8567,"name":"string","nodeType":"ElementaryTypeName","src":"9514:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"9513:15:28"},"scope":9235,"src":"9453:170:28","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[8005],"body":{"id":8595,"nodeType":"Block","src":"9709:106:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8589,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"9770:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9776:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"9770:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8591,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8130,"src":"9787:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9770:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8585,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"9727:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9727:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8587,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9739:21:28","memberName":"witCustodianUnwrapper","nodeType":"MemberAccess","referencedDeclaration":9401,"src":"9727:33:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"id":8588,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9761:8:28","memberName":"toBech32","nodeType":"MemberAccess","referencedDeclaration":13935,"src":"9727:42:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Address_$13240_$_t_bool_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_Address_$13240_$","typeString":"function (Witnet.Address,bool) pure returns (string memory)"}},"id":8593,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9727:80:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":8584,"id":8594,"nodeType":"Return","src":"9720:87:28"}]},"functionSelector":"147040de","id":8596,"implemented":true,"kind":"function","modifiers":[],"name":"witCustodianUnwrapper","nameLocation":"9640:21:28","nodeType":"FunctionDefinition","overrides":{"id":8581,"nodeType":"OverrideSpecifier","overrides":[],"src":"9664:8:28"},"parameters":{"id":8580,"nodeType":"ParameterList","parameters":[],"src":"9661:2:28"},"returnParameters":{"id":8584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8583,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8596,"src":"9694:13:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8582,"name":"string","nodeType":"ElementaryTypeName","src":"9694:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"9693:15:28"},"scope":9235,"src":"9631:184:28","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[8011],"body":{"id":8607,"nodeType":"Block","src":"9915:69:28","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8603,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"9933:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8604,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9933:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8605,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9945:31:28","memberName":"witOracleCrossChainRpcProviders","nodeType":"MemberAccess","referencedDeclaration":9407,"src":"9933:43:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage","typeString":"string storage ref[] storage ref"}},"functionReturnParameters":8602,"id":8606,"nodeType":"Return","src":"9926:50:28"}]},"functionSelector":"71d41eb3","id":8608,"implemented":true,"kind":"function","modifiers":[],"name":"witOracleCrossChainRpcProviders","nameLocation":"9832:31:28","nodeType":"FunctionDefinition","overrides":{"id":8598,"nodeType":"OverrideSpecifier","overrides":[],"src":"9866:8:28"},"parameters":{"id":8597,"nodeType":"ParameterList","parameters":[],"src":"9863:2:28"},"returnParameters":{"id":8602,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8601,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8608,"src":"9898:15:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":8599,"name":"string","nodeType":"ElementaryTypeName","src":"9898:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8600,"nodeType":"ArrayTypeName","src":"9898:8:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"src":"9897:17:28"},"scope":9235,"src":"9823:161:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[8018],"body":{"id":8622,"nodeType":"Block","src":"10092:130:28","statements":[{"expression":{"arguments":[{"id":8618,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8151,"src":"10167:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}},{"id":8619,"name":"evmGasPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8610,"src":"10192:11:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":8616,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9825,"src":"10110:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WrappedWITLib_$9825_$","typeString":"type(library WrappedWITLib)"}},"id":8617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10124:28:28","memberName":"witOracleEstimateWrappingFee","nodeType":"MemberAccess","referencedDeclaration":9824,"src":"10110:42:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_contract$_WitOracle_$9915_$_t_uint256_$returns$_t_uint256_$","typeString":"function (contract WitOracle,uint256) view returns (uint256)"}},"id":8620,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10110:104:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8615,"id":8621,"nodeType":"Return","src":"10103:111:28"}]},"functionSelector":"ddb2bf5c","id":8623,"implemented":true,"kind":"function","modifiers":[],"name":"witOracleEstimateWrappingFee","nameLocation":"10001:28:28","nodeType":"FunctionDefinition","overrides":{"id":8612,"nodeType":"OverrideSpecifier","overrides":[],"src":"10051:8:28"},"parameters":{"id":8611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8610,"mutability":"mutable","name":"evmGasPrice","nameLocation":"10038:11:28","nodeType":"VariableDeclaration","scope":8623,"src":"10030:19:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8609,"name":"uint256","nodeType":"ElementaryTypeName","src":"10030:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10029:21:28"},"returnParameters":{"id":8615,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8614,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8623,"src":"10083:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8613,"name":"uint256","nodeType":"ElementaryTypeName","src":"10083:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10082:9:28"},"scope":9235,"src":"9992:230:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[8024],"body":{"id":8634,"nodeType":"Block","src":"10325:61:28","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8630,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"10343:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10343:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8632,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10355:23:28","memberName":"evmLastReserveTimestamp","nodeType":"MemberAccess","referencedDeclaration":9392,"src":"10343:35:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"functionReturnParameters":8629,"id":8633,"nodeType":"Return","src":"10336:42:28"}]},"functionSelector":"30315dc4","id":8635,"implemented":true,"kind":"function","modifiers":[],"name":"witOracleProofOfReserveLastUpdate","nameLocation":"10239:33:28","nodeType":"FunctionDefinition","overrides":{"id":8625,"nodeType":"OverrideSpecifier","overrides":[],"src":"10275:8:28"},"parameters":{"id":8624,"nodeType":"ParameterList","parameters":[],"src":"10272:2:28"},"returnParameters":{"id":8629,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8628,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8635,"src":"10307:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":8627,"nodeType":"UserDefinedTypeName","pathNode":{"id":8626,"name":"Witnet.Timestamp","nameLocations":["10307:6:28","10314:9:28"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"10307:16:28"},"referencedDeclaration":13254,"src":"10307:16:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"10306:18:28"},"scope":9235,"src":"10230:156:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[8029],"body":{"id":8650,"nodeType":"Block","src":"10488:179:28","statements":[{"expression":{"arguments":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8645,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"10600:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10600:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8647,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10612:32:28","memberName":"witOracleProofOfReserveRadonHash","nodeType":"MemberAccess","referencedDeclaration":9410,"src":"10600:44:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8641,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8151,"src":"10506:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}},"id":8642,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10530:8:28","memberName":"registry","nodeType":"MemberAccess","referencedDeclaration":10054,"src":"10506:32:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IWitOracleRadonRegistry_$10616_$","typeString":"function () view external returns (contract IWitOracleRadonRegistry)"}},"id":8643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10506:34:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRegistry_$10616","typeString":"contract IWitOracleRadonRegistry"}},"id":8644,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10555:26:28","memberName":"lookupRadonRequestBytecode","nodeType":"MemberAccess","referencedDeclaration":10425,"src":"10506:75:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_userDefinedValueType$_RadonHash_$13250_$returns$_t_bytes_memory_ptr_$","typeString":"function (Witnet.RadonHash) view external returns (bytes memory)"}},"id":8648,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10506:153:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":8640,"id":8649,"nodeType":"Return","src":"10499:160:28"}]},"functionSelector":"acb734bb","id":8651,"implemented":true,"kind":"function","modifiers":[],"name":"witOracleProofOfReserveRadonBytecode","nameLocation":"10403:36:28","nodeType":"FunctionDefinition","overrides":{"id":8637,"nodeType":"OverrideSpecifier","overrides":[],"src":"10442:8:28"},"parameters":{"id":8636,"nodeType":"ParameterList","parameters":[],"src":"10439:2:28"},"returnParameters":{"id":8640,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8639,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8651,"src":"10474:12:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8638,"name":"bytes","nodeType":"ElementaryTypeName","src":"10474:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"10473:14:28"},"scope":9235,"src":"10394:273:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[8035],"body":{"id":8662,"nodeType":"Block","src":"10769:70:28","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8658,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"10787:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10787:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8660,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10799:32:28","memberName":"witOracleProofOfReserveRadonHash","nodeType":"MemberAccess","referencedDeclaration":9410,"src":"10787:44:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"functionReturnParameters":8657,"id":8661,"nodeType":"Return","src":"10780:51:28"}]},"functionSelector":"fec53a14","id":8663,"implemented":true,"kind":"function","modifiers":[],"name":"witOracleProofOfReserveRadonHash","nameLocation":"10684:32:28","nodeType":"FunctionDefinition","overrides":{"id":8653,"nodeType":"OverrideSpecifier","overrides":[],"src":"10719:8:28"},"parameters":{"id":8652,"nodeType":"ParameterList","parameters":[],"src":"10716:2:28"},"returnParameters":{"id":8657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8656,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8663,"src":"10751:16:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":8655,"nodeType":"UserDefinedTypeName","pathNode":{"id":8654,"name":"Witnet.RadonHash","nameLocations":["10751:6:28","10758:9:28"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"10751:16:28"},"referencedDeclaration":13250,"src":"10751:16:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"10750:18:28"},"scope":9235,"src":"10675:164:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[8041],"body":{"id":8674,"nodeType":"Block","src":"10939:60:28","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8670,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"10957:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8671,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10957:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8672,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10969:22:28","memberName":"witOracleQuerySettings","nodeType":"MemberAccess","referencedDeclaration":9404,"src":"10957:34:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"functionReturnParameters":8669,"id":8673,"nodeType":"Return","src":"10950:41:28"}]},"functionSelector":"873234cf","id":8675,"implemented":true,"kind":"function","modifiers":[],"name":"witOracleQuerySettings","nameLocation":"10856:22:28","nodeType":"FunctionDefinition","overrides":{"id":8665,"nodeType":"OverrideSpecifier","overrides":[],"src":"10881:8:28"},"parameters":{"id":8664,"nodeType":"ParameterList","parameters":[],"src":"10878:2:28"},"returnParameters":{"id":8669,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8668,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8675,"src":"10913:24:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_memory_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"},"typeName":{"id":8667,"nodeType":"UserDefinedTypeName","pathNode":{"id":8666,"name":"WitOracleSettings","nameLocations":["10913:17:28"],"nodeType":"IdentifierPath","referencedDeclaration":7941,"src":"10913:17:28"},"referencedDeclaration":7941,"src":"10913:17:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"}},"visibility":"internal"}],"src":"10912:26:28"},"scope":9235,"src":"10847:152:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[8048],"body":{"id":8710,"nodeType":"Block","src":"11378:303:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8685,"name":"_witRpcProviders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8679,"src":"11396:16:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":8686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11413:6:28","memberName":"length","nodeType":"MemberAccess","src":"11396:23:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":8687,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11422:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11396:27:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"id":8684,"name":"assert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-3,"src":"11389:6:28","typeDescriptions":{"typeIdentifier":"t_function_assert_pure$_t_bool_$returns$__$","typeString":"function (bool) pure"}},"id":8689,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11389:35:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8690,"nodeType":"ExpressionStatement","src":"11389:35:28"},{"expression":{"id":8695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8691,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"11435:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11435:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8693,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"11447:31:28","memberName":"witOracleCrossChainRpcProviders","nodeType":"MemberAccess","referencedDeclaration":9407,"src":"11435:43:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage","typeString":"string storage ref[] storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8694,"name":"_witRpcProviders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8679,"src":"11481:16:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"src":"11435:62:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage","typeString":"string storage ref[] storage ref"}},"id":8696,"nodeType":"ExpressionStatement","src":"11435:62:28"},{"expression":{"arguments":[{"id":8698,"name":"_witRpcProviders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8679,"src":"11550:16:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8703,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"11625:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11631:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"11625:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8705,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8130,"src":"11642:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11625:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8699,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"11582:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8700,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11582:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8701,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11594:21:28","memberName":"witCustodianUnwrapper","nodeType":"MemberAccess","referencedDeclaration":9401,"src":"11582:33:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"id":8702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11616:8:28","memberName":"toBech32","nodeType":"MemberAccess","referencedDeclaration":13935,"src":"11582:42:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Address_$13240_$_t_bool_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_Address_$13240_$","typeString":"function (Witnet.Address,bool) pure returns (string memory)"}},"id":8707,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11582:80:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8697,"name":"__formallyVerifyRadonAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9140,"src":"11508:27:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory[] memory,string memory)"}},"id":8708,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11508:165:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8709,"nodeType":"ExpressionStatement","src":"11508:165:28"}]},"documentation":{"id":8676,"nodeType":"StructuredDocumentation","src":"11009:238:28","text":"===============================================================================================================\n --- Wrapped/WIT authoritative methods -------------------------------------------------------------------------"},"functionSelector":"ea9e96a6","id":8711,"implemented":true,"kind":"function","modifiers":[{"id":8682,"kind":"modifierInvocation","modifierName":{"id":8681,"name":"onlyCurator","nameLocations":["11361:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":8177,"src":"11361:11:28"},"nodeType":"ModifierInvocation","src":"11361:11:28"}],"name":"settleWitOracleCrossChainRpcProviders","nameLocation":"11262:37:28","nodeType":"FunctionDefinition","parameters":{"id":8680,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8679,"mutability":"mutable","name":"_witRpcProviders","nameLocation":"11316:16:28","nodeType":"VariableDeclaration","scope":8711,"src":"11300:32:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":8677,"name":"string","nodeType":"ElementaryTypeName","src":"11300:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8678,"nodeType":"ArrayTypeName","src":"11300:8:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"src":"11299:34:28"},"returnParameters":{"id":8683,"nodeType":"ParameterList","parameters":[],"src":"11378:0:28"},"scope":9235,"src":"11253:428:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[8054],"body":{"id":8747,"nodeType":"Block","src":"11804:496:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8738,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8728,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":8723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8720,"name":"_settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8714,"src":"11836:9:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_calldata_ptr","typeString":"struct IWrappedWIT.WitOracleSettings calldata"}},"id":8721,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11846:12:28","memberName":"minWitnesses","nodeType":"MemberAccess","referencedDeclaration":7934,"src":"11836:22:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":8722,"name":"_WIT_ORACLE_REPORTS_MIN_MIN_WITNESSES","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8139,"src":"11862:37:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"11836:63:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":8727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8724,"name":"_settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8714,"src":"11920:9:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_calldata_ptr","typeString":"struct IWrappedWIT.WitOracleSettings calldata"}},"id":8725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11930:18:28","memberName":"baseFeeOverhead100","nodeType":"MemberAccess","referencedDeclaration":7936,"src":"11920:28:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":8726,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MAX_BASE_FEE_OVERHEAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8142,"src":"11952:52:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"11920:84:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11836:168:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":8732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8729,"name":"_settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8714,"src":"12025:9:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_calldata_ptr","typeString":"struct IWrappedWIT.WitOracleSettings calldata"}},"id":8730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12035:21:28","memberName":"unitaryRewardNanowits","nodeType":"MemberAccess","referencedDeclaration":7938,"src":"12025:31:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":8731,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MIN_UNITARY_REWARD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8145,"src":"12060:49:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"12025:84:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11836:273:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint24","typeString":"uint24"},"id":8737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8734,"name":"_settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8714,"src":"12130:9:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_calldata_ptr","typeString":"struct IWrappedWIT.WitOracleSettings calldata"}},"id":8735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12140:24:28","memberName":"responseCallbackGasLimit","nodeType":"MemberAccess","referencedDeclaration":7940,"src":"12130:34:28","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":8736,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MIN_RESPONSE_CALLBACK_GAS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8148,"src":"12168:56:28","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"src":"12130:94:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"11836:388:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"id":8719,"name":"assert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-3,"src":"11815:6:28","typeDescriptions":{"typeIdentifier":"t_function_assert_pure$_t_bool_$returns$__$","typeString":"function (bool) pure"}},"id":8739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11815:420:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8740,"nodeType":"ExpressionStatement","src":"11815:420:28"},{"expression":{"id":8745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8741,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"12246:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8742,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12246:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8743,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12258:22:28","memberName":"witOracleQuerySettings","nodeType":"MemberAccess","referencedDeclaration":9404,"src":"12246:34:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8744,"name":"_settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8714,"src":"12283:9:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_calldata_ptr","typeString":"struct IWrappedWIT.WitOracleSettings calldata"}},"src":"12246:46:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"id":8746,"nodeType":"ExpressionStatement","src":"12246:46:28"}]},"functionSelector":"6df0627e","id":8748,"implemented":true,"kind":"function","modifiers":[{"id":8717,"kind":"modifierInvocation","modifierName":{"id":8716,"name":"onlyCurator","nameLocations":["11787:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":8177,"src":"11787:11:28"},"nodeType":"ModifierInvocation","src":"11787:11:28"}],"name":"settleWitOracleSettings","nameLocation":"11698:23:28","nodeType":"FunctionDefinition","parameters":{"id":8715,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8714,"mutability":"mutable","name":"_settings","nameLocation":"11749:9:28","nodeType":"VariableDeclaration","scope":8748,"src":"11722:36:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_calldata_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"},"typeName":{"id":8713,"nodeType":"UserDefinedTypeName","pathNode":{"id":8712,"name":"WitOracleSettings","nameLocations":["11722:17:28"],"nodeType":"IdentifierPath","referencedDeclaration":7941,"src":"11722:17:28"},"referencedDeclaration":7941,"src":"11722:17:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"}},"visibility":"internal"}],"src":"11721:38:28"},"returnParameters":{"id":8718,"nodeType":"ParameterList","parameters":[],"src":"11804:0:28"},"scope":9235,"src":"11689:611:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[8059],"body":{"id":8759,"nodeType":"Block","src":"12435:78:28","statements":[{"expression":{"arguments":[{"id":8756,"name":"_witCustodianUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8750,"src":"12476:28:28","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":8755,"name":"__settleWitCustodianUnwrapper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9223,"src":"12446:29:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory)"}},"id":8757,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12446:59:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8758,"nodeType":"ExpressionStatement","src":"12446:59:28"}]},"functionSelector":"c65a20f0","id":8760,"implemented":true,"kind":"function","modifiers":[{"id":8753,"kind":"modifierInvocation","modifierName":{"id":8752,"name":"onlyCurator","nameLocations":["12418:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":8177,"src":"12418:11:28"},"nodeType":"ModifierInvocation","src":"12418:11:28"}],"name":"settleWitCustodianUnwrapper","nameLocation":"12317:27:28","nodeType":"FunctionDefinition","parameters":{"id":8751,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8750,"mutability":"mutable","name":"_witCustodianUnwrapperBech32","nameLocation":"12361:28:28","nodeType":"VariableDeclaration","scope":8760,"src":"12345:44:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":8749,"name":"string","nodeType":"ElementaryTypeName","src":"12345:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"12344:46:28"},"returnParameters":{"id":8754,"nodeType":"ParameterList","parameters":[],"src":"12435:0:28"},"scope":9235,"src":"12308:205:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[8064],"body":{"id":8789,"nodeType":"Block","src":"12616:174:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8773,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8768,"name":"_newCurator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8762,"src":"12634:11:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":8771,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12657:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":8770,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12649:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8769,"name":"address","nodeType":"ElementaryTypeName","src":"12649:7:28","typeDescriptions":{}}},"id":8772,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12649:10:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12634:25:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"id":8767,"name":"assert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-3,"src":"12627:6:28","typeDescriptions":{"typeIdentifier":"t_function_assert_pure$_t_bool_$returns$__$","typeString":"function (bool) pure"}},"id":8774,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12627:33:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8775,"nodeType":"ExpressionStatement","src":"12627:33:28"},{"eventCall":{"arguments":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8777,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"12699:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8778,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12699:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8779,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12711:10:28","memberName":"evmCurator","nodeType":"MemberAccess","referencedDeclaration":9387,"src":"12699:22:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8780,"name":"_newCurator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8762,"src":"12723:11:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":8776,"name":"CuratorshipTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7897,"src":"12676:22:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":8781,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12676:59:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8782,"nodeType":"EmitStatement","src":"12671:64:28"},{"expression":{"id":8787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8783,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"12746:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8784,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12746:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8785,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12758:10:28","memberName":"evmCurator","nodeType":"MemberAccess","referencedDeclaration":9387,"src":"12746:22:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8786,"name":"_newCurator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8762,"src":"12771:11:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"12746:36:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":8788,"nodeType":"ExpressionStatement","src":"12746:36:28"}]},"functionSelector":"a41942a4","id":8790,"implemented":true,"kind":"function","modifiers":[{"id":8765,"kind":"modifierInvocation","modifierName":{"id":8764,"name":"onlyCurator","nameLocations":["12599:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":8177,"src":"12599:11:28"},"nodeType":"ModifierInvocation","src":"12599:11:28"}],"name":"transferCuratorship","nameLocation":"12530:19:28","nodeType":"FunctionDefinition","parameters":{"id":8763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8762,"mutability":"mutable","name":"_newCurator","nameLocation":"12558:11:28","nodeType":"VariableDeclaration","scope":8790,"src":"12550:19:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8761,"name":"address","nodeType":"ElementaryTypeName","src":"12550:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"12549:21:28"},"returnParameters":{"id":8766,"nodeType":"ParameterList","parameters":[],"src":"12616:0:28"},"scope":9235,"src":"12521:269:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[8072],"body":{"id":8817,"nodeType":"Block","src":"13205:405:28","statements":[{"expression":{"id":8807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8800,"name":"_witOracleQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8798,"src":"13216:17:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8803,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8151,"src":"13314:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}},{"id":8804,"name":"witOracleCrossChainProofOfInclusionTemplate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8157,"src":"13338:43:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"}},{"id":8805,"name":"_witnetValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8794,"src":"13396:35:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"},{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"},{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}],"expression":{"id":8801,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9825,"src":"13236:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WrappedWITLib_$9825_$","typeString":"type(library WrappedWITLib)"}},"id":8802,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13250:49:28","memberName":"witOracleQueryWitnetValueTransferProofOfInclusion","nodeType":"MemberAccess","referencedDeclaration":9788,"src":"13236:63:28","typeDescriptions":{"typeIdentifier":"t_function_delegatecall_nonpayable$_t_contract$_WitOracle_$9915_$_t_contract$_IWitOracleRadonRequestModal_$10761_$_t_userDefinedValueType$_TransactionHash_$13256_$returns$_t_uint256_$","typeString":"function (contract WitOracle,contract IWitOracleRadonRequestModal,Witnet.TransactionHash) returns (uint256)"}},"id":8806,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13236:206:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13216:226:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8808,"nodeType":"ExpressionStatement","src":"13216:226:28"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8810,"name":"_witOracleQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8798,"src":"13475:17:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":8811,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9825,"src":"13496:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WrappedWITLib_$9825_$","typeString":"type(library WrappedWITLib)"}},"id":8812,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13510:49:28","memberName":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED","nodeType":"MemberAccess","referencedDeclaration":9382,"src":"13496:63:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13475:84:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"616c7265616479206d696e746564","id":8814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13575:16:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_fc1d79576d9c1e03d6ff90e81fd853c5eac89b9ed9cb54114db3e1e1ab962297","typeString":"literal_string \"already minted\""},"value":"already minted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_fc1d79576d9c1e03d6ff90e81fd853c5eac89b9ed9cb54114db3e1e1ab962297","typeString":"literal_string \"already minted\""}],"id":8809,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"13453:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":8815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13453:149:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8816,"nodeType":"ExpressionStatement","src":"13453:149:28"}]},"documentation":{"id":8791,"nodeType":"StructuredDocumentation","src":"12804:238:28","text":"===============================================================================================================\n --- Wrapped/WIT permissionless wrap/unwrap operations ---------------------------------------------------------"},"functionSelector":"5f029ebe","id":8818,"implemented":true,"kind":"function","modifiers":[],"name":"wrap","nameLocation":"13057:4:28","nodeType":"FunctionDefinition","overrides":{"id":8796,"nodeType":"OverrideSpecifier","overrides":[],"src":"13131:8:28"},"parameters":{"id":8795,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8794,"mutability":"mutable","name":"_witnetValueTransferTransactionHash","nameLocation":"13085:35:28","nodeType":"VariableDeclaration","scope":8818,"src":"13062:58:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":8793,"nodeType":"UserDefinedTypeName","pathNode":{"id":8792,"name":"Witnet.TransactionHash","nameLocations":["13062:6:28","13069:15:28"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"13062:22:28"},"referencedDeclaration":13256,"src":"13062:22:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"13061:60:28"},"returnParameters":{"id":8799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8798,"mutability":"mutable","name":"_witOracleQueryId","nameLocation":"13181:17:28","nodeType":"VariableDeclaration","scope":8818,"src":"13173:25:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8797,"name":"uint256","nodeType":"ElementaryTypeName","src":"13173:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13172:27:28"},"scope":9235,"src":"13048:562:28","stateMutability":"payable","virtual":false,"visibility":"public"},{"baseFunctions":[8081],"body":{"id":8903,"nodeType":"Block","src":"13755:1061:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8834,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8830,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"13798:10:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8831,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13798:12:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8829,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":911,"src":"13788:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":8832,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13788:23:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":8833,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8820,"src":"13815:5:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13788:32:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6e6f7420656e6f7567682062616c616e6365","id":8835,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13835:20:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_596712763af5ad819c1a1c8db05ac93e50918d28937626717ff5e1d919b4454a","typeString":"literal_string \"not enough balance\""},"value":"not enough balance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_596712763af5ad819c1a1c8db05ac93e50918d28937626717ff5e1d919b4454a","typeString":"literal_string \"not enough balance\""}],"id":8828,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"13766:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":8836,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13766:100:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8837,"nodeType":"ExpressionStatement","src":"13766:100:28"},{"assignments":[8839],"declarations":[{"constant":false,"id":8839,"mutability":"mutable","name":"_evmLastReserveNanowits","nameLocation":"13884:23:28","nodeType":"VariableDeclaration","scope":8903,"src":"13877:30:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":8838,"name":"uint64","nodeType":"ElementaryTypeName","src":"13877:6:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":8843,"initialValue":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8840,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"13910:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8841,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13910:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8842,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13922:22:28","memberName":"evmLastReserveNanowits","nodeType":"MemberAccess","referencedDeclaration":9394,"src":"13910:34:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"13877:67:28"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":8847,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8845,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8820,"src":"13978:5:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":8846,"name":"_evmLastReserveNanowits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8839,"src":"13987:23:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13978:32:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"63616e6e6f7420756e777261702074686174206d756368","id":8848,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14025:25:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_c2f7d7791943b6f0be2f5c4696e74b461af6db49d575243d9759641d2894e1d5","typeString":"literal_string \"cannot unwrap that much\""},"value":"cannot unwrap that much"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c2f7d7791943b6f0be2f5c4696e74b461af6db49d575243d9759641d2894e1d5","typeString":"literal_string \"cannot unwrap that much\""}],"id":8844,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"13956:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":8849,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13956:105:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8850,"nodeType":"ExpressionStatement","src":"13956:105:28"},{"assignments":[8855],"declarations":[{"constant":false,"id":8855,"mutability":"mutable","name":"_recipient","nameLocation":"14087:10:28","nodeType":"VariableDeclaration","scope":8903,"src":"14072:25:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"},"typeName":{"id":8854,"nodeType":"UserDefinedTypeName","pathNode":{"id":8853,"name":"Witnet.Address","nameLocations":["14072:6:28","14079:7:28"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"14072:14:28"},"referencedDeclaration":13240,"src":"14072:14:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"visibility":"internal"}],"id":8864,"initialValue":{"arguments":[{"id":8858,"name":"witRecipientBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8822,"src":"14132:18:28","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8859,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"14166:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14172:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"14166:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8861,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8130,"src":"14183:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"14166:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"},{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":8856,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"14100:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":8857,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14107:10:28","memberName":"fromBech32","nodeType":"MemberAccess","referencedDeclaration":13909,"src":"14100:17:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_bool_$returns$_t_userDefinedValueType$_Address_$13240_$","typeString":"function (string memory,bool) pure returns (Witnet.Address)"}},"id":8863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14100:113:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"nodeType":"VariableDeclarationStatement","src":"14072:141:28"},{"expression":{"arguments":[{"id":8870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14246:37:28","subExpression":{"arguments":[{"id":8868,"name":"__witCustodianWrapper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8160,"src":"14261:21:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}],"expression":{"id":8866,"name":"_recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8855,"src":"14247:10:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"id":8867,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14258:2:28","memberName":"eq","nodeType":"MemberAccess","referencedDeclaration":13868,"src":"14247:13:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Address_$13240_$_t_userDefinedValueType$_Address_$13240_$returns$_t_bool_$attached_to$_t_userDefinedValueType$_Address_$13240_$","typeString":"function (Witnet.Address,Witnet.Address) pure returns (bool)"}},"id":8869,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14247:36:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e76616c696420726563697069656e74","id":8871,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14298:19:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_80c95633eb4d36a63978e9d13e657c438c0d395a23eb33de58bf1d9758a73228","typeString":"literal_string \"invalid recipient\""},"value":"invalid recipient"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_80c95633eb4d36a63978e9d13e657c438c0d395a23eb33de58bf1d9758a73228","typeString":"literal_string \"invalid recipient\""}],"id":8865,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"14224:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":8872,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14224:104:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8873,"nodeType":"ExpressionStatement","src":"14224:104:28"},{"expression":{"id":8880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8874,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"14392:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8875,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14392:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8876,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14404:22:28","memberName":"evmLastReserveNanowits","nodeType":"MemberAccess","referencedDeclaration":9394,"src":"14392:34:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":8879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8877,"name":"_evmLastReserveNanowits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8839,"src":"14429:23:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":8878,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8820,"src":"14455:5:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14429:31:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14392:68:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":8881,"nodeType":"ExpressionStatement","src":"14392:68:28"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8883,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"14532:10:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8884,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14532:12:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8885,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8820,"src":"14546:5:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":8882,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1198,"src":"14526:5:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":8886,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14526:26:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8887,"nodeType":"ExpressionStatement","src":"14526:26:28"},{"expression":{"id":8893,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8888,"name":"evmUnwrapId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8826,"src":"14598:11:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8892,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"14612:25:28","subExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8889,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"14615:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8890,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14615:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8891,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14627:10:28","memberName":"evmUnwraps","nodeType":"MemberAccess","referencedDeclaration":9396,"src":"14615:22:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14598:39:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8894,"nodeType":"ExpressionStatement","src":"14598:39:28"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8896,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"14703:10:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14703:12:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8898,"name":"witRecipientBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8822,"src":"14731:18:28","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":8899,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8820,"src":"14765:5:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":8900,"name":"evmUnwrapId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8826,"src":"14786:11:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":8895,"name":"Unwrapped","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7932,"src":"14679:9:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_string_memory_ptr_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,string memory,uint256,uint256)"}},"id":8901,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14679:129:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8902,"nodeType":"EmitStatement","src":"14674:134:28"}]},"functionSelector":"8a510f27","id":8904,"implemented":true,"kind":"function","modifiers":[],"name":"unwrap","nameLocation":"13627:6:28","nodeType":"FunctionDefinition","overrides":{"id":8824,"nodeType":"OverrideSpecifier","overrides":[],"src":"13693:8:28"},"parameters":{"id":8823,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8820,"mutability":"mutable","name":"value","nameLocation":"13641:5:28","nodeType":"VariableDeclaration","scope":8904,"src":"13634:12:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":8819,"name":"uint64","nodeType":"ElementaryTypeName","src":"13634:6:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":8822,"mutability":"mutable","name":"witRecipientBech32","nameLocation":"13664:18:28","nodeType":"VariableDeclaration","scope":8904,"src":"13648:34:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":8821,"name":"string","nodeType":"ElementaryTypeName","src":"13648:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"13633:50:28"},"returnParameters":{"id":8827,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8826,"mutability":"mutable","name":"evmUnwrapId","nameLocation":"13737:11:28","nodeType":"VariableDeclaration","scope":8904,"src":"13729:19:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8825,"name":"uint256","nodeType":"ElementaryTypeName","src":"13729:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13728:21:28"},"scope":9235,"src":"13618:1198:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[10269],"body":{"id":8923,"nodeType":"Block","src":"15245:62:28","statements":[{"expression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8915,"name":"_from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8907,"src":"15271:5:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8914,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15263:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8913,"name":"address","nodeType":"ElementaryTypeName","src":"15263:7:28","typeDescriptions":{}}},"id":8916,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15263:14:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":8919,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8151,"src":"15289:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}],"id":8918,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15281:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8917,"name":"address","nodeType":"ElementaryTypeName","src":"15281:7:28","typeDescriptions":{}}},"id":8920,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15281:18:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"15263:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":8912,"id":8922,"nodeType":"Return","src":"15256:43:28"}]},"documentation":{"id":8905,"nodeType":"StructuredDocumentation","src":"15074:90:28","text":"@notice Determines if Wit/Oracle query results can be reported from the given address."},"functionSelector":"47a10e56","id":8924,"implemented":true,"kind":"function","modifiers":[],"name":"reportableFrom","nameLocation":"15179:14:28","nodeType":"FunctionDefinition","overrides":{"id":8909,"nodeType":"OverrideSpecifier","overrides":[],"src":"15209:8:28"},"parameters":{"id":8908,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8907,"mutability":"mutable","name":"_from","nameLocation":"15202:5:28","nodeType":"VariableDeclaration","scope":8924,"src":"15194:13:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8906,"name":"address","nodeType":"ElementaryTypeName","src":"15194:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15193:15:28"},"returnParameters":{"id":8912,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8911,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8924,"src":"15239:4:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8910,"name":"bool","nodeType":"ElementaryTypeName","src":"15239:4:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"15238:6:28"},"scope":9235,"src":"15170:137:28","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[10261],"body":{"id":9002,"nodeType":"Block","src":"15792:1094:28","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":8935,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"15827:3:28","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":8936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15831:6:28","memberName":"sender","nodeType":"MemberAccess","src":"15827:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8934,"name":"reportableFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8924,"src":"15812:14:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":8937,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15812:26:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e76616c6964206f7261636c65","id":8938,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"15840:16:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_cb2d1e9dfd97eaf95f99d74a04eb502b6404ea235ae0f509d4ba6dee55f4818b","typeString":"literal_string \"invalid oracle\""},"value":"invalid oracle"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cb2d1e9dfd97eaf95f99d74a04eb502b6404ea235ae0f509d4ba6dee55f4818b","typeString":"literal_string \"invalid oracle\""}],"id":8933,"name":"_require","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9156,"src":"15803:8:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":8939,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15803:54:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8940,"nodeType":"ExpressionStatement","src":"15803:54:28"},{"clauses":[{"block":{"id":8982,"nodeType":"Block","src":"16234:489:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":8966,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":8962,"name":"_witRecipientBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8950,"src":"16292:19:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8961,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16286:5:28","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8960,"name":"bytes","nodeType":"ElementaryTypeName","src":"16286:5:28","typeDescriptions":{}}},"id":8963,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16286:26:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8959,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"16276:9:28","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16276:37:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8965,"name":"__witCustodianWrapperBech32Hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8162,"src":"16317:31:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"16276:72:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e76616c696420637573746f6469616e","id":8967,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16367:19:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_6ce2bac180655887efd21176a3b0c98e708327f065c3eed89a80143cf16b28e3","typeString":"literal_string \"invalid custodian\""},"value":"invalid custodian"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_6ce2bac180655887efd21176a3b0c98e708327f065c3eed89a80143cf16b28e3","typeString":"literal_string \"invalid custodian\""}],"id":8958,"name":"_require","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9156,"src":"16249:8:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":8968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16249:152:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8969,"nodeType":"ExpressionStatement","src":"16249:152:28"},{"expression":{"arguments":[{"id":8971,"name":"_evmRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8954,"src":"16467:13:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8972,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8956,"src":"16482:6:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":8970,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1165,"src":"16461:5:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":8973,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16461:28:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8974,"nodeType":"ExpressionStatement","src":"16461:28:28"},{"eventCall":{"arguments":[{"id":8976,"name":"_witWrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8952,"src":"16566:17:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8977,"name":"_evmRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8954,"src":"16603:13:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8978,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8956,"src":"16636:6:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":8979,"name":"_witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8948,"src":"16662:32:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}],"id":8975,"name":"Wrapped","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7922,"src":"16540:7:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_string_memory_ptr_$_t_address_$_t_uint256_$_t_userDefinedValueType$_TransactionHash_$13256_$returns$__$","typeString":"function (string memory,address,uint256,Witnet.TransactionHash)"}},"id":8980,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16540:169:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8981,"nodeType":"EmitStatement","src":"16535:174:28"}]},"errorName":"","id":8983,"nodeType":"TryCatchClause","parameters":{"id":8957,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8948,"mutability":"mutable","name":"_witValueTransferTransactionHash","nameLocation":"16032:32:28","nodeType":"VariableDeclaration","scope":8983,"src":"16009:55:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":8947,"nodeType":"UserDefinedTypeName","pathNode":{"id":8946,"name":"Witnet.TransactionHash","nameLocations":["16009:6:28","16016:15:28"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"16009:22:28"},"referencedDeclaration":13256,"src":"16009:22:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"},{"constant":false,"id":8950,"mutability":"mutable","name":"_witRecipientBech32","nameLocation":"16093:19:28","nodeType":"VariableDeclaration","scope":8983,"src":"16079:33:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8949,"name":"string","nodeType":"ElementaryTypeName","src":"16079:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8952,"mutability":"mutable","name":"_witWrapperBech32","nameLocation":"16141:17:28","nodeType":"VariableDeclaration","scope":8983,"src":"16127:31:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8951,"name":"string","nodeType":"ElementaryTypeName","src":"16127:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8954,"mutability":"mutable","name":"_evmRecipient","nameLocation":"16181:13:28","nodeType":"VariableDeclaration","scope":8983,"src":"16173:21:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8953,"name":"address","nodeType":"ElementaryTypeName","src":"16173:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8956,"mutability":"mutable","name":"_value","nameLocation":"16216:6:28","nodeType":"VariableDeclaration","scope":8983,"src":"16209:13:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":8955,"name":"uint64","nodeType":"ElementaryTypeName","src":"16209:6:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"15994:239:28"},"src":"15986:737:28"},{"block":{"id":8991,"nodeType":"Block","src":"16759:53:28","statements":[{"expression":{"arguments":[{"id":8988,"name":"_reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8985,"src":"16782:7:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8987,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9173,"src":"16774:7:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":8989,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16774:16:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8990,"nodeType":"ExpressionStatement","src":"16774:16:28"}]},"errorName":"Error","id":8992,"nodeType":"TryCatchClause","parameters":{"id":8986,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8985,"mutability":"mutable","name":"_reason","nameLocation":"16750:7:28","nodeType":"VariableDeclaration","scope":8992,"src":"16736:21:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8984,"name":"string","nodeType":"ElementaryTypeName","src":"16736:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"16735:23:28"},"src":"16724:88:28"},{"block":{"id":8999,"nodeType":"Block","src":"16834:45:28","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8996,"name":"_revertUnhandled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9181,"src":"16849:16:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$__$","typeString":"function () pure"}},"id":8997,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16849:18:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8998,"nodeType":"ExpressionStatement","src":"16849:18:28"}]},"errorName":"","id":9000,"nodeType":"TryCatchClause","parameters":{"id":8995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8994,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9000,"src":"16820:12:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8993,"name":"bytes","nodeType":"ElementaryTypeName","src":"16820:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16819:14:28"},"src":"16813:66:28"}],"externalCall":{"arguments":[{"id":8943,"name":"queryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8927,"src":"15930:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8944,"name":"queryResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8929,"src":"15953:11:28","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":8941,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9825,"src":"15874:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WrappedWITLib_$9825_$","typeString":"type(library WrappedWITLib)"}},"id":8942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15888:27:28","memberName":"processWitOracleQueryResult","nodeType":"MemberAccess","referencedDeclaration":9672,"src":"15874:41:28","typeDescriptions":{"typeIdentifier":"t_function_delegatecall_nonpayable$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_userDefinedValueType$_TransactionHash_$13256_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_address_$_t_uint64_$","typeString":"function (uint256,bytes memory) returns (Witnet.TransactionHash,string memory,string memory,address,uint64)"}},"id":8945,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15874:111:28","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_TransactionHash_$13256_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_address_$_t_uint64_$","typeString":"tuple(Witnet.TransactionHash,string memory,string memory,address,uint64)"}},"id":9001,"nodeType":"TryStatement","src":"15870:1009:28"}]},"documentation":{"id":8925,"nodeType":"StructuredDocumentation","src":"15315:319:28","text":"@notice Method called from the WitOracle as soon as the specified `queryId` gets reported from the Witnet blockchain.\n @param queryId The unique identifier of the Witnet query being reported.\n @param queryResult Abi-encoded Witnet.DataResult containing the CBOR-encoded query's result, and metadata."},"functionSelector":"d6f29e81","id":9003,"implemented":true,"kind":"function","modifiers":[],"name":"reportWitOracleQueryResult","nameLocation":"15649:26:28","nodeType":"FunctionDefinition","overrides":{"id":8931,"nodeType":"OverrideSpecifier","overrides":[],"src":"15768:8:28"},"parameters":{"id":8930,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8927,"mutability":"mutable","name":"queryId","nameLocation":"15698:7:28","nodeType":"VariableDeclaration","scope":9003,"src":"15690:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8926,"name":"uint256","nodeType":"ElementaryTypeName","src":"15690:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8929,"mutability":"mutable","name":"queryResult","nameLocation":"15735:11:28","nodeType":"VariableDeclaration","scope":9003,"src":"15720:26:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":8928,"name":"bytes","nodeType":"ElementaryTypeName","src":"15720:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15675:82:28"},"returnParameters":{"id":8932,"nodeType":"ParameterList","parameters":[],"src":"15792:0:28"},"scope":9235,"src":"15640:1246:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[10079],"body":{"id":9095,"nodeType":"Block","src":"17409:1344:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":9021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":9014,"name":"report","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9007,"src":"17443:6:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":9015,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17450:11:28","memberName":"queryParams","nodeType":"MemberAccess","referencedDeclaration":13365,"src":"17443:18:28","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":9016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17462:16:28","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13469,"src":"17443:35:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9017,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"17482:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17482:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9019,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17494:22:28","memberName":"witOracleQuerySettings","nodeType":"MemberAccess","referencedDeclaration":9404,"src":"17482:34:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"id":9020,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17517:12:28","memberName":"minWitnesses","nodeType":"MemberAccess","referencedDeclaration":7934,"src":"17482:47:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"17443:86:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e73756666696369656e74207769746e6573736573","id":9022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17544:24:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_446625dcee20e692e56df6821b3816f5cb711f6fd0450bf075b7dfb9645c2624","typeString":"literal_string \"insufficient witnesses\""},"value":"insufficient witnesses"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_446625dcee20e692e56df6821b3816f5cb711f6fd0450bf075b7dfb9645c2624","typeString":"literal_string \"insufficient witnesses\""}],"id":9013,"name":"_require","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9156,"src":"17420:8:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9023,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17420:159:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9024,"nodeType":"ExpressionStatement","src":"17420:159:28"},{"expression":{"arguments":[{"arguments":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9029,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"17646:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17646:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9031,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17658:32:28","memberName":"witOracleProofOfReserveRadonHash","nodeType":"MemberAccess","referencedDeclaration":9410,"src":"17646:44:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}],"expression":{"expression":{"id":9026,"name":"report","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9007,"src":"17623:6:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":9027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17630:12:28","memberName":"queryRadHash","nodeType":"MemberAccess","referencedDeclaration":13362,"src":"17623:19:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"id":9028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17643:2:28","memberName":"eq","nodeType":"MemberAccess","referencedDeclaration":14888,"src":"17623:22:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_RadonHash_$13250_$_t_userDefinedValueType$_RadonHash_$13250_$returns$_t_bool_$attached_to$_t_userDefinedValueType$_RadonHash_$13250_$","typeString":"function (Witnet.RadonHash,Witnet.RadonHash) pure returns (bool)"}},"id":9032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17623:68:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e76616c6964207261646f6e2068617368","id":9033,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17706:20:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_dfd4bbb814e892b3e2ec99b95494e942ebf6f805f72936fe808c47e016503ba5","typeString":"literal_string \"invalid radon hash\""},"value":"invalid radon hash"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_dfd4bbb814e892b3e2ec99b95494e942ebf6f805f72936fe808c47e016503ba5","typeString":"literal_string \"invalid radon hash\""}],"id":9025,"name":"_require","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9156,"src":"17600:8:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17600:137:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9035,"nodeType":"ExpressionStatement","src":"17600:137:28"},{"assignments":[9040],"declarations":[{"constant":false,"id":9040,"mutability":"mutable","name":"_witOracleProofOfReserve","nameLocation":"17856:24:28","nodeType":"VariableDeclaration","scope":9095,"src":"17831:49:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":9039,"nodeType":"UserDefinedTypeName","pathNode":{"id":9038,"name":"Witnet.DataResult","nameLocations":["17831:6:28","17838:10:28"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"17831:17:28"},"referencedDeclaration":13388,"src":"17831:17:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"id":9046,"initialValue":{"arguments":[{"id":9043,"name":"report","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9007,"src":"17940:6:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},{"id":9044,"name":"proof","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9009,"src":"17965:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":9041,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8151,"src":"17883:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}},"id":9042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17907:14:28","memberName":"pushDataReport","nodeType":"MemberAccess","referencedDeclaration":10047,"src":"17883:38:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_DataPushReport_$13371_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_struct$_DataResult_$13388_memory_ptr_$","typeString":"function (struct Witnet.DataPushReport memory,bytes memory) external returns (struct Witnet.DataResult memory)"}},"id":9045,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17883:102:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"nodeType":"VariableDeclarationStatement","src":"17831:154:28"},{"clauses":[{"block":{"id":9075,"nodeType":"Block","src":"18237:353:28","statements":[{"eventCall":{"arguments":[{"id":9055,"name":"_totalReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9052,"src":"18289:13:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"expression":{"id":9056,"name":"_witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9040,"src":"18322:24:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9057,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18347:9:28","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":13384,"src":"18322:34:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},{"expression":{"id":9058,"name":"_witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9040,"src":"18375:24:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9059,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18400:8:28","memberName":"drTxHash","nodeType":"MemberAccess","referencedDeclaration":13381,"src":"18375:33:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}],"id":9054,"name":"ReserveUpdate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7911,"src":"18257:13:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_userDefinedValueType$_Timestamp_$13254_$_t_userDefinedValueType$_TransactionHash_$13256_$returns$__$","typeString":"function (uint256,Witnet.Timestamp,Witnet.TransactionHash)"}},"id":9060,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18257:167:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9061,"nodeType":"EmitStatement","src":"18252:172:28"},{"expression":{"id":9066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9062,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"18439:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9063,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18439:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9064,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18451:22:28","memberName":"evmLastReserveNanowits","nodeType":"MemberAccess","referencedDeclaration":9394,"src":"18439:34:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":9065,"name":"_totalReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9052,"src":"18476:13:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"18439:50:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":9067,"nodeType":"ExpressionStatement","src":"18439:50:28"},{"expression":{"id":9073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9068,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"18504:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9069,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18504:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9070,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18516:23:28","memberName":"evmLastReserveTimestamp","nodeType":"MemberAccess","referencedDeclaration":9392,"src":"18504:35:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":9071,"name":"_witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9040,"src":"18542:24:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9072,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18567:9:28","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":13384,"src":"18542:34:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"src":"18504:72:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"id":9074,"nodeType":"ExpressionStatement","src":"18504:72:28"}]},"errorName":"","id":9076,"nodeType":"TryCatchClause","parameters":{"id":9053,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9052,"mutability":"mutable","name":"_totalReserve","nameLocation":"18202:13:28","nodeType":"VariableDeclaration","scope":9076,"src":"18195:20:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9051,"name":"uint64","nodeType":"ElementaryTypeName","src":"18195:6:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"18180:56:28"},"src":"18172:418:28"},{"block":{"id":9084,"nodeType":"Block","src":"18626:53:28","statements":[{"expression":{"arguments":[{"id":9081,"name":"_reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9078,"src":"18649:7:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9080,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9173,"src":"18641:7:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":9082,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18641:16:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9083,"nodeType":"ExpressionStatement","src":"18641:16:28"}]},"errorName":"Error","id":9085,"nodeType":"TryCatchClause","parameters":{"id":9079,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9078,"mutability":"mutable","name":"_reason","nameLocation":"18617:7:28","nodeType":"VariableDeclaration","scope":9085,"src":"18603:21:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9077,"name":"string","nodeType":"ElementaryTypeName","src":"18603:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"18602:23:28"},"src":"18591:88:28"},{"block":{"id":9092,"nodeType":"Block","src":"18701:45:28","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9089,"name":"_revertUnhandled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9181,"src":"18716:16:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$__$","typeString":"function () pure"}},"id":9090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18716:18:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9091,"nodeType":"ExpressionStatement","src":"18716:18:28"}]},"errorName":"","id":9093,"nodeType":"TryCatchClause","parameters":{"id":9088,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9087,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9093,"src":"18687:12:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9086,"name":"bytes","nodeType":"ElementaryTypeName","src":"18687:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"18686:14:28"},"src":"18680:66:28"}],"externalCall":{"arguments":[{"id":9049,"name":"_witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9040,"src":"18126:24:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}],"expression":{"id":9047,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9825,"src":"18069:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WrappedWITLib_$9825_$","typeString":"type(library WrappedWITLib)"}},"id":9048,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18083:28:28","memberName":"parseWitOracleProofOfReserve","nodeType":"MemberAccess","referencedDeclaration":9486,"src":"18069:42:28","typeDescriptions":{"typeIdentifier":"t_function_delegatecall_view$_t_struct$_DataResult_$13388_memory_ptr_$returns$_t_uint64_$","typeString":"function (struct Witnet.DataResult memory) view returns (uint64)"}},"id":9050,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18069:102:28","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":9094,"nodeType":"TryStatement","src":"18065:681:28"}]},"documentation":{"id":9004,"nodeType":"StructuredDocumentation","src":"17140:108:28","text":"@notice Process canonical Proof-of-Reserve reports from the Wit/Oracle blockchain, permissionlessly.    "},"functionSelector":"6d0d6a7e","id":9096,"implemented":true,"kind":"function","modifiers":[],"name":"pushDataReport","nameLocation":"17263:14:28","nodeType":"FunctionDefinition","overrides":{"id":9011,"nodeType":"OverrideSpecifier","overrides":[],"src":"17386:8:28"},"parameters":{"id":9010,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9007,"mutability":"mutable","name":"report","nameLocation":"17323:6:28","nodeType":"VariableDeclaration","scope":9096,"src":"17292:37:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport"},"typeName":{"id":9006,"nodeType":"UserDefinedTypeName","pathNode":{"id":9005,"name":"Witnet.DataPushReport","nameLocations":["17292:6:28","17299:14:28"],"nodeType":"IdentifierPath","referencedDeclaration":13371,"src":"17292:21:28"},"referencedDeclaration":13371,"src":"17292:21:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_storage_ptr","typeString":"struct Witnet.DataPushReport"}},"visibility":"internal"},{"constant":false,"id":9009,"mutability":"mutable","name":"proof","nameLocation":"17360:5:28","nodeType":"VariableDeclaration","scope":9096,"src":"17345:20:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9008,"name":"bytes","nodeType":"ElementaryTypeName","src":"17345:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"17277:99:28"},"returnParameters":{"id":9012,"nodeType":"ParameterList","parameters":[],"src":"17409:0:28"},"scope":9235,"src":"17254:1499:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":9139,"nodeType":"Block","src":"19284:385:28","statements":[{"assignments":[9109],"declarations":[{"constant":false,"id":9109,"mutability":"mutable","name":"_commonArgs","nameLocation":"19315:11:28","nodeType":"VariableDeclaration","scope":9139,"src":"19299:27:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":9107,"name":"string","nodeType":"ElementaryTypeName","src":"19299:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":9108,"nodeType":"ArrayTypeName","src":"19299:8:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"id":9115,"initialValue":{"arguments":[{"hexValue":"32","id":9113,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19342:1:28","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"}],"id":9112,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"19329:12:28","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (string memory[] memory)"},"typeName":{"baseType":{"id":9110,"name":"string","nodeType":"ElementaryTypeName","src":"19333:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":9111,"nodeType":"ArrayTypeName","src":"19333:8:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}}},"id":9114,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19329:15:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"19299:45:28"},{"expression":{"id":9121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":9116,"name":"_commonArgs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9109,"src":"19355:11:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":9118,"indexExpression":{"hexValue":"30","id":9117,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19367:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"19355:14:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":9119,"name":"witCustodianWrapper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8579,"src":"19372:19:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":9120,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19372:21:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"19355:38:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":9122,"nodeType":"ExpressionStatement","src":"19355:38:28"},{"expression":{"id":9127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":9123,"name":"_commonArgs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9109,"src":"19404:11:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":9125,"indexExpression":{"hexValue":"31","id":9124,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19416:1:28","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"19404:14:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":9126,"name":"_witCustodianUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9102,"src":"19421:28:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"19404:45:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":9128,"nodeType":"ExpressionStatement","src":"19404:45:28"},{"expression":{"id":9137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9129,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"19460:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9130,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19460:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9131,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"19472:32:28","memberName":"witOracleProofOfReserveRadonHash","nodeType":"MemberAccess","referencedDeclaration":9410,"src":"19460:44:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":9134,"name":"_commonArgs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9109,"src":"19600:11:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"id":9135,"name":"_witRpcProviders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9100,"src":"19630:16:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"},{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}],"expression":{"id":9132,"name":"witOracleCrossChainProofOfReserveTemplate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8154,"src":"19507:41:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"}},"id":9133,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19563:18:28","memberName":"verifyRadonRequest","nodeType":"MemberAccess","referencedDeclaration":10755,"src":"19507:74:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$returns$_t_userDefinedValueType$_RadonHash_$13250_$","typeString":"function (string memory[] memory,string memory[] memory) external returns (Witnet.RadonHash)"}},"id":9136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19507:154:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"src":"19460:201:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"id":9138,"nodeType":"ExpressionStatement","src":"19460:201:28"}]},"documentation":{"id":9097,"nodeType":"StructuredDocumentation","src":"19007:96:28","text":"@dev Formally verify cross-chain Radon request for notarizing custodian's proofs of reserve."},"id":9140,"implemented":true,"kind":"function","modifiers":[],"name":"__formallyVerifyRadonAssets","nameLocation":"19118:27:28","nodeType":"FunctionDefinition","parameters":{"id":9103,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9100,"mutability":"mutable","name":"_witRpcProviders","nameLocation":"19176:16:28","nodeType":"VariableDeclaration","scope":9140,"src":"19160:32:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":9098,"name":"string","nodeType":"ElementaryTypeName","src":"19160:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":9099,"nodeType":"ArrayTypeName","src":"19160:8:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":9102,"mutability":"mutable","name":"_witCustodianUnwrapperBech32","nameLocation":"19221:28:28","nodeType":"VariableDeclaration","scope":9140,"src":"19207:42:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9101,"name":"string","nodeType":"ElementaryTypeName","src":"19207:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"19145:115:28"},"returnParameters":{"id":9104,"nodeType":"ParameterList","parameters":[],"src":"19284:0:28"},"scope":9235,"src":"19109:560:28","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9155,"nodeType":"Block","src":"19747:76:28","statements":[{"condition":{"id":9148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"19762:10:28","subExpression":{"id":9147,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9142,"src":"19763:9:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9154,"nodeType":"IfStatement","src":"19758:58:28","trueBody":{"id":9153,"nodeType":"Block","src":"19774:42:28","statements":[{"expression":{"arguments":[{"id":9150,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9144,"src":"19797:6:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9149,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9173,"src":"19789:7:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":9151,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19789:15:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9152,"nodeType":"ExpressionStatement","src":"19789:15:28"}]}}]},"id":9156,"implemented":true,"kind":"function","modifiers":[],"name":"_require","nameLocation":"19686:8:28","nodeType":"FunctionDefinition","parameters":{"id":9145,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9142,"mutability":"mutable","name":"condition","nameLocation":"19700:9:28","nodeType":"VariableDeclaration","scope":9156,"src":"19695:14:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9141,"name":"bool","nodeType":"ElementaryTypeName","src":"19695:4:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9144,"mutability":"mutable","name":"reason","nameLocation":"19725:6:28","nodeType":"VariableDeclaration","scope":9156,"src":"19711:20:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9143,"name":"string","nodeType":"ElementaryTypeName","src":"19711:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"19694:38:28"},"returnParameters":{"id":9146,"nodeType":"ParameterList","parameters":[],"src":"19747:0:28"},"scope":9235,"src":"19677:146:28","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9172,"nodeType":"Block","src":"19884:148:28","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"577261707065645749543a20","id":9166,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"19958:14:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_6464deb7a08899e125b23ae34c4cefa9ab1fa68b40b002bbb3ffd32198544726","typeString":"literal_string \"WrappedWIT: \""},"value":"WrappedWIT: "},{"id":9167,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9158,"src":"19991:6:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_6464deb7a08899e125b23ae34c4cefa9ab1fa68b40b002bbb3ffd32198544726","typeString":"literal_string \"WrappedWIT: \""},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":9164,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"19923:3:28","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9165,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"19927:12:28","memberName":"encodePacked","nodeType":"MemberAccess","src":"19923:16:28","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19923:89:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9163,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19916:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":9162,"name":"string","nodeType":"ElementaryTypeName","src":"19916:6:28","typeDescriptions":{}}},"id":9169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19916:97:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9161,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"19895:6:28","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":9170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19895:129:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9171,"nodeType":"ExpressionStatement","src":"19895:129:28"}]},"id":9173,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"19840:7:28","nodeType":"FunctionDefinition","parameters":{"id":9159,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9158,"mutability":"mutable","name":"reason","nameLocation":"19862:6:28","nodeType":"VariableDeclaration","scope":9173,"src":"19848:20:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9157,"name":"string","nodeType":"ElementaryTypeName","src":"19848:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"19847:22:28"},"returnParameters":{"id":9160,"nodeType":"ParameterList","parameters":[],"src":"19884:0:28"},"scope":9235,"src":"19831:201:28","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9180,"nodeType":"Block","src":"20082:49:28","statements":[{"expression":{"arguments":[{"hexValue":"756e68616e646c656420657863657074696f6e","id":9177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"20101:21:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_5c95dcacdad1edf8f714c11fa97b874d2ac2973db690a22a70fce049ea559799","typeString":"literal_string \"unhandled exception\""},"value":"unhandled exception"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_5c95dcacdad1edf8f714c11fa97b874d2ac2973db690a22a70fce049ea559799","typeString":"literal_string \"unhandled exception\""}],"id":9176,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9173,"src":"20093:7:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":9178,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20093:30:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9179,"nodeType":"ExpressionStatement","src":"20093:30:28"}]},"id":9181,"implemented":true,"kind":"function","modifiers":[],"name":"_revertUnhandled","nameLocation":"20049:16:28","nodeType":"FunctionDefinition","parameters":{"id":9174,"nodeType":"ParameterList","parameters":[],"src":"20065:2:28"},"returnParameters":{"id":9175,"nodeType":"ParameterList","parameters":[],"src":"20082:0:28"},"scope":9235,"src":"20040:91:28","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9222,"nodeType":"Block","src":"20245:521:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":9194,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":9190,"name":"_witCustodianUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9183,"src":"20294:28:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9189,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"20288:5:28","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":9188,"name":"bytes","nodeType":"ElementaryTypeName","src":"20288:5:28","typeDescriptions":{}}},"id":9191,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20288:35:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9187,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"20278:9:28","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20278:46:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":9193,"name":"__witCustodianWrapperBech32Hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8162,"src":"20328:31:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"20278:81:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"756e61636365707461626c6520756e77726170706572","id":9195,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"20374:24:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_fd568fffd58e4623e9037429de35dafd51a2e3c636d36cf6c06518f7d2565153","typeString":"literal_string \"unacceptable unwrapper\""},"value":"unacceptable unwrapper"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_fd568fffd58e4623e9037429de35dafd51a2e3c636d36cf6c06518f7d2565153","typeString":"literal_string \"unacceptable unwrapper\""}],"id":9186,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"20256:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9196,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20256:153:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9197,"nodeType":"ExpressionStatement","src":"20256:153:28"},{"eventCall":{"arguments":[{"id":9199,"name":"_witCustodianUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9183,"src":"20447:28:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9198,"name":"NewCustodianUnwrapper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7901,"src":"20425:21:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory)"}},"id":9200,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20425:51:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9201,"nodeType":"EmitStatement","src":"20420:56:28"},{"expression":{"id":9213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9202,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"20487:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9203,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20487:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9204,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"20499:21:28","memberName":"witCustodianUnwrapper","nodeType":"MemberAccess","referencedDeclaration":9401,"src":"20487:33:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":9207,"name":"_witCustodianUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9183,"src":"20541:28:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9208,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"20571:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":9209,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20577:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"20571:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":9210,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8130,"src":"20588:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20571:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":9205,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"20523:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":9206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20530:10:28","memberName":"fromBech32","nodeType":"MemberAccess","referencedDeclaration":13909,"src":"20523:17:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_bool_$returns$_t_userDefinedValueType$_Address_$13240_$","typeString":"function (string memory,bool) pure returns (Witnet.Address)"}},"id":9212,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20523:85:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"src":"20487:121:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"id":9214,"nodeType":"ExpressionStatement","src":"20487:121:28"},{"expression":{"arguments":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9216,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"20661:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9217,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20661:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9218,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"20673:31:28","memberName":"witOracleCrossChainRpcProviders","nodeType":"MemberAccess","referencedDeclaration":9407,"src":"20661:43:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage","typeString":"string storage ref[] storage ref"}},{"id":9219,"name":"_witCustodianUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9183,"src":"20719:28:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage","typeString":"string storage ref[] storage ref"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9215,"name":"__formallyVerifyRadonAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9140,"src":"20619:27:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory[] memory,string memory)"}},"id":9220,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20619:139:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9221,"nodeType":"ExpressionStatement","src":"20619:139:28"}]},"id":9223,"implemented":true,"kind":"function","modifiers":[],"name":"__settleWitCustodianUnwrapper","nameLocation":"20148:29:28","nodeType":"FunctionDefinition","parameters":{"id":9184,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9183,"mutability":"mutable","name":"_witCustodianUnwrapperBech32","nameLocation":"20192:28:28","nodeType":"VariableDeclaration","scope":9223,"src":"20178:42:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9182,"name":"string","nodeType":"ElementaryTypeName","src":"20178:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"20177:44:28"},"returnParameters":{"id":9185,"nodeType":"ParameterList","parameters":[],"src":"20245:0:28"},"scope":9235,"src":"20139:627:28","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9233,"nodeType":"Block","src":"20849:46:28","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9229,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9825,"src":"20867:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WrappedWITLib_$9825_$","typeString":"type(library WrappedWITLib)"}},"id":9230,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20881:4:28","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":9796,"src":"20867:18:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9231,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20867:20:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"functionReturnParameters":9228,"id":9232,"nodeType":"Return","src":"20860:27:28"}]},"id":9234,"implemented":true,"kind":"function","modifiers":[],"name":"__storage","nameLocation":"20783:9:28","nodeType":"FunctionDefinition","parameters":{"id":9224,"nodeType":"ParameterList","parameters":[],"src":"20792:2:28"},"returnParameters":{"id":9228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9227,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9234,"src":"20818:29:28","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage"},"typeName":{"id":9226,"nodeType":"UserDefinedTypeName","pathNode":{"id":9225,"name":"WrappedWITLib.Storage","nameLocations":["20818:13:28","20832:7:28"],"nodeType":"IdentifierPath","referencedDeclaration":9421,"src":"20818:21:28"},"referencedDeclaration":9421,"src":"20818:21:28","typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage"}},"visibility":"internal"}],"src":"20817:31:28"},"scope":9235,"src":"20774:121:28","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":9236,"src":"1106:19792:28","usedErrors":[163,166,685,690,695,704,709,714,1434,1441,1659,1783,1785,3523,3528,3533,7891],"usedEvents":[15,24,171,653,1337,1346,7897,7901,7911,7922,7932]}],"src":"83:20817:28"},"id":28},"contracts/WrappedWITDeployer.sol":{"ast":{"absolutePath":"contracts/WrappedWITDeployer.sol","exportedSymbols":{"Create3":[7886],"Ownable":[562],"Ownable2Step":[648],"WrappedWITDeployer":[9348]},"id":9349,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9237,"literals":["solidity",">=","0.8",".20","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:32:29"},{"absolutePath":"@openzeppelin/contracts/access/Ownable2Step.sol","file":"@openzeppelin/contracts/access/Ownable2Step.sol","id":9238,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9349,"sourceUnit":649,"src":"71:57:29","symbolAliases":[],"unitAlias":""},{"absolutePath":"contracts/Create3.sol","file":"./Create3.sol","id":9240,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9349,"sourceUnit":7887,"src":"132:38:29","symbolAliases":[{"foreign":{"id":9239,"name":"Create3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7886,"src":"140:7:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":9242,"name":"Ownable2Step","nameLocations":["351:12:29"],"nodeType":"IdentifierPath","referencedDeclaration":648,"src":"351:12:29"},"id":9243,"nodeType":"InheritanceSpecifier","src":"351:12:29"}],"canonicalName":"WrappedWITDeployer","contractDependencies":[],"contractKind":"contract","documentation":{"id":9241,"nodeType":"StructuredDocumentation","src":"174:146:29","text":"@notice CREATE3 (EIP-3171) contract factory for deploying both canonical \n @notice and bridged versions of the Wrapped/WIT ERC-20 token."},"fullyImplemented":true,"id":9348,"linearizedBaseContracts":[9348,648,562,1649],"name":"WrappedWITDeployer","nameLocation":"329:18:29","nodeType":"ContractDefinition","nodes":[{"body":{"id":9250,"nodeType":"Block","src":"407:2:29","statements":[]},"id":9251,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"expression":{"id":9246,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"395:3:29","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":9247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"399:6:29","memberName":"sender","nodeType":"MemberAccess","src":"395:10:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":9248,"kind":"baseConstructorSpecifier","modifierName":{"id":9245,"name":"Ownable","nameLocations":["387:7:29"],"nodeType":"IdentifierPath","referencedDeclaration":562,"src":"387:7:29"},"nodeType":"ModifierInvocation","src":"387:19:29"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":9244,"nodeType":"ParameterList","parameters":[],"src":"384:2:29"},"returnParameters":{"id":9249,"nodeType":"ParameterList","parameters":[],"src":"407:0:29"},"scope":9348,"src":"373:36:29","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":9307,"nodeType":"Block","src":"1414:531:29","statements":[{"expression":{"id":9288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9271,"name":"_deployed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9269,"src":"1425:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":9276,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9254,"src":"1474:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9275,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1466:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9274,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1466:7:29","typeDescriptions":{}}},"id":9277,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1466:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"id":9280,"name":"creationCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9256,"src":"1529:12:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"arguments":[{"id":9283,"name":"evmRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9258,"src":"1593:22:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9284,"name":"witCustodianBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9262,"src":"1638:18:29","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":9281,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1560:3:29","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9282,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1564:6:29","memberName":"encode","nodeType":"MemberAccess","src":"1560:10:29","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1560:115:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9278,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1494:3:29","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9279,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1498:12:29","memberName":"encodePacked","nodeType":"MemberAccess","src":"1494:16:29","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1494:196:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9272,"name":"Create3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7886,"src":"1437:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Create3_$7886_$","typeString":"type(library Create3)"}},"id":9273,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1445:6:29","memberName":"deploy","nodeType":"MemberAccess","referencedDeclaration":7767,"src":"1437:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes32,bytes memory) returns (address)"}},"id":9287,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1437:264:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1425:276:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9289,"nodeType":"ExpressionStatement","src":"1425:276:29"},{"assignments":[9291,null],"declarations":[{"constant":false,"id":9291,"mutability":"mutable","name":"_success","nameLocation":"1718:8:29","nodeType":"VariableDeclaration","scope":9307,"src":"1713:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9290,"name":"bool","nodeType":"ElementaryTypeName","src":"1713:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":9301,"initialValue":{"arguments":[{"arguments":[{"hexValue":"696e697469616c697a6528616464726573732c737472696e6729","id":9296,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1784:28:29","typeDescriptions":{"typeIdentifier":"t_stringliteral_f399e22e5ddc44ddd58785aafd83fa9646fb12ca0a901658b6bb6f8ddc009f0a","typeString":"literal_string \"initialize(address,string)\""},"value":"initialize(address,string)"},{"id":9297,"name":"evmAuthority","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9260,"src":"1827:12:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9298,"name":"witUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9264,"src":"1854:18:29","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_f399e22e5ddc44ddd58785aafd83fa9646fb12ca0a901658b6bb6f8ddc009f0a","typeString":"literal_string \"initialize(address,string)\""},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":9294,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1746:3:29","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9295,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1750:19:29","memberName":"encodeWithSignature","nodeType":"MemberAccess","src":"1746:23:29","typeDescriptions":{"typeIdentifier":"t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (string memory) pure returns (bytes memory)"}},"id":9299,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1746:137:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9292,"name":"_deployed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9269,"src":"1731:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1741:4:29","memberName":"call","nodeType":"MemberAccess","src":"1731:14:29","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":9300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1731:153:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"1712:172:29"},{"expression":{"arguments":[{"id":9303,"name":"_success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9291,"src":"1903:8:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e697469616c697a6174696f6e206661696c6564","id":9304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1913:23:29","typeDescriptions":{"typeIdentifier":"t_stringliteral_d823f41a048e1744d97ebcf74e0bf47336b005695e7c8e7055976ce95317a865","typeString":"literal_string \"initialization failed\""},"value":"initialization failed"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d823f41a048e1744d97ebcf74e0bf47336b005695e7c8e7055976ce95317a865","typeString":"literal_string \"initialization failed\""}],"id":9302,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"1895:7:29","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1895:42:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9306,"nodeType":"ExpressionStatement","src":"1895:42:29"}]},"documentation":{"id":9252,"nodeType":"StructuredDocumentation","src":"417:626:29","text":"@notice Deploy canonical version of the WrappedWIT token.\n @param salt Salt that determines the address of the new contract.\n @param creationCode Creation bytecode of the canonical implementation of the Wrapped/WIT token.\n @param evmRadonRequestFactory Radon Request Factory artifact address (bound to the Wit/Oracle bridge contract).\n @param evmAuthority EVM address that will be granted permissions for altering authoritative settings.\n @param witCustodianBech32 Immutable WIT/ Custodian cold wallet address. \n @param witUnwrapperBech32 WIT/ Custodian hot wallet address. "},"functionSelector":"f02ef925","id":9308,"implemented":true,"kind":"function","modifiers":[{"id":9267,"kind":"modifierInvocation","modifierName":{"id":9266,"name":"onlyOwner","nameLocations":["1362:9:29"],"nodeType":"IdentifierPath","referencedDeclaration":473,"src":"1362:9:29"},"nodeType":"ModifierInvocation","src":"1362:9:29"}],"name":"deployCanonical","nameLocation":"1058:15:29","nodeType":"FunctionDefinition","parameters":{"id":9265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9254,"mutability":"mutable","name":"salt","nameLocation":"1096:4:29","nodeType":"VariableDeclaration","scope":9308,"src":"1088:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9253,"name":"uint256","nodeType":"ElementaryTypeName","src":"1088:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9256,"mutability":"mutable","name":"creationCode","nameLocation":"1131:12:29","nodeType":"VariableDeclaration","scope":9308,"src":"1116:27:29","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9255,"name":"bytes","nodeType":"ElementaryTypeName","src":"1116:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":9258,"mutability":"mutable","name":"evmRadonRequestFactory","nameLocation":"1166:22:29","nodeType":"VariableDeclaration","scope":9308,"src":"1158:30:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9257,"name":"address","nodeType":"ElementaryTypeName","src":"1158:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9260,"mutability":"mutable","name":"evmAuthority","nameLocation":"1211:12:29","nodeType":"VariableDeclaration","scope":9308,"src":"1203:20:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9259,"name":"address","nodeType":"ElementaryTypeName","src":"1203:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9262,"mutability":"mutable","name":"witCustodianBech32","nameLocation":"1252:18:29","nodeType":"VariableDeclaration","scope":9308,"src":"1238:32:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9261,"name":"string","nodeType":"ElementaryTypeName","src":"1238:6:29","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":9264,"mutability":"mutable","name":"witUnwrapperBech32","nameLocation":"1299:18:29","nodeType":"VariableDeclaration","scope":9308,"src":"1285:32:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9263,"name":"string","nodeType":"ElementaryTypeName","src":"1285:6:29","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1073:255:29"},"returnParameters":{"id":9270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9269,"mutability":"mutable","name":"_deployed","nameLocation":"1398:9:29","nodeType":"VariableDeclaration","scope":9308,"src":"1390:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9268,"name":"address","nodeType":"ElementaryTypeName","src":"1390:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1389:19:29"},"scope":9348,"src":"1049:896:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":9329,"nodeType":"Block","src":"2386:106:29","statements":[{"expression":{"arguments":[{"arguments":[{"id":9324,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9311,"src":"2441:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9323,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2433:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9322,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2433:7:29","typeDescriptions":{}}},"id":9325,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2433:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9326,"name":"creationCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9313,"src":"2461:12:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":9320,"name":"Create3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7886,"src":"2404:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Create3_$7886_$","typeString":"type(library Create3)"}},"id":9321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2412:6:29","memberName":"deploy","nodeType":"MemberAccess","referencedDeclaration":7767,"src":"2404:14:29","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes32,bytes memory) returns (address)"}},"id":9327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2404:80:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":9319,"id":9328,"nodeType":"Return","src":"2397:87:29"}]},"documentation":{"id":9309,"nodeType":"StructuredDocumentation","src":"1953:249:29","text":"@notice Deploy immutable bridged version of the WrappedWIT token.\n @param salt Salt that determines the address of the new contract.\n @param creationCode Creation bytecode of some bridged implementation of the Wrapped/WIT token. "},"functionSelector":"c7d4684f","id":9330,"implemented":true,"kind":"function","modifiers":[{"id":9316,"kind":"modifierInvocation","modifierName":{"id":9315,"name":"onlyOwner","nameLocations":["2344:9:29"],"nodeType":"IdentifierPath","referencedDeclaration":473,"src":"2344:9:29"},"nodeType":"ModifierInvocation","src":"2344:9:29"}],"name":"deployBridged","nameLocation":"2217:13:29","nodeType":"FunctionDefinition","parameters":{"id":9314,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9311,"mutability":"mutable","name":"salt","nameLocation":"2253:4:29","nodeType":"VariableDeclaration","scope":9330,"src":"2245:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9310,"name":"uint256","nodeType":"ElementaryTypeName","src":"2245:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9313,"mutability":"mutable","name":"creationCode","nameLocation":"2287:12:29","nodeType":"VariableDeclaration","scope":9330,"src":"2272:27:29","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9312,"name":"bytes","nodeType":"ElementaryTypeName","src":"2272:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2230:80:29"},"returnParameters":{"id":9319,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9318,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9330,"src":"2372:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9317,"name":"address","nodeType":"ElementaryTypeName","src":"2372:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2371:9:29"},"scope":9348,"src":"2208:284:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":9346,"nodeType":"Block","src":"2851:62:29","statements":[{"expression":{"arguments":[{"arguments":[{"id":9342,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9333,"src":"2899:4:29","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":"2891:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9340,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2891:7:29","typeDescriptions":{}}},"id":9343,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2891:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":9338,"name":"Create3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7886,"src":"2869:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Create3_$7886_$","typeString":"type(library Create3)"}},"id":9339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2877:13:29","memberName":"determineAddr","nodeType":"MemberAccess","referencedDeclaration":7885,"src":"2869:21:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_address_$","typeString":"function (bytes32) view returns (address)"}},"id":9344,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2869:36:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":9337,"id":9345,"nodeType":"Return","src":"2862:43:29"}]},"documentation":{"id":9331,"nodeType":"StructuredDocumentation","src":"2500:247:29","text":"@notice Computes the resulting address of a contract deployed using address(this) and the given `salt`.\n @param salt Salt that determines the address of the new contract.\n @return addr of the deployed contract, reverts on error"},"functionSelector":"58ebadb0","id":9347,"implemented":true,"kind":"function","modifiers":[],"name":"determineAddr","nameLocation":"2762:13:29","nodeType":"FunctionDefinition","parameters":{"id":9334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9333,"mutability":"mutable","name":"salt","nameLocation":"2784:4:29","nodeType":"VariableDeclaration","scope":9347,"src":"2776:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9332,"name":"uint256","nodeType":"ElementaryTypeName","src":"2776:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2775:14:29"},"returnParameters":{"id":9337,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9336,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9347,"src":"2837:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9335,"name":"address","nodeType":"ElementaryTypeName","src":"2837:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2836:9:29"},"scope":9348,"src":"2753:160:29","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":9349,"src":"320:2596:29","usedErrors":[428,433],"usedEvents":[439,577]}],"src":"35:2883:29"},"id":29},"contracts/WrappedWITLib.sol":{"ast":{"absolutePath":"contracts/WrappedWITLib.sol","exportedSymbols":{"Bech32":[12200],"IWitAppliance":[9990],"IWitOracle":[10055],"IWitOracleAppliance":[10067],"IWitOracleQueriable":[10250],"IWitOracleQueriableEvents":[10347],"IWitOracleRadonRegistry":[10616],"IWitOracleRadonRequestModal":[10761],"IWrappedWIT":[8082],"Secp256k1":[13216],"WitOracle":[9915],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200],"WrappedWITLib":[9825]},"id":9826,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9350,"literals":["solidity",">=","0.8",".20","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:32:30"},{"absolutePath":"contracts/IWrappedWIT.sol","file":"./IWrappedWIT.sol","id":9351,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9826,"sourceUnit":8083,"src":"71:27:30","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol","file":"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol","id":9353,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9826,"sourceUnit":9941,"src":"100:110:30","symbolAliases":[{"foreign":{"id":9352,"name":"IWitOracleRadonRequestModal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10761,"src":"108:27:30","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"WrappedWITLib","contractDependencies":[],"contractKind":"library","documentation":{"id":9354,"nodeType":"StructuredDocumentation","src":"214:93:30","text":"@title Witnet Request Board base data model library\n @author The Witnet Foundation."},"fullyImplemented":true,"id":9825,"linearizedBaseContracts":[9825],"name":"WrappedWITLib","nameLocation":"315:13:30","nodeType":"ContractDefinition","nodes":[{"global":false,"id":9358,"libraryName":{"id":9355,"name":"Witnet","nameLocations":["346:6:30"],"nodeType":"IdentifierPath","referencedDeclaration":16767,"src":"346:6:30"},"nodeType":"UsingForDirective","src":"340:35:30","typeName":{"id":9357,"nodeType":"UserDefinedTypeName","pathNode":{"id":9356,"name":"Witnet.DataResult","nameLocations":["357:6:30","364:10:30"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"357:17:30"},"referencedDeclaration":13388,"src":"357:17:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}}},{"global":false,"id":9362,"libraryName":{"id":9359,"name":"Witnet","nameLocations":["387:6:30"],"nodeType":"IdentifierPath","referencedDeclaration":16767,"src":"387:6:30"},"nodeType":"UsingForDirective","src":"381:34:30","typeName":{"id":9361,"nodeType":"UserDefinedTypeName","pathNode":{"id":9360,"name":"Witnet.Timestamp","nameLocations":["398:6:30","405:9:30"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"398:16:30"},"referencedDeclaration":13254,"src":"398:16:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}}},{"global":false,"id":9366,"libraryName":{"id":9363,"name":"WitnetCBOR","nameLocations":["427:10:30"],"nodeType":"IdentifierPath","referencedDeclaration":20200,"src":"427:10:30"},"nodeType":"UsingForDirective","src":"421:37:30","typeName":{"id":9365,"nodeType":"UserDefinedTypeName","pathNode":{"id":9364,"name":"WitnetCBOR.CBOR","nameLocations":["442:10:30","453:4:30"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"442:15:30"},"referencedDeclaration":18684,"src":"442:15:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}}},{"constant":true,"id":9369,"mutability":"constant","name":"_WRAPPED_WIT_STORAGE_SLOT","nameLocation":"496:25:30","nodeType":"VariableDeclaration","scope":9825,"src":"470:178:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9367,"name":"bytes32","nodeType":"ElementaryTypeName","src":"470:7:30","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307836313136343733363538653837623032336537663231356431323263303034386633643761363639643864663934613535363566306339353837316335386639","id":9368,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"582:66:30","typeDescriptions":{"typeIdentifier":"t_rational_43913708437192824882250454812272373273038267368218318558024277921754678843641_by_1","typeString":"int_const 4391...(69 digits omitted)...3641"},"value":"0x6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58f9"},"visibility":"internal"},{"constant":true,"id":9372,"mutability":"constant","name":"_PERCENT_FACTOR","nameLocation":"683:15:30","nodeType":"VariableDeclaration","scope":9825,"src":"657:47:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9370,"name":"uint256","nodeType":"ElementaryTypeName","src":"657:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"313030","id":9371,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"701:3:30","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"visibility":"internal"},{"constant":true,"id":9375,"mutability":"constant","name":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_GAS_LIMIT","nameLocation":"737:49:30","nodeType":"VariableDeclaration","scope":9825,"src":"711:85:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":9373,"name":"uint24","nodeType":"ElementaryTypeName","src":"711:6:30","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"value":{"hexValue":"3232305f303030","id":9374,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"789:7:30","typeDescriptions":{"typeIdentifier":"t_rational_220000_by_1","typeString":"int_const 220000"},"value":"220_000"},"visibility":"internal"},{"constant":true,"id":9382,"mutability":"constant","name":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED","nameLocation":"830:49:30","nodeType":"VariableDeclaration","scope":9825,"src":"804:95:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9376,"name":"uint256","nodeType":"ElementaryTypeName","src":"804:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"expression":{"arguments":[{"id":9379,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"887:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":9378,"name":"uint256","nodeType":"ElementaryTypeName","src":"887:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":9377,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"882:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":9380,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"882:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":9381,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"896:3:30","memberName":"max","nodeType":"MemberAccess","src":"882:17:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":true,"id":9385,"mutability":"constant","name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MAX_RESULT_SIZE","nameLocation":"932:46:30","nodeType":"VariableDeclaration","scope":9825,"src":"906:78:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":9383,"name":"uint16","nodeType":"ElementaryTypeName","src":"906:6:30","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"value":{"hexValue":"323536","id":9384,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"981:3:30","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"value":"256"},"visibility":"internal"},{"canonicalName":"WrappedWITLib.Storage","id":9421,"members":[{"constant":false,"id":9387,"mutability":"mutable","name":"evmCurator","nameLocation":"1027:10:30","nodeType":"VariableDeclaration","scope":9421,"src":"1019:18:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9386,"name":"address","nodeType":"ElementaryTypeName","src":"1019:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9389,"mutability":"mutable","name":"_0","nameLocation":"1046:2:30","nodeType":"VariableDeclaration","scope":9421,"src":"1039:9:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9388,"name":"uint32","nodeType":"ElementaryTypeName","src":"1039:6:30","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":9392,"mutability":"mutable","name":"evmLastReserveTimestamp","nameLocation":"1077:23:30","nodeType":"VariableDeclaration","scope":9421,"src":"1060:40:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":9391,"nodeType":"UserDefinedTypeName","pathNode":{"id":9390,"name":"Witnet.Timestamp","nameLocations":["1060:6:30","1067:9:30"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"1060:16:30"},"referencedDeclaration":13254,"src":"1060:16:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":9394,"mutability":"mutable","name":"evmLastReserveNanowits","nameLocation":"1119:22:30","nodeType":"VariableDeclaration","scope":9421,"src":"1111:30:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9393,"name":"uint64","nodeType":"ElementaryTypeName","src":"1111:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9396,"mutability":"mutable","name":"evmUnwraps","nameLocation":"1161:10:30","nodeType":"VariableDeclaration","scope":9421,"src":"1153:18:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9395,"name":"uint64","nodeType":"ElementaryTypeName","src":"1153:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9398,"mutability":"mutable","name":"evmWraps","nameLocation":"1191:8:30","nodeType":"VariableDeclaration","scope":9421,"src":"1183:16:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9397,"name":"uint64","nodeType":"ElementaryTypeName","src":"1183:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9401,"mutability":"mutable","name":"witCustodianUnwrapper","nameLocation":"1225:21:30","nodeType":"VariableDeclaration","scope":9421,"src":"1210:36:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"},"typeName":{"id":9400,"nodeType":"UserDefinedTypeName","pathNode":{"id":9399,"name":"Witnet.Address","nameLocations":["1210:6:30","1217:7:30"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"1210:14:30"},"referencedDeclaration":13240,"src":"1210:14:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"visibility":"internal"},{"constant":false,"id":9404,"mutability":"mutable","name":"witOracleQuerySettings","nameLocation":"1287:22:30","nodeType":"VariableDeclaration","scope":9421,"src":"1257:52:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"},"typeName":{"id":9403,"nodeType":"UserDefinedTypeName","pathNode":{"id":9402,"name":"IWrappedWIT.WitOracleSettings","nameLocations":["1257:11:30","1269:17:30"],"nodeType":"IdentifierPath","referencedDeclaration":7941,"src":"1257:29:30"},"referencedDeclaration":7941,"src":"1257:29:30","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"}},"visibility":"internal"},{"constant":false,"id":9407,"mutability":"mutable","name":"witOracleCrossChainRpcProviders","nameLocation":"1329:31:30","nodeType":"VariableDeclaration","scope":9421,"src":"1320:40:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":9405,"name":"string","nodeType":"ElementaryTypeName","src":"1320:6:30","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":9406,"nodeType":"ArrayTypeName","src":"1320:8:30","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":9410,"mutability":"mutable","name":"witOracleProofOfReserveRadonHash","nameLocation":"1388:32:30","nodeType":"VariableDeclaration","scope":9421,"src":"1371:49:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":9409,"nodeType":"UserDefinedTypeName","pathNode":{"id":9408,"name":"Witnet.RadonHash","nameLocations":["1371:6:30","1378:9:30"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"1371:16:30"},"referencedDeclaration":13250,"src":"1371:16:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":9415,"mutability":"mutable","name":"witOracleWrappingTransactionLastQueryId","nameLocation":"1485:39:30","nodeType":"VariableDeclaration","scope":9421,"src":"1441:83:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13256_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"},"typeName":{"id":9414,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":9412,"nodeType":"UserDefinedTypeName","pathNode":{"id":9411,"name":"Witnet.TransactionHash","nameLocations":["1450:6:30","1457:15:30"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"1450:22:30"},"referencedDeclaration":13256,"src":"1450:22:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"nodeType":"Mapping","src":"1441:43:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13256_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":9413,"name":"uint256","nodeType":"ElementaryTypeName","src":"1476:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"id":9420,"mutability":"mutable","name":"witOracleWrappingQueryTransactionHash","nameLocation":"1579:37:30","nodeType":"VariableDeclaration","scope":9421,"src":"1535:81:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_userDefinedValueType$_TransactionHash_$13256_$","typeString":"mapping(uint256 => Witnet.TransactionHash)"},"typeName":{"id":9419,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":9416,"name":"uint256","nodeType":"ElementaryTypeName","src":"1544:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1535:43:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_userDefinedValueType$_TransactionHash_$13256_$","typeString":"mapping(uint256 => Witnet.TransactionHash)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":9418,"nodeType":"UserDefinedTypeName","pathNode":{"id":9417,"name":"Witnet.TransactionHash","nameLocations":["1555:6:30","1562:15:30"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"1555:22:30"},"referencedDeclaration":13256,"src":"1555:22:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}}},"visibility":"internal"}],"name":"Storage","nameLocation":"1000:7:30","nodeType":"StructDefinition","scope":9825,"src":"993:631:30","visibility":"public"},{"body":{"id":9485,"nodeType":"Block","src":"2024:603:30","statements":[{"assignments":[9433],"declarations":[{"constant":false,"id":9433,"mutability":"mutable","name":"_witBalance","nameLocation":"2051:11:30","nodeType":"VariableDeclaration","scope":9485,"src":"2035:27:30","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[]"},"typeName":{"baseType":{"id":9431,"name":"uint64","nodeType":"ElementaryTypeName","src":"2035:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":9432,"nodeType":"ArrayTypeName","src":"2035:8:30","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_storage_ptr","typeString":"uint64[]"}},"visibility":"internal"}],"id":9434,"nodeType":"VariableDeclarationStatement","src":"2035:27:30"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"id":9440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9435,"name":"witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9424,"src":"2077:23:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9436,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2101:6:30","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":13375,"src":"2077:30:30","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":9437,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"2111:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":9438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2118:12:30","memberName":"ResultStatus","nodeType":"MemberAccess","referencedDeclaration":13729,"src":"2111:19:30","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13729_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":9439,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2131:8:30","memberName":"NoErrors","nodeType":"MemberAccess","referencedDeclaration":13473,"src":"2111:28:30","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"src":"2077:62:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9448,"nodeType":"IfStatement","src":"2073:151:30","trueBody":{"id":9447,"nodeType":"Block","src":"2141:83:30","statements":[{"expression":{"id":9445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9441,"name":"_witBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9433,"src":"2156:11:30","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9442,"name":"witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9424,"src":"2170:23:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9443,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2194:16:30","memberName":"fetchUint64Array","nodeType":"MemberAccess","referencedDeclaration":14576,"src":"2170:40:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_DataResult_$13388_memory_ptr_$returns$_t_array$_t_uint64_$dyn_memory_ptr_$attached_to$_t_struct$_DataResult_$13388_memory_ptr_$","typeString":"function (struct Witnet.DataResult memory) pure returns (uint64[] memory)"}},"id":9444,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2170:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"src":"2156:56:30","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"id":9446,"nodeType":"ExpressionStatement","src":"2156:56:30"}]}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"id":9455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9450,"name":"witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9424,"src":"2256:23:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9451,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2280:6:30","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":13375,"src":"2256:30:30","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":9452,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"2290:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":9453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2297:12:30","memberName":"ResultStatus","nodeType":"MemberAccess","referencedDeclaration":13729,"src":"2290:19:30","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13729_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":9454,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2310:8:30","memberName":"NoErrors","nodeType":"MemberAccess","referencedDeclaration":13473,"src":"2290:28:30","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"src":"2256:62:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"arguments":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9459,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"2376:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9460,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2376:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9461,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2383:23:30","memberName":"evmLastReserveTimestamp","nodeType":"MemberAccess","referencedDeclaration":9392,"src":"2376:30:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}],"expression":{"expression":{"id":9456,"name":"witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9424,"src":"2339:23:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9457,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2363:9:30","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":13384,"src":"2339:33:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"id":9458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2373:2:30","memberName":"gt","nodeType":"MemberAccess","referencedDeclaration":15063,"src":"2339:36:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Timestamp_$13254_$_t_userDefinedValueType$_Timestamp_$13254_$returns$_t_bool_$attached_to$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"function (Witnet.Timestamp,Witnet.Timestamp) pure returns (bool)"}},"id":9462,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2339:68:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2256:151:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9464,"name":"_witBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9433,"src":"2428:11:30","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"id":9465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2440:6:30","memberName":"length","nodeType":"MemberAccess","src":"2428:18:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"33","id":9466,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2450:1:30","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"2428:23:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2256:195:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e76616c6964207265706f7274","id":9469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2466:16:30","typeDescriptions":{"typeIdentifier":"t_stringliteral_efa3da54425289ec39e5b74649f827cb6b11f755cde117b4b47bf615b5961b8c","typeString":"literal_string \"invalid report\""},"value":"invalid report"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_efa3da54425289ec39e5b74649f827cb6b11f755cde117b4b47bf615b5961b8c","typeString":"literal_string \"invalid report\""}],"id":9449,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2234:7:30","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9470,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2234:259:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9471,"nodeType":"ExpressionStatement","src":"2234:259:30"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":9482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":9478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":9472,"name":"_witBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9433,"src":"2526:11:30","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"id":9474,"indexExpression":{"hexValue":"30","id":9473,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2538:1:30","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2526:14:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"baseExpression":{"id":9475,"name":"_witBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9433,"src":"2560:11:30","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"id":9477,"indexExpression":{"hexValue":"31","id":9476,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2572:1:30","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2560:14:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"2526:48:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"baseExpression":{"id":9479,"name":"_witBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9433,"src":"2594:11:30","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"id":9481,"indexExpression":{"hexValue":"32","id":9480,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2606:1:30","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2594:14:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"2526:82:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"id":9483,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2511:108:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":9428,"id":9484,"nodeType":"Return","src":"2504:115:30"}]},"functionSelector":"67c4440f","id":9486,"implemented":true,"kind":"function","modifiers":[],"name":"parseWitOracleProofOfReserve","nameLocation":"1891:28:30","nodeType":"FunctionDefinition","parameters":{"id":9425,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9424,"mutability":"mutable","name":"witOracleProofOfReserve","nameLocation":"1945:23:30","nodeType":"VariableDeclaration","scope":9486,"src":"1920:48:30","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":9423,"nodeType":"UserDefinedTypeName","pathNode":{"id":9422,"name":"Witnet.DataResult","nameLocations":["1920:6:30","1927:10:30"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"1920:17:30"},"referencedDeclaration":13388,"src":"1920:17:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"1919:50:30"},"returnParameters":{"id":9428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9427,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9486,"src":"2011:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9426,"name":"uint64","nodeType":"ElementaryTypeName","src":"2011:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"2010:8:30"},"scope":9825,"src":"1882:745:30","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":9671,"nodeType":"Block","src":"3052:2976:30","statements":[{"expression":{"id":9510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9504,"name":"_witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9494,"src":"3063:32:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9505,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"3098:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3098:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9507,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3105:37:30","memberName":"witOracleWrappingQueryTransactionHash","nodeType":"MemberAccess","referencedDeclaration":9420,"src":"3098:44:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_userDefinedValueType$_TransactionHash_$13256_$","typeString":"mapping(uint256 => Witnet.TransactionHash)"}},"id":9509,"indexExpression":{"id":9508,"name":"witOracleQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9488,"src":"3143:16:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3098:62:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"src":"3063:97:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"id":9511,"nodeType":"ExpressionStatement","src":"3063:97:30"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":9522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9516,"name":"_witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9494,"src":"3318:32:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}],"expression":{"expression":{"id":9513,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"3288:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":9514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3295:15:30","memberName":"TransactionHash","nodeType":"MemberAccess","referencedDeclaration":13256,"src":"3288:22:30","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_TransactionHash_$13256_$","typeString":"type(Witnet.TransactionHash)"}},"id":9515,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3311:6:30","memberName":"unwrap","nodeType":"MemberAccess","src":"3288:29:30","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_TransactionHash_$13256_$returns$_t_bytes32_$","typeString":"function (Witnet.TransactionHash) pure returns (bytes32)"}},"id":9517,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3288:63:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":9520,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3363:1:30","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":9519,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3355:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9518,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3355:7:30","typeDescriptions":{}}},"id":9521,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3355:10:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3288:77:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e76616c6964207175657279206964","id":9523,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3381:18:30","typeDescriptions":{"typeIdentifier":"t_stringliteral_a70485f3df10f36042e7631cf9bc7cfff2923fda111ae82f3320179a3f1a9c65","typeString":"literal_string \"invalid query id\""},"value":"invalid query id"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a70485f3df10f36042e7631cf9bc7cfff2923fda111ae82f3320179a3f1a9c65","typeString":"literal_string \"invalid query id\""}],"id":9512,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3266:7:30","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9524,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3266:144:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9525,"nodeType":"ExpressionStatement","src":"3266:144:30"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9533,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9527,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"3527:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3527:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9529,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3534:39:30","memberName":"witOracleWrappingTransactionLastQueryId","nodeType":"MemberAccess","referencedDeclaration":9415,"src":"3527:46:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13256_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"}},"id":9531,"indexExpression":{"id":9530,"name":"_witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9494,"src":"3574:32:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3527:80:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":9532,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9382,"src":"3628:49:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3527:150:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"7769742f7772617020747820616c7265616479206d696e746564","id":9534,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3693:28:30","typeDescriptions":{"typeIdentifier":"t_stringliteral_dc598d76fa83f6ee02aa2a85fa4a344836c798f64f101c149de97b066339f648","typeString":"literal_string \"wit/wrap tx already minted\""},"value":"wit/wrap tx already minted"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_dc598d76fa83f6ee02aa2a85fa4a344836c798f64f101c149de97b066339f648","typeString":"literal_string \"wit/wrap tx already minted\""}],"id":9526,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3505:7:30","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9535,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3505:227:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9536,"nodeType":"ExpressionStatement","src":"3505:227:30"},{"assignments":[9541],"declarations":[{"constant":false,"id":9541,"mutability":"mutable","name":"_witOracleQueryResult","nameLocation":"3819:21:30","nodeType":"VariableDeclaration","scope":9671,"src":"3794:46:30","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":9540,"nodeType":"UserDefinedTypeName","pathNode":{"id":9539,"name":"Witnet.DataResult","nameLocations":["3794:6:30","3801:10:30"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"3794:17:30"},"referencedDeclaration":13388,"src":"3794:17:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"id":9549,"initialValue":{"arguments":[{"id":9544,"name":"witOracleQueryResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9490,"src":"3854:20:30","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"components":[{"expression":{"id":9545,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"3877:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":9546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3884:10:30","memberName":"DataResult","nodeType":"MemberAccess","referencedDeclaration":13388,"src":"3877:17:30","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_DataResult_$13388_storage_ptr_$","typeString":"type(struct Witnet.DataResult storage pointer)"}}],"id":9547,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3876:19:30","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_DataResult_$13388_storage_ptr_$","typeString":"type(struct Witnet.DataResult storage pointer)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_type$_t_struct$_DataResult_$13388_storage_ptr_$","typeString":"type(struct Witnet.DataResult storage pointer)"}],"expression":{"id":9542,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3843:3:30","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9543,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3847:6:30","memberName":"decode","nodeType":"MemberAccess","src":"3843:10:30","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":9548,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3843:53:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"nodeType":"VariableDeclarationStatement","src":"3794:102:30"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"id":9556,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9551,"name":"_witOracleQueryResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"3997:21:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9552,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4019:6:30","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":13375,"src":"3997:28:30","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":9553,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"4029:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":9554,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4036:12:30","memberName":"ResultStatus","nodeType":"MemberAccess","referencedDeclaration":13729,"src":"4029:19:30","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13729_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":9555,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4049:8:30","memberName":"NoErrors","nodeType":"MemberAccess","referencedDeclaration":13473,"src":"4029:28:30","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"src":"3997:60:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"717565727920736f6c7665642077697468206572726f7273","id":9557,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4072:26:30","typeDescriptions":{"typeIdentifier":"t_stringliteral_fdd334fdf7e6fae9f5312aa3c59478f1e12a48beff4641205e14335f60fec3d9","typeString":"literal_string \"query solved with errors\""},"value":"query solved with errors"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_fdd334fdf7e6fae9f5312aa3c59478f1e12a48beff4641205e14335f60fec3d9","typeString":"literal_string \"query solved with errors\""}],"id":9550,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3975:7:30","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3975:134:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9559,"nodeType":"ExpressionStatement","src":"3975:134:30"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"},"id":9566,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9561,"name":"_witOracleQueryResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"4234:21:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9562,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4256:8:30","memberName":"dataType","nodeType":"MemberAccess","referencedDeclaration":13378,"src":"4234:30:30","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":9563,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"4268:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":9564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4275:14:30","memberName":"RadonDataTypes","nodeType":"MemberAccess","referencedDeclaration":13751,"src":"4268:21:30","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":9565,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4290:5:30","memberName":"Array","nodeType":"MemberAccess","referencedDeclaration":13732,"src":"4268:27:30","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"src":"4234:61:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e76616c696420717565727920726573756c74","id":9567,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4311:22:30","typeDescriptions":{"typeIdentifier":"t_stringliteral_38d45eac4f3206b66b0878b83795d9a0ce11d11e2db36d1c229a31b6f19f3503","typeString":"literal_string \"invalid query result\""},"value":"invalid query result"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_38d45eac4f3206b66b0878b83795d9a0ce11d11e2db36d1c229a31b6f19f3503","typeString":"literal_string \"invalid query result\""}],"id":9560,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4212:7:30","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9568,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4212:132:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9569,"nodeType":"ExpressionStatement","src":"4212:132:30"},{"expression":{"id":9576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9570,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"4478:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4478:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9572,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4485:39:30","memberName":"witOracleWrappingTransactionLastQueryId","nodeType":"MemberAccess","referencedDeclaration":9415,"src":"4478:46:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13256_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"}},"id":9574,"indexExpression":{"id":9573,"name":"_witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9494,"src":"4525:32:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4478:80:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":9575,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9382,"src":"4561:49:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4478:132:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9577,"nodeType":"ExpressionStatement","src":"4478:132:30"},{"assignments":[9583],"declarations":[{"constant":false,"id":9583,"mutability":"mutable","name":"_metadata","nameLocation":"4720:9:30","nodeType":"VariableDeclaration","scope":9671,"src":"4695:34:30","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR[]"},"typeName":{"baseType":{"id":9581,"nodeType":"UserDefinedTypeName","pathNode":{"id":9580,"name":"WitnetCBOR.CBOR","nameLocations":["4695:10:30","4706:4:30"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"4695:15:30"},"referencedDeclaration":18684,"src":"4695:15:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":9582,"nodeType":"ArrayTypeName","src":"4695:17:30","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}},"visibility":"internal"}],"id":9587,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9584,"name":"_witOracleQueryResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9541,"src":"4732:21:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9585,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4754:14:30","memberName":"fetchCborArray","nodeType":"MemberAccess","referencedDeclaration":14416,"src":"4732:36:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_DataResult_$13388_memory_ptr_$returns$_t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr_$attached_to$_t_struct$_DataResult_$13388_memory_ptr_$","typeString":"function (struct Witnet.DataResult memory) pure returns (struct WitnetCBOR.CBOR memory[] memory)"}},"id":9586,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4732:38:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"4695:75:30"},{"documentation":" [\n   0 -> finalized: uint8,\n   1 -> metadata: string,\n   2 -> recipient: string,\n   3 -> sender: string,\n   4 -> timestamp: uint64,\n   5 -> value: uint64,\n ]*","expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":9595,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":9589,"name":"_metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9583,"src":"5161:9:30","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":9591,"indexExpression":{"hexValue":"30","id":9590,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5171:1:30","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5161:12:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":9592,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5174:8:30","memberName":"readUint","nodeType":"MemberAccess","referencedDeclaration":20069,"src":"5161:21:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_uint64_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64)"}},"id":9593,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5161:23:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":9594,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5188:1:30","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"5161:28:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"756e66696e616c697a656420717565727920726573756c74","id":9596,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5191:26:30","typeDescriptions":{"typeIdentifier":"t_stringliteral_c89b7a96616bc952cfce88db0441421c39a3927671c9d55f879ee1b493eba7b2","typeString":"literal_string \"unfinalized query result\""},"value":"unfinalized query result"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c89b7a96616bc952cfce88db0441421c39a3927671c9d55f879ee1b493eba7b2","typeString":"literal_string \"unfinalized query result\""}],"id":9588,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5153:7:30","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9597,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5153:65:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9598,"nodeType":"ExpressionStatement","src":"5153:65:30"},{"expression":{"id":9605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9599,"name":"_witRecipientBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9496,"src":"5270:19:30","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":9600,"name":"_metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9583,"src":"5292:9:30","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":9602,"indexExpression":{"hexValue":"32","id":9601,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5302:1:30","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5292:12:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":9603,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5305:10:30","memberName":"readString","nodeType":"MemberAccess","referencedDeclaration":19977,"src":"5292:23:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (string memory)"}},"id":9604,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5292:25:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"5270:47:30","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":9606,"nodeType":"ExpressionStatement","src":"5270:47:30"},{"expression":{"id":9613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9607,"name":"_witWrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9498,"src":"5328:17:30","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":9608,"name":"_metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9583,"src":"5348:9:30","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":9610,"indexExpression":{"hexValue":"33","id":9609,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5358:1:30","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5348:12:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":9611,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5361:10:30","memberName":"readString","nodeType":"MemberAccess","referencedDeclaration":19977,"src":"5348:23:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (string memory)"}},"id":9612,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5348:25:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"5328:45:30","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":9614,"nodeType":"ExpressionStatement","src":"5328:45:30"},{"expression":{"id":9627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9615,"name":"_evmRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9500,"src":"5384:13:30","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":9620,"name":"_metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9583,"src":"5471:9:30","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":9622,"indexExpression":{"hexValue":"31","id":9621,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5481:1:30","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5471:12:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":9623,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5484:10:30","memberName":"readString","nodeType":"MemberAccess","referencedDeclaration":19977,"src":"5471:23:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (string memory)"}},"id":9624,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5471:25:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":9618,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"5431:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":9619,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5438:14:30","memberName":"parseHexString","nodeType":"MemberAccess","referencedDeclaration":16048,"src":"5431:21:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (string memory) pure returns (bytes memory)"}},"id":9625,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5431:80:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":9616,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"5400:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":9617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5407:9:30","memberName":"toAddress","nodeType":"MemberAccess","referencedDeclaration":15675,"src":"5400:16:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes memory) pure returns (address)"}},"id":9626,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5400:122:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5384:138:30","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9628,"nodeType":"ExpressionStatement","src":"5384:138:30"},{"assignments":[9633],"declarations":[{"constant":false,"id":9633,"mutability":"mutable","name":"_valueTimestamp","nameLocation":"5550:15:30","nodeType":"VariableDeclaration","scope":9671,"src":"5533:32:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":9632,"nodeType":"UserDefinedTypeName","pathNode":{"id":9631,"name":"Witnet.Timestamp","nameLocations":["5533:6:30","5540:9:30"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"5533:16:30"},"referencedDeclaration":13254,"src":"5533:16:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"id":9643,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":9637,"name":"_metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9583,"src":"5590:9:30","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":9639,"indexExpression":{"hexValue":"34","id":9638,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5600:1:30","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5590:12:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":9640,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5603:8:30","memberName":"readUint","nodeType":"MemberAccess","referencedDeclaration":20069,"src":"5590:21:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_uint64_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64)"}},"id":9641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5590:23:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"expression":{"expression":{"id":9634,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"5568:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":9635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5575:9:30","memberName":"Timestamp","nodeType":"MemberAccess","referencedDeclaration":13254,"src":"5568:16:30","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"type(Witnet.Timestamp)"}},"id":9636,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5585:4:30","memberName":"wrap","nodeType":"MemberAccess","src":"5568:21:30","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint64_$returns$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"function (uint64) pure returns (Witnet.Timestamp)"}},"id":9642,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5568:46:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"nodeType":"VariableDeclarationStatement","src":"5533:81:30"},{"expression":{"id":9650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9644,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9502,"src":"5625:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":9645,"name":"_metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9583,"src":"5634:9:30","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":9647,"indexExpression":{"hexValue":"35","id":9646,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5644:1:30","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5634:12:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":9648,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5647:8:30","memberName":"readUint","nodeType":"MemberAccess","referencedDeclaration":20069,"src":"5634:21:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_uint64_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64)"}},"id":9649,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5634:23:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"5625:32:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":9651,"nodeType":"ExpressionStatement","src":"5625:32:30"},{"expression":{"id":9655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"5737:18:30","subExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9652,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"5737:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9653,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5737:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9654,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5744:8:30","memberName":"evmWraps","nodeType":"MemberAccess","referencedDeclaration":9398,"src":"5737:15:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":9656,"nodeType":"ExpressionStatement","src":"5737:18:30"},{"condition":{"arguments":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9659,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"5922:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9660,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5922:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9661,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5929:23:30","memberName":"evmLastReserveTimestamp","nodeType":"MemberAccess","referencedDeclaration":9392,"src":"5922:30:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}],"expression":{"id":9657,"name":"_valueTimestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9633,"src":"5903:15:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"id":9658,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5919:2:30","memberName":"gt","nodeType":"MemberAccess","referencedDeclaration":15063,"src":"5903:18:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Timestamp_$13254_$_t_userDefinedValueType$_Timestamp_$13254_$returns$_t_bool_$attached_to$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"function (Witnet.Timestamp,Witnet.Timestamp) pure returns (bool)"}},"id":9662,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5903:50:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9670,"nodeType":"IfStatement","src":"5899:122:30","trueBody":{"id":9669,"nodeType":"Block","src":"5955:66:30","statements":[{"expression":{"id":9667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9663,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"5970:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5970:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9665,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5977:22:30","memberName":"evmLastReserveNanowits","nodeType":"MemberAccess","referencedDeclaration":9394,"src":"5970:29:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":9666,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9502,"src":"6003:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"5970:39:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":9668,"nodeType":"ExpressionStatement","src":"5970:39:30"}]}}]},"functionSelector":"5d933eb7","id":9672,"implemented":true,"kind":"function","modifiers":[],"name":"processWitOracleQueryResult","nameLocation":"2644:27:30","nodeType":"FunctionDefinition","parameters":{"id":9491,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9488,"mutability":"mutable","name":"witOracleQueryId","nameLocation":"2694:16:30","nodeType":"VariableDeclaration","scope":9672,"src":"2686:24:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9487,"name":"uint256","nodeType":"ElementaryTypeName","src":"2686:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9490,"mutability":"mutable","name":"witOracleQueryResult","nameLocation":"2740:20:30","nodeType":"VariableDeclaration","scope":9672,"src":"2725:35:30","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9489,"name":"bytes","nodeType":"ElementaryTypeName","src":"2725:5:30","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2671:100:30"},"returnParameters":{"id":9503,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9494,"mutability":"mutable","name":"_witValueTransferTransactionHash","nameLocation":"2845:32:30","nodeType":"VariableDeclaration","scope":9672,"src":"2822:55:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":9493,"nodeType":"UserDefinedTypeName","pathNode":{"id":9492,"name":"Witnet.TransactionHash","nameLocations":["2822:6:30","2829:15:30"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"2822:22:30"},"referencedDeclaration":13256,"src":"2822:22:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"},{"constant":false,"id":9496,"mutability":"mutable","name":"_witRecipientBech32","nameLocation":"2906:19:30","nodeType":"VariableDeclaration","scope":9672,"src":"2892:33:30","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9495,"name":"string","nodeType":"ElementaryTypeName","src":"2892:6:30","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":9498,"mutability":"mutable","name":"_witWrapperBech32","nameLocation":"2954:17:30","nodeType":"VariableDeclaration","scope":9672,"src":"2940:31:30","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9497,"name":"string","nodeType":"ElementaryTypeName","src":"2940:6:30","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":9500,"mutability":"mutable","name":"_evmRecipient","nameLocation":"2994:13:30","nodeType":"VariableDeclaration","scope":9672,"src":"2986:21:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9499,"name":"address","nodeType":"ElementaryTypeName","src":"2986:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9502,"mutability":"mutable","name":"_value","nameLocation":"3029:6:30","nodeType":"VariableDeclaration","scope":9672,"src":"3022:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9501,"name":"uint64","nodeType":"ElementaryTypeName","src":"3022:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"2807:239:30"},"scope":9825,"src":"2635:3393:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":9787,"nodeType":"Block","src":"6360:1540:30","statements":[{"expression":{"id":9692,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9686,"name":"_witQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"6371:11:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9687,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"6385:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9688,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6385:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9689,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6392:39:30","memberName":"witOracleWrappingTransactionLastQueryId","nodeType":"MemberAccess","referencedDeclaration":9415,"src":"6385:46:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13256_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"}},"id":9691,"indexExpression":{"id":9690,"name":"witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9681,"src":"6432:31:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6385:79:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6371:93:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9693,"nodeType":"ExpressionStatement","src":"6371:93:30"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9694,"name":"_witQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"6493:11:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":9695,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9382,"src":"6508:49:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6493:64:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9786,"nodeType":"IfStatement","src":"6475:1418:30","trueBody":{"id":9785,"nodeType":"Block","src":"6569:1324:30","statements":[{"assignments":[9701],"declarations":[{"constant":false,"id":9701,"mutability":"mutable","name":"_commonArgs","nameLocation":"6600:11:30","nodeType":"VariableDeclaration","scope":9785,"src":"6584:27:30","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":9699,"name":"string","nodeType":"ElementaryTypeName","src":"6584:6:30","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":9700,"nodeType":"ArrayTypeName","src":"6584:8:30","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"id":9707,"initialValue":{"arguments":[{"hexValue":"31","id":9705,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6627:1:30","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":9704,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"6614:12:30","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (string memory[] memory)"},"typeName":{"baseType":{"id":9702,"name":"string","nodeType":"ElementaryTypeName","src":"6618:6:30","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":9703,"nodeType":"ArrayTypeName","src":"6618:8:30","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}}},"id":9706,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6614:15:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"6584:45:30"},{"expression":{"id":9719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":9708,"name":"_commonArgs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9701,"src":"6644:11:30","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":9710,"indexExpression":{"hexValue":"30","id":9709,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6656:1:30","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6644:14:30","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":9716,"name":"witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9681,"src":"6710:31:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}],"expression":{"expression":{"id":9713,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"6680:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":9714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6687:15:30","memberName":"TransactionHash","nodeType":"MemberAccess","referencedDeclaration":13256,"src":"6680:22:30","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_TransactionHash_$13256_$","typeString":"type(Witnet.TransactionHash)"}},"id":9715,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6703:6:30","memberName":"unwrap","nodeType":"MemberAccess","src":"6680:29:30","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_TransactionHash_$13256_$returns$_t_bytes32_$","typeString":"function (Witnet.TransactionHash) pure returns (bytes32)"}},"id":9717,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6680:62:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":9711,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"6661:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":9712,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6668:11:30","memberName":"toHexString","nodeType":"MemberAccess","referencedDeclaration":15886,"src":"6661:18:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_string_memory_ptr_$","typeString":"function (bytes32) pure returns (string memory)"}},"id":9718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6661:82:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"6644:99:30","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":9720,"nodeType":"ExpressionStatement","src":"6644:99:30"},{"assignments":[9725],"declarations":[{"constant":false,"id":9725,"mutability":"mutable","name":"_radonHash","nameLocation":"6775:10:30","nodeType":"VariableDeclaration","scope":9785,"src":"6758:27:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":9724,"nodeType":"UserDefinedTypeName","pathNode":{"id":9723,"name":"Witnet.RadonHash","nameLocations":["6758:6:30","6765:9:30"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"6758:16:30"},"referencedDeclaration":13250,"src":"6758:16:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"id":9733,"initialValue":{"arguments":[{"id":9728,"name":"_commonArgs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9701,"src":"6891:11:30","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9729,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"6925:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6925:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9731,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6932:31:30","memberName":"witOracleCrossChainRpcProviders","nodeType":"MemberAccess","referencedDeclaration":9407,"src":"6925:38:30","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage","typeString":"string storage ref[] storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"},{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage","typeString":"string storage ref[] storage ref"}],"expression":{"id":9726,"name":"witOracleCrossChainProofOfInclusionTemplate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9678,"src":"6788:43:30","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"}},"id":9727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6850:18:30","memberName":"verifyRadonRequest","nodeType":"MemberAccess","referencedDeclaration":10755,"src":"6788:80:30","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$returns$_t_userDefinedValueType$_RadonHash_$13250_$","typeString":"function (string memory[] memory,string memory[] memory) external returns (Witnet.RadonHash)"}},"id":9732,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6788:194:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"nodeType":"VariableDeclarationStatement","src":"6758:224:30"},{"expression":{"id":9767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9734,"name":"_witQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"6997:11:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":9742,"name":"_radonHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9725,"src":"7132:10:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},{"arguments":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9745,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"7218:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9746,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7218:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9747,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7225:22:30","memberName":"witOracleQuerySettings","nodeType":"MemberAccess","referencedDeclaration":9404,"src":"7218:29:30","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"id":9748,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7248:12:30","memberName":"minWitnesses","nodeType":"MemberAccess","referencedDeclaration":7934,"src":"7218:42:30","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9749,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"7301:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9750,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7301:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9751,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7308:22:30","memberName":"witOracleQuerySettings","nodeType":"MemberAccess","referencedDeclaration":9404,"src":"7301:29:30","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"id":9752,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7331:21:30","memberName":"unitaryRewardNanowits","nodeType":"MemberAccess","referencedDeclaration":7938,"src":"7301:51:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":9753,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MAX_RESULT_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9385,"src":"7393:46:30","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint16","typeString":"uint16"}],"expression":{"id":9743,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"7161:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":9744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7168:8:30","memberName":"QuerySLA","nodeType":"MemberAccess","referencedDeclaration":13472,"src":"7161:15:30","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_QuerySLA_$13472_storage_ptr_$","typeString":"type(struct Witnet.QuerySLA storage pointer)"}},"id":9754,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["7200:16:30","7283:16:30","7375:16:30"],"names":["witCommitteeSize","witUnitaryReward","witResultMaxSize"],"nodeType":"FunctionCall","src":"7161:298:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_memory_ptr","typeString":"struct Witnet.QuerySLA memory"}},{"arguments":[{"arguments":[{"id":9759,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7540:4:30","typeDescriptions":{"typeIdentifier":"t_contract$_WrappedWITLib_$9825","typeString":"library WrappedWITLib"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_WrappedWITLib_$9825","typeString":"library WrappedWITLib"}],"id":9758,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7532:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9757,"name":"address","nodeType":"ElementaryTypeName","src":"7532:7:30","typeDescriptions":{}}},"id":9760,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7532:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9761,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"7578:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9762,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7578:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9763,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7585:22:30","memberName":"witOracleQuerySettings","nodeType":"MemberAccess","referencedDeclaration":9404,"src":"7578:29:30","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"id":9764,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7608:24:30","memberName":"responseCallbackGasLimit","nodeType":"MemberAccess","referencedDeclaration":7940,"src":"7578:54:30","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint24","typeString":"uint24"}],"expression":{"id":9755,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"7478:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":9756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7485:13:30","memberName":"QueryCallback","nodeType":"MemberAccess","referencedDeclaration":13435,"src":"7478:20:30","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_QueryCallback_$13435_storage_ptr_$","typeString":"type(struct Witnet.QueryCallback storage pointer)"}},"id":9765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["7522:8:30","7568:8:30"],"names":["consumer","gasLimit"],"nodeType":"FunctionCall","src":"7478:174:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_QueryCallback_$13435_memory_ptr","typeString":"struct Witnet.QueryCallback memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},{"typeIdentifier":"t_struct$_QuerySLA_$13472_memory_ptr","typeString":"struct Witnet.QuerySLA memory"},{"typeIdentifier":"t_struct$_QueryCallback_$13435_memory_ptr","typeString":"struct Witnet.QueryCallback memory"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},{"typeIdentifier":"t_struct$_QuerySLA_$13472_memory_ptr","typeString":"struct Witnet.QuerySLA memory"},{"typeIdentifier":"t_struct$_QueryCallback_$13435_memory_ptr","typeString":"struct Witnet.QueryCallback memory"}],"expression":{"arguments":[{"id":9736,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9675,"src":"7031:9:30","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}],"id":9735,"name":"IWitOracleQueriable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10250,"src":"7011:19:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IWitOracleQueriable_$10250_$","typeString":"type(contract IWitOracleQueriable)"}},"id":9737,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7011:30:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleQueriable_$10250","typeString":"contract IWitOracleQueriable"}},"id":9738,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7042:21:30","memberName":"queryDataWithCallback","nodeType":"MemberAccess","referencedDeclaration":10243,"src":"7011:52:30","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_userDefinedValueType$_RadonHash_$13250_$_t_struct$_QuerySLA_$13472_memory_ptr_$_t_struct$_QueryCallback_$13435_memory_ptr_$returns$_t_uint256_$","typeString":"function (Witnet.RadonHash,struct Witnet.QuerySLA memory,struct Witnet.QueryCallback memory) payable external returns (uint256)"}},"id":9741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"expression":{"id":9739,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"7089:3:30","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":9740,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7093:5:30","memberName":"value","nodeType":"MemberAccess","src":"7089:9:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"7011:102:30","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_userDefinedValueType$_RadonHash_$13250_$_t_struct$_QuerySLA_$13472_memory_ptr_$_t_struct$_QueryCallback_$13435_memory_ptr_$returns$_t_uint256_$value","typeString":"function (Witnet.RadonHash,struct Witnet.QuerySLA memory,struct Witnet.QueryCallback memory) payable external returns (uint256)"}},"id":9766,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7011:656:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6997:670:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9768,"nodeType":"ExpressionStatement","src":"6997:670:30"},{"expression":{"id":9775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9769,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"7682:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9770,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7682:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9771,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7689:39:30","memberName":"witOracleWrappingTransactionLastQueryId","nodeType":"MemberAccess","referencedDeclaration":9415,"src":"7682:46:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13256_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"}},"id":9773,"indexExpression":{"id":9772,"name":"witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9681,"src":"7729:31:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7682:79:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":9774,"name":"_witQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"7764:11:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7682:93:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9776,"nodeType":"ExpressionStatement","src":"7682:93:30"},{"expression":{"id":9783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9777,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"7790:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9778,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7790:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9779,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7797:37:30","memberName":"witOracleWrappingQueryTransactionHash","nodeType":"MemberAccess","referencedDeclaration":9420,"src":"7790:44:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_userDefinedValueType$_TransactionHash_$13256_$","typeString":"mapping(uint256 => Witnet.TransactionHash)"}},"id":9781,"indexExpression":{"id":9780,"name":"_witQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9684,"src":"7835:11:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7790:57:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":9782,"name":"witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9681,"src":"7850:31:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"src":"7790:91:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"id":9784,"nodeType":"ExpressionStatement","src":"7790:91:30"}]}}]},"functionSelector":"3752120b","id":9788,"implemented":true,"kind":"function","modifiers":[],"name":"witOracleQueryWitnetValueTransferProofOfInclusion","nameLocation":"6045:49:30","nodeType":"FunctionDefinition","parameters":{"id":9682,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9675,"mutability":"mutable","name":"witOracle","nameLocation":"6119:9:30","nodeType":"VariableDeclaration","scope":9788,"src":"6109:19:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"},"typeName":{"id":9674,"nodeType":"UserDefinedTypeName","pathNode":{"id":9673,"name":"WitOracle","nameLocations":["6109:9:30"],"nodeType":"IdentifierPath","referencedDeclaration":9915,"src":"6109:9:30"},"referencedDeclaration":9915,"src":"6109:9:30","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}},"visibility":"internal"},{"constant":false,"id":9678,"mutability":"mutable","name":"witOracleCrossChainProofOfInclusionTemplate","nameLocation":"6172:43:30","nodeType":"VariableDeclaration","scope":9788,"src":"6144:71:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"},"typeName":{"id":9677,"nodeType":"UserDefinedTypeName","pathNode":{"id":9676,"name":"IWitOracleRadonRequestModal","nameLocations":["6144:27:30"],"nodeType":"IdentifierPath","referencedDeclaration":10761,"src":"6144:27:30"},"referencedDeclaration":10761,"src":"6144:27:30","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"}},"visibility":"internal"},{"constant":false,"id":9681,"mutability":"mutable","name":"witValueTransferTransactionHash","nameLocation":"6253:31:30","nodeType":"VariableDeclaration","scope":9788,"src":"6230:54:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":9680,"nodeType":"UserDefinedTypeName","pathNode":{"id":9679,"name":"Witnet.TransactionHash","nameLocations":["6230:6:30","6237:15:30"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"6230:22:30"},"referencedDeclaration":13256,"src":"6230:22:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"6094:201:30"},"returnParameters":{"id":9685,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9684,"mutability":"mutable","name":"_witQueryId","nameLocation":"6342:11:30","nodeType":"VariableDeclaration","scope":9788,"src":"6334:19:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9683,"name":"uint256","nodeType":"ElementaryTypeName","src":"6334:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6333:21:30"},"scope":9825,"src":"6036:1864:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":9795,"nodeType":"Block","src":"8215:91:30","statements":[{"AST":{"nativeSrc":"8235:64:30","nodeType":"YulBlock","src":"8235:64:30","statements":[{"nativeSrc":"8250:38:30","nodeType":"YulAssignment","src":"8250:38:30","value":{"name":"_WRAPPED_WIT_STORAGE_SLOT","nativeSrc":"8263:25:30","nodeType":"YulIdentifier","src":"8263:25:30"},"variableNames":[{"name":"_ptr.slot","nativeSrc":"8250:9:30","nodeType":"YulIdentifier","src":"8250:9:30"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":9369,"isOffset":false,"isSlot":false,"src":"8263:25:30","valueSize":1},{"declaration":9792,"isOffset":false,"isSlot":true,"src":"8250:9:30","suffix":"slot","valueSize":1}],"id":9794,"nodeType":"InlineAssembly","src":"8226:73:30"}]},"id":9796,"implemented":true,"kind":"function","modifiers":[],"name":"data","nameLocation":"8163:4:30","nodeType":"FunctionDefinition","parameters":{"id":9789,"nodeType":"ParameterList","parameters":[],"src":"8167:2:30"},"returnParameters":{"id":9793,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9792,"mutability":"mutable","name":"_ptr","nameLocation":"8209:4:30","nodeType":"VariableDeclaration","scope":9796,"src":"8193:20:30","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage"},"typeName":{"id":9791,"nodeType":"UserDefinedTypeName","pathNode":{"id":9790,"name":"Storage","nameLocations":["8193:7:30"],"nodeType":"IdentifierPath","referencedDeclaration":9421,"src":"8193:7:30"},"referencedDeclaration":9421,"src":"8193:7:30","typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage"}},"visibility":"internal"}],"src":"8192:22:30"},"scope":9825,"src":"8154:152:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9823,"nodeType":"Block","src":"8426:321:30","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9821,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9806,"name":"_PERCENT_FACTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9372,"src":"8460:15:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9807,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9796,"src":"8478:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9421_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9808,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8478:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9421_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9809,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8485:22:30","memberName":"witOracleQuerySettings","nodeType":"MemberAccess","referencedDeclaration":9404,"src":"8478:29:30","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7941_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"id":9810,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8508:18:30","memberName":"baseFeeOverhead100","nodeType":"MemberAccess","referencedDeclaration":7936,"src":"8478:48:30","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"8460:66:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9812,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8459:68:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":9815,"name":"evmGasPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9801,"src":"8607:11:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9816,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_GAS_LIMIT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9375,"src":"8642:49:30","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint24","typeString":"uint24"}],"expression":{"id":9813,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9799,"src":"8547:9:30","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}},"id":9814,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8557:27:30","memberName":"estimateBaseFeeWithCallback","nodeType":"MemberAccess","referencedDeclaration":10110,"src":"8547:37:30","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$_t_uint24_$returns$_t_uint256_$","typeString":"function (uint256,uint24) view external returns (uint256)"}},"id":9817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8547:163:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8459:251:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9819,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8444:277:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":9820,"name":"_PERCENT_FACTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9372,"src":"8724:15:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8444:295:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9805,"id":9822,"nodeType":"Return","src":"8437:302:30"}]},"id":9824,"implemented":true,"kind":"function","modifiers":[],"name":"witOracleEstimateWrappingFee","nameLocation":"8323:28:30","nodeType":"FunctionDefinition","parameters":{"id":9802,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9799,"mutability":"mutable","name":"witOracle","nameLocation":"8362:9:30","nodeType":"VariableDeclaration","scope":9824,"src":"8352:19:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"},"typeName":{"id":9798,"nodeType":"UserDefinedTypeName","pathNode":{"id":9797,"name":"WitOracle","nameLocations":["8352:9:30"],"nodeType":"IdentifierPath","referencedDeclaration":9915,"src":"8352:9:30"},"referencedDeclaration":9915,"src":"8352:9:30","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9915","typeString":"contract WitOracle"}},"visibility":"internal"},{"constant":false,"id":9801,"mutability":"mutable","name":"evmGasPrice","nameLocation":"8381:11:30","nodeType":"VariableDeclaration","scope":9824,"src":"8373:19:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9800,"name":"uint256","nodeType":"ElementaryTypeName","src":"8373:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8351:42:30"},"returnParameters":{"id":9805,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9804,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9824,"src":"8417:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9803,"name":"uint256","nodeType":"ElementaryTypeName","src":"8417:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8416:9:30"},"scope":9825,"src":"8314:433:30","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":9826,"src":"307:8443:30","usedErrors":[16772,16778,18728,18734,18742],"usedEvents":[]}],"src":"35:8715:30"},"id":30},"contracts/WrappedWITSuperchain.sol":{"ast":{"absolutePath":"contracts/WrappedWITSuperchain.sol","exportedSymbols":{"ERC20":[1325],"ERC20Bridgeable":[146],"ERC20Permit":[1557],"WrappedWITSuperchain":[9881]},"id":9882,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9827,"literals":["solidity",">=","0.8",".20","<","0.9",".0"],"nodeType":"PragmaDirective","src":"83:32:31"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":9829,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9882,"sourceUnit":1326,"src":"119:68:31","symbolAliases":[{"foreign":{"id":9828,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1325,"src":"127:5:31","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/community-contracts/contracts/token/ERC20/extensions/ERC20Bridgeable.sol","file":"@openzeppelin/community-contracts/contracts/token/ERC20/extensions/ERC20Bridgeable.sol","id":9831,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9882,"sourceUnit":147,"src":"189:119:31","symbolAliases":[{"foreign":{"id":9830,"name":"ERC20Bridgeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":146,"src":"197:15:31","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol","file":"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol","id":9833,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9882,"sourceUnit":1558,"src":"310:91:31","symbolAliases":[{"foreign":{"id":9832,"name":"ERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1557,"src":"318:11:31","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":9834,"name":"ERC20","nameLocations":["438:5:31"],"nodeType":"IdentifierPath","referencedDeclaration":1325,"src":"438:5:31"},"id":9835,"nodeType":"InheritanceSpecifier","src":"438:5:31"},{"baseName":{"id":9836,"name":"ERC20Bridgeable","nameLocations":["445:15:31"],"nodeType":"IdentifierPath","referencedDeclaration":146,"src":"445:15:31"},"id":9837,"nodeType":"InheritanceSpecifier","src":"445:15:31"},{"baseName":{"id":9838,"name":"ERC20Permit","nameLocations":["462:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":1557,"src":"462:11:31"},"id":9839,"nodeType":"InheritanceSpecifier","src":"462:11:31"}],"canonicalName":"WrappedWITSuperchain","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":9881,"linearizedBaseContracts":[9881,1557,1717,4087,673,1619,146,41,4197,4209,1325,715,1583,1403,1649],"name":"WrappedWITSuperchain","nameLocation":"414:20:31","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":9842,"mutability":"constant","name":"SUPERCHAIN_TOKEN_BRIDGE","nameLocation":"513:23:31","nodeType":"VariableDeclaration","scope":9881,"src":"487:94:31","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9840,"name":"address","nodeType":"ElementaryTypeName","src":"487:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"value":{"hexValue":"307834323030303030303030303030303030303030303030303030303030303030303030303030303238","id":9841,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"539:42:31","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"value":"0x4200000000000000000000000000000000000028"},"visibility":"internal"},{"errorSelector":"82b42900","id":9844,"name":"Unauthorized","nameLocation":"594:12:31","nodeType":"ErrorDefinition","parameters":{"id":9843,"nodeType":"ParameterList","parameters":[],"src":"606:2:31"},"src":"588:21:31"},{"body":{"id":9854,"nodeType":"Block","src":"686:2:31","statements":[]},"id":9855,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"hexValue":"5772617070656420574954","id":9847,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"637:13:31","typeDescriptions":{"typeIdentifier":"t_stringliteral_ddba658d9abef0b3615c5bde8328f7c593061dba9ad4d400484e4bc2a83fb435","typeString":"literal_string \"Wrapped WIT\""},"value":"Wrapped WIT"},{"hexValue":"574954","id":9848,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"652:5:31","typeDescriptions":{"typeIdentifier":"t_stringliteral_b372e206e3c85161b5e32ecd4de3bf2364f9afd6efd773022e11c36b6710a1f3","typeString":"literal_string \"WIT\""},"value":"WIT"}],"id":9849,"kind":"baseConstructorSpecifier","modifierName":{"id":9846,"name":"ERC20","nameLocations":["631:5:31"],"nodeType":"IdentifierPath","referencedDeclaration":1325,"src":"631:5:31"},"nodeType":"ModifierInvocation","src":"631:27:31"},{"arguments":[{"hexValue":"577261707065642f574954","id":9851,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"671:13:31","typeDescriptions":{"typeIdentifier":"t_stringliteral_93ce1e72a8e55be216fb1da8de58b117bb03feaf9a7e09034e3e83dd710d480f","typeString":"literal_string \"Wrapped/WIT\""},"value":"Wrapped/WIT"}],"id":9852,"kind":"baseConstructorSpecifier","modifierName":{"id":9850,"name":"ERC20Permit","nameLocations":["659:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":1557,"src":"659:11:31"},"nodeType":"ModifierInvocation","src":"659:26:31"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":9845,"nodeType":"ParameterList","parameters":[],"src":"628:2:31"},"returnParameters":{"id":9853,"nodeType":"ParameterList","parameters":[],"src":"686:0:31"},"scope":9881,"src":"617:71:31","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[145],"body":{"id":9869,"nodeType":"Block","src":"987:79:31","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9862,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9858,"src":"1002:6:31","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":9863,"name":"SUPERCHAIN_TOKEN_BRIDGE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9842,"src":"1012:23:31","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1002:33:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9868,"nodeType":"IfStatement","src":"998:60:31","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":9865,"name":"Unauthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9844,"src":"1044:12:31","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9866,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1044:14:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9867,"nodeType":"RevertStatement","src":"1037:21:31"}}]},"documentation":{"id":9856,"nodeType":"StructuredDocumentation","src":"696:219:31","text":" @dev Checks if the caller is the predeployed SuperchainTokenBridge. Reverts otherwise.\n IMPORTANT: The predeployed SuperchainTokenBridge is only available on chains in the Superchain."},"id":9870,"implemented":true,"kind":"function","modifiers":[],"name":"_checkTokenBridge","nameLocation":"930:17:31","nodeType":"FunctionDefinition","overrides":{"id":9860,"nodeType":"OverrideSpecifier","overrides":[],"src":"978:8:31"},"parameters":{"id":9859,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9858,"mutability":"mutable","name":"caller","nameLocation":"956:6:31","nodeType":"VariableDeclaration","scope":9870,"src":"948:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9857,"name":"address","nodeType":"ElementaryTypeName","src":"948:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"947:16:31"},"returnParameters":{"id":9861,"nodeType":"ParameterList","parameters":[],"src":"987:0:31"},"scope":9881,"src":"921:145:31","stateMutability":"pure","virtual":false,"visibility":"internal"},{"baseFunctions":[889],"body":{"id":9879,"nodeType":"Block","src":"1381:27:31","statements":[{"expression":{"hexValue":"39","id":9877,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1399:1:31","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"functionReturnParameters":9876,"id":9878,"nodeType":"Return","src":"1392:8:31"}]},"documentation":{"id":9871,"nodeType":"StructuredDocumentation","src":"1080:238:31","text":"===============================================================================================================\n --- ERC20 -----------------------------------------------------------------------------------------------------"},"functionSelector":"313ce567","id":9880,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"1333:8:31","nodeType":"FunctionDefinition","overrides":{"id":9873,"nodeType":"OverrideSpecifier","overrides":[],"src":"1344:8:31"},"parameters":{"id":9872,"nodeType":"ParameterList","parameters":[],"src":"1341:2:31"},"returnParameters":{"id":9876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9875,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9880,"src":"1374:5:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":9874,"name":"uint8","nodeType":"ElementaryTypeName","src":"1374:5:31","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"1373:7:31"},"scope":9881,"src":"1324:84:31","stateMutability":"pure","virtual":false,"visibility":"public"}],"scope":9882,"src":"405:1006:31","usedErrors":[685,690,695,704,709,714,1434,1441,1659,1783,1785,3523,3528,3533,9844],"usedEvents":[15,24,653,1337,1346]}],"src":"83:1330:31"},"id":31},"witnet-solidity-bridge/contracts/WitOracle.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/WitOracle.sol","exportedSymbols":{"Bech32":[12200],"IWitAppliance":[9990],"IWitOracle":[10055],"IWitOracleAppliance":[10067],"IWitOracleQueriable":[10250],"IWitOracleQueriableEvents":[10347],"IWitOracleRadonRegistry":[10616],"Secp256k1":[13216],"WitOracle":[9915],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200]},"id":9916,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9883,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:31:32"},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracle.sol","file":"./interfaces/IWitOracle.sol","id":9884,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9916,"sourceUnit":10056,"src":"70:37:32","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol","file":"./interfaces/IWitOracleAppliance.sol","id":9885,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9916,"sourceUnit":10068,"src":"109:46:32","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriable.sol","file":"./interfaces/IWitOracleQueriable.sol","id":9886,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9916,"sourceUnit":10251,"src":"157:46:32","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableEvents.sol","file":"./interfaces/IWitOracleQueriableEvents.sol","id":9887,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9916,"sourceUnit":10348,"src":"205:52:32","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":9889,"name":"IWitAppliance","nameLocations":["404:13:32"],"nodeType":"IdentifierPath","referencedDeclaration":9990,"src":"404:13:32"},"id":9890,"nodeType":"InheritanceSpecifier","src":"404:13:32"},{"baseName":{"id":9891,"name":"IWitOracle","nameLocations":["428:10:32"],"nodeType":"IdentifierPath","referencedDeclaration":10055,"src":"428:10:32"},"id":9892,"nodeType":"InheritanceSpecifier","src":"428:10:32"},{"baseName":{"id":9893,"name":"IWitOracleQueriable","nameLocations":["449:19:32"],"nodeType":"IdentifierPath","referencedDeclaration":10250,"src":"449:19:32"},"id":9894,"nodeType":"InheritanceSpecifier","src":"449:19:32"},{"baseName":{"id":9895,"name":"IWitOracleQueriableEvents","nameLocations":["479:25:32"],"nodeType":"IdentifierPath","referencedDeclaration":10347,"src":"479:25:32"},"id":9896,"nodeType":"InheritanceSpecifier","src":"479:25:32"}],"canonicalName":"WitOracle","contractDependencies":[],"contractKind":"contract","documentation":{"id":9888,"nodeType":"StructuredDocumentation","src":"261:98:32","text":"@title Witnet Request Board functionality base contract.\n @author The Witnet Foundation."},"fullyImplemented":false,"id":9915,"linearizedBaseContracts":[9915,10347,10250,10055,9990],"name":"WitOracle","nameLocation":"377:9:32","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[9954],"body":{"id":9913,"nodeType":"Block","src":"578:137:32","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":9910,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":9903,"name":"IWitOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10055,"src":"616:10:32","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IWitOracle_$10055_$","typeString":"type(contract IWitOracle)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IWitOracle_$10055_$","typeString":"type(contract IWitOracle)"}],"id":9902,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"611:4:32","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":9904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"611:16:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IWitOracle_$10055","typeString":"type(contract IWitOracle)"}},"id":9905,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"628:11:32","memberName":"interfaceId","nodeType":"MemberAccess","src":"611:28:32","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"expression":{"arguments":[{"id":9907,"name":"IWitOracleQueriable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10250,"src":"664:19:32","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IWitOracleQueriable_$10250_$","typeString":"type(contract IWitOracleQueriable)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IWitOracleQueriable_$10250_$","typeString":"type(contract IWitOracleQueriable)"}],"id":9906,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"659:4:32","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":9908,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"659:25:32","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_IWitOracleQueriable_$10250","typeString":"type(contract IWitOracleQueriable)"}},"id":9909,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"685:11:32","memberName":"interfaceId","nodeType":"MemberAccess","src":"659:37:32","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"611:85:32","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":9911,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"596:111:32","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":9901,"id":9912,"nodeType":"Return","src":"589:118:32"}]},"functionSelector":"adb7c3f7","id":9914,"implemented":true,"kind":"function","modifiers":[],"name":"specs","nameLocation":"522:5:32","nodeType":"FunctionDefinition","overrides":{"id":9898,"nodeType":"OverrideSpecifier","overrides":[],"src":"538:8:32"},"parameters":{"id":9897,"nodeType":"ParameterList","parameters":[],"src":"527:2:32"},"returnParameters":{"id":9901,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9900,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9914,"src":"570:6:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9899,"name":"bytes4","nodeType":"ElementaryTypeName","src":"570:6:32","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"569:8:32"},"scope":9915,"src":"513:202:32","stateMutability":"pure","virtual":true,"visibility":"external"}],"scope":9916,"src":"359:359:32","usedErrors":[9995],"usedEvents":[10017,10291,10303,10311,10318,10330,10346]}],"src":"35:685:32"},"id":32},"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol","exportedSymbols":{"Bech32":[12200],"IWitAppliance":[9990],"IWitOracleAppliance":[10067],"IWitOracleRadonRegistryEvents":[10636],"IWitOracleRadonRequestFactory":[10711],"IWitOracleRadonRequestModal":[10761],"IWitOracleRadonRequestTemplate":[10812],"Secp256k1":[13216],"WitOracleRadonRequestFactory":[9940],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200]},"id":9941,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9917,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:31:33"},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol","file":"./interfaces/IWitOracleAppliance.sol","id":9918,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9941,"sourceUnit":10068,"src":"70:46:33","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistryEvents.sol","file":"./interfaces/IWitOracleRadonRegistryEvents.sol","id":9919,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9941,"sourceUnit":10637,"src":"118:56:33","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestFactory.sol","file":"./interfaces/IWitOracleRadonRequestFactory.sol","id":9920,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9941,"sourceUnit":10712,"src":"176:56:33","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":9921,"name":"IWitOracleAppliance","nameLocations":["300:19:33"],"nodeType":"IdentifierPath","referencedDeclaration":10067,"src":"300:19:33"},"id":9922,"nodeType":"InheritanceSpecifier","src":"300:19:33"},{"baseName":{"id":9923,"name":"IWitOracleRadonRegistryEvents","nameLocations":["331:29:33"],"nodeType":"IdentifierPath","referencedDeclaration":10636,"src":"331:29:33"},"id":9924,"nodeType":"InheritanceSpecifier","src":"331:29:33"},{"baseName":{"id":9925,"name":"IWitOracleRadonRequestFactory","nameLocations":["371:29:33"],"nodeType":"IdentifierPath","referencedDeclaration":10711,"src":"371:29:33"},"id":9926,"nodeType":"InheritanceSpecifier","src":"371:29:33"}],"canonicalName":"WitOracleRadonRequestFactory","contractDependencies":[],"contractKind":"contract","fullyImplemented":false,"id":9940,"linearizedBaseContracts":[9940,10711,10636,10067,9990],"name":"WitOracleRadonRequestFactory","nameLocation":"254:28:33","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[9954],"body":{"id":9938,"nodeType":"Block","src":"474:98:33","statements":[{"expression":{"components":[{"expression":{"arguments":[{"id":9933,"name":"WitOracleRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9940,"src":"512:28:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WitOracleRadonRequestFactory_$9940_$","typeString":"type(contract WitOracleRadonRequestFactory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_WitOracleRadonRequestFactory_$9940_$","typeString":"type(contract WitOracleRadonRequestFactory)"}],"id":9932,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"507:4:33","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":9934,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"507:34:33","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_contract$_WitOracleRadonRequestFactory_$9940","typeString":"type(contract WitOracleRadonRequestFactory)"}},"id":9935,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"542:11:33","memberName":"interfaceId","nodeType":"MemberAccess","src":"507:46:33","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}}],"id":9936,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"492:72:33","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":9931,"id":9937,"nodeType":"Return","src":"485:79:33"}]},"functionSelector":"adb7c3f7","id":9939,"implemented":true,"kind":"function","modifiers":[],"name":"specs","nameLocation":"418:5:33","nodeType":"FunctionDefinition","overrides":{"id":9928,"nodeType":"OverrideSpecifier","overrides":[],"src":"434:8:33"},"parameters":{"id":9927,"nodeType":"ParameterList","parameters":[],"src":"423:2:33"},"returnParameters":{"id":9931,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9930,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9939,"src":"466:6:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9929,"name":"bytes4","nodeType":"ElementaryTypeName","src":"466:6:33","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"465:8:33"},"scope":9940,"src":"409:163:33","stateMutability":"pure","virtual":true,"visibility":"external"}],"scope":9941,"src":"236:339:33","usedErrors":[],"usedEvents":[10624,10629,10635,10644,10648]}],"src":"35:542:33"},"id":33},"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol","exportedSymbols":{"IWitAppliance":[9990]},"id":9991,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9942,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"35:23:34"},{"abstract":true,"baseContracts":[],"canonicalName":"IWitAppliance","contractDependencies":[],"contractKind":"contract","fullyImplemented":false,"id":9990,"linearizedBaseContracts":[9990],"name":"IWitAppliance","nameLocation":"80:13:34","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9943,"nodeType":"StructuredDocumentation","src":"103:100:34","text":"@notice Returns the name of the actual contract implementing the logic of this Witnet appliance."},"functionSelector":"bff852fa","id":9948,"implemented":false,"kind":"function","modifiers":[],"name":"class","nameLocation":"218:5:34","nodeType":"FunctionDefinition","parameters":{"id":9944,"nodeType":"ParameterList","parameters":[],"src":"223:2:34"},"returnParameters":{"id":9947,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9946,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9948,"src":"255:13:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9945,"name":"string","nodeType":"ElementaryTypeName","src":"255:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"254:15:34"},"scope":9990,"src":"209:61:34","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":9949,"nodeType":"StructuredDocumentation","src":"278:92:34","text":"@notice Returns the ERC-165 id of the minimal functionality expected for this appliance."},"functionSelector":"adb7c3f7","id":9954,"implemented":false,"kind":"function","modifiers":[],"name":"specs","nameLocation":"385:5:34","nodeType":"FunctionDefinition","parameters":{"id":9950,"nodeType":"ParameterList","parameters":[],"src":"390:2:34"},"returnParameters":{"id":9953,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9952,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9954,"src":"424:6:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9951,"name":"bytes4","nodeType":"ElementaryTypeName","src":"424:6:34","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"423:8:34"},"scope":9990,"src":"376:56:34","stateMutability":"view","virtual":true,"visibility":"external"},{"body":{"id":9969,"nodeType":"Block","src":"521:79:34","statements":[{"condition":{"id":9962,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"536:11:34","subExpression":{"id":9961,"name":"_condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9956,"src":"537:10:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9968,"nodeType":"IfStatement","src":"532:61:34","trueBody":{"id":9967,"nodeType":"Block","src":"549:44:34","statements":[{"expression":{"arguments":[{"id":9964,"name":"_message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9958,"src":"572:8:34","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9963,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9989,"src":"564:7:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) view"}},"id":9965,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"564:17:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9966,"nodeType":"ExpressionStatement","src":"564:17:34"}]}}]},"id":9970,"implemented":true,"kind":"function","modifiers":[],"name":"_require","nameLocation":"449:8:34","nodeType":"FunctionDefinition","parameters":{"id":9959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9956,"mutability":"mutable","name":"_condition","nameLocation":"463:10:34","nodeType":"VariableDeclaration","scope":9970,"src":"458:15:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9955,"name":"bool","nodeType":"ElementaryTypeName","src":"458:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9958,"mutability":"mutable","name":"_message","nameLocation":"489:8:34","nodeType":"VariableDeclaration","scope":9970,"src":"475:22:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9957,"name":"string","nodeType":"ElementaryTypeName","src":"475:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"457:41:34"},"returnParameters":{"id":9960,"nodeType":"ParameterList","parameters":[],"src":"521:0:34"},"scope":9990,"src":"440:160:34","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":9988,"nodeType":"Block","src":"671:166:34","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":9980,"name":"class","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9948,"src":"745:5:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":9981,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"745:7:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"3a20","id":9982,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"771:4:34","typeDescriptions":{"typeIdentifier":"t_stringliteral_e64009107d042bdc478cc69a5433e4573ea2e8a23a46646c0ee241e30c888e73","typeString":"literal_string \": \""},"value":": "},{"id":9983,"name":"_message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9972,"src":"794:8:34","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_stringliteral_e64009107d042bdc478cc69a5433e4573ea2e8a23a46646c0ee241e30c888e73","typeString":"literal_string \": \""},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":9978,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"710:3:34","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9979,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"714:12:34","memberName":"encodePacked","nodeType":"MemberAccess","src":"710:16:34","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9984,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"710:107:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9977,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"703:6:34","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":9976,"name":"string","nodeType":"ElementaryTypeName","src":"703:6:34","typeDescriptions":{}}},"id":9985,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"703:115:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9975,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"682:6:34","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":9986,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"682:147:34","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9987,"nodeType":"ExpressionStatement","src":"682:147:34"}]},"id":9989,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"617:7:34","nodeType":"FunctionDefinition","parameters":{"id":9973,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9972,"mutability":"mutable","name":"_message","nameLocation":"639:8:34","nodeType":"VariableDeclaration","scope":9989,"src":"625:22:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9971,"name":"string","nodeType":"ElementaryTypeName","src":"625:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"624:24:34"},"returnParameters":{"id":9974,"nodeType":"ParameterList","parameters":[],"src":"671:0:34"},"scope":9990,"src":"608:229:34","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":9991,"src":"62:780:34","usedErrors":[],"usedEvents":[]}],"src":"35:809:34"},"id":34},"witnet-solidity-bridge/contracts/interfaces/IWitOracle.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracle.sol","exportedSymbols":{"Bech32":[12200],"IWitOracle":[10055],"IWitOracleRadonRegistry":[10616],"Secp256k1":[13216],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200]},"id":10056,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9992,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:31:35"},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistry.sol","file":"./IWitOracleRadonRegistry.sol","id":9993,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10056,"sourceUnit":10617,"src":"70:39:35","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracle","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":10055,"linearizedBaseContracts":[10055],"name":"IWitOracle","nameLocation":"123:10:35","nodeType":"ContractDefinition","nodes":[{"errorSelector":"b1c6172a","id":9995,"name":"InvalidDataReport","nameLocation":"149:17:35","nodeType":"ErrorDefinition","parameters":{"id":9994,"nodeType":"ParameterList","parameters":[],"src":"166:2:35"},"src":"143:26:35"},{"anonymous":false,"eventSelector":"7a9001dc4425127400f09e4c0b02908ad0e1f642ee9c92932a222c6866746482","id":10017,"name":"WitOracleReport","nameLocation":"187:15:35","nodeType":"EventDefinition","parameters":{"id":10016,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9997,"indexed":true,"mutability":"mutable","name":"evmOrigin","nameLocation":"233:9:35","nodeType":"VariableDeclaration","scope":10017,"src":"217:25:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9996,"name":"address","nodeType":"ElementaryTypeName","src":"217:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9999,"indexed":true,"mutability":"mutable","name":"evmConsumer","nameLocation":"274:11:35","nodeType":"VariableDeclaration","scope":10017,"src":"258:27:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9998,"name":"address","nodeType":"ElementaryTypeName","src":"258:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10001,"indexed":false,"mutability":"mutable","name":"evmReporter","nameLocation":"309:11:35","nodeType":"VariableDeclaration","scope":10017,"src":"301:19:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10000,"name":"address","nodeType":"ElementaryTypeName","src":"301:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10004,"indexed":false,"mutability":"mutable","name":"witDrTxHash","nameLocation":"358:11:35","nodeType":"VariableDeclaration","scope":10017,"src":"335:34:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":10003,"nodeType":"UserDefinedTypeName","pathNode":{"id":10002,"name":"Witnet.TransactionHash","nameLocations":["335:6:35","342:15:35"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"335:22:35"},"referencedDeclaration":13256,"src":"335:22:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"},{"constant":false,"id":10007,"indexed":false,"mutability":"mutable","name":"queryRadHash","nameLocation":"401:12:35","nodeType":"VariableDeclaration","scope":10017,"src":"384:29:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10006,"nodeType":"UserDefinedTypeName","pathNode":{"id":10005,"name":"Witnet.RadonHash","nameLocations":["384:6:35","391:9:35"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"384:16:35"},"referencedDeclaration":13250,"src":"384:16:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":10010,"indexed":false,"mutability":"mutable","name":"queryParams","nameLocation":"445:11:35","nodeType":"VariableDeclaration","scope":10017,"src":"428:28:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_memory_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":10009,"nodeType":"UserDefinedTypeName","pathNode":{"id":10008,"name":"Witnet.QuerySLA","nameLocations":["428:6:35","435:8:35"],"nodeType":"IdentifierPath","referencedDeclaration":13472,"src":"428:15:35"},"referencedDeclaration":13472,"src":"428:15:35","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"},{"constant":false,"id":10013,"indexed":false,"mutability":"mutable","name":"resultTimestamp","nameLocation":"488:15:35","nodeType":"VariableDeclaration","scope":10017,"src":"471:32:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":10012,"nodeType":"UserDefinedTypeName","pathNode":{"id":10011,"name":"Witnet.Timestamp","nameLocations":["471:6:35","478:9:35"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"471:16:35"},"referencedDeclaration":13254,"src":"471:16:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":10015,"indexed":false,"mutability":"mutable","name":"resultCborBytes","nameLocation":"524:15:35","nodeType":"VariableDeclaration","scope":10017,"src":"518:21:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10014,"name":"bytes","nodeType":"ElementaryTypeName","src":"518:5:35","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"202:348:35"},"src":"181:370:35"},{"documentation":{"id":10018,"nodeType":"StructuredDocumentation","src":"559:92:35","text":"@notice Uniquely identifies the WitOracle instance and the chain on which it's deployed."},"functionSelector":"7bbdb96e","id":10023,"implemented":false,"kind":"function","modifiers":[],"name":"channel","nameLocation":"666:7:35","nodeType":"FunctionDefinition","parameters":{"id":10019,"nodeType":"ParameterList","parameters":[],"src":"673:2:35"},"returnParameters":{"id":10022,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10021,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10023,"src":"699:6:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":10020,"name":"bytes4","nodeType":"ElementaryTypeName","src":"699:6:35","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"698:8:35"},"scope":10055,"src":"657:50:35","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10024,"nodeType":"StructuredDocumentation","src":"715:175:35","text":"@notice Verify the data report (as provided by Wit/Kermit API) is well-formed and authentic,\n returning the parsed Witnet.DataResult if so, or reverting otherwise."},"functionSelector":"b783922b","id":10035,"implemented":false,"kind":"function","modifiers":[],"name":"parseDataReport","nameLocation":"905:15:35","nodeType":"FunctionDefinition","parameters":{"id":10030,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10027,"mutability":"mutable","name":"report","nameLocation":"952:6:35","nodeType":"VariableDeclaration","scope":10035,"src":"921:37:35","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport"},"typeName":{"id":10026,"nodeType":"UserDefinedTypeName","pathNode":{"id":10025,"name":"Witnet.DataPushReport","nameLocations":["921:6:35","928:14:35"],"nodeType":"IdentifierPath","referencedDeclaration":13371,"src":"921:21:35"},"referencedDeclaration":13371,"src":"921:21:35","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_storage_ptr","typeString":"struct Witnet.DataPushReport"}},"visibility":"internal"},{"constant":false,"id":10029,"mutability":"mutable","name":"proof","nameLocation":"975:5:35","nodeType":"VariableDeclaration","scope":10035,"src":"960:20:35","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":10028,"name":"bytes","nodeType":"ElementaryTypeName","src":"960:5:35","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"920:61:35"},"returnParameters":{"id":10034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10033,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10035,"src":"1005:24:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":10032,"nodeType":"UserDefinedTypeName","pathNode":{"id":10031,"name":"Witnet.DataResult","nameLocations":["1005:6:35","1012:10:35"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"1005:17:35"},"referencedDeclaration":13388,"src":"1005:17:35","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"1004:26:35"},"scope":10055,"src":"896:135:35","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10036,"nodeType":"StructuredDocumentation","src":"1039:256:35","text":"@notice Same as `parseDataReport` but on certain implementations it may store roll-up information \n that will contribute to reduce the cost of verifying and/or rolling-up future data reports.\n Emits `DataReport` if report is authentic. "},"functionSelector":"6d0d6a7e","id":10047,"implemented":false,"kind":"function","modifiers":[],"name":"pushDataReport","nameLocation":"1310:14:35","nodeType":"FunctionDefinition","parameters":{"id":10042,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10039,"mutability":"mutable","name":"report","nameLocation":"1356:6:35","nodeType":"VariableDeclaration","scope":10047,"src":"1325:37:35","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport"},"typeName":{"id":10038,"nodeType":"UserDefinedTypeName","pathNode":{"id":10037,"name":"Witnet.DataPushReport","nameLocations":["1325:6:35","1332:14:35"],"nodeType":"IdentifierPath","referencedDeclaration":13371,"src":"1325:21:35"},"referencedDeclaration":13371,"src":"1325:21:35","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_storage_ptr","typeString":"struct Witnet.DataPushReport"}},"visibility":"internal"},{"constant":false,"id":10041,"mutability":"mutable","name":"proof","nameLocation":"1379:5:35","nodeType":"VariableDeclaration","scope":10047,"src":"1364:20:35","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":10040,"name":"bytes","nodeType":"ElementaryTypeName","src":"1364:5:35","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1324:61:35"},"returnParameters":{"id":10046,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10045,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10047,"src":"1404:24:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":10044,"nodeType":"UserDefinedTypeName","pathNode":{"id":10043,"name":"Witnet.DataResult","nameLocations":["1404:6:35","1411:10:35"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"1404:17:35"},"referencedDeclaration":13388,"src":"1404:17:35","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"1403:26:35"},"scope":10055,"src":"1301:129:35","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":10048,"nodeType":"StructuredDocumentation","src":"1438:341:35","text":"@notice Returns the WitOracleRadonRegistry in which Witnet-compliant Radon requests\n @notice can be formally verified and forever registered as a away to let smart contracts\n and users to track actual data sources and offchain computations applied on data updates\n safely reported from the Wit/Oracle blockchain. "},"functionSelector":"7b103999","id":10054,"implemented":false,"kind":"function","modifiers":[],"name":"registry","nameLocation":"1794:8:35","nodeType":"FunctionDefinition","parameters":{"id":10049,"nodeType":"ParameterList","parameters":[],"src":"1802:2:35"},"returnParameters":{"id":10053,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10052,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10054,"src":"1828:23:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRegistry_$10616","typeString":"contract IWitOracleRadonRegistry"},"typeName":{"id":10051,"nodeType":"UserDefinedTypeName","pathNode":{"id":10050,"name":"IWitOracleRadonRegistry","nameLocations":["1828:23:35"],"nodeType":"IdentifierPath","referencedDeclaration":10616,"src":"1828:23:35"},"referencedDeclaration":10616,"src":"1828:23:35","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRegistry_$10616","typeString":"contract IWitOracleRadonRegistry"}},"visibility":"internal"}],"src":"1827:25:35"},"scope":10055,"src":"1785:68:35","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":10056,"src":"113:1743:35","usedErrors":[9995],"usedEvents":[10017]}],"src":"35:1823:35"},"id":35},"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol","exportedSymbols":{"IWitAppliance":[9990],"IWitOracleAppliance":[10067]},"id":10068,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10057,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"35:23:36"},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol","file":"./IWitAppliance.sol","id":10058,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10068,"sourceUnit":9991,"src":"62:29:36","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":10059,"name":"IWitAppliance","nameLocations":["150:13:36"],"nodeType":"IdentifierPath","referencedDeclaration":9990,"src":"150:13:36"},"id":10060,"nodeType":"InheritanceSpecifier","src":"150:13:36"}],"canonicalName":"IWitOracleAppliance","contractDependencies":[],"contractKind":"contract","fullyImplemented":false,"id":10067,"linearizedBaseContracts":[10067,9990],"name":"IWitOracleAppliance","nameLocation":"113:19:36","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":10061,"nodeType":"StructuredDocumentation","src":"172:74:36","text":"@notice Returns the WitOracle address that this appliance is bound to."},"functionSelector":"1014d375","id":10066,"implemented":false,"kind":"function","modifiers":[],"name":"witOracle","nameLocation":"261:9:36","nodeType":"FunctionDefinition","parameters":{"id":10062,"nodeType":"ParameterList","parameters":[],"src":"270:2:36"},"returnParameters":{"id":10065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10064,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10066,"src":"304:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10063,"name":"address","nodeType":"ElementaryTypeName","src":"304:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"303:9:36"},"scope":10067,"src":"252:61:36","stateMutability":"view","virtual":true,"visibility":"external"}],"scope":10068,"src":"95:221:36","usedErrors":[],"usedEvents":[]}],"src":"35:283:36"},"id":36},"witnet-solidity-bridge/contracts/interfaces/IWitOracleConsumer.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleConsumer.sol","exportedSymbols":{"Bech32":[12200],"IWitOracle":[10055],"IWitOracleConsumer":[10080],"IWitOracleRadonRegistry":[10616],"Secp256k1":[13216],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200]},"id":10081,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10069,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:31:37"},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracle.sol","file":"./IWitOracle.sol","id":10070,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10081,"sourceUnit":10056,"src":"70:26:37","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleConsumer","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":10080,"linearizedBaseContracts":[10080],"name":"IWitOracleConsumer","nameLocation":"110:18:37","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":10071,"nodeType":"StructuredDocumentation","src":"138:306:37","text":"@notice Accepts a data report from the Wit/oracle blockchain that ought to be\n verified by the WitOracle contract pointed out by `witOracle()`. \n @dev The referred `witOracle()` contract emits a `IWitOracle.DataReport` for\n every `Witnet.DataPushReport` proven to be authentic. "},"functionSelector":"6d0d6a7e","id":10079,"implemented":false,"kind":"function","modifiers":[],"name":"pushDataReport","nameLocation":"459:14:37","nodeType":"FunctionDefinition","parameters":{"id":10077,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10074,"mutability":"mutable","name":"report","nameLocation":"505:6:37","nodeType":"VariableDeclaration","scope":10079,"src":"474:37:37","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport"},"typeName":{"id":10073,"nodeType":"UserDefinedTypeName","pathNode":{"id":10072,"name":"Witnet.DataPushReport","nameLocations":["474:6:37","481:14:37"],"nodeType":"IdentifierPath","referencedDeclaration":13371,"src":"474:21:37"},"referencedDeclaration":13371,"src":"474:21:37","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_storage_ptr","typeString":"struct Witnet.DataPushReport"}},"visibility":"internal"},{"constant":false,"id":10076,"mutability":"mutable","name":"proof","nameLocation":"528:5:37","nodeType":"VariableDeclaration","scope":10079,"src":"513:20:37","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":10075,"name":"bytes","nodeType":"ElementaryTypeName","src":"513:5:37","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"473:61:37"},"returnParameters":{"id":10078,"nodeType":"ParameterList","parameters":[],"src":"543:0:37"},"scope":10080,"src":"450:94:37","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":10081,"src":"100:447:37","usedErrors":[],"usedEvents":[]}],"src":"35:514:37"},"id":37},"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriable.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriable.sol","exportedSymbols":{"Bech32":[12200],"IWitOracleQueriable":[10250],"Secp256k1":[13216],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200]},"id":10251,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10082,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:31:38"},{"absolutePath":"witnet-solidity-bridge/contracts/libs/Witnet.sol","file":"../libs/Witnet.sol","id":10083,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10251,"sourceUnit":16768,"src":"70:28:38","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleQueriable","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":10250,"linearizedBaseContracts":[10250],"name":"IWitOracleQueriable","nameLocation":"112:19:38","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":10084,"nodeType":"StructuredDocumentation","src":"145:238:38","text":"@notice Removes all query data from storage. Pays back reward on expired queries.\n @dev Fails if the query is not in a final status, or not called from the actual requester.\n @param queryId The unique query identifier."},"functionSelector":"7c1fbda3","id":10092,"implemented":false,"kind":"function","modifiers":[],"name":"deleteQuery","nameLocation":"398:11:38","nodeType":"FunctionDefinition","parameters":{"id":10087,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10086,"mutability":"mutable","name":"queryId","nameLocation":"418:7:38","nodeType":"VariableDeclaration","scope":10092,"src":"410:15:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10085,"name":"uint256","nodeType":"ElementaryTypeName","src":"410:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"409:17:38"},"returnParameters":{"id":10091,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10090,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10092,"src":"445:21:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryEvmReward_$13244","typeString":"Witnet.QueryEvmReward"},"typeName":{"id":10089,"nodeType":"UserDefinedTypeName","pathNode":{"id":10088,"name":"Witnet.QueryEvmReward","nameLocations":["445:6:38","452:14:38"],"nodeType":"IdentifierPath","referencedDeclaration":13244,"src":"445:21:38"},"referencedDeclaration":13244,"src":"445:21:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryEvmReward_$13244","typeString":"Witnet.QueryEvmReward"}},"visibility":"internal"}],"src":"444:23:38"},"scope":10250,"src":"389:79:38","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":10093,"nodeType":"StructuredDocumentation","src":"476:161:38","text":"@notice Estimate the minimum reward required for posting a data request.\n @param evmGasPrice Expected gas price to pay upon posting the data request."},"functionSelector":"39a8653e","id":10100,"implemented":false,"kind":"function","modifiers":[],"name":"estimateBaseFee","nameLocation":"652:15:38","nodeType":"FunctionDefinition","parameters":{"id":10096,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10095,"mutability":"mutable","name":"evmGasPrice","nameLocation":"676:11:38","nodeType":"VariableDeclaration","scope":10100,"src":"668:19:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10094,"name":"uint256","nodeType":"ElementaryTypeName","src":"668:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"667:21:38"},"returnParameters":{"id":10099,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10098,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10100,"src":"712:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10097,"name":"uint256","nodeType":"ElementaryTypeName","src":"712:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"711:9:38"},"scope":10250,"src":"643:78:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10101,"nodeType":"StructuredDocumentation","src":"733:269:38","text":"@notice Estimate the minimum reward required for posting a data request with a callback.\n @param evmGasPrice Expected gas price to pay upon posting the data request.\n @param callbackGas Maximum gas to be spent when reporting the data request result."},"functionSelector":"05e742ef","id":10110,"implemented":false,"kind":"function","modifiers":[],"name":"estimateBaseFeeWithCallback","nameLocation":"1017:27:38","nodeType":"FunctionDefinition","parameters":{"id":10106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10103,"mutability":"mutable","name":"evmGasPrice","nameLocation":"1053:11:38","nodeType":"VariableDeclaration","scope":10110,"src":"1045:19:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10102,"name":"uint256","nodeType":"ElementaryTypeName","src":"1045:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10105,"mutability":"mutable","name":"callbackGas","nameLocation":"1073:11:38","nodeType":"VariableDeclaration","scope":10110,"src":"1066:18:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":10104,"name":"uint24","nodeType":"ElementaryTypeName","src":"1066:6:38","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"1044:41:38"},"returnParameters":{"id":10109,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10108,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10110,"src":"1109:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10107,"name":"uint256","nodeType":"ElementaryTypeName","src":"1109:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1108:9:38"},"scope":10250,"src":"1008:110:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10111,"nodeType":"StructuredDocumentation","src":"1126:621:38","text":"@notice Estimate the extra reward (i.e. over the base fee) to be paid when posting a new\n @notice data query in order to avoid getting provable \"too low incentives\" results from\n @notice the Wit/Oracle blockchain. \n @dev The extra fee gets calculated in proportion to:\n @param evmGasPrice Tentative EVM gas price at the moment the query result is ready.\n @param evmWitPrice  Tentative nanoWit price in Wei at the moment the query is solved on the Wit/Oracle blockchain.\n @param querySLA The query SLA data security parameters as required for the Wit/Oracle blockchain. "},"functionSelector":"d0a92a08","id":10123,"implemented":false,"kind":"function","modifiers":[],"name":"estimateExtraFee","nameLocation":"1762:16:38","nodeType":"FunctionDefinition","parameters":{"id":10119,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10113,"mutability":"mutable","name":"evmGasPrice","nameLocation":"1787:11:38","nodeType":"VariableDeclaration","scope":10123,"src":"1779:19:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10112,"name":"uint256","nodeType":"ElementaryTypeName","src":"1779:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10115,"mutability":"mutable","name":"evmWitPrice","nameLocation":"1808:11:38","nodeType":"VariableDeclaration","scope":10123,"src":"1800:19:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10114,"name":"uint256","nodeType":"ElementaryTypeName","src":"1800:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10118,"mutability":"mutable","name":"querySLA","nameLocation":"1846:8:38","nodeType":"VariableDeclaration","scope":10123,"src":"1821:33:38","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":10117,"nodeType":"UserDefinedTypeName","pathNode":{"id":10116,"name":"Witnet.QuerySLA","nameLocations":["1821:6:38","1828:8:38"],"nodeType":"IdentifierPath","referencedDeclaration":13472,"src":"1821:15:38"},"referencedDeclaration":13472,"src":"1821:15:38","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"1778:77:38"},"returnParameters":{"id":10122,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10121,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10123,"src":"1879:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10120,"name":"uint256","nodeType":"ElementaryTypeName","src":"1879:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1878:9:38"},"scope":10250,"src":"1753:135:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10124,"nodeType":"StructuredDocumentation","src":"1896:78:38","text":"@notice Returns next query id to be generated by the Witnet Request Board."},"functionSelector":"c805dd0f","id":10130,"implemented":false,"kind":"function","modifiers":[],"name":"getNextQueryId","nameLocation":"1989:14:38","nodeType":"FunctionDefinition","parameters":{"id":10125,"nodeType":"ParameterList","parameters":[],"src":"2003:2:38"},"returnParameters":{"id":10129,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10128,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10130,"src":"2029:14:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"},"typeName":{"id":10127,"nodeType":"UserDefinedTypeName","pathNode":{"id":10126,"name":"Witnet.QueryId","nameLocations":["2029:6:38","2036:7:38"],"nodeType":"IdentifierPath","referencedDeclaration":13248,"src":"2029:14:38"},"referencedDeclaration":13248,"src":"2029:14:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"}},"visibility":"internal"}],"src":"2028:16:38"},"scope":10250,"src":"1980:65:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10131,"nodeType":"StructuredDocumentation","src":"2053:85:38","text":"@notice Gets the whole Query data contents, if any, no matter its current status."},"functionSelector":"aeb2ffc1","id":10139,"implemented":false,"kind":"function","modifiers":[],"name":"getQuery","nameLocation":"2153:8:38","nodeType":"FunctionDefinition","parameters":{"id":10134,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10133,"mutability":"mutable","name":"queryId","nameLocation":"2170:7:38","nodeType":"VariableDeclaration","scope":10139,"src":"2162:15:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10132,"name":"uint256","nodeType":"ElementaryTypeName","src":"2162:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2161:17:38"},"returnParameters":{"id":10138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10137,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10139,"src":"2202:19:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Query_$13421_memory_ptr","typeString":"struct Witnet.Query"},"typeName":{"id":10136,"nodeType":"UserDefinedTypeName","pathNode":{"id":10135,"name":"Witnet.Query","nameLocations":["2202:6:38","2209:5:38"],"nodeType":"IdentifierPath","referencedDeclaration":13421,"src":"2202:12:38"},"referencedDeclaration":13421,"src":"2202:12:38","typeDescriptions":{"typeIdentifier":"t_struct$_Query_$13421_storage_ptr","typeString":"struct Witnet.Query"}},"visibility":"internal"}],"src":"2201:21:38"},"scope":10250,"src":"2144:79:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10140,"nodeType":"StructuredDocumentation","src":"2231:80:38","text":"@notice Gets the current EVM reward the reporter can claim, if not done yet."},"functionSelector":"6fdaab7e","id":10148,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryEvmReward","nameLocation":"2326:17:38","nodeType":"FunctionDefinition","parameters":{"id":10143,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10142,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10148,"src":"2344:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10141,"name":"uint256","nodeType":"ElementaryTypeName","src":"2344:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2343:9:38"},"returnParameters":{"id":10147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10146,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10148,"src":"2376:21:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryEvmReward_$13244","typeString":"Witnet.QueryEvmReward"},"typeName":{"id":10145,"nodeType":"UserDefinedTypeName","pathNode":{"id":10144,"name":"Witnet.QueryEvmReward","nameLocations":["2376:6:38","2383:14:38"],"nodeType":"IdentifierPath","referencedDeclaration":13244,"src":"2376:21:38"},"referencedDeclaration":13244,"src":"2376:21:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryEvmReward_$13244","typeString":"Witnet.QueryEvmReward"}},"visibility":"internal"}],"src":"2375:23:38"},"scope":10250,"src":"2317:82:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10149,"nodeType":"StructuredDocumentation","src":"2407:73:38","text":"@notice Retrieves the RAD hash and SLA parameters of the given query."},"functionSelector":"0aa4112a","id":10157,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryRequest","nameLocation":"2495:15:38","nodeType":"FunctionDefinition","parameters":{"id":10152,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10151,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10157,"src":"2511:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10150,"name":"uint256","nodeType":"ElementaryTypeName","src":"2511:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2510:9:38"},"returnParameters":{"id":10156,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10155,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10157,"src":"2543:26:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_QueryRequest_$13448_memory_ptr","typeString":"struct Witnet.QueryRequest"},"typeName":{"id":10154,"nodeType":"UserDefinedTypeName","pathNode":{"id":10153,"name":"Witnet.QueryRequest","nameLocations":["2543:6:38","2550:12:38"],"nodeType":"IdentifierPath","referencedDeclaration":13448,"src":"2543:19:38"},"referencedDeclaration":13448,"src":"2543:19:38","typeDescriptions":{"typeIdentifier":"t_struct$_QueryRequest_$13448_storage_ptr","typeString":"struct Witnet.QueryRequest"}},"visibility":"internal"}],"src":"2542:28:38"},"scope":10250,"src":"2486:85:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10158,"nodeType":"StructuredDocumentation","src":"2579:114:38","text":"@notice Retrieves the whole `Witnet.QueryResponse` record referred to a previously posted Witnet Data Request."},"functionSelector":"f61921b2","id":10166,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryResponse","nameLocation":"2708:16:38","nodeType":"FunctionDefinition","parameters":{"id":10161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10160,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10166,"src":"2725:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10159,"name":"uint256","nodeType":"ElementaryTypeName","src":"2725:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2724:9:38"},"returnParameters":{"id":10165,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10164,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10166,"src":"2757:27:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_QueryResponse_$13464_memory_ptr","typeString":"struct Witnet.QueryResponse"},"typeName":{"id":10163,"nodeType":"UserDefinedTypeName","pathNode":{"id":10162,"name":"Witnet.QueryResponse","nameLocations":["2757:6:38","2764:13:38"],"nodeType":"IdentifierPath","referencedDeclaration":13464,"src":"2757:20:38"},"referencedDeclaration":13464,"src":"2757:20:38","typeDescriptions":{"typeIdentifier":"t_struct$_QueryResponse_$13464_storage_ptr","typeString":"struct Witnet.QueryResponse"}},"visibility":"internal"}],"src":"2756:29:38"},"scope":10250,"src":"2699:87:38","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"59209b39","id":10174,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryResult","nameLocation":"2803:14:38","nodeType":"FunctionDefinition","parameters":{"id":10169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10168,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10174,"src":"2818:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10167,"name":"uint256","nodeType":"ElementaryTypeName","src":"2818:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2817:9:38"},"returnParameters":{"id":10173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10172,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10174,"src":"2850:24:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":10171,"nodeType":"UserDefinedTypeName","pathNode":{"id":10170,"name":"Witnet.DataResult","nameLocations":["2850:6:38","2857:10:38"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"2850:17:38"},"referencedDeclaration":13388,"src":"2850:17:38","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"2849:26:38"},"scope":10250,"src":"2794:82:38","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"4cddf615","id":10182,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryResultStatus","nameLocation":"2891:20:38","nodeType":"FunctionDefinition","parameters":{"id":10177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10176,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10182,"src":"2912:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10175,"name":"uint256","nodeType":"ElementaryTypeName","src":"2912:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2911:9:38"},"returnParameters":{"id":10181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10180,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10182,"src":"2944:19:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":10179,"nodeType":"UserDefinedTypeName","pathNode":{"id":10178,"name":"Witnet.ResultStatus","nameLocations":["2944:6:38","2951:12:38"],"nodeType":"IdentifierPath","referencedDeclaration":13729,"src":"2944:19:38"},"referencedDeclaration":13729,"src":"2944:19:38","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"}],"src":"2943:21:38"},"scope":10250,"src":"2882:83:38","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"c2581348","id":10189,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryResultStatusDescription","nameLocation":"2980:31:38","nodeType":"FunctionDefinition","parameters":{"id":10185,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10184,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10189,"src":"3012:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10183,"name":"uint256","nodeType":"ElementaryTypeName","src":"3012:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3011:9:38"},"returnParameters":{"id":10188,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10187,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10189,"src":"3044:13:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10186,"name":"string","nodeType":"ElementaryTypeName","src":"3044:6:38","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3043:15:38"},"scope":10250,"src":"2971:88:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10190,"nodeType":"StructuredDocumentation","src":"3067:47:38","text":"@notice Gets current status of given query."},"functionSelector":"6f07abcc","id":10198,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryStatus","nameLocation":"3129:14:38","nodeType":"FunctionDefinition","parameters":{"id":10193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10192,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10198,"src":"3144:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10191,"name":"uint256","nodeType":"ElementaryTypeName","src":"3144:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3143:9:38"},"returnParameters":{"id":10197,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10196,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10198,"src":"3176:18:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_QueryStatus_$13430","typeString":"enum Witnet.QueryStatus"},"typeName":{"id":10195,"nodeType":"UserDefinedTypeName","pathNode":{"id":10194,"name":"Witnet.QueryStatus","nameLocations":["3176:6:38","3183:11:38"],"nodeType":"IdentifierPath","referencedDeclaration":13430,"src":"3176:18:38"},"referencedDeclaration":13430,"src":"3176:18:38","typeDescriptions":{"typeIdentifier":"t_enum$_QueryStatus_$13430","typeString":"enum Witnet.QueryStatus"}},"visibility":"internal"}],"src":"3175:20:38"},"scope":10250,"src":"3120:76:38","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"838d44e2","id":10205,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryStatusString","nameLocation":"3211:20:38","nodeType":"FunctionDefinition","parameters":{"id":10201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10200,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10205,"src":"3232:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10199,"name":"uint256","nodeType":"ElementaryTypeName","src":"3232:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3231:9:38"},"returnParameters":{"id":10204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10203,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10205,"src":"3264:13:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10202,"name":"string","nodeType":"ElementaryTypeName","src":"3264:6:38","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3263:15:38"},"scope":10250,"src":"3202:77:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10206,"nodeType":"StructuredDocumentation","src":"3291:54:38","text":"@notice Get current status of all given query ids."},"functionSelector":"581f5094","id":10216,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryStatusBatch","nameLocation":"3360:19:38","nodeType":"FunctionDefinition","parameters":{"id":10210,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10209,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10216,"src":"3380:18:38","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":10207,"name":"uint256","nodeType":"ElementaryTypeName","src":"3380:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10208,"nodeType":"ArrayTypeName","src":"3380:9:38","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"3379:20:38"},"returnParameters":{"id":10215,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10214,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10216,"src":"3423:27:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_enum$_QueryStatus_$13430_$dyn_memory_ptr","typeString":"enum Witnet.QueryStatus[]"},"typeName":{"baseType":{"id":10212,"nodeType":"UserDefinedTypeName","pathNode":{"id":10211,"name":"Witnet.QueryStatus","nameLocations":["3423:6:38","3430:11:38"],"nodeType":"IdentifierPath","referencedDeclaration":13430,"src":"3423:18:38"},"referencedDeclaration":13430,"src":"3423:18:38","typeDescriptions":{"typeIdentifier":"t_enum$_QueryStatus_$13430","typeString":"enum Witnet.QueryStatus"}},"id":10213,"nodeType":"ArrayTypeName","src":"3423:20:38","typeDescriptions":{"typeIdentifier":"t_array$_t_enum$_QueryStatus_$13430_$dyn_storage_ptr","typeString":"enum Witnet.QueryStatus[]"}},"visibility":"internal"}],"src":"3422:29:38"},"scope":10250,"src":"3351:101:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10217,"nodeType":"StructuredDocumentation","src":"3460:699:38","text":"@notice Request real world data from the Wit/Oracle sidechain. \n @notice The paid fee is escrowed as a reward for the reporter that eventually relays back \n @notice a valid query result from the Wit/Oracle sidechain.\n @notice Query results are CBOR-encoded, and can contain either some     data, or an error.\n @dev Reasons to revert:\n @dev - the data request's RAD hash was not previously verified into the WitOracleRadonRegistry contract;\n @dev - invalid query SLA parameters were provided;\n @dev - insufficient value is paid as reward.\n @param radonHash The unique hash of the Radon Request to be solved by Wit/Oracle sidechain. "},"functionSelector":"a58f6803","id":10228,"implemented":false,"kind":"function","modifiers":[],"name":"queryData","nameLocation":"4174:9:38","nodeType":"FunctionDefinition","parameters":{"id":10224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10220,"mutability":"mutable","name":"radonHash","nameLocation":"4215:9:38","nodeType":"VariableDeclaration","scope":10228,"src":"4198:26:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10219,"nodeType":"UserDefinedTypeName","pathNode":{"id":10218,"name":"Witnet.RadonHash","nameLocations":["4198:6:38","4205:9:38"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"4198:16:38"},"referencedDeclaration":13250,"src":"4198:16:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":10223,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10228,"src":"4239:24:38","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":10222,"nodeType":"UserDefinedTypeName","pathNode":{"id":10221,"name":"Witnet.QuerySLA","nameLocations":["4239:6:38","4246:8:38"],"nodeType":"IdentifierPath","referencedDeclaration":13472,"src":"4239:15:38"},"referencedDeclaration":13472,"src":"4239:15:38","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"4183:91:38"},"returnParameters":{"id":10227,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10226,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10228,"src":"4310:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10225,"name":"uint256","nodeType":"ElementaryTypeName","src":"4310:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4309:9:38"},"scope":10250,"src":"4165:154:38","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":10229,"nodeType":"StructuredDocumentation","src":"4327:885:38","text":"@notice Request real world data from the Wit/Oracle sidechain. \n @notice The paid fee is escrowed as a reward for the reporter that eventually relays back \n @notice a valid query result from the Wit/Oracle sidechain.\n @notice The Witnet-provable result will be reported directly to the requesting contract. \n @notice Query results are CBOR-encoded, and can contain either some data, or an error.\n @dev Reasons to revert:\n @dev - the data request's RAD hash was not previously verified into the Radon Registry;\n @dev - invalid query SLA parameters were provided;\n @dev - insufficient value is paid as reward.\n @dev - passed `consumer` is not a contract implementing the IWitOracleQueriableConsumer interface;\n @param radonHash The unique hash of the Radon Request to be solved by Wit/Oracle sidechain. "},"functionSelector":"3b3195b7","id":10243,"implemented":false,"kind":"function","modifiers":[],"name":"queryDataWithCallback","nameLocation":"5227:21:38","nodeType":"FunctionDefinition","parameters":{"id":10239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10232,"mutability":"mutable","name":"radonHash","nameLocation":"5280:9:38","nodeType":"VariableDeclaration","scope":10243,"src":"5263:26:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10231,"nodeType":"UserDefinedTypeName","pathNode":{"id":10230,"name":"Witnet.RadonHash","nameLocations":["5263:6:38","5270:9:38"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"5263:16:38"},"referencedDeclaration":13250,"src":"5263:16:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":10235,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10243,"src":"5305:24:38","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":10234,"nodeType":"UserDefinedTypeName","pathNode":{"id":10233,"name":"Witnet.QuerySLA","nameLocations":["5305:6:38","5312:8:38"],"nodeType":"IdentifierPath","referencedDeclaration":13472,"src":"5305:15:38"},"referencedDeclaration":13472,"src":"5305:15:38","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"},{"constant":false,"id":10238,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10243,"src":"5345:29:38","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QueryCallback_$13435_calldata_ptr","typeString":"struct Witnet.QueryCallback"},"typeName":{"id":10237,"nodeType":"UserDefinedTypeName","pathNode":{"id":10236,"name":"Witnet.QueryCallback","nameLocations":["5345:6:38","5352:13:38"],"nodeType":"IdentifierPath","referencedDeclaration":13435,"src":"5345:20:38"},"referencedDeclaration":13435,"src":"5345:20:38","typeDescriptions":{"typeIdentifier":"t_struct$_QueryCallback_$13435_storage_ptr","typeString":"struct Witnet.QueryCallback"}},"visibility":"internal"}],"src":"5248:137:38"},"returnParameters":{"id":10242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10241,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10243,"src":"5421:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10240,"name":"uint256","nodeType":"ElementaryTypeName","src":"5421:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5420:9:38"},"scope":10250,"src":"5218:212:38","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":10244,"nodeType":"StructuredDocumentation","src":"5438:103:38","text":"@notice Increments the reward of a previously posted request by adding the transaction value to it."},"functionSelector":"ec5946db","id":10249,"implemented":false,"kind":"function","modifiers":[],"name":"upgradeQueryEvmReward","nameLocation":"5556:21:38","nodeType":"FunctionDefinition","parameters":{"id":10247,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10246,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10249,"src":"5578:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10245,"name":"uint256","nodeType":"ElementaryTypeName","src":"5578:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5577:9:38"},"returnParameters":{"id":10248,"nodeType":"ParameterList","parameters":[],"src":"5603:0:38"},"scope":10250,"src":"5547:57:38","stateMutability":"payable","virtual":false,"visibility":"external"}],"scope":10251,"src":"102:5505:38","usedErrors":[],"usedEvents":[]}],"src":"35:5572:38"},"id":38},"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableConsumer.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableConsumer.sol","exportedSymbols":{"Bech32":[12200],"IWitOracleQueriable":[10250],"IWitOracleQueriableConsumer":[10270],"Secp256k1":[13216],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200]},"id":10271,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10252,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"35:23:39"},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriable.sol","file":"./IWitOracleQueriable.sol","id":10253,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10271,"sourceUnit":10251,"src":"62:35:39","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleQueriableConsumer","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":10270,"linearizedBaseContracts":[10270],"name":"IWitOracleQueriableConsumer","nameLocation":"111:27:39","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":10254,"nodeType":"StructuredDocumentation","src":"148:488:39","text":"@notice Method to be called from the WitOracle contract as soon as the given Witnet `queryId`\n @notice gets reported.\n @dev It should revert if called from any other address different to the WitOracle being used\n @dev by the WitOracleQueriableConsumer contract. \n @param queryId The unique identifier of the Witnet query being reported.\n @param queryResult Abi-encoded Witnet.DataResult containing the CBOR-encoded query's result, and metadata."},"functionSelector":"d6f29e81","id":10261,"implemented":false,"kind":"function","modifiers":[],"name":"reportWitOracleQueryResult","nameLocation":"651:26:39","nodeType":"FunctionDefinition","parameters":{"id":10259,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10256,"mutability":"mutable","name":"queryId","nameLocation":"700:7:39","nodeType":"VariableDeclaration","scope":10261,"src":"692:15:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10255,"name":"uint256","nodeType":"ElementaryTypeName","src":"692:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10258,"mutability":"mutable","name":"queryResult","nameLocation":"737:11:39","nodeType":"VariableDeclaration","scope":10261,"src":"722:26:39","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":10257,"name":"bytes","nodeType":"ElementaryTypeName","src":"722:5:39","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"677:82:39"},"returnParameters":{"id":10260,"nodeType":"ParameterList","parameters":[],"src":"768:0:39"},"scope":10270,"src":"642:127:39","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":10262,"nodeType":"StructuredDocumentation","src":"777:230:39","text":"@notice Determines if Witnet queries can be reported from given address.\n @dev In practice, must only be true on the WitOracle address that's being used by\n @dev the WitOracleQueriableConsumer to post queries. "},"functionSelector":"47a10e56","id":10269,"implemented":false,"kind":"function","modifiers":[],"name":"reportableFrom","nameLocation":"1022:14:39","nodeType":"FunctionDefinition","parameters":{"id":10265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10264,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10269,"src":"1037:7:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10263,"name":"address","nodeType":"ElementaryTypeName","src":"1037:7:39","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1036:9:39"},"returnParameters":{"id":10268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10267,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10269,"src":"1069:4:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10266,"name":"bool","nodeType":"ElementaryTypeName","src":"1069:4:39","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1068:6:39"},"scope":10270,"src":"1013:62:39","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":10271,"src":"101:977:39","usedErrors":[],"usedEvents":[]}],"src":"35:1045:39"},"id":39},"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableEvents.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableEvents.sol","exportedSymbols":{"Bech32":[12200],"IWitOracleQueriableEvents":[10347],"Secp256k1":[13216],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200]},"id":10348,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10272,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:31:40"},{"absolutePath":"witnet-solidity-bridge/contracts/libs/Witnet.sol","file":"../libs/Witnet.sol","id":10273,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10348,"sourceUnit":16768,"src":"70:28:40","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleQueriableEvents","contractDependencies":[],"contractKind":"interface","fullyImplemented":true,"id":10347,"linearizedBaseContracts":[10347],"name":"IWitOracleQueriableEvents","nameLocation":"112:25:40","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":10274,"nodeType":"StructuredDocumentation","src":"147:100:40","text":"Emitted every time a new query containing some verified data request is posted to the WitOracle."},"eventSelector":"fbe74eb38ea9de3d74d481a4f701ae121d794895c5797db8260d06d317901d26","id":10291,"name":"WitOracleQuery","nameLocation":"259:14:40","nodeType":"EventDefinition","parameters":{"id":10290,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10276,"indexed":true,"mutability":"mutable","name":"evmRequester","nameLocation":"300:12:40","nodeType":"VariableDeclaration","scope":10291,"src":"284:28:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10275,"name":"address","nodeType":"ElementaryTypeName","src":"284:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10278,"indexed":false,"mutability":"mutable","name":"evmGasPrice","nameLocation":"331:11:40","nodeType":"VariableDeclaration","scope":10291,"src":"323:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10277,"name":"uint256","nodeType":"ElementaryTypeName","src":"323:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10280,"indexed":false,"mutability":"mutable","name":"evmReward","nameLocation":"361:9:40","nodeType":"VariableDeclaration","scope":10291,"src":"353:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10279,"name":"uint256","nodeType":"ElementaryTypeName","src":"353:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10283,"indexed":false,"mutability":"mutable","name":"queryId","nameLocation":"396:7:40","nodeType":"VariableDeclaration","scope":10291,"src":"381:22:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"},"typeName":{"id":10282,"nodeType":"UserDefinedTypeName","pathNode":{"id":10281,"name":"Witnet.QueryId","nameLocations":["381:6:40","388:7:40"],"nodeType":"IdentifierPath","referencedDeclaration":13248,"src":"381:14:40"},"referencedDeclaration":13248,"src":"381:14:40","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":10286,"indexed":false,"mutability":"mutable","name":"radonHash","nameLocation":"432:9:40","nodeType":"VariableDeclaration","scope":10291,"src":"415:26:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10285,"nodeType":"UserDefinedTypeName","pathNode":{"id":10284,"name":"Witnet.RadonHash","nameLocations":["415:6:40","422:9:40"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"415:16:40"},"referencedDeclaration":13250,"src":"415:16:40","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":10289,"indexed":false,"mutability":"mutable","name":"radonParams","nameLocation":"468:11:40","nodeType":"VariableDeclaration","scope":10291,"src":"452:27:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_memory_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":10288,"nodeType":"UserDefinedTypeName","pathNode":{"id":10287,"name":"Witnet.QuerySLA","nameLocations":["452:6:40","459:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":13472,"src":"452:15:40"},"referencedDeclaration":13472,"src":"452:15:40","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"273:213:40"},"src":"253:234:40"},{"anonymous":false,"documentation":{"id":10292,"nodeType":"StructuredDocumentation","src":"495:73:40","text":"Emitted when the reward of some not-yet reported query gets upgraded."},"eventSelector":"66f95ec285ca572fa1cac40e7019e14ab45a8fc619c6405222e8af55534c2f67","id":10303,"name":"WitOracleQueryUpgrade","nameLocation":"580:21:40","nodeType":"EventDefinition","parameters":{"id":10302,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10295,"indexed":false,"mutability":"mutable","name":"queryId","nameLocation":"627:7:40","nodeType":"VariableDeclaration","scope":10303,"src":"612:22:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"},"typeName":{"id":10294,"nodeType":"UserDefinedTypeName","pathNode":{"id":10293,"name":"Witnet.QueryId","nameLocations":["612:6:40","619:7:40"],"nodeType":"IdentifierPath","referencedDeclaration":13248,"src":"612:14:40"},"referencedDeclaration":13248,"src":"612:14:40","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":10297,"indexed":false,"mutability":"mutable","name":"evmSender","nameLocation":"653:9:40","nodeType":"VariableDeclaration","scope":10303,"src":"645:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10296,"name":"address","nodeType":"ElementaryTypeName","src":"645:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10299,"indexed":false,"mutability":"mutable","name":"evmGasPrice","nameLocation":"681:11:40","nodeType":"VariableDeclaration","scope":10303,"src":"673:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10298,"name":"uint256","nodeType":"ElementaryTypeName","src":"673:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10301,"indexed":false,"mutability":"mutable","name":"evmReward","nameLocation":"711:9:40","nodeType":"VariableDeclaration","scope":10303,"src":"703:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10300,"name":"uint256","nodeType":"ElementaryTypeName","src":"703:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"601:126:40"},"src":"574:154:40"},{"anonymous":false,"documentation":{"id":10304,"nodeType":"StructuredDocumentation","src":"738:69:40","text":"Emitted when a query with no callback gets reported into the WRB."},"eventSelector":"dad34843fe0bb0a9944d07fad791384dd3727bfeb7f286a0f424120018e1057c","id":10311,"name":"WitOracleQueryReport","nameLocation":"819:20:40","nodeType":"EventDefinition","parameters":{"id":10310,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10307,"indexed":false,"mutability":"mutable","name":"queryId","nameLocation":"865:7:40","nodeType":"VariableDeclaration","scope":10311,"src":"850:22:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"},"typeName":{"id":10306,"nodeType":"UserDefinedTypeName","pathNode":{"id":10305,"name":"Witnet.QueryId","nameLocations":["850:6:40","857:7:40"],"nodeType":"IdentifierPath","referencedDeclaration":13248,"src":"850:14:40"},"referencedDeclaration":13248,"src":"850:14:40","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":10309,"indexed":false,"mutability":"mutable","name":"evmGasPrice","nameLocation":"892:11:40","nodeType":"VariableDeclaration","scope":10311,"src":"884:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10308,"name":"uint256","nodeType":"ElementaryTypeName","src":"884:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"839:71:40"},"src":"813:98:40"},{"anonymous":false,"eventSelector":"0c659cb9cb62e341db66980f799f14edbc937a08725319a4cd26d77b077e3b7d","id":10318,"name":"WitOracleQueryReportDispute","nameLocation":"925:27:40","nodeType":"EventDefinition","parameters":{"id":10317,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10314,"indexed":false,"mutability":"mutable","name":"queryId","nameLocation":"978:7:40","nodeType":"VariableDeclaration","scope":10318,"src":"963:22:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"},"typeName":{"id":10313,"nodeType":"UserDefinedTypeName","pathNode":{"id":10312,"name":"Witnet.QueryId","nameLocations":["963:6:40","970:7:40"],"nodeType":"IdentifierPath","referencedDeclaration":13248,"src":"963:14:40"},"referencedDeclaration":13248,"src":"963:14:40","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":10316,"indexed":false,"mutability":"mutable","name":"evmDisputer","nameLocation":"1004:11:40","nodeType":"VariableDeclaration","scope":10318,"src":"996:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10315,"name":"address","nodeType":"ElementaryTypeName","src":"996:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"952:70:40"},"src":"919:104:40"},{"anonymous":false,"documentation":{"id":10319,"nodeType":"StructuredDocumentation","src":"1031:81:40","text":"Emitted when a query with a callback gets successfully reported into the WRB."},"eventSelector":"6c796d02cda250b2df8ffb41596f8c9bd3de98cec4082fca7bddbfdf87500641","id":10330,"name":"WitOracleQueryReportDelivery","nameLocation":"1124:28:40","nodeType":"EventDefinition","parameters":{"id":10329,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10322,"indexed":false,"mutability":"mutable","name":"queryId","nameLocation":"1178:7:40","nodeType":"VariableDeclaration","scope":10330,"src":"1163:22:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"},"typeName":{"id":10321,"nodeType":"UserDefinedTypeName","pathNode":{"id":10320,"name":"Witnet.QueryId","nameLocations":["1163:6:40","1170:7:40"],"nodeType":"IdentifierPath","referencedDeclaration":13248,"src":"1163:14:40"},"referencedDeclaration":13248,"src":"1163:14:40","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":10324,"indexed":false,"mutability":"mutable","name":"evmConsumer","nameLocation":"1205:11:40","nodeType":"VariableDeclaration","scope":10330,"src":"1197:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10323,"name":"address","nodeType":"ElementaryTypeName","src":"1197:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10326,"indexed":false,"mutability":"mutable","name":"evmGasPrice","nameLocation":"1235:11:40","nodeType":"VariableDeclaration","scope":10330,"src":"1227:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10325,"name":"uint256","nodeType":"ElementaryTypeName","src":"1227:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10328,"indexed":false,"mutability":"mutable","name":"evmCallbackGas","nameLocation":"1266:14:40","nodeType":"VariableDeclaration","scope":10330,"src":"1258:22:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10327,"name":"uint256","nodeType":"ElementaryTypeName","src":"1258:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1152:135:40"},"src":"1118:170:40"},{"anonymous":false,"documentation":{"id":10331,"nodeType":"StructuredDocumentation","src":"1296:74:40","text":"Emitted when a query with a callback cannot get reported into the WRB."},"eventSelector":"09fcb062eea311bee472ba4446b2fd5ef38dbfbb7aefe922398b05776a86e48e","id":10346,"name":"WitOracleResportDeliveryFailed","nameLocation":"1382:30:40","nodeType":"EventDefinition","parameters":{"id":10345,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10334,"indexed":false,"mutability":"mutable","name":"queryId","nameLocation":"1438:7:40","nodeType":"VariableDeclaration","scope":10346,"src":"1423:22:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"},"typeName":{"id":10333,"nodeType":"UserDefinedTypeName","pathNode":{"id":10332,"name":"Witnet.QueryId","nameLocations":["1423:6:40","1430:7:40"],"nodeType":"IdentifierPath","referencedDeclaration":13248,"src":"1423:14:40"},"referencedDeclaration":13248,"src":"1423:14:40","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":10336,"indexed":false,"mutability":"mutable","name":"evmConsumer","nameLocation":"1465:11:40","nodeType":"VariableDeclaration","scope":10346,"src":"1457:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10335,"name":"address","nodeType":"ElementaryTypeName","src":"1457:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10338,"indexed":false,"mutability":"mutable","name":"evmGasPrice","nameLocation":"1495:11:40","nodeType":"VariableDeclaration","scope":10346,"src":"1487:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10337,"name":"uint256","nodeType":"ElementaryTypeName","src":"1487:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10340,"indexed":false,"mutability":"mutable","name":"evmCallbackActualGas","nameLocation":"1526:20:40","nodeType":"VariableDeclaration","scope":10346,"src":"1518:28:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10339,"name":"uint256","nodeType":"ElementaryTypeName","src":"1518:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10342,"indexed":false,"mutability":"mutable","name":"evmCallbackRevertReason","nameLocation":"1566:23:40","nodeType":"VariableDeclaration","scope":10346,"src":"1558:31:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10341,"name":"string","nodeType":"ElementaryTypeName","src":"1558:6:40","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10344,"indexed":false,"mutability":"mutable","name":"resultCborBytes","nameLocation":"1608:15:40","nodeType":"VariableDeclaration","scope":10346,"src":"1600:23:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10343,"name":"bytes","nodeType":"ElementaryTypeName","src":"1600:5:40","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1412:218:40"},"src":"1376:255:40"}],"scope":10348,"src":"102:1532:40","usedErrors":[],"usedEvents":[10291,10303,10311,10318,10330,10346]}],"src":"35:1601:40"},"id":40},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistry.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistry.sol","exportedSymbols":{"Bech32":[12200],"IWitOracleRadonRegistry":[10616],"Secp256k1":[13216],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200]},"id":10617,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10349,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:31:41"},{"absolutePath":"witnet-solidity-bridge/contracts/libs/Witnet.sol","file":"../libs/Witnet.sol","id":10350,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10617,"sourceUnit":16768,"src":"70:28:41","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleRadonRegistry","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":10616,"linearizedBaseContracts":[10616],"name":"IWitOracleRadonRegistry","nameLocation":"112:23:41","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":10351,"nodeType":"StructuredDocumentation","src":"145:164:41","text":"@notice Returns the Witnet-compliant DRO bytecode for some data request object \n made out of the given Radon Request and Radon SLA security parameters. "},"functionSelector":"dcf3f972","id":10362,"implemented":false,"kind":"function","modifiers":[],"name":"bytecodeOf","nameLocation":"324:10:41","nodeType":"FunctionDefinition","parameters":{"id":10358,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10354,"mutability":"mutable","name":"radonRequestHash","nameLocation":"366:16:41","nodeType":"VariableDeclaration","scope":10362,"src":"349:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10353,"nodeType":"UserDefinedTypeName","pathNode":{"id":10352,"name":"Witnet.RadonHash","nameLocations":["349:6:41","356:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"349:16:41"},"referencedDeclaration":13250,"src":"349:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":10357,"mutability":"mutable","name":"queryParams","nameLocation":"423:11:41","nodeType":"VariableDeclaration","scope":10362,"src":"398:36:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":10356,"nodeType":"UserDefinedTypeName","pathNode":{"id":10355,"name":"Witnet.QuerySLA","nameLocations":["398:6:41","405:8:41"],"nodeType":"IdentifierPath","referencedDeclaration":13472,"src":"398:15:41"},"referencedDeclaration":13472,"src":"398:15:41","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"334:111:41"},"returnParameters":{"id":10361,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10360,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10362,"src":"469:12:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10359,"name":"bytes","nodeType":"ElementaryTypeName","src":"469:5:41","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"468:14:41"},"scope":10616,"src":"315:168:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10363,"nodeType":"StructuredDocumentation","src":"495:163:41","text":"@notice Returns the Witnet-compliant DRO bytecode for some data request object \n made out of the given RAD bytecode and Radon SLA security parameters. "},"functionSelector":"9a7af84e","id":10373,"implemented":false,"kind":"function","modifiers":[],"name":"bytecodeOf","nameLocation":"673:10:41","nodeType":"FunctionDefinition","parameters":{"id":10369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10365,"mutability":"mutable","name":"radonRequestBytecode","nameLocation":"713:20:41","nodeType":"VariableDeclaration","scope":10373,"src":"698:35:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":10364,"name":"bytes","nodeType":"ElementaryTypeName","src":"698:5:41","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10368,"mutability":"mutable","name":"queryParams","nameLocation":"774:11:41","nodeType":"VariableDeclaration","scope":10373,"src":"749:36:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":10367,"nodeType":"UserDefinedTypeName","pathNode":{"id":10366,"name":"Witnet.QuerySLA","nameLocations":["749:6:41","756:8:41"],"nodeType":"IdentifierPath","referencedDeclaration":13472,"src":"749:15:41"},"referencedDeclaration":13472,"src":"749:15:41","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"683:113:41"},"returnParameters":{"id":10372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10371,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10373,"src":"820:12:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10370,"name":"bytes","nodeType":"ElementaryTypeName","src":"820:5:41","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"819:14:41"},"scope":10616,"src":"664:170:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10374,"nodeType":"StructuredDocumentation","src":"842:209:41","text":"@notice Returns the hash of the given Witnet-compliant bytecode. Returned value\n can be used to trace back in the Witnet blockchain all past resolutions \n of the given data request payload."},"functionSelector":"a0490fa0","id":10382,"implemented":false,"kind":"function","modifiers":[],"name":"hashOf","nameLocation":"1066:6:41","nodeType":"FunctionDefinition","parameters":{"id":10377,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10376,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10382,"src":"1073:14:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":10375,"name":"bytes","nodeType":"ElementaryTypeName","src":"1073:5:41","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1072:16:41"},"returnParameters":{"id":10381,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10380,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10382,"src":"1112:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10379,"nodeType":"UserDefinedTypeName","pathNode":{"id":10378,"name":"Witnet.RadonHash","nameLocations":["1112:6:41","1119:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"1112:16:41"},"referencedDeclaration":13250,"src":"1112:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"1111:18:41"},"scope":10616,"src":"1057:73:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10383,"nodeType":"StructuredDocumentation","src":"1138:99:41","text":"@notice Tells whether the specified Radon Reducer has been formally verified into the registry."},"functionSelector":"2229e86e","id":10390,"implemented":false,"kind":"function","modifiers":[],"name":"isVerifiedRadonReducer","nameLocation":"1252:22:41","nodeType":"FunctionDefinition","parameters":{"id":10386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10385,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10390,"src":"1275:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10384,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1275:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1274:9:41"},"returnParameters":{"id":10389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10388,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10390,"src":"1307:4:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10387,"name":"bool","nodeType":"ElementaryTypeName","src":"1307:4:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1306:6:41"},"scope":10616,"src":"1243:70:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10391,"nodeType":"StructuredDocumentation","src":"1325:92:41","text":"@notice Tells whether the given Radon Hash has been formally verified into the registry."},"functionSelector":"68ec07a4","id":10399,"implemented":false,"kind":"function","modifiers":[],"name":"isVerifiedRadonRequest","nameLocation":"1432:22:41","nodeType":"FunctionDefinition","parameters":{"id":10395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10394,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10399,"src":"1455:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10393,"nodeType":"UserDefinedTypeName","pathNode":{"id":10392,"name":"Witnet.RadonHash","nameLocations":["1455:6:41","1462:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"1455:16:41"},"referencedDeclaration":13250,"src":"1455:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"1454:18:41"},"returnParameters":{"id":10398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10397,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10399,"src":"1496:4:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10396,"name":"bool","nodeType":"ElementaryTypeName","src":"1496:4:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1495:6:41"},"scope":10616,"src":"1423:79:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10400,"nodeType":"StructuredDocumentation","src":"1514:101:41","text":"@notice Tells whether the specified Radon Retrieval has been formally verified into the registry."},"functionSelector":"977e0157","id":10407,"implemented":false,"kind":"function","modifiers":[],"name":"isVerifiedRadonRetrieval","nameLocation":"1630:24:41","nodeType":"FunctionDefinition","parameters":{"id":10403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10402,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10407,"src":"1655:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10401,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1655:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1654:9:41"},"returnParameters":{"id":10406,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10405,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10407,"src":"1687:4:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10404,"name":"bool","nodeType":"ElementaryTypeName","src":"1687:4:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1686:6:41"},"scope":10616,"src":"1621:72:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10408,"nodeType":"StructuredDocumentation","src":"1705:119:41","text":"@notice Returns the whole Witnet.RadonReducer metadata struct for the given hash.\n @dev Reverts if unknown."},"functionSelector":"3679f864","id":10416,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonReducer","nameLocation":"1839:18:41","nodeType":"FunctionDefinition","parameters":{"id":10411,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10410,"mutability":"mutable","name":"hash","nameLocation":"1866:4:41","nodeType":"VariableDeclaration","scope":10416,"src":"1858:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10409,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1858:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1857:14:41"},"returnParameters":{"id":10415,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10414,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10416,"src":"1895:26:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_memory_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10413,"nodeType":"UserDefinedTypeName","pathNode":{"id":10412,"name":"Witnet.RadonReducer","nameLocations":["1895:6:41","1902:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"1895:19:41"},"referencedDeclaration":13779,"src":"1895:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"1894:28:41"},"scope":10616,"src":"1830:93:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10417,"nodeType":"StructuredDocumentation","src":"2198:122:41","text":"@notice Returns the Witnet-compliant RAD bytecode for some Radon Request \n identified by its unique RAD hash. "},"functionSelector":"8a227764","id":10425,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRequestBytecode","nameLocation":"2335:26:41","nodeType":"FunctionDefinition","parameters":{"id":10421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10420,"mutability":"mutable","name":"radonRequestHash","nameLocation":"2379:16:41","nodeType":"VariableDeclaration","scope":10425,"src":"2362:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10419,"nodeType":"UserDefinedTypeName","pathNode":{"id":10418,"name":"Witnet.RadonHash","nameLocations":["2362:6:41","2369:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"2362:16:41"},"referencedDeclaration":13250,"src":"2362:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"2361:35:41"},"returnParameters":{"id":10424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10423,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10425,"src":"2420:12:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10422,"name":"bytes","nodeType":"ElementaryTypeName","src":"2420:5:41","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2419:14:41"},"scope":10616,"src":"2326:108:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10426,"nodeType":"StructuredDocumentation","src":"2442:178:41","text":"@notice Returns the Tally reducer that is applied to aggregated values revealed by the witnessing nodes on the \n Witnet blockchain. \n @dev Reverts if unknown."},"functionSelector":"48223a0b","id":10435,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRequestCrowdAttestationTally","nameLocation":"2635:39:41","nodeType":"FunctionDefinition","parameters":{"id":10430,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10429,"mutability":"mutable","name":"radonRequestHash","nameLocation":"2692:16:41","nodeType":"VariableDeclaration","scope":10435,"src":"2675:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10428,"nodeType":"UserDefinedTypeName","pathNode":{"id":10427,"name":"Witnet.RadonHash","nameLocations":["2675:6:41","2682:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"2675:16:41"},"referencedDeclaration":13250,"src":"2675:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"2674:35:41"},"returnParameters":{"id":10434,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10433,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10435,"src":"2733:26:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_memory_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10432,"nodeType":"UserDefinedTypeName","pathNode":{"id":10431,"name":"Witnet.RadonReducer","nameLocations":["2733:6:41","2740:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"2733:19:41"},"referencedDeclaration":13779,"src":"2733:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"2732:28:41"},"scope":10616,"src":"2626:135:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10436,"nodeType":"StructuredDocumentation","src":"2773:145:41","text":"@notice Returns the deterministic data type returned by successful resolutions of the given Radon Request. \n @dev Reverts if unknown."},"functionSelector":"4c729104","id":10445,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRequestResultDataType","nameLocation":"2933:32:41","nodeType":"FunctionDefinition","parameters":{"id":10440,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10439,"mutability":"mutable","name":"radonRequestHash","nameLocation":"2983:16:41","nodeType":"VariableDeclaration","scope":10445,"src":"2966:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10438,"nodeType":"UserDefinedTypeName","pathNode":{"id":10437,"name":"Witnet.RadonHash","nameLocations":["2966:6:41","2973:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"2966:16:41"},"referencedDeclaration":13250,"src":"2966:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"2965:35:41"},"returnParameters":{"id":10444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10443,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10445,"src":"3024:21:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":10442,"nodeType":"UserDefinedTypeName","pathNode":{"id":10441,"name":"Witnet.RadonDataTypes","nameLocations":["3024:6:41","3031:14:41"],"nodeType":"IdentifierPath","referencedDeclaration":13751,"src":"3024:21:41"},"referencedDeclaration":13751,"src":"3024:21:41","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"}],"src":"3023:23:41"},"scope":10616,"src":"2924:123:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10446,"nodeType":"StructuredDocumentation","src":"3366:198:41","text":"@notice Returns an array (one or more items) containing the introspective metadata of the given Radon Request's \n data sources (i.e. Radon Retrievals). \n @dev Reverts if unknown."},"functionSelector":"77c11259","id":10456,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRequestRetrievals","nameLocation":"3579:28:41","nodeType":"FunctionDefinition","parameters":{"id":10450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10449,"mutability":"mutable","name":"radonRequestHash","nameLocation":"3625:16:41","nodeType":"VariableDeclaration","scope":10456,"src":"3608:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10448,"nodeType":"UserDefinedTypeName","pathNode":{"id":10447,"name":"Witnet.RadonHash","nameLocations":["3608:6:41","3615:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"3608:16:41"},"referencedDeclaration":13250,"src":"3608:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"3607:35:41"},"returnParameters":{"id":10455,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10454,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10456,"src":"3666:30:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonRetrieval_$13826_memory_ptr_$dyn_memory_ptr","typeString":"struct Witnet.RadonRetrieval[]"},"typeName":{"baseType":{"id":10452,"nodeType":"UserDefinedTypeName","pathNode":{"id":10451,"name":"Witnet.RadonRetrieval","nameLocations":["3666:6:41","3673:14:41"],"nodeType":"IdentifierPath","referencedDeclaration":13826,"src":"3666:21:41"},"referencedDeclaration":13826,"src":"3666:21:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonRetrieval_$13826_storage_ptr","typeString":"struct Witnet.RadonRetrieval"}},"id":10453,"nodeType":"ArrayTypeName","src":"3666:23:41","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonRetrieval_$13826_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonRetrieval[]"}},"visibility":"internal"}],"src":"3665:32:41"},"scope":10616,"src":"3570:128:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10457,"nodeType":"StructuredDocumentation","src":"3706:241:41","text":"@notice Returns the Aggregate reducer that is applied to the data extracted from the data sources \n (i.e. Radon Retrievals) whenever the given Radon Request gets solved on the Witnet blockchain. \n @dev Reverts if unknown."},"functionSelector":"c61fa893","id":10466,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRequestRetrievalsAggregator","nameLocation":"3962:38:41","nodeType":"FunctionDefinition","parameters":{"id":10461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10460,"mutability":"mutable","name":"radonRequestHash","nameLocation":"4018:16:41","nodeType":"VariableDeclaration","scope":10466,"src":"4001:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10459,"nodeType":"UserDefinedTypeName","pathNode":{"id":10458,"name":"Witnet.RadonHash","nameLocations":["4001:6:41","4008:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"4001:16:41"},"referencedDeclaration":13250,"src":"4001:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"4000:35:41"},"returnParameters":{"id":10465,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10464,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10466,"src":"4059:26:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_memory_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10463,"nodeType":"UserDefinedTypeName","pathNode":{"id":10462,"name":"Witnet.RadonReducer","nameLocations":["4059:6:41","4066:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"4059:19:41"},"referencedDeclaration":13779,"src":"4059:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"4058:28:41"},"scope":10616,"src":"3953:134:41","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"23f2e3ea","id":10474,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRequestRetrievalsCount","nameLocation":"4104:33:41","nodeType":"FunctionDefinition","parameters":{"id":10470,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10469,"mutability":"mutable","name":"radonRequestHash","nameLocation":"4155:16:41","nodeType":"VariableDeclaration","scope":10474,"src":"4138:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10468,"nodeType":"UserDefinedTypeName","pathNode":{"id":10467,"name":"Witnet.RadonHash","nameLocations":["4138:6:41","4145:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"4138:16:41"},"referencedDeclaration":13250,"src":"4138:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"4137:35:41"},"returnParameters":{"id":10473,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10472,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10474,"src":"4196:5:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10471,"name":"uint8","nodeType":"ElementaryTypeName","src":"4196:5:41","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"4195:7:41"},"scope":10616,"src":"4095:108:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10475,"nodeType":"StructuredDocumentation","src":"4211:147:41","text":"@notice Returns introspective metadata of some previously verified Radon Retrieval (i.e. public data source). \n@dev Reverts if unknown."},"functionSelector":"9dd48757","id":10483,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRetrieval","nameLocation":"4373:20:41","nodeType":"FunctionDefinition","parameters":{"id":10478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10477,"mutability":"mutable","name":"hash","nameLocation":"4402:4:41","nodeType":"VariableDeclaration","scope":10483,"src":"4394:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10476,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4394:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4393:14:41"},"returnParameters":{"id":10482,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10481,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10483,"src":"4431:28:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonRetrieval_$13826_memory_ptr","typeString":"struct Witnet.RadonRetrieval"},"typeName":{"id":10480,"nodeType":"UserDefinedTypeName","pathNode":{"id":10479,"name":"Witnet.RadonRetrieval","nameLocations":["4431:6:41","4438:14:41"],"nodeType":"IdentifierPath","referencedDeclaration":13826,"src":"4431:21:41"},"referencedDeclaration":13826,"src":"4431:21:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonRetrieval_$13826_storage_ptr","typeString":"struct Witnet.RadonRetrieval"}},"visibility":"internal"}],"src":"4430:30:41"},"scope":10616,"src":"4364:97:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10484,"nodeType":"StructuredDocumentation","src":"4473:171:41","text":"@notice Returns the number of indexed parameters required to be fulfilled when \n eventually using the given Radon Retrieval. \n @dev Reverts if unknown."},"functionSelector":"b4ab01a5","id":10491,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRetrievalArgsCount","nameLocation":"4659:29:41","nodeType":"FunctionDefinition","parameters":{"id":10487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10486,"mutability":"mutable","name":"hash","nameLocation":"4697:4:41","nodeType":"VariableDeclaration","scope":10491,"src":"4689:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10485,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4689:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4688:14:41"},"returnParameters":{"id":10490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10489,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10491,"src":"4726:5:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10488,"name":"uint8","nodeType":"ElementaryTypeName","src":"4726:5:41","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"4725:7:41"},"scope":10616,"src":"4650:83:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10492,"nodeType":"StructuredDocumentation","src":"4741:165:41","text":"@notice Returns the type of the data that would be retrieved by the given Radon Retrieval \n (i.e. public data source). \n @dev Reverts if unknown."},"functionSelector":"a0e55336","id":10500,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRetrievalResultDataType","nameLocation":"4921:34:41","nodeType":"FunctionDefinition","parameters":{"id":10495,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10494,"mutability":"mutable","name":"hash","nameLocation":"4964:4:41","nodeType":"VariableDeclaration","scope":10500,"src":"4956:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10493,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4956:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4955:14:41"},"returnParameters":{"id":10499,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10498,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10500,"src":"4993:21:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":10497,"nodeType":"UserDefinedTypeName","pathNode":{"id":10496,"name":"Witnet.RadonDataTypes","nameLocations":["4993:6:41","5000:14:41"],"nodeType":"IdentifierPath","referencedDeclaration":13751,"src":"4993:21:41"},"referencedDeclaration":13751,"src":"4993:21:41","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"}],"src":"4992:23:41"},"scope":10616,"src":"4912:104:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10501,"nodeType":"StructuredDocumentation","src":"5024:425:41","text":"@notice Verifies and registers the given sequence of dataset filters and reducing function to be \n potentially used as either Aggregate or Tally reducers within the resolution workflow\n of Radon Requests in the Wit/Oracle blockchain. Returns a unique hash that identifies the \n given Radon Reducer in the registry. \n @dev Reverts if unsupported reducing or filtering methods are specified."},"functionSelector":"7f412e23","id":10509,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonReducer","nameLocation":"5464:18:41","nodeType":"FunctionDefinition","parameters":{"id":10505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10504,"mutability":"mutable","name":"reducer","nameLocation":"5512:7:41","nodeType":"VariableDeclaration","scope":10509,"src":"5483:36:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10503,"nodeType":"UserDefinedTypeName","pathNode":{"id":10502,"name":"Witnet.RadonReducer","nameLocations":["5483:6:41","5490:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"5483:19:41"},"referencedDeclaration":13779,"src":"5483:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"5482:38:41"},"returnParameters":{"id":10508,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10507,"mutability":"mutable","name":"hash","nameLocation":"5547:4:41","nodeType":"VariableDeclaration","scope":10509,"src":"5539:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10506,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5539:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5538:14:41"},"scope":10616,"src":"5455:98:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":10510,"nodeType":"StructuredDocumentation","src":"5565:464:41","text":"@notice Verifies and registers the specified Radon Request out of the given data sources (i.e. retrievals)\n and the aggregate and tally Radon Reducers. Returns a unique RAD hash that identifies the \n verified Radon Request. \n @dev Reverts if:\n - unverified retrievals are passed;\n - retrievals return different data types;\n - any of passed retrievals is parameterized;\n - unsupported reducers are passed."},"functionSelector":"6bd04634","id":10525,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRequest","nameLocation":"6044:18:41","nodeType":"FunctionDefinition","parameters":{"id":10520,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10513,"mutability":"mutable","name":"radonRetrieveHashes","nameLocation":"6096:19:41","nodeType":"VariableDeclaration","scope":10525,"src":"6077:38:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":10511,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6077:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":10512,"nodeType":"ArrayTypeName","src":"6077:9:41","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"},{"constant":false,"id":10516,"mutability":"mutable","name":"dataSourcesAggregator","nameLocation":"6159:21:41","nodeType":"VariableDeclaration","scope":10525,"src":"6130:50:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10515,"nodeType":"UserDefinedTypeName","pathNode":{"id":10514,"name":"Witnet.RadonReducer","nameLocations":["6130:6:41","6137:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"6130:19:41"},"referencedDeclaration":13779,"src":"6130:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"},{"constant":false,"id":10519,"mutability":"mutable","name":"crowsAttestationTally","nameLocation":"6224:21:41","nodeType":"VariableDeclaration","scope":10525,"src":"6195:50:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10518,"nodeType":"UserDefinedTypeName","pathNode":{"id":10517,"name":"Witnet.RadonReducer","nameLocations":["6195:6:41","6202:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"6195:19:41"},"referencedDeclaration":13779,"src":"6195:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"6062:194:41"},"returnParameters":{"id":10524,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10523,"mutability":"mutable","name":"radonRequestHash","nameLocation":"6292:16:41","nodeType":"VariableDeclaration","scope":10525,"src":"6275:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10522,"nodeType":"UserDefinedTypeName","pathNode":{"id":10521,"name":"Witnet.RadonHash","nameLocations":["6275:6:41","6282:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"6275:16:41"},"referencedDeclaration":13250,"src":"6275:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"6274:35:41"},"scope":10616,"src":"6035:275:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":10526,"nodeType":"StructuredDocumentation","src":"6318:552:41","text":"@notice Verifies and registers the specified Radon Request out of the given data sources (i.e. retrievals), \n data sources parameters (if required), and some pre-verified aggregate and tally Radon Reducers. \n Returns a unique RAD hash that identifies the verified Radon Request.\n @dev Reverts if:\n - unverified retrievals are passed;\n - retrievals return different data types;\n - ranks of passed args don't match with those required by each given retrieval;\n - unverified reducers are passed."},"functionSelector":"40c5da1d","id":10539,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRequest","nameLocation":"6885:18:41","nodeType":"FunctionDefinition","parameters":{"id":10534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10529,"mutability":"mutable","name":"retrieveHashes","nameLocation":"6937:14:41","nodeType":"VariableDeclaration","scope":10539,"src":"6918:33:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":10527,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6918:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":10528,"nodeType":"ArrayTypeName","src":"6918:9:41","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"},{"constant":false,"id":10531,"mutability":"mutable","name":"aggregateReducerHash","nameLocation":"6974:20:41","nodeType":"VariableDeclaration","scope":10539,"src":"6966:28:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10530,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6966:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":10533,"mutability":"mutable","name":"tallyReducerHash","nameLocation":"7017:16:41","nodeType":"VariableDeclaration","scope":10539,"src":"7009:24:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10532,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7009:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6903:141:41"},"returnParameters":{"id":10538,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10537,"mutability":"mutable","name":"radonRequestHash","nameLocation":"7080:16:41","nodeType":"VariableDeclaration","scope":10539,"src":"7063:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10536,"nodeType":"UserDefinedTypeName","pathNode":{"id":10535,"name":"Witnet.RadonHash","nameLocations":["7063:6:41","7070:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"7063:16:41"},"referencedDeclaration":13250,"src":"7063:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"7062:35:41"},"scope":10616,"src":"6876:222:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":10540,"nodeType":"StructuredDocumentation","src":"7106:539:41","text":"@notice Verifies and registers the specified Radon Request out of the given data sources (i.e. retrievals), \n data sources parameters (if required), and the aggregate and tally Radon Reducers. Returns a unique \n RAD hash that identifies the verified Radon Request.\n @dev Reverts if:\n - unverified retrievals are passed;\n - retrievals return different data types;\n - ranks of passed args don't match with those required by each given retrieval;\n - unsupported reducers are passed."},"functionSelector":"b73cb313","id":10559,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRequest","nameLocation":"7660:18:41","nodeType":"FunctionDefinition","parameters":{"id":10554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10543,"mutability":"mutable","name":"radonRetrieveHashes","nameLocation":"7712:19:41","nodeType":"VariableDeclaration","scope":10559,"src":"7693:38:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":10541,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7693:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":10542,"nodeType":"ArrayTypeName","src":"7693:9:41","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"},{"constant":false,"id":10547,"mutability":"mutable","name":"radonRetrieveArgs","nameLocation":"7766:17:41","nodeType":"VariableDeclaration","scope":10559,"src":"7746:37:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_calldata_ptr_$dyn_calldata_ptr_$dyn_calldata_ptr","typeString":"string[][]"},"typeName":{"baseType":{"baseType":{"id":10544,"name":"string","nodeType":"ElementaryTypeName","src":"7746:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10545,"nodeType":"ArrayTypeName","src":"7746:8:41","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"id":10546,"nodeType":"ArrayTypeName","src":"7746:10:41","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_storage_$dyn_storage_$dyn_storage_ptr","typeString":"string[][]"}},"visibility":"internal"},{"constant":false,"id":10550,"mutability":"mutable","name":"dataSourcesAggregator","nameLocation":"7827:21:41","nodeType":"VariableDeclaration","scope":10559,"src":"7798:50:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10549,"nodeType":"UserDefinedTypeName","pathNode":{"id":10548,"name":"Witnet.RadonReducer","nameLocations":["7798:6:41","7805:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"7798:19:41"},"referencedDeclaration":13779,"src":"7798:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"},{"constant":false,"id":10553,"mutability":"mutable","name":"crowdAttestationTally","nameLocation":"7892:21:41","nodeType":"VariableDeclaration","scope":10559,"src":"7863:50:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10552,"nodeType":"UserDefinedTypeName","pathNode":{"id":10551,"name":"Witnet.RadonReducer","nameLocations":["7863:6:41","7870:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"7863:19:41"},"referencedDeclaration":13779,"src":"7863:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"7678:246:41"},"returnParameters":{"id":10558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10557,"mutability":"mutable","name":"radonRequestHash","nameLocation":"7960:16:41","nodeType":"VariableDeclaration","scope":10559,"src":"7943:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10556,"nodeType":"UserDefinedTypeName","pathNode":{"id":10555,"name":"Witnet.RadonHash","nameLocations":["7943:6:41","7950:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"7943:16:41"},"referencedDeclaration":13250,"src":"7943:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"7942:35:41"},"scope":10616,"src":"7651:327:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":10560,"nodeType":"StructuredDocumentation","src":"7986:663:41","text":"@notice Verifies and registers the specified Radon Request out of a single modal retrieval where first \n parameter corresponds to data provider's URL, an array of data providers (i.e. URLs), and an array\n of parmeter values common to all data providers. Some pre-verified aggregate and tally Radon Reducers\n must also be provided. Returns a unique RAD hash that identifies the verified Radon Request.\n @dev Reverts if:\n - unverified retrieval is passed;\n - ranks of passed args don't match with those expected by given retrieval, after replacing the data provider URL.\n - unverified reducers are passed."},"functionSelector":"dbc218ef","id":10577,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRequest","nameLocation":"8664:18:41","nodeType":"FunctionDefinition","parameters":{"id":10572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10563,"mutability":"mutable","name":"radonRetrieveHashes","nameLocation":"8716:19:41","nodeType":"VariableDeclaration","scope":10577,"src":"8697:38:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":10561,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8697:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":10562,"nodeType":"ArrayTypeName","src":"8697:9:41","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"},{"constant":false,"id":10567,"mutability":"mutable","name":"radonRetrieveArgs","nameLocation":"8770:17:41","nodeType":"VariableDeclaration","scope":10577,"src":"8750:37:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_calldata_ptr_$dyn_calldata_ptr_$dyn_calldata_ptr","typeString":"string[][]"},"typeName":{"baseType":{"baseType":{"id":10564,"name":"string","nodeType":"ElementaryTypeName","src":"8750:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10565,"nodeType":"ArrayTypeName","src":"8750:8:41","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"id":10566,"nodeType":"ArrayTypeName","src":"8750:10:41","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_storage_$dyn_storage_$dyn_storage_ptr","typeString":"string[][]"}},"visibility":"internal"},{"constant":false,"id":10569,"mutability":"mutable","name":"dataSourcesAggregatorHash","nameLocation":"8810:25:41","nodeType":"VariableDeclaration","scope":10577,"src":"8802:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10568,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8802:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":10571,"mutability":"mutable","name":"crowdAttestationTallyHash","nameLocation":"8858:25:41","nodeType":"VariableDeclaration","scope":10577,"src":"8850:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10570,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8850:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8682:212:41"},"returnParameters":{"id":10576,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10575,"mutability":"mutable","name":"radonRequestHash","nameLocation":"8930:16:41","nodeType":"VariableDeclaration","scope":10577,"src":"8913:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10574,"nodeType":"UserDefinedTypeName","pathNode":{"id":10573,"name":"Witnet.RadonHash","nameLocations":["8913:6:41","8920:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"8913:16:41"},"referencedDeclaration":13250,"src":"8913:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"8912:35:41"},"scope":10616,"src":"8655:293:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"98cb04f4","id":10595,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRequest","nameLocation":"8965:18:41","nodeType":"FunctionDefinition","parameters":{"id":10590,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10579,"mutability":"mutable","name":"commonRetrieveHash","nameLocation":"9006:18:41","nodeType":"VariableDeclaration","scope":10595,"src":"8998:26:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10578,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8998:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":10582,"mutability":"mutable","name":"commonRetrieveArgs","nameLocation":"9057:18:41","nodeType":"VariableDeclaration","scope":10595,"src":"9039:36:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_string_calldata_ptr_$dyn_calldata_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":10580,"name":"string","nodeType":"ElementaryTypeName","src":"9039:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10581,"nodeType":"ArrayTypeName","src":"9039:8:41","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":10585,"mutability":"mutable","name":"dataProviders","nameLocation":"9108:13:41","nodeType":"VariableDeclaration","scope":10595,"src":"9090:31:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_string_calldata_ptr_$dyn_calldata_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":10583,"name":"string","nodeType":"ElementaryTypeName","src":"9090:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10584,"nodeType":"ArrayTypeName","src":"9090:8:41","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":10587,"mutability":"mutable","name":"dataSourcesAggregatorHash","nameLocation":"9144:25:41","nodeType":"VariableDeclaration","scope":10595,"src":"9136:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10586,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9136:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":10589,"mutability":"mutable","name":"crowdAttestationTallyHash","nameLocation":"9192:25:41","nodeType":"VariableDeclaration","scope":10595,"src":"9184:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10588,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9184:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8983:245:41"},"returnParameters":{"id":10594,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10593,"mutability":"mutable","name":"radonRequestHash","nameLocation":"9264:16:41","nodeType":"VariableDeclaration","scope":10595,"src":"9247:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10592,"nodeType":"UserDefinedTypeName","pathNode":{"id":10591,"name":"Witnet.RadonHash","nameLocations":["9247:6:41","9254:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"9247:16:41"},"referencedDeclaration":13250,"src":"9247:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"9246:35:41"},"scope":10616,"src":"8956:326:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":10596,"nodeType":"StructuredDocumentation","src":"9290:508:41","text":"@notice Verifies and registers the specified Radon Retrieval (i.e. public data source) into this registry contract. \n Returns a unique retrieval hash that identifies the verified Radon Retrieval.\n All parameters but the retrieval method are parameterizable by using embedded wildcard \\x\\ substrings (with x='0'..'9').\n @dev Reverts if:\n - unsupported retrieval method is given;\n - no URL is provided Http/* requests;\n - non-empty strings given on RNG reqs."},"functionSelector":"9eb3ab1f","id":10615,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRetrieval","nameLocation":"9813:20:41","nodeType":"FunctionDefinition","parameters":{"id":10611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10599,"mutability":"mutable","name":"requestMethod","nameLocation":"9877:13:41","nodeType":"VariableDeclaration","scope":10615,"src":"9848:42:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13833","typeString":"enum Witnet.RadonRetrievalMethods"},"typeName":{"id":10598,"nodeType":"UserDefinedTypeName","pathNode":{"id":10597,"name":"Witnet.RadonRetrievalMethods","nameLocations":["9848:6:41","9855:21:41"],"nodeType":"IdentifierPath","referencedDeclaration":13833,"src":"9848:28:41"},"referencedDeclaration":13833,"src":"9848:28:41","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13833","typeString":"enum Witnet.RadonRetrievalMethods"}},"visibility":"internal"},{"constant":false,"id":10601,"mutability":"mutable","name":"requestURL","nameLocation":"9921:10:41","nodeType":"VariableDeclaration","scope":10615,"src":"9905:26:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":10600,"name":"string","nodeType":"ElementaryTypeName","src":"9905:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10603,"mutability":"mutable","name":"requestBody","nameLocation":"9962:11:41","nodeType":"VariableDeclaration","scope":10615,"src":"9946:27:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":10602,"name":"string","nodeType":"ElementaryTypeName","src":"9946:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10608,"mutability":"mutable","name":"requestHeaders","nameLocation":"10009:14:41","nodeType":"VariableDeclaration","scope":10615,"src":"9988:35:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_calldata_ptr_$2_calldata_ptr_$dyn_calldata_ptr","typeString":"string[2][]"},"typeName":{"baseType":{"baseType":{"id":10604,"name":"string","nodeType":"ElementaryTypeName","src":"9988:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10606,"length":{"hexValue":"32","id":10605,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9995:1:41","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"ArrayTypeName","src":"9988:9:41","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$2_storage_ptr","typeString":"string[2]"}},"id":10607,"nodeType":"ArrayTypeName","src":"9988:11:41","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_storage_$2_storage_$dyn_storage_ptr","typeString":"string[2][]"}},"visibility":"internal"},{"constant":false,"id":10610,"mutability":"mutable","name":"requestRadonScript","nameLocation":"10053:18:41","nodeType":"VariableDeclaration","scope":10615,"src":"10038:33:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":10609,"name":"bytes","nodeType":"ElementaryTypeName","src":"10038:5:41","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9833:249:41"},"returnParameters":{"id":10614,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10613,"mutability":"mutable","name":"hash","nameLocation":"10109:4:41","nodeType":"VariableDeclaration","scope":10615,"src":"10101:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10612,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10101:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"10100:14:41"},"scope":10616,"src":"9804:311:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":10617,"src":"102:10467:41","usedErrors":[],"usedEvents":[]}],"src":"35:10534:41"},"id":41},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistryEvents.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistryEvents.sol","exportedSymbols":{"Bech32":[12200],"IWitOracleRadonRegistryEvents":[10636],"Secp256k1":[13216],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200]},"id":10637,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10618,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:31:42"},{"absolutePath":"witnet-solidity-bridge/contracts/libs/Witnet.sol","file":"../libs/Witnet.sol","id":10619,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10637,"sourceUnit":16768,"src":"70:28:42","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleRadonRegistryEvents","contractDependencies":[],"contractKind":"interface","fullyImplemented":true,"id":10636,"linearizedBaseContracts":[10636],"name":"IWitOracleRadonRegistryEvents","nameLocation":"112:29:42","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":10620,"nodeType":"StructuredDocumentation","src":"151:122:42","text":"Emitted every time a new Radon Reducer gets successfully verified and\n stored into the WitOracleRadonRegistry."},"eventSelector":"320dd9c6faaa443dc32e80fbf490af796ec6dce6bbb09027a5b37444fa4571d7","id":10624,"name":"NewRadonReducer","nameLocation":"285:15:42","nodeType":"EventDefinition","parameters":{"id":10623,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10622,"indexed":false,"mutability":"mutable","name":"hash","nameLocation":"309:4:42","nodeType":"VariableDeclaration","scope":10624,"src":"301:12:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10621,"name":"bytes32","nodeType":"ElementaryTypeName","src":"301:7:42","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"300:14:42"},"src":"279:36:42"},{"anonymous":false,"documentation":{"id":10625,"nodeType":"StructuredDocumentation","src":"323:124:42","text":"Emitted every time a new Radon Retrieval gets successfully verified and\n stored into the WitOracleRadonRegistry."},"eventSelector":"be95e1bda0ae521f178da31f3aae4e1218556af2a302dd68319055236c235b92","id":10629,"name":"NewRadonRetrieval","nameLocation":"459:17:42","nodeType":"EventDefinition","parameters":{"id":10628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10627,"indexed":false,"mutability":"mutable","name":"hash","nameLocation":"485:4:42","nodeType":"VariableDeclaration","scope":10629,"src":"477:12:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10626,"name":"bytes32","nodeType":"ElementaryTypeName","src":"477:7:42","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"476:14:42"},"src":"453:38:42"},{"anonymous":false,"documentation":{"id":10630,"nodeType":"StructuredDocumentation","src":"499:122:42","text":"Emitted every time a new Radon Request gets successfully verified and\n stored into the WitOracleRadonRegistry."},"eventSelector":"33415078470d846accbdec5f4869eae9b8cb9ae69d7fa487792b6b0daf9f736e","id":10635,"name":"NewRadonRequest","nameLocation":"633:15:42","nodeType":"EventDefinition","parameters":{"id":10634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10633,"indexed":false,"mutability":"mutable","name":"radonHash","nameLocation":"666:9:42","nodeType":"VariableDeclaration","scope":10635,"src":"649:26:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10632,"nodeType":"UserDefinedTypeName","pathNode":{"id":10631,"name":"Witnet.RadonHash","nameLocations":["649:6:42","656:9:42"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"649:16:42"},"referencedDeclaration":13250,"src":"649:16:42","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"648:28:42"},"src":"627:50:42"}],"scope":10637,"src":"102:578:42","usedErrors":[],"usedEvents":[10624,10629,10635]}],"src":"35:647:42"},"id":42},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestFactory.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestFactory.sol","exportedSymbols":{"Bech32":[12200],"IWitOracleRadonRequestFactory":[10711],"IWitOracleRadonRequestModal":[10761],"IWitOracleRadonRequestTemplate":[10812],"Secp256k1":[13216],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200]},"id":10712,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10638,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:31:43"},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestModal.sol","file":"./IWitOracleRadonRequestModal.sol","id":10639,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10712,"sourceUnit":10762,"src":"70:43:43","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestTemplate.sol","file":"./IWitOracleRadonRequestTemplate.sol","id":10640,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10712,"sourceUnit":10813,"src":"115:46:43","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleRadonRequestFactory","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":10711,"linearizedBaseContracts":[10711],"name":"IWitOracleRadonRequestFactory","nameLocation":"175:29:43","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"eventSelector":"05fb0138d9f716184cd659a536fe0bad16aa46c316e721c7ccfe63901c968341","id":10644,"name":"NewRadonRequestModal","nameLocation":"220:20:43","nodeType":"EventDefinition","parameters":{"id":10643,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10642,"indexed":false,"mutability":"mutable","name":"witOracleRadonRequestModal","nameLocation":"249:26:43","nodeType":"VariableDeclaration","scope":10644,"src":"241:34:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10641,"name":"address","nodeType":"ElementaryTypeName","src":"241:7:43","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"240:36:43"},"src":"214:63:43"},{"anonymous":false,"eventSelector":"49ebf408734238b0c9fffd37188494e99a8cd9cd5c32da3f3bfe179ddd0dd17c","id":10648,"name":"NewRadonRequestTemplate","nameLocation":"289:23:43","nodeType":"EventDefinition","parameters":{"id":10647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10646,"indexed":false,"mutability":"mutable","name":"witOracleRadonRequestTemplate","nameLocation":"321:29:43","nodeType":"VariableDeclaration","scope":10648,"src":"313:37:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10645,"name":"address","nodeType":"ElementaryTypeName","src":"313:7:43","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"312:39:43"},"src":"283:69:43"},{"canonicalName":"IWitOracleRadonRequestFactory.DataSource","id":10654,"members":[{"constant":false,"id":10650,"mutability":"mutable","name":"url","nameLocation":"396:3:43","nodeType":"VariableDeclaration","scope":10654,"src":"389:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":10649,"name":"string","nodeType":"ElementaryTypeName","src":"389:6:43","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10653,"mutability":"mutable","name":"request","nameLocation":"428:7:43","nodeType":"VariableDeclaration","scope":10654,"src":"410:25:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_DataSourceRequest_$10667_storage_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest"},"typeName":{"id":10652,"nodeType":"UserDefinedTypeName","pathNode":{"id":10651,"name":"DataSourceRequest","nameLocations":["410:17:43"],"nodeType":"IdentifierPath","referencedDeclaration":10667,"src":"410:17:43"},"referencedDeclaration":10667,"src":"410:17:43","typeDescriptions":{"typeIdentifier":"t_struct$_DataSourceRequest_$10667_storage_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest"}},"visibility":"internal"}],"name":"DataSource","nameLocation":"367:10:43","nodeType":"StructDefinition","scope":10711,"src":"360:83:43","visibility":"public"},{"canonicalName":"IWitOracleRadonRequestFactory.DataSourceRequest","id":10667,"members":[{"constant":false,"id":10657,"mutability":"mutable","name":"method","nameLocation":"516:6:43","nodeType":"VariableDeclaration","scope":10667,"src":"487:35:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13833","typeString":"enum Witnet.RadonRetrievalMethods"},"typeName":{"id":10656,"nodeType":"UserDefinedTypeName","pathNode":{"id":10655,"name":"Witnet.RadonRetrievalMethods","nameLocations":["487:6:43","494:21:43"],"nodeType":"IdentifierPath","referencedDeclaration":13833,"src":"487:28:43"},"referencedDeclaration":13833,"src":"487:28:43","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13833","typeString":"enum Witnet.RadonRetrievalMethods"}},"visibility":"internal"},{"constant":false,"id":10659,"mutability":"mutable","name":"body","nameLocation":"540:4:43","nodeType":"VariableDeclaration","scope":10667,"src":"533:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":10658,"name":"string","nodeType":"ElementaryTypeName","src":"533:6:43","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10664,"mutability":"mutable","name":"headers","nameLocation":"567:7:43","nodeType":"VariableDeclaration","scope":10667,"src":"555:19:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_storage_$2_storage_$dyn_storage_ptr","typeString":"string[2][]"},"typeName":{"baseType":{"baseType":{"id":10660,"name":"string","nodeType":"ElementaryTypeName","src":"555:6:43","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10662,"length":{"hexValue":"32","id":10661,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"562:1:43","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"ArrayTypeName","src":"555:9:43","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$2_storage_ptr","typeString":"string[2]"}},"id":10663,"nodeType":"ArrayTypeName","src":"555:11:43","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_storage_$2_storage_$dyn_storage_ptr","typeString":"string[2][]"}},"visibility":"internal"},{"constant":false,"id":10666,"mutability":"mutable","name":"script","nameLocation":"591:6:43","nodeType":"VariableDeclaration","scope":10667,"src":"585:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":10665,"name":"bytes","nodeType":"ElementaryTypeName","src":"585:5:43","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"DataSourceRequest","nameLocation":"458:17:43","nodeType":"StructDefinition","scope":10711,"src":"451:154:43","visibility":"public"},{"functionSelector":"c96e201f","id":10679,"implemented":false,"kind":"function","modifiers":[],"name":"buildRadonRequestModal","nameLocation":"622:22:43","nodeType":"FunctionDefinition","parameters":{"id":10674,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10670,"mutability":"mutable","name":"commonDataRequest","nameLocation":"686:17:43","nodeType":"VariableDeclaration","scope":10679,"src":"659:44:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataSourceRequest_$10667_calldata_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest"},"typeName":{"id":10669,"nodeType":"UserDefinedTypeName","pathNode":{"id":10668,"name":"DataSourceRequest","nameLocations":["659:17:43"],"nodeType":"IdentifierPath","referencedDeclaration":10667,"src":"659:17:43"},"referencedDeclaration":10667,"src":"659:17:43","typeDescriptions":{"typeIdentifier":"t_struct$_DataSourceRequest_$10667_storage_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest"}},"visibility":"internal"},{"constant":false,"id":10673,"mutability":"mutable","name":"crowdAttestationTally","nameLocation":"747:21:43","nodeType":"VariableDeclaration","scope":10679,"src":"718:50:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10672,"nodeType":"UserDefinedTypeName","pathNode":{"id":10671,"name":"Witnet.RadonReducer","nameLocations":["718:6:43","725:12:43"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"718:19:43"},"referencedDeclaration":13779,"src":"718:19:43","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"644:135:43"},"returnParameters":{"id":10678,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10677,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10679,"src":"807:27:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"},"typeName":{"id":10676,"nodeType":"UserDefinedTypeName","pathNode":{"id":10675,"name":"IWitOracleRadonRequestModal","nameLocations":["807:27:43"],"nodeType":"IdentifierPath","referencedDeclaration":10761,"src":"807:27:43"},"referencedDeclaration":10761,"src":"807:27:43","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10761","typeString":"contract IWitOracleRadonRequestModal"}},"visibility":"internal"}],"src":"806:29:43"},"scope":10711,"src":"613:223:43","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"e71dc532","id":10694,"implemented":false,"kind":"function","modifiers":[],"name":"buildRadonRequestTemplate","nameLocation":"853:25:43","nodeType":"FunctionDefinition","parameters":{"id":10689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10682,"mutability":"mutable","name":"dataRetrieveHashes","nameLocation":"912:18:43","nodeType":"VariableDeclaration","scope":10694,"src":"893:37:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":10680,"name":"bytes32","nodeType":"ElementaryTypeName","src":"893:7:43","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":10681,"nodeType":"ArrayTypeName","src":"893:9:43","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"},{"constant":false,"id":10685,"mutability":"mutable","name":"dataSourcesAggregator","nameLocation":"974:21:43","nodeType":"VariableDeclaration","scope":10694,"src":"945:50:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10684,"nodeType":"UserDefinedTypeName","pathNode":{"id":10683,"name":"Witnet.RadonReducer","nameLocations":["945:6:43","952:12:43"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"945:19:43"},"referencedDeclaration":13779,"src":"945:19:43","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"},{"constant":false,"id":10688,"mutability":"mutable","name":"crowdAttestationTally","nameLocation":"1039:21:43","nodeType":"VariableDeclaration","scope":10694,"src":"1010:50:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10687,"nodeType":"UserDefinedTypeName","pathNode":{"id":10686,"name":"Witnet.RadonReducer","nameLocations":["1010:6:43","1017:12:43"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"1010:19:43"},"referencedDeclaration":13779,"src":"1010:19:43","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"878:193:43"},"returnParameters":{"id":10693,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10692,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10694,"src":"1090:30:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestTemplate_$10812","typeString":"contract IWitOracleRadonRequestTemplate"},"typeName":{"id":10691,"nodeType":"UserDefinedTypeName","pathNode":{"id":10690,"name":"IWitOracleRadonRequestTemplate","nameLocations":["1090:30:43"],"nodeType":"IdentifierPath","referencedDeclaration":10812,"src":"1090:30:43"},"referencedDeclaration":10812,"src":"1090:30:43","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestTemplate_$10812","typeString":"contract IWitOracleRadonRequestTemplate"}},"visibility":"internal"}],"src":"1089:32:43"},"scope":10711,"src":"844:278:43","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"9f165d4b","id":10710,"implemented":false,"kind":"function","modifiers":[],"name":"buildRadonRequestTemplate","nameLocation":"1147:25:43","nodeType":"FunctionDefinition","parameters":{"id":10705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10698,"mutability":"mutable","name":"dataSources","nameLocation":"1209:11:43","nodeType":"VariableDeclaration","scope":10710,"src":"1187:33:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_DataSource_$10654_calldata_ptr_$dyn_calldata_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSource[]"},"typeName":{"baseType":{"id":10696,"nodeType":"UserDefinedTypeName","pathNode":{"id":10695,"name":"DataSource","nameLocations":["1187:10:43"],"nodeType":"IdentifierPath","referencedDeclaration":10654,"src":"1187:10:43"},"referencedDeclaration":10654,"src":"1187:10:43","typeDescriptions":{"typeIdentifier":"t_struct$_DataSource_$10654_storage_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSource"}},"id":10697,"nodeType":"ArrayTypeName","src":"1187:12:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_DataSource_$10654_storage_$dyn_storage_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSource[]"}},"visibility":"internal"},{"constant":false,"id":10701,"mutability":"mutable","name":"dataSourcesAggregator","nameLocation":"1264:21:43","nodeType":"VariableDeclaration","scope":10710,"src":"1235:50:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10700,"nodeType":"UserDefinedTypeName","pathNode":{"id":10699,"name":"Witnet.RadonReducer","nameLocations":["1235:6:43","1242:12:43"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"1235:19:43"},"referencedDeclaration":13779,"src":"1235:19:43","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"},{"constant":false,"id":10704,"mutability":"mutable","name":"crowdAttestationTally","nameLocation":"1329:21:43","nodeType":"VariableDeclaration","scope":10710,"src":"1300:50:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10703,"nodeType":"UserDefinedTypeName","pathNode":{"id":10702,"name":"Witnet.RadonReducer","nameLocations":["1300:6:43","1307:12:43"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"1300:19:43"},"referencedDeclaration":13779,"src":"1300:19:43","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"1172:189:43"},"returnParameters":{"id":10709,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10708,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10710,"src":"1389:30:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestTemplate_$10812","typeString":"contract IWitOracleRadonRequestTemplate"},"typeName":{"id":10707,"nodeType":"UserDefinedTypeName","pathNode":{"id":10706,"name":"IWitOracleRadonRequestTemplate","nameLocations":["1389:30:43"],"nodeType":"IdentifierPath","referencedDeclaration":10812,"src":"1389:30:43"},"referencedDeclaration":10812,"src":"1389:30:43","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestTemplate_$10812","typeString":"contract IWitOracleRadonRequestTemplate"}},"visibility":"internal"}],"src":"1388:32:43"},"scope":10711,"src":"1138:283:43","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":10712,"src":"165:1259:43","usedErrors":[],"usedEvents":[10644,10648]}],"src":"35:1391:43"},"id":43},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestModal.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestModal.sol","exportedSymbols":{"Bech32":[12200],"IWitOracleRadonRequestModal":[10761],"Secp256k1":[13216],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200]},"id":10762,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10713,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:31:44"},{"absolutePath":"witnet-solidity-bridge/contracts/libs/Witnet.sol","file":"../libs/Witnet.sol","id":10714,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10762,"sourceUnit":16768,"src":"70:28:44","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleRadonRequestModal","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":10761,"linearizedBaseContracts":[10761],"name":"IWitOracleRadonRequestModal","nameLocation":"112:27:44","nodeType":"ContractDefinition","nodes":[{"functionSelector":"0f0adf5b","id":10720,"implemented":false,"kind":"function","modifiers":[],"name":"getCrowdAttestationTally","nameLocation":"158:24:44","nodeType":"FunctionDefinition","parameters":{"id":10715,"nodeType":"ParameterList","parameters":[],"src":"182:2:44"},"returnParameters":{"id":10719,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10718,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10720,"src":"208:26:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_memory_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10717,"nodeType":"UserDefinedTypeName","pathNode":{"id":10716,"name":"Witnet.RadonReducer","nameLocations":["208:6:44","215:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"208:19:44"},"referencedDeclaration":13779,"src":"208:19:44","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"207:28:44"},"scope":10761,"src":"149:87:44","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"7f2b1d77","id":10726,"implemented":false,"kind":"function","modifiers":[],"name":"getDataResultType","nameLocation":"251:17:44","nodeType":"FunctionDefinition","parameters":{"id":10721,"nodeType":"ParameterList","parameters":[],"src":"268:2:44"},"returnParameters":{"id":10725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10724,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10726,"src":"294:21:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":10723,"nodeType":"UserDefinedTypeName","pathNode":{"id":10722,"name":"Witnet.RadonDataTypes","nameLocations":["294:6:44","301:14:44"],"nodeType":"IdentifierPath","referencedDeclaration":13751,"src":"294:21:44"},"referencedDeclaration":13751,"src":"294:21:44","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"}],"src":"293:23:44"},"scope":10761,"src":"242:75:44","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"13152e89","id":10732,"implemented":false,"kind":"function","modifiers":[],"name":"getDataSourcesAggregator","nameLocation":"333:24:44","nodeType":"FunctionDefinition","parameters":{"id":10727,"nodeType":"ParameterList","parameters":[],"src":"357:2:44"},"returnParameters":{"id":10731,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10730,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10732,"src":"383:26:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_memory_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10729,"nodeType":"UserDefinedTypeName","pathNode":{"id":10728,"name":"Witnet.RadonReducer","nameLocations":["383:6:44","390:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"383:19:44"},"referencedDeclaration":13779,"src":"383:19:44","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"382:28:44"},"scope":10761,"src":"324:87:44","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"9ae40404","id":10737,"implemented":false,"kind":"function","modifiers":[],"name":"getDataSourcesArgsCount","nameLocation":"426:23:44","nodeType":"FunctionDefinition","parameters":{"id":10733,"nodeType":"ParameterList","parameters":[],"src":"449:2:44"},"returnParameters":{"id":10736,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10735,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10737,"src":"475:5:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10734,"name":"uint8","nodeType":"ElementaryTypeName","src":"475:5:44","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"474:7:44"},"scope":10761,"src":"417:65:44","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"7bb725d3","id":10743,"implemented":false,"kind":"function","modifiers":[],"name":"getRadonModalRetrieval","nameLocation":"497:22:44","nodeType":"FunctionDefinition","parameters":{"id":10738,"nodeType":"ParameterList","parameters":[],"src":"519:2:44"},"returnParameters":{"id":10742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10741,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10743,"src":"545:28:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonRetrieval_$13826_memory_ptr","typeString":"struct Witnet.RadonRetrieval"},"typeName":{"id":10740,"nodeType":"UserDefinedTypeName","pathNode":{"id":10739,"name":"Witnet.RadonRetrieval","nameLocations":["545:6:44","552:14:44"],"nodeType":"IdentifierPath","referencedDeclaration":13826,"src":"545:21:44"},"referencedDeclaration":13826,"src":"545:21:44","typeDescriptions":{"typeIdentifier":"t_struct$_RadonRetrieval_$13826_storage_ptr","typeString":"struct Witnet.RadonRetrieval"}},"visibility":"internal"}],"src":"544:30:44"},"scope":10761,"src":"488:87:44","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"f0e271bc","id":10755,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRequest","nameLocation":"592:18:44","nodeType":"FunctionDefinition","parameters":{"id":10750,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10746,"mutability":"mutable","name":"commonRetrievalArgs","nameLocation":"629:19:44","nodeType":"VariableDeclaration","scope":10755,"src":"611:37:44","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_string_calldata_ptr_$dyn_calldata_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":10744,"name":"string","nodeType":"ElementaryTypeName","src":"611:6:44","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10745,"nodeType":"ArrayTypeName","src":"611:8:44","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":10749,"mutability":"mutable","name":"dataProviders","nameLocation":"668:13:44","nodeType":"VariableDeclaration","scope":10755,"src":"650:31:44","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_string_calldata_ptr_$dyn_calldata_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":10747,"name":"string","nodeType":"ElementaryTypeName","src":"650:6:44","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10748,"nodeType":"ArrayTypeName","src":"650:8:44","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"src":"610:72:44"},"returnParameters":{"id":10754,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10753,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10755,"src":"701:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10752,"nodeType":"UserDefinedTypeName","pathNode":{"id":10751,"name":"Witnet.RadonHash","nameLocations":["701:6:44","708:9:44"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"701:16:44"},"referencedDeclaration":13250,"src":"701:16:44","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"700:18:44"},"scope":10761,"src":"583:136:44","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"1014d375","id":10760,"implemented":false,"kind":"function","modifiers":[],"name":"witOracle","nameLocation":"734:9:44","nodeType":"FunctionDefinition","parameters":{"id":10756,"nodeType":"ParameterList","parameters":[],"src":"743:2:44"},"returnParameters":{"id":10759,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10758,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10760,"src":"769:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10757,"name":"address","nodeType":"ElementaryTypeName","src":"769:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"768:9:44"},"scope":10761,"src":"725:53:44","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":10762,"src":"102:679:44","usedErrors":[],"usedEvents":[]}],"src":"35:748:44"},"id":44},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestTemplate.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestTemplate.sol","exportedSymbols":{"Bech32":[12200],"IWitOracleRadonRequestTemplate":[10812],"Secp256k1":[13216],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200]},"id":10813,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10763,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:31:45"},{"absolutePath":"witnet-solidity-bridge/contracts/libs/Witnet.sol","file":"../libs/Witnet.sol","id":10764,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10813,"sourceUnit":16768,"src":"70:28:45","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleRadonRequestTemplate","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":10812,"linearizedBaseContracts":[10812],"name":"IWitOracleRadonRequestTemplate","nameLocation":"112:30:45","nodeType":"ContractDefinition","nodes":[{"functionSelector":"0f0adf5b","id":10770,"implemented":false,"kind":"function","modifiers":[],"name":"getCrowdAttestationTally","nameLocation":"161:24:45","nodeType":"FunctionDefinition","parameters":{"id":10765,"nodeType":"ParameterList","parameters":[],"src":"185:2:45"},"returnParameters":{"id":10769,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10768,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10770,"src":"211:26:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_memory_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10767,"nodeType":"UserDefinedTypeName","pathNode":{"id":10766,"name":"Witnet.RadonReducer","nameLocations":["211:6:45","218:12:45"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"211:19:45"},"referencedDeclaration":13779,"src":"211:19:45","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"210:28:45"},"scope":10812,"src":"152:87:45","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"7f2b1d77","id":10776,"implemented":false,"kind":"function","modifiers":[],"name":"getDataResultType","nameLocation":"254:17:45","nodeType":"FunctionDefinition","parameters":{"id":10771,"nodeType":"ParameterList","parameters":[],"src":"271:2:45"},"returnParameters":{"id":10775,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10774,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10776,"src":"297:21:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":10773,"nodeType":"UserDefinedTypeName","pathNode":{"id":10772,"name":"Witnet.RadonDataTypes","nameLocations":["297:6:45","304:14:45"],"nodeType":"IdentifierPath","referencedDeclaration":13751,"src":"297:21:45"},"referencedDeclaration":13751,"src":"297:21:45","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"}],"src":"296:23:45"},"scope":10812,"src":"245:75:45","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"bc04eba8","id":10783,"implemented":false,"kind":"function","modifiers":[],"name":"getDataSources","nameLocation":"336:14:45","nodeType":"FunctionDefinition","parameters":{"id":10777,"nodeType":"ParameterList","parameters":[],"src":"350:2:45"},"returnParameters":{"id":10782,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10781,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10783,"src":"376:30:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonRetrieval_$13826_memory_ptr_$dyn_memory_ptr","typeString":"struct Witnet.RadonRetrieval[]"},"typeName":{"baseType":{"id":10779,"nodeType":"UserDefinedTypeName","pathNode":{"id":10778,"name":"Witnet.RadonRetrieval","nameLocations":["376:6:45","383:14:45"],"nodeType":"IdentifierPath","referencedDeclaration":13826,"src":"376:21:45"},"referencedDeclaration":13826,"src":"376:21:45","typeDescriptions":{"typeIdentifier":"t_struct$_RadonRetrieval_$13826_storage_ptr","typeString":"struct Witnet.RadonRetrieval"}},"id":10780,"nodeType":"ArrayTypeName","src":"376:23:45","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonRetrieval_$13826_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonRetrieval[]"}},"visibility":"internal"}],"src":"375:32:45"},"scope":10812,"src":"327:81:45","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"13152e89","id":10789,"implemented":false,"kind":"function","modifiers":[],"name":"getDataSourcesAggregator","nameLocation":"423:24:45","nodeType":"FunctionDefinition","parameters":{"id":10784,"nodeType":"ParameterList","parameters":[],"src":"447:2:45"},"returnParameters":{"id":10788,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10787,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10789,"src":"473:26:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_memory_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10786,"nodeType":"UserDefinedTypeName","pathNode":{"id":10785,"name":"Witnet.RadonReducer","nameLocations":["473:6:45","480:12:45"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"473:19:45"},"referencedDeclaration":13779,"src":"473:19:45","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"472:28:45"},"scope":10812,"src":"414:87:45","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"9ae40404","id":10795,"implemented":false,"kind":"function","modifiers":[],"name":"getDataSourcesArgsCount","nameLocation":"516:23:45","nodeType":"FunctionDefinition","parameters":{"id":10790,"nodeType":"ParameterList","parameters":[],"src":"539:2:45"},"returnParameters":{"id":10794,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10793,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10795,"src":"565:14:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":10791,"name":"uint8","nodeType":"ElementaryTypeName","src":"565:5:45","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":10792,"nodeType":"ArrayTypeName","src":"565:7:45","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"src":"564:16:45"},"scope":10812,"src":"507:74:45","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10796,"nodeType":"StructuredDocumentation","src":"593:897:45","text":"Verifies into the bounded WitOracle's registry the actual bytecode \n and RAD hash of the Witnet-compliant Radon Request that gets provably \n made out of the data sources, aggregate and tally Radon Reducers that \n compose this WitOracleRequestTemplate. While no WitOracleRequest instance is \n actually constructed, the returned value will be accepted as a valid\n RAD hash on the witOracle() contract from now on. \n Reverts if:\n - the ranks of passed array don't match either the number of this \n   template's data sources, or the number of required parameters by \n   each one of those.\n @dev This method requires less gas than buildWitOracleRequest(string[][]), and \n @dev it's usually preferred when data requests built out of this template\n @dev are intended to be used just once in lifetime.    "},"functionSelector":"bf7a0bd3","id":10806,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRequest","nameLocation":"1505:18:45","nodeType":"FunctionDefinition","parameters":{"id":10801,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10800,"mutability":"mutable","name":"args","nameLocation":"1544:4:45","nodeType":"VariableDeclaration","scope":10806,"src":"1524:24:45","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_calldata_ptr_$dyn_calldata_ptr_$dyn_calldata_ptr","typeString":"string[][]"},"typeName":{"baseType":{"baseType":{"id":10797,"name":"string","nodeType":"ElementaryTypeName","src":"1524:6:45","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10798,"nodeType":"ArrayTypeName","src":"1524:8:45","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"id":10799,"nodeType":"ArrayTypeName","src":"1524:10:45","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_storage_$dyn_storage_$dyn_storage_ptr","typeString":"string[][]"}},"visibility":"internal"}],"src":"1523:26:45"},"returnParameters":{"id":10805,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10804,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10806,"src":"1568:16:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":10803,"nodeType":"UserDefinedTypeName","pathNode":{"id":10802,"name":"Witnet.RadonHash","nameLocations":["1568:6:45","1575:9:45"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"1568:16:45"},"referencedDeclaration":13250,"src":"1568:16:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"1567:18:45"},"scope":10812,"src":"1496:90:45","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"1014d375","id":10811,"implemented":false,"kind":"function","modifiers":[],"name":"witOracle","nameLocation":"1603:9:45","nodeType":"FunctionDefinition","parameters":{"id":10807,"nodeType":"ParameterList","parameters":[],"src":"1612:2:45"},"returnParameters":{"id":10810,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10809,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10811,"src":"1638:7:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10808,"name":"address","nodeType":"ElementaryTypeName","src":"1638:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1637:9:45"},"scope":10812,"src":"1594:53:45","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":10813,"src":"102:1548:45","usedErrors":[],"usedEvents":[]}],"src":"35:1617:45"},"id":45},"witnet-solidity-bridge/contracts/libs/Bech32.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/libs/Bech32.sol","exportedSymbols":{"Bech32":[12200]},"id":12201,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10814,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"100:23:46"},{"abstract":false,"baseContracts":[],"canonicalName":"Bech32","contractDependencies":[],"contractKind":"library","documentation":{"id":10815,"nodeType":"StructuredDocumentation","src":"127:82:46","text":" @dev Collection of functions related to the Bech32 address generation"},"fullyImplemented":true,"id":12200,"linearizedBaseContracts":[12200],"name":"Bech32","nameLocation":"219:6:46","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":10818,"mutability":"constant","name":"ALPHABET","nameLocation":"248:8:46","nodeType":"VariableDeclaration","scope":12200,"src":"233:60:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10816,"name":"bytes","nodeType":"ElementaryTypeName","src":"233:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"value":{"hexValue":"71707a7279397838676632747664773073336a6e35346b686365366d7561376c","id":10817,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"259:34:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_fe46e7811aa772220414abf676d1f699331bebeac02e9f688b4e6a861070d4df","typeString":"literal_string \"qpzry9x8gf2tvdw0s3jn54khce6mua7l\""},"value":"qpzry9x8gf2tvdw0s3jn54khce6mua7l"},"visibility":"internal"},{"constant":true,"id":10821,"mutability":"constant","name":"ALPHABET_REV","nameLocation":"315:12:46","nodeType":"VariableDeclaration","scope":12200,"src":"300:547:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10819,"name":"bytes","nodeType":"ElementaryTypeName","src":"300:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"value":{"hexValue":"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0fff0a1115141a1e0705ffffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","id":10820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"330:517:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_0cc2f264e88daa0a2d7055222781b00a2c15c4cc02e5bac4341846379adfb56d","typeString":"literal_string hex\"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0fff0a1115141a1e0705ffffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\""}},"visibility":"internal"},{"constant":true,"id":10824,"mutability":"constant","name":"ALPHABET_REV_LOWER_ONLY","nameLocation":"869:23:46","nodeType":"VariableDeclaration","scope":12200,"src":"854:558:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10822,"name":"bytes","nodeType":"ElementaryTypeName","src":"854:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"value":{"hexValue":"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0fff0a1115141a1e0705ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","id":10823,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"895:517:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_c8d3b1ac944044017f62cd6afb4942669ca30804db13dd8406bdeaca3edf27e1","typeString":"literal_string hex\"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0fff0a1115141a1e0705ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\""}},"visibility":"internal"},{"constant":true,"id":10827,"mutability":"constant","name":"ENC_BECH32","nameLocation":"2507:10:46","nodeType":"VariableDeclaration","scope":12200,"src":"2491:30:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10825,"name":"uint32","nodeType":"ElementaryTypeName","src":"2491:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"31","id":10826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2520:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"internal"},{"constant":true,"id":10830,"mutability":"constant","name":"ENC_BECH32M","nameLocation":"2544:11:46","nodeType":"VariableDeclaration","scope":12200,"src":"2528:40:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10828,"name":"uint32","nodeType":"ElementaryTypeName","src":"2528:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"30783262633833306133","id":10829,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2558:10:46","typeDescriptions":{"typeIdentifier":"t_rational_734539939_by_1","typeString":"int_const 734539939"},"value":"0x2bc830a3"},"visibility":"internal"},{"body":{"id":10847,"nodeType":"Block","src":"2696:66:46","statements":[{"expression":{"arguments":[{"arguments":[{"id":10842,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10832,"src":"2740:4:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":10840,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2723:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10841,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2727:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"2723:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":10843,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2723:22:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10844,"name":"prefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10834,"src":"2747:6:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":10839,"name":"toBech32","nodeType":"Identifier","overloadedDeclarations":[10848,10880,10901,10959],"referencedDeclaration":10880,"src":"2714:8:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_string_memory_ptr_$","typeString":"function (bytes memory,string memory) pure returns (string memory)"}},"id":10845,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2714:40:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":10838,"id":10846,"nodeType":"Return","src":"2707:47:46"}]},"id":10848,"implemented":true,"kind":"function","modifiers":[],"name":"toBech32","nameLocation":"2588:8:46","nodeType":"FunctionDefinition","parameters":{"id":10835,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10832,"mutability":"mutable","name":"addr","nameLocation":"2615:4:46","nodeType":"VariableDeclaration","scope":10848,"src":"2607:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10831,"name":"address","nodeType":"ElementaryTypeName","src":"2607:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10834,"mutability":"mutable","name":"prefix","nameLocation":"2644:6:46","nodeType":"VariableDeclaration","scope":10848,"src":"2630:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10833,"name":"string","nodeType":"ElementaryTypeName","src":"2630:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2596:61:46"},"returnParameters":{"id":10838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10837,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10848,"src":"2681:13:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10836,"name":"string","nodeType":"ElementaryTypeName","src":"2681:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2680:15:46"},"scope":12200,"src":"2579:183:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10879,"nodeType":"Block","src":"2892:171:46","statements":[{"assignments":[10858],"declarations":[{"constant":false,"id":10858,"mutability":"mutable","name":"hrp","nameLocation":"2916:3:46","nodeType":"VariableDeclaration","scope":10879,"src":"2903:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10857,"name":"bytes","nodeType":"ElementaryTypeName","src":"2903:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10863,"initialValue":{"arguments":[{"id":10861,"name":"prefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10852,"src":"2939:6:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":10859,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2922:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10860,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2926:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"2922:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":10862,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2922:24:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"2903:43:46"},{"assignments":[10865],"declarations":[{"constant":false,"id":10865,"mutability":"mutable","name":"input","nameLocation":"2970:5:46","nodeType":"VariableDeclaration","scope":10879,"src":"2957:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10864,"name":"bytes","nodeType":"ElementaryTypeName","src":"2957:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10872,"initialValue":{"arguments":[{"id":10867,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10850,"src":"2990:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"38","id":10868,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2996:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"hexValue":"35","id":10869,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2999:1:46","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},{"hexValue":"74727565","id":10870,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3002:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":10866,"name":"convertBits","nodeType":"Identifier","overloadedDeclarations":[12020,12042],"referencedDeclaration":12020,"src":"2978:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$_t_uint256_$_t_bool_$returns$_t_bytes_memory_ptr_$","typeString":"function (bytes memory,uint256,uint256,bool) pure returns (bytes memory)"}},"id":10871,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2978:29:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"2957:50:46"},{"expression":{"arguments":[{"id":10874,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10858,"src":"3032:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10875,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10865,"src":"3037:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10876,"name":"ENC_BECH32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10827,"src":"3044:10:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":10873,"name":"encode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11379,"src":"3025:6:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$_t_uint32_$returns$_t_string_memory_ptr_$","typeString":"function (bytes memory,bytes memory,uint32) pure returns (string memory)"}},"id":10877,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3025:30:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":10856,"id":10878,"nodeType":"Return","src":"3018:37:46"}]},"id":10880,"implemented":true,"kind":"function","modifiers":[],"name":"toBech32","nameLocation":"2779:8:46","nodeType":"FunctionDefinition","parameters":{"id":10853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10850,"mutability":"mutable","name":"data","nameLocation":"2811:4:46","nodeType":"VariableDeclaration","scope":10880,"src":"2798:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10849,"name":"bytes","nodeType":"ElementaryTypeName","src":"2798:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10852,"mutability":"mutable","name":"prefix","nameLocation":"2840:6:46","nodeType":"VariableDeclaration","scope":10880,"src":"2826:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10851,"name":"string","nodeType":"ElementaryTypeName","src":"2826:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2787:66:46"},"returnParameters":{"id":10856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10855,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10880,"src":"2877:13:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10854,"name":"string","nodeType":"ElementaryTypeName","src":"2877:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2876:15:46"},"scope":12200,"src":"2770:293:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10900,"nodeType":"Block","src":"3212:75:46","statements":[{"expression":{"arguments":[{"arguments":[{"id":10894,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10882,"src":"3256:4:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":10892,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3239:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10893,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3243:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"3239:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":10895,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3239:22:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10896,"name":"prefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10884,"src":"3263:6:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":10897,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10886,"src":"3271:7:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":10891,"name":"toBech32","nodeType":"Identifier","overloadedDeclarations":[10848,10880,10901,10959],"referencedDeclaration":10959,"src":"3230:8:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$_t_uint8_$returns$_t_string_memory_ptr_$","typeString":"function (bytes memory,string memory,uint8) pure returns (string memory)"}},"id":10898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3230:49:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":10890,"id":10899,"nodeType":"Return","src":"3223:56:46"}]},"id":10901,"implemented":true,"kind":"function","modifiers":[],"name":"toBech32","nameLocation":"3080:8:46","nodeType":"FunctionDefinition","parameters":{"id":10887,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10882,"mutability":"mutable","name":"addr","nameLocation":"3107:4:46","nodeType":"VariableDeclaration","scope":10901,"src":"3099:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10881,"name":"address","nodeType":"ElementaryTypeName","src":"3099:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10884,"mutability":"mutable","name":"prefix","nameLocation":"3136:6:46","nodeType":"VariableDeclaration","scope":10901,"src":"3122:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10883,"name":"string","nodeType":"ElementaryTypeName","src":"3122:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10886,"mutability":"mutable","name":"version","nameLocation":"3159:7:46","nodeType":"VariableDeclaration","scope":10901,"src":"3153:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10885,"name":"uint8","nodeType":"ElementaryTypeName","src":"3153:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"3088:85:46"},"returnParameters":{"id":10890,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10889,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10901,"src":"3197:13:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10888,"name":"string","nodeType":"ElementaryTypeName","src":"3197:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3196:15:46"},"scope":12200,"src":"3071:216:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10958,"nodeType":"Block","src":"3441:351:46","statements":[{"assignments":[10913],"declarations":[{"constant":false,"id":10913,"mutability":"mutable","name":"hrp","nameLocation":"3465:3:46","nodeType":"VariableDeclaration","scope":10958,"src":"3452:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10912,"name":"bytes","nodeType":"ElementaryTypeName","src":"3452:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10918,"initialValue":{"arguments":[{"id":10916,"name":"prefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10905,"src":"3488:6:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":10914,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3471:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10915,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3475:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"3471:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":10917,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3471:24:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3452:43:46"},{"assignments":[10920],"declarations":[{"constant":false,"id":10920,"mutability":"mutable","name":"input","nameLocation":"3519:5:46","nodeType":"VariableDeclaration","scope":10958,"src":"3506:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10919,"name":"bytes","nodeType":"ElementaryTypeName","src":"3506:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10927,"initialValue":{"arguments":[{"id":10922,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10903,"src":"3539:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"38","id":10923,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3545:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"hexValue":"35","id":10924,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3548:1:46","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},{"hexValue":"74727565","id":10925,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3551:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":10921,"name":"convertBits","nodeType":"Identifier","overloadedDeclarations":[12020,12042],"referencedDeclaration":12020,"src":"3527:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint256_$_t_uint256_$_t_bool_$returns$_t_bytes_memory_ptr_$","typeString":"function (bytes memory,uint256,uint256,bool) pure returns (bytes memory)"}},"id":10926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3527:29:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3506:50:46"},{"assignments":[10929],"declarations":[{"constant":false,"id":10929,"mutability":"mutable","name":"enc","nameLocation":"3574:3:46","nodeType":"VariableDeclaration","scope":10958,"src":"3567:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10928,"name":"uint32","nodeType":"ElementaryTypeName","src":"3567:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":10931,"initialValue":{"id":10930,"name":"ENC_BECH32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10827,"src":"3580:10:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"3567:23:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":10934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10932,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10907,"src":"3605:7:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":10933,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3615:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3605:11:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":10940,"nodeType":"IfStatement","src":"3601:61:46","trueBody":{"id":10939,"nodeType":"Block","src":"3618:44:46","statements":[{"expression":{"id":10937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10935,"name":"enc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10929,"src":"3633:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":10936,"name":"ENC_BECH32M","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10830,"src":"3639:11:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"3633:17:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":10938,"nodeType":"ExpressionStatement","src":"3633:17:46"}]}},{"assignments":[10942],"declarations":[{"constant":false,"id":10942,"mutability":"mutable","name":"inputWithV","nameLocation":"3685:10:46","nodeType":"VariableDeclaration","scope":10958,"src":"3672:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10941,"name":"bytes","nodeType":"ElementaryTypeName","src":"3672:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10951,"initialValue":{"arguments":[{"arguments":[{"id":10947,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10907,"src":"3722:7:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":10946,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3715:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":10945,"name":"bytes1","nodeType":"ElementaryTypeName","src":"3715:6:46","typeDescriptions":{}}},"id":10948,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3715:15:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},{"id":10949,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10920,"src":"3732:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":10943,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3698:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10944,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3702:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"3698:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":10950,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3698:40:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3672:66:46"},{"expression":{"arguments":[{"id":10953,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10913,"src":"3763:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10954,"name":"inputWithV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10942,"src":"3768:10:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10955,"name":"enc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10929,"src":"3780:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":10952,"name":"encode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11379,"src":"3756:6:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$_t_uint32_$returns$_t_string_memory_ptr_$","typeString":"function (bytes memory,bytes memory,uint32) pure returns (string memory)"}},"id":10956,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3756:28:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":10911,"id":10957,"nodeType":"Return","src":"3749:35:46"}]},"id":10959,"implemented":true,"kind":"function","modifiers":[],"name":"toBech32","nameLocation":"3304:8:46","nodeType":"FunctionDefinition","parameters":{"id":10908,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10903,"mutability":"mutable","name":"data","nameLocation":"3336:4:46","nodeType":"VariableDeclaration","scope":10959,"src":"3323:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10902,"name":"bytes","nodeType":"ElementaryTypeName","src":"3323:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10905,"mutability":"mutable","name":"prefix","nameLocation":"3365:6:46","nodeType":"VariableDeclaration","scope":10959,"src":"3351:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10904,"name":"string","nodeType":"ElementaryTypeName","src":"3351:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10907,"mutability":"mutable","name":"version","nameLocation":"3388:7:46","nodeType":"VariableDeclaration","scope":10959,"src":"3382:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10906,"name":"uint8","nodeType":"ElementaryTypeName","src":"3382:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"3312:90:46"},"returnParameters":{"id":10911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10910,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10959,"src":"3426:13:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10909,"name":"string","nodeType":"ElementaryTypeName","src":"3426:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3425:15:46"},"scope":12200,"src":"3295:497:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10992,"nodeType":"Block","src":"3892:234:46","statements":[{"assignments":[null,10970],"declarations":[null,{"constant":false,"id":10970,"mutability":"mutable","name":"data","nameLocation":"3921:4:46","nodeType":"VariableDeclaration","scope":10992,"src":"3906:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":10968,"name":"uint8","nodeType":"ElementaryTypeName","src":"3906:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":10969,"nodeType":"ArrayTypeName","src":"3906:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":10978,"initialValue":{"arguments":[{"arguments":[{"id":10974,"name":"bechAddr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10961,"src":"3967:8:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":10972,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3950:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10973,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3954:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"3950:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":10975,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3950:26:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10976,"name":"ENC_BECH32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10827,"src":"3991:10:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":10971,"name":"decode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11569,"src":"3929:6:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint32_$returns$_t_bytes_memory_ptr_$_t_array$_t_uint8_$dyn_memory_ptr_$","typeString":"function (bytes memory,uint32) pure returns (bytes memory,uint8[] memory)"}},"id":10977,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3929:83:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_array$_t_uint8_$dyn_memory_ptr_$","typeString":"tuple(bytes memory,uint8[] memory)"}},"nodeType":"VariableDeclarationStatement","src":"3903:109:46"},{"assignments":[10980],"declarations":[{"constant":false,"id":10980,"mutability":"mutable","name":"input","nameLocation":"4036:5:46","nodeType":"VariableDeclaration","scope":10992,"src":"4023:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10979,"name":"bytes","nodeType":"ElementaryTypeName","src":"4023:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10987,"initialValue":{"arguments":[{"id":10982,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10970,"src":"4056:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},{"hexValue":"35","id":10983,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4062:1:46","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},{"hexValue":"38","id":10984,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4065:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"hexValue":"66616c7365","id":10985,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4068:5:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"},{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":10981,"name":"convertBits","nodeType":"Identifier","overloadedDeclarations":[12020,12042],"referencedDeclaration":12042,"src":"4044:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_uint8_$dyn_memory_ptr_$_t_uint256_$_t_uint256_$_t_bool_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint8[] memory,uint256,uint256,bool) pure returns (bytes memory)"}},"id":10986,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4044:30:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"4023:51:46"},{"expression":{"arguments":[{"id":10989,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10980,"src":"4112:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":10988,"name":"getAddressFromBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11218,"src":"4092:19:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes memory) pure returns (address)"}},"id":10990,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4092:26:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":10965,"id":10991,"nodeType":"Return","src":"4085:33:46"}]},"id":10993,"implemented":true,"kind":"function","modifiers":[],"name":"fromBech32","nameLocation":"3809:10:46","nodeType":"FunctionDefinition","parameters":{"id":10962,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10961,"mutability":"mutable","name":"bechAddr","nameLocation":"3844:8:46","nodeType":"VariableDeclaration","scope":10993,"src":"3830:22:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10960,"name":"string","nodeType":"ElementaryTypeName","src":"3830:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3819:40:46"},"returnParameters":{"id":10965,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10964,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10993,"src":"3883:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10963,"name":"address","nodeType":"ElementaryTypeName","src":"3883:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3882:9:46"},"scope":12200,"src":"3800:326:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11036,"nodeType":"Block","src":"4257:310:46","statements":[{"assignments":[11003,11006],"declarations":[{"constant":false,"id":11003,"mutability":"mutable","name":"dHrp","nameLocation":"4282:4:46","nodeType":"VariableDeclaration","scope":11036,"src":"4269:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11002,"name":"bytes","nodeType":"ElementaryTypeName","src":"4269:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11006,"mutability":"mutable","name":"data","nameLocation":"4303:4:46","nodeType":"VariableDeclaration","scope":11036,"src":"4288:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11004,"name":"uint8","nodeType":"ElementaryTypeName","src":"4288:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11005,"nodeType":"ArrayTypeName","src":"4288:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":11014,"initialValue":{"arguments":[{"arguments":[{"id":11010,"name":"bechAddr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10995,"src":"4349:8:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":11008,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4332:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":11009,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4336:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"4332:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":11011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4332:26:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":11012,"name":"ENC_BECH32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10827,"src":"4373:10:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":11007,"name":"decode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11569,"src":"4311:6:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint32_$returns$_t_bytes_memory_ptr_$_t_array$_t_uint8_$dyn_memory_ptr_$","typeString":"function (bytes memory,uint32) pure returns (bytes memory,uint8[] memory)"}},"id":11013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4311:83:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_array$_t_uint8_$dyn_memory_ptr_$","typeString":"tuple(bytes memory,uint8[] memory)"}},"nodeType":"VariableDeclarationStatement","src":"4268:126:46"},{"expression":{"arguments":[{"arguments":[{"id":11018,"name":"prefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10997,"src":"4439:6:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":11016,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4422:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":11017,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4426:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"4422:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":11019,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4422:24:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":11020,"name":"dHrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11003,"src":"4448:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11015,"name":"_requireHrpMatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11196,"src":"4405:16:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory,bytes memory) pure"}},"id":11021,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4405:48:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11022,"nodeType":"ExpressionStatement","src":"4405:48:46"},{"assignments":[11024],"declarations":[{"constant":false,"id":11024,"mutability":"mutable","name":"input","nameLocation":"4477:5:46","nodeType":"VariableDeclaration","scope":11036,"src":"4464:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11023,"name":"bytes","nodeType":"ElementaryTypeName","src":"4464:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":11031,"initialValue":{"arguments":[{"id":11026,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11006,"src":"4497:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},{"hexValue":"35","id":11027,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4503:1:46","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},{"hexValue":"38","id":11028,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4506:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"hexValue":"66616c7365","id":11029,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4509:5:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"},{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":11025,"name":"convertBits","nodeType":"Identifier","overloadedDeclarations":[12020,12042],"referencedDeclaration":12042,"src":"4485:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_uint8_$dyn_memory_ptr_$_t_uint256_$_t_uint256_$_t_bool_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint8[] memory,uint256,uint256,bool) pure returns (bytes memory)"}},"id":11030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4485:30:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"4464:51:46"},{"expression":{"arguments":[{"id":11033,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11024,"src":"4553:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11032,"name":"getAddressFromBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11218,"src":"4533:19:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes memory) pure returns (address)"}},"id":11034,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4533:26:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":11001,"id":11035,"nodeType":"Return","src":"4526:33:46"}]},"id":11037,"implemented":true,"kind":"function","modifiers":[],"name":"fromBech32","nameLocation":"4143:10:46","nodeType":"FunctionDefinition","parameters":{"id":10998,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10995,"mutability":"mutable","name":"bechAddr","nameLocation":"4178:8:46","nodeType":"VariableDeclaration","scope":11037,"src":"4164:22:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10994,"name":"string","nodeType":"ElementaryTypeName","src":"4164:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10997,"mutability":"mutable","name":"prefix","nameLocation":"4211:6:46","nodeType":"VariableDeclaration","scope":11037,"src":"4197:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10996,"name":"string","nodeType":"ElementaryTypeName","src":"4197:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4153:71:46"},"returnParameters":{"id":11001,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11000,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11037,"src":"4248:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10999,"name":"address","nodeType":"ElementaryTypeName","src":"4248:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4247:9:46"},"scope":12200,"src":"4134:433:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11176,"nodeType":"Block","src":"4742:829:46","statements":[{"assignments":[11051,11054],"declarations":[{"constant":false,"id":11051,"mutability":"mutable","name":"dHrp","nameLocation":"4767:4:46","nodeType":"VariableDeclaration","scope":11176,"src":"4754:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11050,"name":"bytes","nodeType":"ElementaryTypeName","src":"4754:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11054,"mutability":"mutable","name":"data","nameLocation":"4788:4:46","nodeType":"VariableDeclaration","scope":11176,"src":"4773:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11052,"name":"uint8","nodeType":"ElementaryTypeName","src":"4773:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11053,"nodeType":"ArrayTypeName","src":"4773:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":11062,"initialValue":{"arguments":[{"arguments":[{"id":11058,"name":"bechAddr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11039,"src":"4834:8:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":11056,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4817:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":11057,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4821:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"4817:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":11059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4817:26:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":11060,"name":"enc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11043,"src":"4858:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":11055,"name":"decode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11569,"src":"4796:6:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint32_$returns$_t_bytes_memory_ptr_$_t_array$_t_uint8_$dyn_memory_ptr_$","typeString":"function (bytes memory,uint32) pure returns (bytes memory,uint8[] memory)"}},"id":11061,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4796:76:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_array$_t_uint8_$dyn_memory_ptr_$","typeString":"tuple(bytes memory,uint8[] memory)"}},"nodeType":"VariableDeclarationStatement","src":"4753:119:46"},{"expression":{"arguments":[{"arguments":[{"id":11066,"name":"prefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11041,"src":"4917:6:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":11064,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4900:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":11065,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4904:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"4900:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":11067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4900:24:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":11068,"name":"dHrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11051,"src":"4926:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11063,"name":"_requireHrpMatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11196,"src":"4883:16:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (bytes memory,bytes memory) pure"}},"id":11069,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4883:48:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11070,"nodeType":"ExpressionStatement","src":"4883:48:46"},{"expression":{"arguments":[{"id":11083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4950:34:46","subExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11072,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11054,"src":"4952:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4957:6:46","memberName":"length","nodeType":"MemberAccess","src":"4952:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"31","id":11074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4966:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4952:15:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":11076,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11054,"src":"4971:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11078,"indexExpression":{"hexValue":"30","id":11077,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4976:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4971:7:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3136","id":11079,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4981:2:46","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"4971:12:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4952:31:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":11082,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4951:33:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4265636833323a2077726f6e672076657273696f6e","id":11084,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4986:23:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_602bb3c97ae7aaccff2a6891d18861840048f4873b23ebc8386404253dc75bf2","typeString":"literal_string \"Bech32: wrong version\""},"value":"Bech32: wrong version"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_602bb3c97ae7aaccff2a6891d18861840048f4873b23ebc8386404253dc75bf2","typeString":"literal_string \"Bech32: wrong version\""}],"id":11071,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4942:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":11085,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4942:68:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11086,"nodeType":"ExpressionStatement","src":"4942:68:46"},{"assignments":[11091],"declarations":[{"constant":false,"id":11091,"mutability":"mutable","name":"dataNoV","nameLocation":"5036:7:46","nodeType":"VariableDeclaration","scope":11176,"src":"5021:22:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11089,"name":"uint8","nodeType":"ElementaryTypeName","src":"5021:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11090,"nodeType":"ArrayTypeName","src":"5021:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":11100,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11095,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11054,"src":"5058:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11096,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5063:6:46","memberName":"length","nodeType":"MemberAccess","src":"5058:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":11097,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5072:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"5058:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11094,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"5046:11:46","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint8_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint8[] memory)"},"typeName":{"baseType":{"id":11092,"name":"uint8","nodeType":"ElementaryTypeName","src":"5050:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11093,"nodeType":"ArrayTypeName","src":"5050:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}}},"id":11099,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5046:28:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"nodeType":"VariableDeclarationStatement","src":"5021:53:46"},{"body":{"id":11122,"nodeType":"Block","src":"5125:51:46","statements":[{"expression":{"id":11120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11112,"name":"dataNoV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11091,"src":"5140:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11116,"indexExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11113,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11102,"src":"5148:1:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":11114,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5152:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"5148:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"5140:14:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":11117,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11054,"src":"5157:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11119,"indexExpression":{"id":11118,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11102,"src":"5162:1:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5157:7:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"5140:24:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11121,"nodeType":"ExpressionStatement","src":"5140:24:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11105,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11102,"src":"5103:1:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11106,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11054,"src":"5107:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11107,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5112:6:46","memberName":"length","nodeType":"MemberAccess","src":"5107:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5103:15:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11123,"initializationExpression":{"assignments":[11102],"declarations":[{"constant":false,"id":11102,"mutability":"mutable","name":"i","nameLocation":"5096:1:46","nodeType":"VariableDeclaration","scope":11123,"src":"5090:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11101,"name":"uint8","nodeType":"ElementaryTypeName","src":"5090:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":11104,"initialValue":{"hexValue":"31","id":11103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5100:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"5090:11:46"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":11110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"5120:3:46","subExpression":{"id":11109,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11102,"src":"5122:1:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11111,"nodeType":"ExpressionStatement","src":"5120:3:46"},"nodeType":"ForStatement","src":"5085:91:46"},{"assignments":[11125],"declarations":[{"constant":false,"id":11125,"mutability":"mutable","name":"input","nameLocation":"5199:5:46","nodeType":"VariableDeclaration","scope":11176,"src":"5186:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11124,"name":"bytes","nodeType":"ElementaryTypeName","src":"5186:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":11132,"initialValue":{"arguments":[{"id":11127,"name":"dataNoV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11091,"src":"5219:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},{"hexValue":"35","id":11128,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5228:1:46","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},{"hexValue":"38","id":11129,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5231:1:46","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"hexValue":"66616c7365","id":11130,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"5234:5:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"},{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":11126,"name":"convertBits","nodeType":"Identifier","overloadedDeclarations":[12020,12042],"referencedDeclaration":12042,"src":"5207:11:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_uint8_$dyn_memory_ptr_$_t_uint256_$_t_uint256_$_t_bool_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint8[] memory,uint256,uint256,bool) pure returns (bytes memory)"}},"id":11131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5207:33:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"5186:54:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11142,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11137,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11134,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11125,"src":"5273:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5279:6:46","memberName":"length","nodeType":"MemberAccess","src":"5273:12:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"32","id":11136,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5289:1:46","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"5273:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11138,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11125,"src":"5294:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5300:6:46","memberName":"length","nodeType":"MemberAccess","src":"5294:12:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"3430","id":11140,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5310:2:46","typeDescriptions":{"typeIdentifier":"t_rational_40_by_1","typeString":"int_const 40"},"value":"40"},"src":"5294:18:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5273:39:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4265636833323a2077726f6e672062697473206c656e677468","id":11143,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5327:27:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_20fe1266642829f48fe72b9ee536a7d97d7e427b9e7d52cb187386ffd1ddc8e0","typeString":"literal_string \"Bech32: wrong bits length\""},"value":"Bech32: wrong bits length"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_20fe1266642829f48fe72b9ee536a7d97d7e427b9e7d52cb187386ffd1ddc8e0","typeString":"literal_string \"Bech32: wrong bits length\""}],"id":11133,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5251:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":11144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5251:114:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11145,"nodeType":"ExpressionStatement","src":"5251:114:46"},{"expression":{"arguments":[{"id":11163,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5398:59:46","subExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":11147,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11054,"src":"5400:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11149,"indexExpression":{"hexValue":"30","id":11148,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5405:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5400:7:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":11150,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5411:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5400:12:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11152,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11125,"src":"5416:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5422:6:46","memberName":"length","nodeType":"MemberAccess","src":"5416:12:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"3230","id":11154,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5432:2:46","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"src":"5416:18:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5400:34:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11157,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11125,"src":"5438:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5444:6:46","memberName":"length","nodeType":"MemberAccess","src":"5438:12:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"3332","id":11159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5454:2:46","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"5438:18:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5400:56:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":11162,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5399:58:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4265636833323a2077726f6e672062697473206c656e67746820666f722076657273696f6e","id":11164,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5472:39:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_58f06f3048eb462af5439e481640081f91d0c87f9be5ed2740317c6f399558c9","typeString":"literal_string \"Bech32: wrong bits length for version\""},"value":"Bech32: wrong bits length for version"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_58f06f3048eb462af5439e481640081f91d0c87f9be5ed2740317c6f399558c9","typeString":"literal_string \"Bech32: wrong bits length for version\""}],"id":11146,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5376:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":11165,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5376:146:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11166,"nodeType":"ExpressionStatement","src":"5376:146:46"},{"expression":{"components":[{"arguments":[{"baseExpression":{"id":11169,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11054,"src":"5547:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11171,"indexExpression":{"hexValue":"30","id":11170,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5552:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5547:7:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":11168,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5541:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11167,"name":"uint8","nodeType":"ElementaryTypeName","src":"5541:5:46","typeDescriptions":{}}},"id":11172,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5541:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":11173,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11125,"src":"5557:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":11174,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5540:23:46","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint8_$_t_bytes_memory_ptr_$","typeString":"tuple(uint8,bytes memory)"}},"functionReturnParameters":11049,"id":11175,"nodeType":"Return","src":"5533:30:46"}]},"id":11177,"implemented":true,"kind":"function","modifiers":[],"name":"fromBech32WithVersion","nameLocation":"4584:21:46","nodeType":"FunctionDefinition","parameters":{"id":11044,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11039,"mutability":"mutable","name":"bechAddr","nameLocation":"4630:8:46","nodeType":"VariableDeclaration","scope":11177,"src":"4616:22:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11038,"name":"string","nodeType":"ElementaryTypeName","src":"4616:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":11041,"mutability":"mutable","name":"prefix","nameLocation":"4663:6:46","nodeType":"VariableDeclaration","scope":11177,"src":"4649:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11040,"name":"string","nodeType":"ElementaryTypeName","src":"4649:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":11043,"mutability":"mutable","name":"enc","nameLocation":"4687:3:46","nodeType":"VariableDeclaration","scope":11177,"src":"4680:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11042,"name":"uint32","nodeType":"ElementaryTypeName","src":"4680:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4605:92:46"},"returnParameters":{"id":11049,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11046,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11177,"src":"4721:5:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11045,"name":"uint8","nodeType":"ElementaryTypeName","src":"4721:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":11048,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11177,"src":"4728:12:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11047,"name":"bytes","nodeType":"ElementaryTypeName","src":"4728:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4720:21:46"},"scope":12200,"src":"4575:996:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11195,"nodeType":"Block","src":"5682:86:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":11191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11186,"name":"hrp1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11179,"src":"5711:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11185,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"5701:9:46","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":11187,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5701:15:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":11189,"name":"hrp2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11181,"src":"5730:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11188,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"5720:9:46","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":11190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5720:15:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"5701:34:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4265636833323a20687270206d69736d61746368","id":11192,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5737:22:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_cc3b15adba6692e0236e3ef91314dd5f2f6b9fc7d497a8d9fca03d4d32ef0086","typeString":"literal_string \"Bech32: hrp mismatch\""},"value":"Bech32: hrp mismatch"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_cc3b15adba6692e0236e3ef91314dd5f2f6b9fc7d497a8d9fca03d4d32ef0086","typeString":"literal_string \"Bech32: hrp mismatch\""}],"id":11184,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5693:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":11193,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5693:67:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11194,"nodeType":"ExpressionStatement","src":"5693:67:46"}]},"id":11196,"implemented":true,"kind":"function","modifiers":[],"name":"_requireHrpMatch","nameLocation":"5588:16:46","nodeType":"FunctionDefinition","parameters":{"id":11182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11179,"mutability":"mutable","name":"hrp1","nameLocation":"5628:4:46","nodeType":"VariableDeclaration","scope":11196,"src":"5615:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11178,"name":"bytes","nodeType":"ElementaryTypeName","src":"5615:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11181,"mutability":"mutable","name":"hrp2","nameLocation":"5656:4:46","nodeType":"VariableDeclaration","scope":11196,"src":"5643:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11180,"name":"bytes","nodeType":"ElementaryTypeName","src":"5643:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5604:63:46"},"returnParameters":{"id":11183,"nodeType":"ParameterList","parameters":[],"src":"5682:0:46"},"scope":12200,"src":"5579:189:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11217,"nodeType":"Block","src":"5872:196:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11204,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11198,"src":"5891:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11205,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5896:6:46","memberName":"length","nodeType":"MemberAccess","src":"5891:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3230","id":11206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5906:2:46","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"src":"5891:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4265636833323a20696e76616c69642064617461206c656e677468","id":11208,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5910:29:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_e61d0d29c666259da088b9a4a3c73f42db070a7c6e4ed8d249944652ec7c2cf8","typeString":"literal_string \"Bech32: invalid data length\""},"value":"Bech32: invalid data length"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e61d0d29c666259da088b9a4a3c73f42db070a7c6e4ed8d249944652ec7c2cf8","typeString":"literal_string \"Bech32: invalid data length\""}],"id":11203,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5883:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":11209,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5883:57:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11210,"nodeType":"ExpressionStatement","src":"5883:57:46"},{"assignments":[11212],"declarations":[{"constant":false,"id":11212,"mutability":"mutable","name":"addr","nameLocation":"5961:4:46","nodeType":"VariableDeclaration","scope":11217,"src":"5953:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11211,"name":"address","nodeType":"ElementaryTypeName","src":"5953:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":11213,"nodeType":"VariableDeclarationStatement","src":"5953:12:46"},{"AST":{"nativeSrc":"5985:54:46","nodeType":"YulBlock","src":"5985:54:46","statements":[{"nativeSrc":"6000:28:46","nodeType":"YulAssignment","src":"6000:28:46","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"6018:4:46","nodeType":"YulIdentifier","src":"6018:4:46"},{"kind":"number","nativeSrc":"6024:2:46","nodeType":"YulLiteral","src":"6024:2:46","type":"","value":"20"}],"functionName":{"name":"add","nativeSrc":"6014:3:46","nodeType":"YulIdentifier","src":"6014:3:46"},"nativeSrc":"6014:13:46","nodeType":"YulFunctionCall","src":"6014:13:46"}],"functionName":{"name":"mload","nativeSrc":"6008:5:46","nodeType":"YulIdentifier","src":"6008:5:46"},"nativeSrc":"6008:20:46","nodeType":"YulFunctionCall","src":"6008:20:46"},"variableNames":[{"name":"addr","nativeSrc":"6000:4:46","nodeType":"YulIdentifier","src":"6000:4:46"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":11212,"isOffset":false,"isSlot":false,"src":"6000:4:46","valueSize":1},{"declaration":11198,"isOffset":false,"isSlot":false,"src":"6018:4:46","valueSize":1}],"id":11214,"nodeType":"InlineAssembly","src":"5976:63:46"},{"expression":{"id":11215,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11212,"src":"6056:4:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":11202,"id":11216,"nodeType":"Return","src":"6049:11:46"}]},"id":11218,"implemented":true,"kind":"function","modifiers":[],"name":"getAddressFromBytes","nameLocation":"5785:19:46","nodeType":"FunctionDefinition","parameters":{"id":11199,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11198,"mutability":"mutable","name":"data","nameLocation":"5828:4:46","nodeType":"VariableDeclaration","scope":11218,"src":"5815:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11197,"name":"bytes","nodeType":"ElementaryTypeName","src":"5815:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5804:35:46"},"returnParameters":{"id":11202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11201,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11218,"src":"5863:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11200,"name":"address","nodeType":"ElementaryTypeName","src":"5863:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5862:9:46"},"scope":12200,"src":"5776:292:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11378,"nodeType":"Block","src":"6214:960:46","statements":[{"id":11377,"nodeType":"UncheckedBlock","src":"6225:942:46","statements":[{"assignments":[11233],"declarations":[{"constant":false,"id":11233,"mutability":"mutable","name":"checksum","nameLocation":"6265:8:46","nodeType":"VariableDeclaration","scope":11377,"src":"6250:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11231,"name":"uint8","nodeType":"ElementaryTypeName","src":"6250:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11232,"nodeType":"ArrayTypeName","src":"6250:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":11239,"initialValue":{"arguments":[{"id":11235,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11220,"src":"6291:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":11236,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11222,"src":"6296:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":11237,"name":"enc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11224,"src":"6303:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":11234,"name":"createChecksum","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11870,"src":"6276:14:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_bytes_memory_ptr_$_t_uint32_$returns$_t_array$_t_uint8_$dyn_memory_ptr_$","typeString":"function (bytes memory,bytes memory,uint32) pure returns (uint8[] memory)"}},"id":11238,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6276:31:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"nodeType":"VariableDeclarationStatement","src":"6250:57:46"},{"assignments":[11241],"declarations":[{"constant":false,"id":11241,"mutability":"mutable","name":"result","nameLocation":"6335:6:46","nodeType":"VariableDeclaration","scope":11377,"src":"6322:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11240,"name":"bytes","nodeType":"ElementaryTypeName","src":"6322:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":11255,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11253,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11244,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11220,"src":"6354:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6358:6:46","memberName":"length","nodeType":"MemberAccess","src":"6354:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":11246,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11222,"src":"6367:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6373:6:46","memberName":"length","nodeType":"MemberAccess","src":"6367:12:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6354:25:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":11249,"name":"checksum","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11233,"src":"6382:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6391:6:46","memberName":"length","nodeType":"MemberAccess","src":"6382:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6354:43:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":11252,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6400:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6354:47:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11243,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"6344:9:46","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":11242,"name":"bytes","nodeType":"ElementaryTypeName","src":"6348:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":11254,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6344:58:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"6322:80:46"},{"body":{"id":11274,"nodeType":"Block","src":"6452:53:46","statements":[{"expression":{"id":11272,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11266,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11241,"src":"6471:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11268,"indexExpression":{"id":11267,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11257,"src":"6478:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6471:9:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":11269,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11220,"src":"6483:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11271,"indexExpression":{"id":11270,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11257,"src":"6487:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6483:6:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"6471:18:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":11273,"nodeType":"ExpressionStatement","src":"6471:18:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11259,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11257,"src":"6430:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11260,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11220,"src":"6434:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6438:6:46","memberName":"length","nodeType":"MemberAccess","src":"6434:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6430:14:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11275,"initializationExpression":{"assignments":[11257],"declarations":[{"constant":false,"id":11257,"mutability":"mutable","name":"i","nameLocation":"6427:1:46","nodeType":"VariableDeclaration","scope":11275,"src":"6422:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11256,"name":"uint","nodeType":"ElementaryTypeName","src":"6422:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11258,"nodeType":"VariableDeclarationStatement","src":"6422:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6446:4:46","subExpression":{"id":11263,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11257,"src":"6449:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11265,"nodeType":"ExpressionStatement","src":"6446:4:46"},"nodeType":"ForStatement","src":"6417:88:46"},{"expression":{"id":11284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11276,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11241,"src":"6519:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11279,"indexExpression":{"expression":{"id":11277,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11220,"src":"6526:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6530:6:46","memberName":"length","nodeType":"MemberAccess","src":"6526:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6519:18:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"31","id":11282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"6547:3:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""}],"id":11281,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6540:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":11280,"name":"bytes1","nodeType":"ElementaryTypeName","src":"6540:6:46","typeDescriptions":{}}},"id":11283,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6540:11:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"6519:32:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":11285,"nodeType":"ExpressionStatement","src":"6519:32:46"},{"assignments":[11287],"declarations":[{"constant":false,"id":11287,"mutability":"mutable","name":"offset","nameLocation":"6571:6:46","nodeType":"VariableDeclaration","scope":11377,"src":"6566:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11286,"name":"uint","nodeType":"ElementaryTypeName","src":"6566:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11292,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11288,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11220,"src":"6580:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6584:6:46","memberName":"length","nodeType":"MemberAccess","src":"6580:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":11290,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6593:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6580:14:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6566:28:46"},{"body":{"id":11328,"nodeType":"Block","src":"6646:190:46","statements":[{"assignments":[11304],"declarations":[{"constant":false,"id":11304,"mutability":"mutable","name":"_data","nameLocation":"6671:5:46","nodeType":"VariableDeclaration","scope":11328,"src":"6665:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11303,"name":"uint8","nodeType":"ElementaryTypeName","src":"6665:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":11311,"initialValue":{"arguments":[{"baseExpression":{"id":11307,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11222,"src":"6685:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11309,"indexExpression":{"id":11308,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11294,"src":"6691:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6685:8:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":11306,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6679:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11305,"name":"uint8","nodeType":"ElementaryTypeName","src":"6679:5:46","typeDescriptions":{}}},"id":11310,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6679:15:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"6665:29:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11312,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11304,"src":"6717:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11313,"name":"ALPHABET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10818,"src":"6725:8:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6734:6:46","memberName":"length","nodeType":"MemberAccess","src":"6725:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6717:23:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11327,"nodeType":"IfStatement","src":"6713:108:46","trueBody":{"id":11326,"nodeType":"Block","src":"6742:79:46","statements":[{"expression":{"id":11324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11316,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11241,"src":"6765:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11320,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11317,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11294,"src":"6772:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":11318,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11287,"src":"6776:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6772:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6765:18:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":11321,"name":"ALPHABET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10818,"src":"6786:8:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11323,"indexExpression":{"id":11322,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11304,"src":"6795:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6786:15:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"6765:36:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":11325,"nodeType":"ExpressionStatement","src":"6765:36:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11299,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11296,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11294,"src":"6622:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11297,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11222,"src":"6626:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6632:6:46","memberName":"length","nodeType":"MemberAccess","src":"6626:12:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6622:16:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11329,"initializationExpression":{"assignments":[11294],"declarations":[{"constant":false,"id":11294,"mutability":"mutable","name":"i","nameLocation":"6619:1:46","nodeType":"VariableDeclaration","scope":11329,"src":"6614:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11293,"name":"uint","nodeType":"ElementaryTypeName","src":"6614:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11295,"nodeType":"VariableDeclarationStatement","src":"6614:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6640:4:46","subExpression":{"id":11300,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11294,"src":"6643:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11302,"nodeType":"ExpressionStatement","src":"6640:4:46"},"nodeType":"ForStatement","src":"6609:227:46"},{"expression":{"id":11333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11330,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11287,"src":"6850:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"expression":{"id":11331,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11222,"src":"6860:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6866:6:46","memberName":"length","nodeType":"MemberAccess","src":"6860:12:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6850:22:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11334,"nodeType":"ExpressionStatement","src":"6850:22:46"},{"body":{"id":11370,"nodeType":"Block","src":"6927:193:46","statements":[{"assignments":[11346],"declarations":[{"constant":false,"id":11346,"mutability":"mutable","name":"_data","nameLocation":"6952:5:46","nodeType":"VariableDeclaration","scope":11370,"src":"6946:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11345,"name":"uint8","nodeType":"ElementaryTypeName","src":"6946:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":11353,"initialValue":{"arguments":[{"baseExpression":{"id":11349,"name":"checksum","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11233,"src":"6966:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11351,"indexExpression":{"id":11350,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11336,"src":"6975:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6966:11:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":11348,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"6960:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11347,"name":"uint8","nodeType":"ElementaryTypeName","src":"6960:5:46","typeDescriptions":{}}},"id":11352,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6960:18:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"6946:32:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11354,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11346,"src":"7001:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11355,"name":"ALPHABET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10818,"src":"7009:8:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11356,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7018:6:46","memberName":"length","nodeType":"MemberAccess","src":"7009:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7001:23:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11369,"nodeType":"IfStatement","src":"6997:108:46","trueBody":{"id":11368,"nodeType":"Block","src":"7026:79:46","statements":[{"expression":{"id":11366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11358,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11241,"src":"7049:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11362,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11359,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11336,"src":"7056:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":11360,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11287,"src":"7060:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7056:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7049:18:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":11363,"name":"ALPHABET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10818,"src":"7070:8:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11365,"indexExpression":{"id":11364,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11346,"src":"7079:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7070:15:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"7049:36:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":11367,"nodeType":"ExpressionStatement","src":"7049:36:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11338,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11336,"src":"6900:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11339,"name":"checksum","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11233,"src":"6904:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6913:6:46","memberName":"length","nodeType":"MemberAccess","src":"6904:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6900:19:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11371,"initializationExpression":{"assignments":[11336],"declarations":[{"constant":false,"id":11336,"mutability":"mutable","name":"i","nameLocation":"6897:1:46","nodeType":"VariableDeclaration","scope":11371,"src":"6892:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11335,"name":"uint","nodeType":"ElementaryTypeName","src":"6892:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11337,"nodeType":"VariableDeclarationStatement","src":"6892:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6921:4:46","subExpression":{"id":11342,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11336,"src":"6924:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11344,"nodeType":"ExpressionStatement","src":"6921:4:46"},"nodeType":"ForStatement","src":"6887:233:46"},{"expression":{"arguments":[{"id":11374,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11241,"src":"7148:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11373,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7141:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":11372,"name":"string","nodeType":"ElementaryTypeName","src":"7141:6:46","typeDescriptions":{}}},"id":11375,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7141:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":11228,"id":11376,"nodeType":"Return","src":"7134:21:46"}]}]},"id":11379,"implemented":true,"kind":"function","modifiers":[],"name":"encode","nameLocation":"6085:6:46","nodeType":"FunctionDefinition","parameters":{"id":11225,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11220,"mutability":"mutable","name":"hrp","nameLocation":"6115:3:46","nodeType":"VariableDeclaration","scope":11379,"src":"6102:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11219,"name":"bytes","nodeType":"ElementaryTypeName","src":"6102:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11222,"mutability":"mutable","name":"input","nameLocation":"6142:5:46","nodeType":"VariableDeclaration","scope":11379,"src":"6129:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11221,"name":"bytes","nodeType":"ElementaryTypeName","src":"6129:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11224,"mutability":"mutable","name":"enc","nameLocation":"6165:3:46","nodeType":"VariableDeclaration","scope":11379,"src":"6158:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11223,"name":"uint32","nodeType":"ElementaryTypeName","src":"6158:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"6091:84:46"},"returnParameters":{"id":11228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11227,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11379,"src":"6199:13:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11226,"name":"string","nodeType":"ElementaryTypeName","src":"6199:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6198:15:46"},"scope":12200,"src":"6076:1098:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11568,"nodeType":"Block","src":"7319:1539:46","statements":[{"id":11567,"nodeType":"UncheckedBlock","src":"7330:1521:46","statements":[{"assignments":[11392],"declarations":[{"constant":false,"id":11392,"mutability":"mutable","name":"pos","nameLocation":"7360:3:46","nodeType":"VariableDeclaration","scope":11567,"src":"7355:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11391,"name":"uint","nodeType":"ElementaryTypeName","src":"7355:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11393,"nodeType":"VariableDeclarationStatement","src":"7355:8:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11395,"name":"bechStr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11381,"src":"7404:7:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7412:6:46","memberName":"length","nodeType":"MemberAccess","src":"7404:14:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"3930","id":11397,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7422:2:46","typeDescriptions":{"typeIdentifier":"t_rational_90_by_1","typeString":"int_const 90"},"value":"90"},"src":"7404:20:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4265636833323a20696e76616c696420737472696e67206c656e677468","id":11399,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7444:31:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_fbafcdcf532b64f842ae9e16c3ebe22680908b0bd1d2499a181aa780163d1903","typeString":"literal_string \"Bech32: invalid string length\""},"value":"Bech32: invalid string length"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_fbafcdcf532b64f842ae9e16c3ebe22680908b0bd1d2499a181aa780163d1903","typeString":"literal_string \"Bech32: invalid string length\""}],"id":11394,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"7378:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":11400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7378:112:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11401,"nodeType":"ExpressionStatement","src":"7378:112:46"},{"body":{"id":11466,"nodeType":"Block","src":"7548:573:46","statements":[{"assignments":[11414],"declarations":[{"constant":false,"id":11414,"mutability":"mutable","name":"charAt","nameLocation":"7573:6:46","nodeType":"VariableDeclaration","scope":11466,"src":"7567:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11413,"name":"uint8","nodeType":"ElementaryTypeName","src":"7567:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":11421,"initialValue":{"arguments":[{"baseExpression":{"id":11417,"name":"bechStr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11381,"src":"7588:7:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11419,"indexExpression":{"id":11418,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11403,"src":"7596:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7588:10:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":11416,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7582:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11415,"name":"uint8","nodeType":"ElementaryTypeName","src":"7582:5:46","typeDescriptions":{}}},"id":11420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7582:17:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"7567:32:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11425,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11423,"name":"charAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11414,"src":"7648:6:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3333","id":11424,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7658:2:46","typeDescriptions":{"typeIdentifier":"t_rational_33_by_1","typeString":"int_const 33"},"value":"33"},"src":"7648:12:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11426,"name":"charAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11414,"src":"7690:6:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"313236","id":11427,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7700:3:46","typeDescriptions":{"typeIdentifier":"t_rational_126_by_1","typeString":"int_const 126"},"value":"126"},"src":"7690:13:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7648:55:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4265636833323a2077726f6e672063686172","id":11430,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7727:20:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_53dc06d622ffc4876df233985214fd280a387287ffe9d0e519654cae6b62b983","typeString":"literal_string \"Bech32: wrong char\""},"value":"Bech32: wrong char"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_53dc06d622ffc4876df233985214fd280a387287ffe9d0e519654cae6b62b983","typeString":"literal_string \"Bech32: wrong char\""}],"id":11422,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"7618:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":11431,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7618:148:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11432,"nodeType":"ExpressionStatement","src":"7618:148:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11433,"name":"charAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11414,"src":"7789:6:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"hexValue":"31","id":11438,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7812:3:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""}],"id":11437,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7805:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":11436,"name":"bytes1","nodeType":"ElementaryTypeName","src":"7805:6:46","typeDescriptions":{}}},"id":11439,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7805:11:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":11435,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7799:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11434,"name":"uint8","nodeType":"ElementaryTypeName","src":"7799:5:46","typeDescriptions":{}}},"id":11440,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7799:18:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"7789:28:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11465,"nodeType":"IfStatement","src":"7785:321:46","trueBody":{"id":11464,"nodeType":"Block","src":"7819:287:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11443,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11392,"src":"7876:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":11444,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7883:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7876:8:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11446,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11403,"src":"7918:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"31","id":11447,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7923:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7918:6:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7876:48:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11450,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11403,"src":"7958:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"37","id":11451,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7962:1:46","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"7958:5:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":11453,"name":"bechStr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11381,"src":"7967:7:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11454,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7975:6:46","memberName":"length","nodeType":"MemberAccess","src":"7967:14:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7958:23:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7876:105:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4265636833323a2077726f6e6720706f73206f662031","id":11457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8009:24:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_0d3bbdc5952ddfc25bafa340466db68d17d1faf42dd154469a20b429a3742415","typeString":"literal_string \"Bech32: wrong pos of 1\""},"value":"Bech32: wrong pos of 1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_0d3bbdc5952ddfc25bafa340466db68d17d1faf42dd154469a20b429a3742415","typeString":"literal_string \"Bech32: wrong pos of 1\""}],"id":11442,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"7842:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":11458,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7842:214:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11459,"nodeType":"ExpressionStatement","src":"7842:214:46"},{"expression":{"id":11462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11460,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11392,"src":"8079:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":11461,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11403,"src":"8085:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8079:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11463,"nodeType":"ExpressionStatement","src":"8079:7:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11406,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11403,"src":"7522:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11407,"name":"bechStr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11381,"src":"7526:7:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7534:6:46","memberName":"length","nodeType":"MemberAccess","src":"7526:14:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7522:18:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11467,"initializationExpression":{"assignments":[11403],"declarations":[{"constant":false,"id":11403,"mutability":"mutable","name":"p","nameLocation":"7515:1:46","nodeType":"VariableDeclaration","scope":11467,"src":"7510:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11402,"name":"uint","nodeType":"ElementaryTypeName","src":"7510:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11405,"initialValue":{"hexValue":"30","id":11404,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7519:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"7510:10:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11411,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"7542:4:46","subExpression":{"id":11410,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11403,"src":"7545:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11412,"nodeType":"ExpressionStatement","src":"7542:4:46"},"nodeType":"ForStatement","src":"7505:616:46"},{"expression":{"id":11473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11468,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11386,"src":"8135:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11471,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11392,"src":"8151:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11470,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"8141:9:46","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":11469,"name":"bytes","nodeType":"ElementaryTypeName","src":"8145:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":11472,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8141:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"8135:20:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11474,"nodeType":"ExpressionStatement","src":"8135:20:46"},{"body":{"id":11492,"nodeType":"Block","src":"8198:55:46","statements":[{"expression":{"id":11490,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11484,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11386,"src":"8217:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11486,"indexExpression":{"id":11485,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11476,"src":"8221:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8217:6:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":11487,"name":"bechStr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11381,"src":"8226:7:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11489,"indexExpression":{"id":11488,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11476,"src":"8234:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8226:10:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"8217:19:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":11491,"nodeType":"ExpressionStatement","src":"8217:19:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11478,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11476,"src":"8183:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":11479,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11392,"src":"8187:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8183:7:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11493,"initializationExpression":{"assignments":[11476],"declarations":[{"constant":false,"id":11476,"mutability":"mutable","name":"i","nameLocation":"8180:1:46","nodeType":"VariableDeclaration","scope":11493,"src":"8175:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11475,"name":"uint","nodeType":"ElementaryTypeName","src":"8175:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11477,"nodeType":"VariableDeclarationStatement","src":"8175:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"8192:4:46","subExpression":{"id":11481,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11476,"src":"8195:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11483,"nodeType":"ExpressionStatement","src":"8192:4:46"},"nodeType":"ForStatement","src":"8170:83:46"},{"expression":{"id":11505,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11494,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11389,"src":"8267:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11498,"name":"bechStr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11381,"src":"8286:7:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8294:6:46","memberName":"length","nodeType":"MemberAccess","src":"8286:14:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":11500,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11392,"src":"8303:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8286:20:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":11502,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8309:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"8286:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11497,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"8274:11:46","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint8_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint8[] memory)"},"typeName":{"baseType":{"id":11495,"name":"uint8","nodeType":"ElementaryTypeName","src":"8278:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11496,"nodeType":"ArrayTypeName","src":"8278:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}}},"id":11504,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8274:37:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"src":"8267:44:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11506,"nodeType":"ExpressionStatement","src":"8267:44:46"},{"body":{"id":11548,"nodeType":"Block","src":"8362:219:46","statements":[{"assignments":[11518],"declarations":[{"constant":false,"id":11518,"mutability":"mutable","name":"charAt","nameLocation":"8388:6:46","nodeType":"VariableDeclaration","scope":11548,"src":"8381:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":11517,"name":"bytes1","nodeType":"ElementaryTypeName","src":"8381:6:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":11531,"initialValue":{"baseExpression":{"id":11519,"name":"ALPHABET_REV_LOWER_ONLY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10824,"src":"8397:23:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11530,"indexExpression":{"arguments":[{"baseExpression":{"id":11522,"name":"bechStr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11381,"src":"8427:7:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11528,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11527,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11523,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11508,"src":"8435:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":11524,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11392,"src":"8439:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8435:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":11526,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8445:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"8435:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8427:20:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":11521,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8421:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11520,"name":"uint8","nodeType":"ElementaryTypeName","src":"8421:5:46","typeDescriptions":{}}},"id":11529,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8421:27:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8397:52:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"8381:68:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":11535,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11533,"name":"charAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11518,"src":"8476:6:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30786666","id":11534,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8486:4:46","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xff"},"src":"8476:14:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4265636833323a2062797465206e6f7420696e20616c706861626574","id":11536,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8492:30:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_6a2cf2966ea32b348a1a2f630ac8faca290d4a2ab07de89caf8dae5717c1d46d","typeString":"literal_string \"Bech32: byte not in alphabet\""},"value":"Bech32: byte not in alphabet"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_6a2cf2966ea32b348a1a2f630ac8faca290d4a2ab07de89caf8dae5717c1d46d","typeString":"literal_string \"Bech32: byte not in alphabet\""}],"id":11532,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"8468:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":11537,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8468:55:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11538,"nodeType":"ExpressionStatement","src":"8468:55:46"},{"expression":{"id":11546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11539,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11389,"src":"8542:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11541,"indexExpression":{"id":11540,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11508,"src":"8547:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8542:7:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11544,"name":"charAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11518,"src":"8558:6:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":11543,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8552:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11542,"name":"uint8","nodeType":"ElementaryTypeName","src":"8552:5:46","typeDescriptions":{}}},"id":11545,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8552:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"8542:23:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11547,"nodeType":"ExpressionStatement","src":"8542:23:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11510,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11508,"src":"8339:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11511,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11389,"src":"8343:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8348:6:46","memberName":"length","nodeType":"MemberAccess","src":"8343:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8339:15:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11549,"initializationExpression":{"assignments":[11508],"declarations":[{"constant":false,"id":11508,"mutability":"mutable","name":"i","nameLocation":"8336:1:46","nodeType":"VariableDeclaration","scope":11549,"src":"8331:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11507,"name":"uint","nodeType":"ElementaryTypeName","src":"8331:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11509,"nodeType":"VariableDeclarationStatement","src":"8331:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"8356:4:46","subExpression":{"id":11514,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11508,"src":"8359:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11516,"nodeType":"ExpressionStatement","src":"8356:4:46"},"nodeType":"ForStatement","src":"8326:255:46"},{"expression":{"arguments":[{"arguments":[{"id":11552,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11386,"src":"8636:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":11553,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11389,"src":"8641:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},{"id":11554,"name":"enc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11383,"src":"8647:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"},{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":11551,"name":"verifyChecksum","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11963,"src":"8621:14:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_array$_t_uint8_$dyn_memory_ptr_$_t_uint32_$returns$_t_bool_$","typeString":"function (bytes memory,uint8[] memory,uint32) pure returns (bool)"}},"id":11555,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8621:30:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4265636833323a2077726f6e6720636865636b73756d","id":11556,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"8671:24:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_8925955b412698449f23fd1db0ca5278ae982350c0d6a43502b6059204e31edc","typeString":"literal_string \"Bech32: wrong checksum\""},"value":"Bech32: wrong checksum"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8925955b412698449f23fd1db0ca5278ae982350c0d6a43502b6059204e31edc","typeString":"literal_string \"Bech32: wrong checksum\""}],"id":11550,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"8595:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":11557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8595:115:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":11558,"nodeType":"ExpressionStatement","src":"8595:115:46"},{"assignments":[11560],"declarations":[{"constant":false,"id":11560,"mutability":"mutable","name":"dataLength","nameLocation":"8730:10:46","nodeType":"VariableDeclaration","scope":11567,"src":"8725:15:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11559,"name":"uint","nodeType":"ElementaryTypeName","src":"8725:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11565,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11561,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11389,"src":"8743:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11562,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8748:6:46","memberName":"length","nodeType":"MemberAccess","src":"8743:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"36","id":11563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8757:1:46","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"8743:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"8725:33:46"},{"AST":{"nativeSrc":"8782:58:46","nodeType":"YulBlock","src":"8782:58:46","statements":[{"expression":{"arguments":[{"name":"data","nativeSrc":"8808:4:46","nodeType":"YulIdentifier","src":"8808:4:46"},{"name":"dataLength","nativeSrc":"8814:10:46","nodeType":"YulIdentifier","src":"8814:10:46"}],"functionName":{"name":"mstore","nativeSrc":"8801:6:46","nodeType":"YulIdentifier","src":"8801:6:46"},"nativeSrc":"8801:24:46","nodeType":"YulFunctionCall","src":"8801:24:46"},"nativeSrc":"8801:24:46","nodeType":"YulExpressionStatement","src":"8801:24:46"}]},"evmVersion":"paris","externalReferences":[{"declaration":11389,"isOffset":false,"isSlot":false,"src":"8808:4:46","valueSize":1},{"declaration":11560,"isOffset":false,"isSlot":false,"src":"8814:10:46","valueSize":1}],"id":11566,"nodeType":"InlineAssembly","src":"8773:67:46"}]}]},"id":11569,"implemented":true,"kind":"function","modifiers":[],"name":"decode","nameLocation":"7191:6:46","nodeType":"FunctionDefinition","parameters":{"id":11384,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11381,"mutability":"mutable","name":"bechStr","nameLocation":"7211:7:46","nodeType":"VariableDeclaration","scope":11569,"src":"7198:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11380,"name":"bytes","nodeType":"ElementaryTypeName","src":"7198:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11383,"mutability":"mutable","name":"enc","nameLocation":"7227:3:46","nodeType":"VariableDeclaration","scope":11569,"src":"7220:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11382,"name":"uint32","nodeType":"ElementaryTypeName","src":"7220:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"7197:34:46"},"returnParameters":{"id":11390,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11386,"mutability":"mutable","name":"hrp","nameLocation":"7288:3:46","nodeType":"VariableDeclaration","scope":11569,"src":"7275:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11385,"name":"bytes","nodeType":"ElementaryTypeName","src":"7275:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11389,"mutability":"mutable","name":"data","nameLocation":"7308:4:46","nodeType":"VariableDeclaration","scope":11569,"src":"7293:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11387,"name":"uint8","nodeType":"ElementaryTypeName","src":"7293:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11388,"nodeType":"ArrayTypeName","src":"7293:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"src":"7274:39:46"},"scope":12200,"src":"7182:1676:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11635,"nodeType":"Block","src":"8962:275:46","statements":[{"id":11634,"nodeType":"UncheckedBlock","src":"8973:257:46","statements":[{"expression":{"id":11589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11577,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11575,"src":"8998:3:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11581,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11571,"src":"9016:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11582,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9020:6:46","memberName":"length","nodeType":"MemberAccess","src":"9016:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":11583,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11571,"src":"9029:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9033:6:46","memberName":"length","nodeType":"MemberAccess","src":"9029:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9016:23:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":11586,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9042:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9016:27:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11580,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"9004:11:46","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint8_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint8[] memory)"},"typeName":{"baseType":{"id":11578,"name":"uint8","nodeType":"ElementaryTypeName","src":"9008:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11579,"nodeType":"ArrayTypeName","src":"9008:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}}},"id":11588,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9004:40:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"src":"8998:46:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11590,"nodeType":"ExpressionStatement","src":"8998:46:46"},{"body":{"id":11632,"nodeType":"Block","src":"9094:125:46","statements":[{"expression":{"id":11612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11601,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11575,"src":"9113:3:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11603,"indexExpression":{"id":11602,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11592,"src":"9117:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9113:6:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11611,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":11606,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11571,"src":"9128:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11608,"indexExpression":{"id":11607,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11592,"src":"9132:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9128:6:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":11605,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9122:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11604,"name":"uint8","nodeType":"ElementaryTypeName","src":"9122:5:46","typeDescriptions":{}}},"id":11609,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9122:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"35","id":11610,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9139:1:46","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"9122:18:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"9113:27:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11613,"nodeType":"ExpressionStatement","src":"9113:27:46"},{"expression":{"id":11630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11614,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11575,"src":"9159:3:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11621,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11615,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11592,"src":"9163:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":11616,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11571,"src":"9167:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9171:6:46","memberName":"length","nodeType":"MemberAccess","src":"9167:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9163:14:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":11619,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9180:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9163:18:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9159:23:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":11624,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11571,"src":"9191:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11626,"indexExpression":{"id":11625,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11592,"src":"9195:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9191:6:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":11623,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9185:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11622,"name":"uint8","nodeType":"ElementaryTypeName","src":"9185:5:46","typeDescriptions":{}}},"id":11627,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9185:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"3331","id":11628,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9201:2:46","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"9185:18:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"9159:44:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11631,"nodeType":"ExpressionStatement","src":"9159:44:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11594,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11592,"src":"9072:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11595,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11571,"src":"9076:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9080:6:46","memberName":"length","nodeType":"MemberAccess","src":"9076:10:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9072:14:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11633,"initializationExpression":{"assignments":[11592],"declarations":[{"constant":false,"id":11592,"mutability":"mutable","name":"p","nameLocation":"9069:1:46","nodeType":"VariableDeclaration","scope":11633,"src":"9064:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11591,"name":"uint","nodeType":"ElementaryTypeName","src":"9064:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11593,"nodeType":"VariableDeclarationStatement","src":"9064:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"9088:4:46","subExpression":{"id":11598,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11592,"src":"9091:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11600,"nodeType":"ExpressionStatement","src":"9088:4:46"},"nodeType":"ForStatement","src":"9059:160:46"}]}]},"id":11636,"implemented":true,"kind":"function","modifiers":[],"name":"hrpExpand","nameLocation":"8875:9:46","nodeType":"FunctionDefinition","parameters":{"id":11572,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11571,"mutability":"mutable","name":"hrp","nameLocation":"8908:3:46","nodeType":"VariableDeclaration","scope":11636,"src":"8895:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11570,"name":"bytes","nodeType":"ElementaryTypeName","src":"8895:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8884:34:46"},"returnParameters":{"id":11576,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11575,"mutability":"mutable","name":"ret","nameLocation":"8957:3:46","nodeType":"VariableDeclaration","scope":11636,"src":"8942:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11573,"name":"uint8","nodeType":"ElementaryTypeName","src":"8942:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11574,"nodeType":"ArrayTypeName","src":"8942:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"src":"8941:20:46"},"scope":12200,"src":"8866:371:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11731,"nodeType":"Block","src":"9317:631:46","statements":[{"assignments":[11645],"declarations":[{"constant":false,"id":11645,"mutability":"mutable","name":"chk","nameLocation":"9335:3:46","nodeType":"VariableDeclaration","scope":11731,"src":"9328:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11644,"name":"uint32","nodeType":"ElementaryTypeName","src":"9328:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11647,"initialValue":{"hexValue":"31","id":11646,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9341:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"9328:14:46"},{"assignments":[11653],"declarations":[{"constant":false,"id":11653,"mutability":"mutable","name":"GEN","nameLocation":"9370:3:46","nodeType":"VariableDeclaration","scope":11731,"src":"9353:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$5_memory_ptr","typeString":"uint32[5]"},"typeName":{"baseType":{"id":11651,"name":"uint32","nodeType":"ElementaryTypeName","src":"9353:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11652,"length":{"hexValue":"35","id":11650,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9360:1:46","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"nodeType":"ArrayTypeName","src":"9353:9:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$5_storage_ptr","typeString":"uint32[5]"}},"visibility":"internal"}],"id":11660,"initialValue":{"components":[{"hexValue":"30783362366135376232","id":11654,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9391:10:46","typeDescriptions":{"typeIdentifier":"t_rational_996825010_by_1","typeString":"int_const 996825010"},"value":"0x3b6a57b2"},{"hexValue":"30783236353038653664","id":11655,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9416:10:46","typeDescriptions":{"typeIdentifier":"t_rational_642813549_by_1","typeString":"int_const 642813549"},"value":"0x26508e6d"},{"hexValue":"30783165613131396661","id":11656,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9441:10:46","typeDescriptions":{"typeIdentifier":"t_rational_513874426_by_1","typeString":"int_const 513874426"},"value":"0x1ea119fa"},{"hexValue":"30783364343233336464","id":11657,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9466:10:46","typeDescriptions":{"typeIdentifier":"t_rational_1027748829_by_1","typeString":"int_const 1027748829"},"value":"0x3d4233dd"},{"hexValue":"30783261313436326233","id":11658,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9491:10:46","typeDescriptions":{"typeIdentifier":"t_rational_705979059_by_1","typeString":"int_const 705979059"},"value":"0x2a1462b3"}],"id":11659,"isConstant":false,"isInlineArray":true,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"9376:136:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$5_memory_ptr","typeString":"uint32[5] memory"}},"nodeType":"VariableDeclarationStatement","src":"9353:159:46"},{"id":11728,"nodeType":"UncheckedBlock","src":"9525:393:46","statements":[{"body":{"id":11726,"nodeType":"Block","src":"9593:314:46","statements":[{"assignments":[11673],"declarations":[{"constant":false,"id":11673,"mutability":"mutable","name":"top","nameLocation":"9619:3:46","nodeType":"VariableDeclaration","scope":11726,"src":"9612:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11672,"name":"uint32","nodeType":"ElementaryTypeName","src":"9612:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11677,"initialValue":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11674,"name":"chk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11645,"src":"9625:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3235","id":11675,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9632:2:46","typeDescriptions":{"typeIdentifier":"t_rational_25_by_1","typeString":"int_const 25"},"value":"25"},"src":"9625:9:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"9612:22:46"},{"expression":{"id":11695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11678,"name":"chk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11645,"src":"9653:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11681,"name":"chk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11645,"src":"9667:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307831666666666666","id":11682,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9673:9:46","typeDescriptions":{"typeIdentifier":"t_rational_33554431_by_1","typeString":"int_const 33554431"},"value":"0x1ffffff"},"src":"9667:15:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":11680,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9660:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":11679,"name":"uint32","nodeType":"ElementaryTypeName","src":"9660:6:46","typeDescriptions":{}}},"id":11684,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9660:23:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"35","id":11685,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9687:1:46","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"9660:28:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":11687,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9659:30:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"arguments":[{"baseExpression":{"id":11690,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11639,"src":"9699:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}},"id":11692,"indexExpression":{"id":11691,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11662,"src":"9706:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9699:9:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":11689,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9692:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":11688,"name":"uint32","nodeType":"ElementaryTypeName","src":"9692:6:46","typeDescriptions":{}}},"id":11693,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9692:17:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"9659:50:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"9653:56:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11696,"nodeType":"ExpressionStatement","src":"9653:56:46"},{"body":{"id":11724,"nodeType":"Block","src":"9759:133:46","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11715,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11712,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11707,"name":"top","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11673,"src":"9788:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":11708,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11698,"src":"9795:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"9788:8:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":11710,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9787:10:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"31","id":11711,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9800:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9787:14:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":11713,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9786:16:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":11714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9806:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"9786:21:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11723,"nodeType":"IfStatement","src":"9782:91:46","trueBody":{"id":11722,"nodeType":"Block","src":"9809:64:46","statements":[{"expression":{"id":11720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11716,"name":"chk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11645,"src":"9836:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"^=","rightHandSide":{"baseExpression":{"id":11717,"name":"GEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11653,"src":"9843:3:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$5_memory_ptr","typeString":"uint32[5] memory"}},"id":11719,"indexExpression":{"id":11718,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11698,"src":"9847:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9843:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"9836:13:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11721,"nodeType":"ExpressionStatement","src":"9836:13:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11701,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11698,"src":"9747:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"35","id":11702,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9751:1:46","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"9747:5:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11725,"initializationExpression":{"assignments":[11698],"declarations":[{"constant":false,"id":11698,"mutability":"mutable","name":"j","nameLocation":"9740:1:46","nodeType":"VariableDeclaration","scope":11725,"src":"9733:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11697,"name":"uint32","nodeType":"ElementaryTypeName","src":"9733:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11700,"initialValue":{"hexValue":"30","id":11699,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9744:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"9733:12:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"9754:3:46","subExpression":{"id":11704,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11698,"src":"9756:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11706,"nodeType":"ExpressionStatement","src":"9754:3:46"},"nodeType":"ForStatement","src":"9728:164:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11668,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11665,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11662,"src":"9569:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11666,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11639,"src":"9573:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}},"id":11667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9580:6:46","memberName":"length","nodeType":"MemberAccess","src":"9573:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9569:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11727,"initializationExpression":{"assignments":[11662],"declarations":[{"constant":false,"id":11662,"mutability":"mutable","name":"i","nameLocation":"9562:1:46","nodeType":"VariableDeclaration","scope":11727,"src":"9555:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11661,"name":"uint32","nodeType":"ElementaryTypeName","src":"9555:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11664,"initialValue":{"hexValue":"30","id":11663,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9566:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"9555:12:46"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":11670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"9588:3:46","subExpression":{"id":11669,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11662,"src":"9590:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11671,"nodeType":"ExpressionStatement","src":"9588:3:46"},"nodeType":"ForStatement","src":"9550:357:46"}]},{"expression":{"id":11729,"name":"chk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11645,"src":"9937:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":11643,"id":11730,"nodeType":"Return","src":"9930:10:46"}]},"id":11732,"implemented":true,"kind":"function","modifiers":[],"name":"polymod","nameLocation":"9254:7:46","nodeType":"FunctionDefinition","parameters":{"id":11640,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11639,"mutability":"mutable","name":"values","nameLocation":"9278:6:46","nodeType":"VariableDeclaration","scope":11732,"src":"9262:22:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[]"},"typeName":{"baseType":{"id":11637,"name":"uint32","nodeType":"ElementaryTypeName","src":"9262:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11638,"nodeType":"ArrayTypeName","src":"9262:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_storage_ptr","typeString":"uint32[]"}},"visibility":"internal"}],"src":"9261:24:46"},"returnParameters":{"id":11643,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11642,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11732,"src":"9309:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11641,"name":"uint32","nodeType":"ElementaryTypeName","src":"9309:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"9308:8:46"},"scope":12200,"src":"9245:703:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11869,"nodeType":"Block","src":"10106:686:46","statements":[{"id":11868,"nodeType":"UncheckedBlock","src":"10117:668:46","statements":[{"assignments":[11748],"declarations":[{"constant":false,"id":11748,"mutability":"mutable","name":"values","nameLocation":"10157:6:46","nodeType":"VariableDeclaration","scope":11868,"src":"10142:21:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11746,"name":"uint8","nodeType":"ElementaryTypeName","src":"10142:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11747,"nodeType":"ArrayTypeName","src":"10142:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":11752,"initialValue":{"arguments":[{"id":11750,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11734,"src":"10176:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11749,"name":"hrpExpand","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11636,"src":"10166:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_array$_t_uint8_$dyn_memory_ptr_$","typeString":"function (bytes memory) pure returns (uint8[] memory)"}},"id":11751,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10166:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"nodeType":"VariableDeclarationStatement","src":"10142:38:46"},{"assignments":[11757],"declarations":[{"constant":false,"id":11757,"mutability":"mutable","name":"comb","nameLocation":"10211:4:46","nodeType":"VariableDeclaration","scope":11868,"src":"10195:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[]"},"typeName":{"baseType":{"id":11755,"name":"uint32","nodeType":"ElementaryTypeName","src":"10195:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11756,"nodeType":"ArrayTypeName","src":"10195:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_storage_ptr","typeString":"uint32[]"}},"visibility":"internal"}],"id":11769,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11765,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11761,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11748,"src":"10231:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11762,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10238:6:46","memberName":"length","nodeType":"MemberAccess","src":"10231:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":11763,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11736,"src":"10247:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11764,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10252:6:46","memberName":"length","nodeType":"MemberAccess","src":"10247:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10231:27:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"36","id":11766,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10261:1:46","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"10231:31:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11760,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"10218:12:46","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint32_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint32[] memory)"},"typeName":{"baseType":{"id":11758,"name":"uint32","nodeType":"ElementaryTypeName","src":"10222:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11759,"nodeType":"ArrayTypeName","src":"10222:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_storage_ptr","typeString":"uint32[]"}}},"id":11768,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10218:45:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}},"nodeType":"VariableDeclarationStatement","src":"10195:68:46"},{"body":{"id":11818,"nodeType":"Block","src":"10332:224:46","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11783,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11771,"src":"10355:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11784,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11748,"src":"10359:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11785,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10366:6:46","memberName":"length","nodeType":"MemberAccess","src":"10359:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10355:17:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":11816,"nodeType":"Block","src":"10450:91:46","statements":[{"expression":{"id":11814,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11799,"name":"comb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11757,"src":"10473:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}},"id":11801,"indexExpression":{"id":11800,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11771,"src":"10478:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10473:7:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"baseExpression":{"id":11806,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11736,"src":"10496:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11811,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11807,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11771,"src":"10501:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":11808,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11748,"src":"10505:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10512:6:46","memberName":"length","nodeType":"MemberAccess","src":"10505:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10501:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10496:23:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":11805,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10490:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11804,"name":"uint8","nodeType":"ElementaryTypeName","src":"10490:5:46","typeDescriptions":{}}},"id":11812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10490:30:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":11803,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10483:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":11802,"name":"uint32","nodeType":"ElementaryTypeName","src":"10483:6:46","typeDescriptions":{}}},"id":11813,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10483:38:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"10473:48:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11815,"nodeType":"ExpressionStatement","src":"10473:48:46"}]},"id":11817,"nodeType":"IfStatement","src":"10351:190:46","trueBody":{"id":11798,"nodeType":"Block","src":"10374:70:46","statements":[{"expression":{"id":11796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11787,"name":"comb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11757,"src":"10397:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}},"id":11789,"indexExpression":{"id":11788,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11771,"src":"10402:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10397:7:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":11792,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11748,"src":"10414:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11794,"indexExpression":{"id":11793,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11771,"src":"10421:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"10414:9:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":11791,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10407:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":11790,"name":"uint32","nodeType":"ElementaryTypeName","src":"10407:6:46","typeDescriptions":{}}},"id":11795,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10407:17:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"10397:27:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11797,"nodeType":"ExpressionStatement","src":"10397:27:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11779,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11773,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11771,"src":"10293:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11778,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11774,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11748,"src":"10297:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10304:6:46","memberName":"length","nodeType":"MemberAccess","src":"10297:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":11776,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11736,"src":"10313:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11777,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10318:6:46","memberName":"length","nodeType":"MemberAccess","src":"10313:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10297:27:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10293:31:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11819,"initializationExpression":{"assignments":[11771],"declarations":[{"constant":false,"id":11771,"mutability":"mutable","name":"i","nameLocation":"10290:1:46","nodeType":"VariableDeclaration","scope":11819,"src":"10285:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11770,"name":"uint","nodeType":"ElementaryTypeName","src":"10285:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11772,"nodeType":"VariableDeclarationStatement","src":"10285:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11781,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"10326:4:46","subExpression":{"id":11780,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11771,"src":"10329:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11782,"nodeType":"ExpressionStatement","src":"10326:4:46"},"nodeType":"ForStatement","src":"10280:276:46"},{"expression":{"id":11826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11820,"name":"res","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11742,"src":"10584:3:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"36","id":11824,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10602:1:46","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"}],"id":11823,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"10590:11:46","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint8_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint8[] memory)"},"typeName":{"baseType":{"id":11821,"name":"uint8","nodeType":"ElementaryTypeName","src":"10594:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11822,"nodeType":"ArrayTypeName","src":"10594:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}}},"id":11825,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10590:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"src":"10584:20:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11827,"nodeType":"ExpressionStatement","src":"10584:20:46"},{"assignments":[11829],"declarations":[{"constant":false,"id":11829,"mutability":"mutable","name":"mod","nameLocation":"10626:3:46","nodeType":"VariableDeclaration","scope":11868,"src":"10619:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11828,"name":"uint32","nodeType":"ElementaryTypeName","src":"10619:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11835,"initialValue":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11834,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11831,"name":"comb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11757,"src":"10640:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}],"id":11830,"name":"polymod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11732,"src":"10632:7:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_uint32_$","typeString":"function (uint32[] memory) pure returns (uint32)"}},"id":11832,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10632:13:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"^","rightExpression":{"id":11833,"name":"enc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11738,"src":"10648:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"10632:19:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"10619:32:46"},{"body":{"id":11866,"nodeType":"Block","src":"10696:78:46","statements":[{"expression":{"id":11864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11846,"name":"res","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11742,"src":"10715:3:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11848,"indexExpression":{"id":11847,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11837,"src":"10719:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"10715:6:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11851,"name":"mod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11829,"src":"10731:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11857,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"35","id":11852,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10739:1:46","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"35","id":11853,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10744:1:46","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":11854,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11837,"src":"10748:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10744:5:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11856,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10743:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10739:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11858,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10738:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10731:20:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":11860,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10730:22:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"3331","id":11861,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10755:2:46","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"10730:27:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":11850,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10724:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":11849,"name":"uint8","nodeType":"ElementaryTypeName","src":"10724:5:46","typeDescriptions":{}}},"id":11863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10724:34:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"10715:43:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11865,"nodeType":"ExpressionStatement","src":"10715:43:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11840,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11837,"src":"10683:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"36","id":11841,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10687:1:46","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"10683:5:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11867,"initializationExpression":{"assignments":[11837],"declarations":[{"constant":false,"id":11837,"mutability":"mutable","name":"p","nameLocation":"10676:1:46","nodeType":"VariableDeclaration","scope":11867,"src":"10671:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11836,"name":"uint","nodeType":"ElementaryTypeName","src":"10671:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11839,"initialValue":{"hexValue":"30","id":11838,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10680:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10671:10:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"10690:4:46","subExpression":{"id":11843,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11837,"src":"10693:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11845,"nodeType":"ExpressionStatement","src":"10690:4:46"},"nodeType":"ForStatement","src":"10666:108:46"}]}]},"id":11870,"implemented":true,"kind":"function","modifiers":[],"name":"createChecksum","nameLocation":"9965:14:46","nodeType":"FunctionDefinition","parameters":{"id":11739,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11734,"mutability":"mutable","name":"hrp","nameLocation":"10003:3:46","nodeType":"VariableDeclaration","scope":11870,"src":"9990:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11733,"name":"bytes","nodeType":"ElementaryTypeName","src":"9990:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11736,"mutability":"mutable","name":"data","nameLocation":"10030:4:46","nodeType":"VariableDeclaration","scope":11870,"src":"10017:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11735,"name":"bytes","nodeType":"ElementaryTypeName","src":"10017:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11738,"mutability":"mutable","name":"enc","nameLocation":"10052:3:46","nodeType":"VariableDeclaration","scope":11870,"src":"10045:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11737,"name":"uint32","nodeType":"ElementaryTypeName","src":"10045:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"9979:83:46"},"returnParameters":{"id":11743,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11742,"mutability":"mutable","name":"res","nameLocation":"10101:3:46","nodeType":"VariableDeclaration","scope":11870,"src":"10086:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11740,"name":"uint8","nodeType":"ElementaryTypeName","src":"10086:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11741,"nodeType":"ArrayTypeName","src":"10086:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"src":"10085:20:46"},"scope":12200,"src":"9956:836:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11962,"nodeType":"Block","src":"10938:448:46","statements":[{"id":11961,"nodeType":"UncheckedBlock","src":"10949:430:46","statements":[{"assignments":[11886],"declarations":[{"constant":false,"id":11886,"mutability":"mutable","name":"ehrp","nameLocation":"10989:4:46","nodeType":"VariableDeclaration","scope":11961,"src":"10974:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11884,"name":"uint8","nodeType":"ElementaryTypeName","src":"10974:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11885,"nodeType":"ArrayTypeName","src":"10974:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":11890,"initialValue":{"arguments":[{"id":11888,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11872,"src":"11006:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11887,"name":"hrpExpand","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11636,"src":"10996:9:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_array$_t_uint8_$dyn_memory_ptr_$","typeString":"function (bytes memory) pure returns (uint8[] memory)"}},"id":11889,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10996:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"nodeType":"VariableDeclarationStatement","src":"10974:36:46"},{"assignments":[11895],"declarations":[{"constant":false,"id":11895,"mutability":"mutable","name":"cData","nameLocation":"11041:5:46","nodeType":"VariableDeclaration","scope":11961,"src":"11025:21:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[]"},"typeName":{"baseType":{"id":11893,"name":"uint32","nodeType":"ElementaryTypeName","src":"11025:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11894,"nodeType":"ArrayTypeName","src":"11025:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_storage_ptr","typeString":"uint32[]"}},"visibility":"internal"}],"id":11905,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11899,"name":"ehrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11886,"src":"11062:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11067:6:46","memberName":"length","nodeType":"MemberAccess","src":"11062:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":11901,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11875,"src":"11076:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11081:6:46","memberName":"length","nodeType":"MemberAccess","src":"11076:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11062:25:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11898,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"11049:12:46","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint32_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint32[] memory)"},"typeName":{"baseType":{"id":11896,"name":"uint32","nodeType":"ElementaryTypeName","src":"11053:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11897,"nodeType":"ArrayTypeName","src":"11053:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_storage_ptr","typeString":"uint32[]"}}},"id":11904,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11049:39:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}},"nodeType":"VariableDeclarationStatement","src":"11025:63:46"},{"body":{"id":11927,"nodeType":"Block","src":"11139:61:46","statements":[{"expression":{"id":11925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11916,"name":"cData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11895,"src":"11158:5:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}},"id":11918,"indexExpression":{"id":11917,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11907,"src":"11164:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11158:8:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":11921,"name":"ehrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11886,"src":"11176:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11923,"indexExpression":{"id":11922,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11907,"src":"11181:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11176:7:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":11920,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11169:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":11919,"name":"uint32","nodeType":"ElementaryTypeName","src":"11169:6:46","typeDescriptions":{}}},"id":11924,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11169:15:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"11158:26:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11926,"nodeType":"ExpressionStatement","src":"11158:26:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11909,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11907,"src":"11116:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11910,"name":"ehrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11886,"src":"11120:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11125:6:46","memberName":"length","nodeType":"MemberAccess","src":"11120:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11116:15:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11928,"initializationExpression":{"assignments":[11907],"declarations":[{"constant":false,"id":11907,"mutability":"mutable","name":"i","nameLocation":"11113:1:46","nodeType":"VariableDeclaration","scope":11928,"src":"11108:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11906,"name":"uint","nodeType":"ElementaryTypeName","src":"11108:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11908,"nodeType":"VariableDeclarationStatement","src":"11108:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"11133:4:46","subExpression":{"id":11913,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11907,"src":"11136:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11915,"nodeType":"ExpressionStatement","src":"11133:4:46"},"nodeType":"ForStatement","src":"11103:97:46"},{"body":{"id":11953,"nodeType":"Block","src":"11250:75:46","statements":[{"expression":{"id":11951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11939,"name":"cData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11895,"src":"11269:5:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}},"id":11944,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11943,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11940,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11930,"src":"11275:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":11941,"name":"ehrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11886,"src":"11279:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11284:6:46","memberName":"length","nodeType":"MemberAccess","src":"11279:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11275:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11269:22:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":11947,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11875,"src":"11301:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11949,"indexExpression":{"id":11948,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11930,"src":"11306:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11301:7:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":11946,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11294:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":11945,"name":"uint32","nodeType":"ElementaryTypeName","src":"11294:6:46","typeDescriptions":{}}},"id":11950,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11294:15:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"11269:40:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11952,"nodeType":"ExpressionStatement","src":"11269:40:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11932,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11930,"src":"11227:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11933,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11875,"src":"11231:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11236:6:46","memberName":"length","nodeType":"MemberAccess","src":"11231:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11227:15:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11954,"initializationExpression":{"assignments":[11930],"declarations":[{"constant":false,"id":11930,"mutability":"mutable","name":"i","nameLocation":"11224:1:46","nodeType":"VariableDeclaration","scope":11954,"src":"11219:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11929,"name":"uint","nodeType":"ElementaryTypeName","src":"11219:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11931,"nodeType":"VariableDeclarationStatement","src":"11219:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"11244:4:46","subExpression":{"id":11936,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11930,"src":"11247:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11938,"nodeType":"ExpressionStatement","src":"11244:4:46"},"nodeType":"ForStatement","src":"11214:111:46"},{"expression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11956,"name":"cData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11895,"src":"11354:5:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}],"id":11955,"name":"polymod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11732,"src":"11346:7:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_uint32_$dyn_memory_ptr_$returns$_t_uint32_$","typeString":"function (uint32[] memory) pure returns (uint32)"}},"id":11957,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11346:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":11958,"name":"enc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11877,"src":"11364:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"11346:21:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":11881,"id":11960,"nodeType":"Return","src":"11339:28:46"}]}]},"id":11963,"implemented":true,"kind":"function","modifiers":[],"name":"verifyChecksum","nameLocation":"10809:14:46","nodeType":"FunctionDefinition","parameters":{"id":11878,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11872,"mutability":"mutable","name":"hrp","nameLocation":"10847:3:46","nodeType":"VariableDeclaration","scope":11963,"src":"10834:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11871,"name":"bytes","nodeType":"ElementaryTypeName","src":"10834:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11875,"mutability":"mutable","name":"data","nameLocation":"10876:4:46","nodeType":"VariableDeclaration","scope":11963,"src":"10861:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11873,"name":"uint8","nodeType":"ElementaryTypeName","src":"10861:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11874,"nodeType":"ArrayTypeName","src":"10861:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"},{"constant":false,"id":11877,"mutability":"mutable","name":"enc","nameLocation":"10898:3:46","nodeType":"VariableDeclaration","scope":11963,"src":"10891:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11876,"name":"uint32","nodeType":"ElementaryTypeName","src":"10891:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"10823:85:46"},"returnParameters":{"id":11881,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11880,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11963,"src":"10932:4:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11879,"name":"bool","nodeType":"ElementaryTypeName","src":"10932:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10931:6:46"},"scope":12200,"src":"10800:586:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12019,"nodeType":"Block","src":"11552:246:46","statements":[{"assignments":[11980],"declarations":[{"constant":false,"id":11980,"mutability":"mutable","name":"dataBits","nameLocation":"11578:8:46","nodeType":"VariableDeclaration","scope":12019,"src":"11563:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11978,"name":"uint8","nodeType":"ElementaryTypeName","src":"11563:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11979,"nodeType":"ArrayTypeName","src":"11563:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":11987,"initialValue":{"arguments":[{"expression":{"id":11984,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11965,"src":"11601:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11985,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11606:6:46","memberName":"length","nodeType":"MemberAccess","src":"11601:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11983,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"11589:11:46","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_uint8_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (uint8[] memory)"},"typeName":{"baseType":{"id":11981,"name":"uint8","nodeType":"ElementaryTypeName","src":"11593:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11982,"nodeType":"ArrayTypeName","src":"11593:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}}},"id":11986,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11589:24:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"nodeType":"VariableDeclarationStatement","src":"11563:50:46"},{"body":{"id":12010,"nodeType":"Block","src":"11671:55:46","statements":[{"expression":{"id":12008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11999,"name":"dataBits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11980,"src":"11686:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":12001,"indexExpression":{"id":12000,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11989,"src":"11695:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"11686:11:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":12004,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11965,"src":"11706:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12006,"indexExpression":{"id":12005,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11989,"src":"11711:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"11706:7:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":12003,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11700:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":12002,"name":"uint8","nodeType":"ElementaryTypeName","src":"11700:5:46","typeDescriptions":{}}},"id":12007,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11700:14:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"11686:28:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":12009,"nodeType":"ExpressionStatement","src":"11686:28:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11992,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11989,"src":"11645:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11993,"name":"dataBits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11980,"src":"11649:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11994,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11658:6:46","memberName":"length","nodeType":"MemberAccess","src":"11649:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11645:19:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12011,"initializationExpression":{"assignments":[11989],"declarations":[{"constant":false,"id":11989,"mutability":"mutable","name":"p","nameLocation":"11638:1:46","nodeType":"VariableDeclaration","scope":12011,"src":"11631:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11988,"name":"uint32","nodeType":"ElementaryTypeName","src":"11631:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11991,"initialValue":{"hexValue":"30","id":11990,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11642:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"11631:12:46"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":11997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"11666:3:46","subExpression":{"id":11996,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11989,"src":"11668:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11998,"nodeType":"ExpressionStatement","src":"11666:3:46"},"nodeType":"ForStatement","src":"11626:100:46"},{"expression":{"arguments":[{"id":12013,"name":"dataBits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11980,"src":"11758:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},{"id":12014,"name":"frombits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11967,"src":"11768:8:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12015,"name":"tobits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11969,"src":"11778:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12016,"name":"pad","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11971,"src":"11786:3:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":12012,"name":"_convertBits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12199,"src":"11745:12:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_uint8_$dyn_memory_ptr_$_t_uint256_$_t_uint256_$_t_bool_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint8[] memory,uint256,uint256,bool) pure returns (bytes memory)"}},"id":12017,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11745:45:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":11975,"id":12018,"nodeType":"Return","src":"11738:52:46"}]},"id":12020,"implemented":true,"kind":"function","modifiers":[],"name":"convertBits","nameLocation":"11403:11:46","nodeType":"FunctionDefinition","parameters":{"id":11972,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11965,"mutability":"mutable","name":"data","nameLocation":"11438:4:46","nodeType":"VariableDeclaration","scope":12020,"src":"11425:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11964,"name":"bytes","nodeType":"ElementaryTypeName","src":"11425:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11967,"mutability":"mutable","name":"frombits","nameLocation":"11458:8:46","nodeType":"VariableDeclaration","scope":12020,"src":"11453:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11966,"name":"uint","nodeType":"ElementaryTypeName","src":"11453:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11969,"mutability":"mutable","name":"tobits","nameLocation":"11482:6:46","nodeType":"VariableDeclaration","scope":12020,"src":"11477:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11968,"name":"uint","nodeType":"ElementaryTypeName","src":"11477:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11971,"mutability":"mutable","name":"pad","nameLocation":"11504:3:46","nodeType":"VariableDeclaration","scope":12020,"src":"11499:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11970,"name":"bool","nodeType":"ElementaryTypeName","src":"11499:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"11414:100:46"},"returnParameters":{"id":11975,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11974,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12020,"src":"11538:12:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11973,"name":"bytes","nodeType":"ElementaryTypeName","src":"11538:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"11537:14:46"},"scope":12200,"src":"11394:404:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12041,"nodeType":"Block","src":"11966:67:46","statements":[{"expression":{"arguments":[{"id":12035,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12023,"src":"11997:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},{"id":12036,"name":"frombits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12025,"src":"12003:8:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12037,"name":"tobits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12027,"src":"12013:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12038,"name":"pad","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12029,"src":"12021:3:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":12034,"name":"_convertBits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12199,"src":"11984:12:46","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_uint8_$dyn_memory_ptr_$_t_uint256_$_t_uint256_$_t_bool_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint8[] memory,uint256,uint256,bool) pure returns (bytes memory)"}},"id":12039,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11984:41:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":12033,"id":12040,"nodeType":"Return","src":"11977:48:46"}]},"id":12042,"implemented":true,"kind":"function","modifiers":[],"name":"convertBits","nameLocation":"11815:11:46","nodeType":"FunctionDefinition","parameters":{"id":12030,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12023,"mutability":"mutable","name":"data","nameLocation":"11852:4:46","nodeType":"VariableDeclaration","scope":12042,"src":"11837:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":12021,"name":"uint8","nodeType":"ElementaryTypeName","src":"11837:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":12022,"nodeType":"ArrayTypeName","src":"11837:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"},{"constant":false,"id":12025,"mutability":"mutable","name":"frombits","nameLocation":"11872:8:46","nodeType":"VariableDeclaration","scope":12042,"src":"11867:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12024,"name":"uint","nodeType":"ElementaryTypeName","src":"11867:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12027,"mutability":"mutable","name":"tobits","nameLocation":"11896:6:46","nodeType":"VariableDeclaration","scope":12042,"src":"11891:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12026,"name":"uint","nodeType":"ElementaryTypeName","src":"11891:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12029,"mutability":"mutable","name":"pad","nameLocation":"11918:3:46","nodeType":"VariableDeclaration","scope":12042,"src":"11913:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12028,"name":"bool","nodeType":"ElementaryTypeName","src":"11913:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"11826:102:46"},"returnParameters":{"id":12033,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12032,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12042,"src":"11952:12:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12031,"name":"bytes","nodeType":"ElementaryTypeName","src":"11952:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"11951:14:46"},"scope":12200,"src":"11806:227:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12198,"nodeType":"Block","src":"12210:1197:46","statements":[{"assignments":[12057],"declarations":[{"constant":false,"id":12057,"mutability":"mutable","name":"acc","nameLocation":"12226:3:46","nodeType":"VariableDeclaration","scope":12198,"src":"12221:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12056,"name":"uint","nodeType":"ElementaryTypeName","src":"12221:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12059,"initialValue":{"hexValue":"30","id":12058,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12232:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"12221:12:46"},{"assignments":[12061],"declarations":[{"constant":false,"id":12061,"mutability":"mutable","name":"bits","nameLocation":"12249:4:46","nodeType":"VariableDeclaration","scope":12198,"src":"12244:9:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12060,"name":"uint","nodeType":"ElementaryTypeName","src":"12244:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12063,"initialValue":{"hexValue":"30","id":12062,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12256:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"12244:13:46"},{"assignments":[12065],"declarations":[{"constant":false,"id":12065,"mutability":"mutable","name":"maxv","nameLocation":"12275:4:46","nodeType":"VariableDeclaration","scope":12198,"src":"12270:9:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12064,"name":"uint","nodeType":"ElementaryTypeName","src":"12270:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12072,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":12066,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12283:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":12067,"name":"tobits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12049,"src":"12288:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12283:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12069,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12282:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":12070,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12298:1:46","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12282:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"12270:29:46"},{"id":12146,"nodeType":"UncheckedBlock","src":"12312:667:46","statements":[{"body":{"id":12144,"nodeType":"Block","src":"12376:592:46","statements":[{"assignments":[12084],"declarations":[{"constant":false,"id":12084,"mutability":"mutable","name":"value","nameLocation":"12401:5:46","nodeType":"VariableDeclaration","scope":12144,"src":"12395:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":12083,"name":"uint8","nodeType":"ElementaryTypeName","src":"12395:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":12088,"initialValue":{"baseExpression":{"id":12085,"name":"dataBits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12045,"src":"12409:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":12087,"indexExpression":{"id":12086,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12074,"src":"12418:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"12409:11:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"12395:25:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":12092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12090,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12084,"src":"12469:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":12091,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12478:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12469:10:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":12098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":12095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12093,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12084,"src":"12484:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":12094,"name":"frombits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12047,"src":"12493:8:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12484:17:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":12096,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12483:19:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12097,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12506:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12483:24:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12469:38:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4265636833323a2076616c7565206d757374206265206e6f6e2d6e6567617469766520616e642066697420696e2066726f6d62697473","id":12100,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12530:56:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_c3d844aee3a847f0e164a11470dfaf03e0661e60bf8b0718b82a475dc4773582","typeString":"literal_string \"Bech32: value must be non-negative and fit in frombits\""},"value":"Bech32: value must be non-negative and fit in frombits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c3d844aee3a847f0e164a11470dfaf03e0661e60bf8b0718b82a475dc4773582","typeString":"literal_string \"Bech32: value must be non-negative and fit in frombits\""}],"id":12089,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"12439:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":12101,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12439:166:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12102,"nodeType":"ExpressionStatement","src":"12439:166:46"},{"expression":{"id":12110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12103,"name":"acc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12057,"src":"12626:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12106,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12104,"name":"acc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12057,"src":"12633:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":12105,"name":"frombits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12047,"src":"12640:8:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12633:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12107,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12632:17:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"id":12108,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12084,"src":"12652:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"12632:25:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12626:31:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12111,"nodeType":"ExpressionStatement","src":"12626:31:46"},{"expression":{"id":12114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12112,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12061,"src":"12676:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":12113,"name":"frombits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12047,"src":"12684:8:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12676:16:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12115,"nodeType":"ExpressionStatement","src":"12676:16:46"},{"body":{"id":12142,"nodeType":"Block","src":"12736:217:46","statements":[{"expression":{"id":12121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12119,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12061,"src":"12759:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":12120,"name":"tobits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12049,"src":"12767:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12759:14:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12122,"nodeType":"ExpressionStatement","src":"12759:14:46"},{"expression":{"id":12140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12123,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12054,"src":"12796:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12126,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12054,"src":"12845:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12136,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12133,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12131,"name":"acc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12057,"src":"12889:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":12132,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12061,"src":"12896:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12889:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12134,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12888:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":12135,"name":"maxv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12065,"src":"12904:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12888:20:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12130,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12882:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":12129,"name":"uint8","nodeType":"ElementaryTypeName","src":"12882:5:46","typeDescriptions":{}}},"id":12137,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12882:27:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":12128,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12875:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":12127,"name":"bytes1","nodeType":"ElementaryTypeName","src":"12875:6:46","typeDescriptions":{}}},"id":12138,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12875:35:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"expression":{"id":12124,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"12802:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":12125,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12806:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"12802:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":12139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12802:131:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"12796:137:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12141,"nodeType":"ExpressionStatement","src":"12796:137:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12118,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12116,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12061,"src":"12720:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":12117,"name":"tobits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12049,"src":"12728:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12720:14:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12143,"nodeType":"WhileStatement","src":"12713:240:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12079,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12076,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12074,"src":"12350:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":12077,"name":"dataBits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12045,"src":"12354:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":12078,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12363:6:46","memberName":"length","nodeType":"MemberAccess","src":"12354:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12350:19:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12145,"initializationExpression":{"assignments":[12074],"declarations":[{"constant":false,"id":12074,"mutability":"mutable","name":"p","nameLocation":"12347:1:46","nodeType":"VariableDeclaration","scope":12145,"src":"12342:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12073,"name":"uint","nodeType":"ElementaryTypeName","src":"12342:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12075,"nodeType":"VariableDeclarationStatement","src":"12342:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":12081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"12371:3:46","subExpression":{"id":12080,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12074,"src":"12373:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12082,"nodeType":"ExpressionStatement","src":"12371:3:46"},"nodeType":"ForStatement","src":"12337:631:46"}]},{"condition":{"id":12147,"name":"pad","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12051,"src":"12995:3:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":12196,"nodeType":"Block","src":"13217:183:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12192,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12177,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12061,"src":"13258:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":12178,"name":"frombits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12047,"src":"13265:8:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13258:15:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12180,"name":"acc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12057,"src":"13279:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12181,"name":"tobits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12049,"src":"13287:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12182,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12061,"src":"13296:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13287:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12184,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13286:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13279:22:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12186,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13278:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":12187,"name":"maxv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12065,"src":"13305:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13278:31:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12189,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13277:33:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12190,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13314:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13277:38:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"13258:57:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4265636833323a20696e76616c69642070616464696e67206f722076616c75652073697a65","id":12193,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"13334:39:46","typeDescriptions":{"typeIdentifier":"t_stringliteral_e94f6be74a97f1cb3bd761cbce886a47861edc099a5ca2546d140eebfb9c3780","typeString":"literal_string \"Bech32: invalid padding or value size\""},"value":"Bech32: invalid padding or value size"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e94f6be74a97f1cb3bd761cbce886a47861edc099a5ca2546d140eebfb9c3780","typeString":"literal_string \"Bech32: invalid padding or value size\""}],"id":12176,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"13232:7:46","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":12194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13232:156:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12195,"nodeType":"ExpressionStatement","src":"13232:156:46"}]},"id":12197,"nodeType":"IfStatement","src":"12991:409:46","trueBody":{"id":12175,"nodeType":"Block","src":"13000:211:46","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12148,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12061,"src":"13019:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":12149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13026:1:46","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"13019:8:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12174,"nodeType":"IfStatement","src":"13015:185:46","trueBody":{"id":12173,"nodeType":"Block","src":"13029:171:46","statements":[{"expression":{"id":12171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12151,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12054,"src":"13048:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12154,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12054,"src":"13093:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12159,"name":"acc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12057,"src":"13133:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12160,"name":"tobits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12049,"src":"13141:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12161,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12061,"src":"13150:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13141:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12163,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13140:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13133:22:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12165,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13132:24:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"id":12166,"name":"maxv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12065,"src":"13159:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13132:31:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12158,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13126:5:46","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":12157,"name":"uint8","nodeType":"ElementaryTypeName","src":"13126:5:46","typeDescriptions":{}}},"id":12168,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13126:38:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":12156,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13119:6:46","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":12155,"name":"bytes1","nodeType":"ElementaryTypeName","src":"13119:6:46","typeDescriptions":{}}},"id":12169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13119:46:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"expression":{"id":12152,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"13054:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":12153,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"13058:12:46","memberName":"encodePacked","nodeType":"MemberAccess","src":"13054:16:46","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":12170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13054:130:46","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"13048:136:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":12172,"nodeType":"ExpressionStatement","src":"13048:136:46"}]}}]}}]},"id":12199,"implemented":true,"kind":"function","modifiers":[],"name":"_convertBits","nameLocation":"12050:12:46","nodeType":"FunctionDefinition","parameters":{"id":12052,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12045,"mutability":"mutable","name":"dataBits","nameLocation":"12088:8:46","nodeType":"VariableDeclaration","scope":12199,"src":"12073:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":12043,"name":"uint8","nodeType":"ElementaryTypeName","src":"12073:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":12044,"nodeType":"ArrayTypeName","src":"12073:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"},{"constant":false,"id":12047,"mutability":"mutable","name":"frombits","nameLocation":"12112:8:46","nodeType":"VariableDeclaration","scope":12199,"src":"12107:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12046,"name":"uint","nodeType":"ElementaryTypeName","src":"12107:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12049,"mutability":"mutable","name":"tobits","nameLocation":"12136:6:46","nodeType":"VariableDeclaration","scope":12199,"src":"12131:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12048,"name":"uint","nodeType":"ElementaryTypeName","src":"12131:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12051,"mutability":"mutable","name":"pad","nameLocation":"12158:3:46","nodeType":"VariableDeclaration","scope":12199,"src":"12153:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":12050,"name":"bool","nodeType":"ElementaryTypeName","src":"12153:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12062:106:46"},"returnParameters":{"id":12055,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12054,"mutability":"mutable","name":"ret","nameLocation":"12205:3:46","nodeType":"VariableDeclaration","scope":12199,"src":"12192:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":12053,"name":"bytes","nodeType":"ElementaryTypeName","src":"12192:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"12191:18:46"},"scope":12200,"src":"12041:1366:46","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":12201,"src":"211:13199:46","usedErrors":[],"usedEvents":[]}],"src":"100:13310:46"},"id":46},"witnet-solidity-bridge/contracts/libs/Secp256k1.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/libs/Secp256k1.sol","exportedSymbols":{"Secp256k1":[13216]},"id":13217,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":12202,"literals":["solidity",">=","0.8",".17"],"nodeType":"PragmaDirective","src":"35:26:47"},{"abstract":false,"baseContracts":[],"canonicalName":"Secp256k1","contractDependencies":[],"contractKind":"library","documentation":{"id":12203,"nodeType":"StructuredDocumentation","src":"65:232:47","text":" @title Secp256k1 public key recovery Library\n @dev Library providing arithmetic operations over signed `secpk256k1` signed message due to recover the signer public key EC point in `Solidity`.\n @author cyphered.eth"},"fullyImplemented":true,"id":13216,"linearizedBaseContracts":[13216],"name":"Secp256k1","nameLocation":"307:9:47","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":12206,"mutability":"constant","name":"U255_MAX_PLUS_1","nameLocation":"382:15:47","nodeType":"VariableDeclaration","scope":13216,"src":"357:129:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12204,"name":"uint256","nodeType":"ElementaryTypeName","src":"357:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3537383936303434363138363538303937373131373835343932353034333433393533393236363334393932333332383230323832303139373238373932303033393536353634383139393638","id":12205,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"409:77:47","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926634992332820282019728792003956564819968_by_1","typeString":"int_const 5789...(69 digits omitted)...9968"},"value":"57896044618658097711785492504343953926634992332820282019728792003956564819968"},"visibility":"private"},{"constant":true,"id":12209,"mutability":"constant","name":"A","nameLocation":"544:1:47","nodeType":"VariableDeclaration","scope":13216,"src":"519:30:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12207,"name":"uint256","nodeType":"ElementaryTypeName","src":"519:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":12208,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"548:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"private"},{"constant":true,"id":12212,"mutability":"constant","name":"B","nameLocation":"581:1:47","nodeType":"VariableDeclaration","scope":13216,"src":"556:30:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12210,"name":"uint256","nodeType":"ElementaryTypeName","src":"556:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"37","id":12211,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"585:1:47","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"visibility":"private"},{"constant":true,"id":12215,"mutability":"constant","name":"GX","nameLocation":"618:2:47","nodeType":"VariableDeclaration","scope":13216,"src":"593:96:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12213,"name":"uint256","nodeType":"ElementaryTypeName","src":"593:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"307837394245363637454639444342424143353541303632393543453837304230373032394246434442324443453238443935394632383135423136463831373938","id":12214,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"623:66:47","typeDescriptions":{"typeIdentifier":"t_rational_55066263022277343669578718895168534326250603453777594175500187360389116729240_by_1","typeString":"int_const 5506...(69 digits omitted)...9240"},"value":"0x79BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B16F81798"},"visibility":"private"},{"constant":true,"id":12218,"mutability":"constant","name":"GY","nameLocation":"721:2:47","nodeType":"VariableDeclaration","scope":13216,"src":"696:96:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12216,"name":"uint256","nodeType":"ElementaryTypeName","src":"696:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"307834383341444137373236413343343635354441344642464330453131303841384644313742343438413638353534313939433437443038464642313044344238","id":12217,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"726:66:47","typeDescriptions":{"typeIdentifier":"t_rational_32670510020758816978083085130507043184471273380659243275938904335757337482424_by_1","typeString":"int_const 3267...(69 digits omitted)...2424"},"value":"0x483ADA7726A3C4655DA4FBFC0E1108A8FD17B448A68554199C47D08FFB10D4B8"},"visibility":"private"},{"constant":true,"id":12221,"mutability":"constant","name":"P","nameLocation":"824:1:47","nodeType":"VariableDeclaration","scope":13216,"src":"799:95:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12219,"name":"uint256","nodeType":"ElementaryTypeName","src":"799:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"307846464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646454646464646433246","id":12220,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"828:66:47","typeDescriptions":{"typeIdentifier":"t_rational_115792089237316195423570985008687907853269984665640564039457584007908834671663_by_1","typeString":"int_const 1157...(70 digits omitted)...1663"},"value":"0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F"},"visibility":"private"},{"constant":true,"id":12224,"mutability":"constant","name":"N","nameLocation":"926:1:47","nodeType":"VariableDeclaration","scope":13216,"src":"901:95:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12222,"name":"uint256","nodeType":"ElementaryTypeName","src":"901:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"307846464646464646464646464646464646464646464646464646464646464646454241414544434536414634384130334242464432354538434430333634313431","id":12223,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"930:66:47","typeDescriptions":{"typeIdentifier":"t_rational_115792089237316195423570985008687907852837564279074904382605163141518161494337_by_1","typeString":"int_const 1157...(70 digits omitted)...4337"},"value":"0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141"},"visibility":"private"},{"body":{"id":12397,"nodeType":"Block","src":"1396:687:47","statements":[{"assignments":[12241],"declarations":[{"constant":false,"id":12241,"mutability":"mutable","name":"x","nameLocation":"1415:1:47","nodeType":"VariableDeclaration","scope":12397,"src":"1407:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12240,"name":"uint256","nodeType":"ElementaryTypeName","src":"1407:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12252,"initialValue":{"arguments":[{"id":12243,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12231,"src":"1426:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12249,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12244,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"1429:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":12247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12245,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12229,"src":"1434:1:47","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":12246,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1439:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1434:6:47","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":12248,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1433:8:47","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"1429:12:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12250,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"1443:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12242,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"1419:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12251,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1419:26:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1407:38:47"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12267,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12253,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12241,"src":"1460:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":12254,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"1464:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1460:5:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12258,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12256,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12233,"src":"1469:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":12257,"name":"N","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12224,"src":"1473:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1469:5:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1460:14:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12260,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12231,"src":"1478:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":12261,"name":"N","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12224,"src":"1482:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1478:5:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1460:23:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12264,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12233,"src":"1487:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1492:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1487:6:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1460:33:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12268,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12231,"src":"1497:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12269,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1502:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1497:6:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1460:43:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":12274,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12272,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12229,"src":"1507:1:47","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":12273,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1511:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1507:5:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"1460:52:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12281,"nodeType":"IfStatement","src":"1456:98:47","trueBody":{"id":12280,"nodeType":"Block","src":"1514:40:47","statements":[{"expression":{"components":[{"hexValue":"30","id":12276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1537:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":12277,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1540:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":12278,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1536:6:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_rational_0_by_1_$_t_rational_0_by_1_$","typeString":"tuple(int_const 0,int_const 0)"}},"functionReturnParameters":12239,"id":12279,"nodeType":"Return","src":"1529:13:47"}]}},{"assignments":[12283],"declarations":[{"constant":false,"id":12283,"mutability":"mutable","name":"rInv","nameLocation":"1572:4:47","nodeType":"VariableDeclaration","scope":12397,"src":"1564:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12282,"name":"uint256","nodeType":"ElementaryTypeName","src":"1564:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12288,"initialValue":{"arguments":[{"id":12285,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12231,"src":"1586:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12286,"name":"N","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12224,"src":"1589:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12284,"name":"invMod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13215,"src":"1579:6:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":12287,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1579:12:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1564:27:47"},{"assignments":[12290],"declarations":[{"constant":false,"id":12290,"mutability":"mutable","name":"y2","nameLocation":"1612:2:47","nodeType":"VariableDeclaration","scope":12397,"src":"1604:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12289,"name":"uint256","nodeType":"ElementaryTypeName","src":"1604:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12312,"initialValue":{"arguments":[{"arguments":[{"id":12293,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12241,"src":"1631:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":12295,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12241,"src":"1641:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12296,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12241,"src":"1644:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12297,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"1647:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12294,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"1634:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12298,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1634:15:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12299,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"1651:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12292,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"1624:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12300,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1624:29:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[{"id":12303,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12241,"src":"1669:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12304,"name":"A","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12209,"src":"1672:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12305,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"1675:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12302,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"1662:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12306,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1662:15:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12307,"name":"B","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12212,"src":"1679:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12308,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"1682:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12301,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"1655:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12309,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1655:29:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12310,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"1686:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12291,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"1617:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1617:71:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1604:84:47"},{"expression":{"id":12323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12313,"name":"y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12290,"src":"1699:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12315,"name":"y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12290,"src":"1711:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12321,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12318,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"id":12316,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"1716:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":12317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1720:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1716:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12319,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"1715:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"34","id":12320,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1725:1:47","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"1715:11:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12314,"name":"expMod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12432,"src":"1704:6:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":12322,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1704:23:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1699:28:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12324,"nodeType":"ExpressionStatement","src":"1699:28:47"},{"assignments":[12326],"declarations":[{"constant":false,"id":12326,"mutability":"mutable","name":"y","nameLocation":"1746:1:47","nodeType":"VariableDeclaration","scope":12397,"src":"1738:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12325,"name":"uint256","nodeType":"ElementaryTypeName","src":"1738:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12343,"initialValue":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12327,"name":"y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12290,"src":"1752:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":12328,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12229,"src":"1757:1:47","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"1752:6:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":12330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1761:1:47","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"1752:10:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12332,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1751:12:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"31","id":12333,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1766:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"1751:16:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12335,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1771:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1751:21:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":12337,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"1750:23:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12339,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"1781:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12340,"name":"y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12290,"src":"1785:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1781:6:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1750:37:47","trueExpression":{"id":12338,"name":"y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12290,"src":"1776:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1738:49:47"},{"assignments":[12345,12347,12349],"declarations":[{"constant":false,"id":12345,"mutability":"mutable","name":"qx","nameLocation":"1809:2:47","nodeType":"VariableDeclaration","scope":12397,"src":"1801:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12344,"name":"uint256","nodeType":"ElementaryTypeName","src":"1801:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12347,"mutability":"mutable","name":"qy","nameLocation":"1821:2:47","nodeType":"VariableDeclaration","scope":12397,"src":"1813:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12346,"name":"uint256","nodeType":"ElementaryTypeName","src":"1813:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12349,"mutability":"mutable","name":"qz","nameLocation":"1833:2:47","nodeType":"VariableDeclaration","scope":12397,"src":"1825:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12348,"name":"uint256","nodeType":"ElementaryTypeName","src":"1825:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12362,"initialValue":{"arguments":[{"arguments":[{"id":12352,"name":"rInv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12283,"src":"1853:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12353,"name":"N","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12224,"src":"1859:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12354,"name":"digest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12227,"src":"1863:6:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1859:10:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12356,"name":"N","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12224,"src":"1871:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12351,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"1846:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12357,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1846:27:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12358,"name":"GX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12215,"src":"1875:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12359,"name":"GY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12218,"src":"1879:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"31","id":12360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1883:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":12350,"name":"jacMul","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12847,"src":"1839:6:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256,uint256,uint256) pure returns (uint256,uint256,uint256)"}},"id":12361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1839:46:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"1800:85:47"},{"assignments":[12364,12366,12368],"declarations":[{"constant":false,"id":12364,"mutability":"mutable","name":"qx2","nameLocation":"1905:3:47","nodeType":"VariableDeclaration","scope":12397,"src":"1897:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12363,"name":"uint256","nodeType":"ElementaryTypeName","src":"1897:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12366,"mutability":"mutable","name":"qy2","nameLocation":"1918:3:47","nodeType":"VariableDeclaration","scope":12397,"src":"1910:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12365,"name":"uint256","nodeType":"ElementaryTypeName","src":"1910:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12368,"mutability":"mutable","name":"qz2","nameLocation":"1931:3:47","nodeType":"VariableDeclaration","scope":12397,"src":"1923:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12367,"name":"uint256","nodeType":"ElementaryTypeName","src":"1923:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12379,"initialValue":{"arguments":[{"arguments":[{"id":12371,"name":"rInv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12283,"src":"1952:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12372,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12233,"src":"1958:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12373,"name":"N","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12224,"src":"1961:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12370,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"1945:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12374,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1945:18:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12375,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12241,"src":"1965:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12376,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12326,"src":"1968:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"31","id":12377,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1971:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":12369,"name":"jacMul","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12847,"src":"1938:6:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256,uint256,uint256) pure returns (uint256,uint256,uint256)"}},"id":12378,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1938:35:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"1896:77:47"},{"assignments":[12381,12383],"declarations":[{"constant":false,"id":12381,"mutability":"mutable","name":"qx3","nameLocation":"1993:3:47","nodeType":"VariableDeclaration","scope":12397,"src":"1985:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12380,"name":"uint256","nodeType":"ElementaryTypeName","src":"1985:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12383,"mutability":"mutable","name":"qy3","nameLocation":"2006:3:47","nodeType":"VariableDeclaration","scope":12397,"src":"1998:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12382,"name":"uint256","nodeType":"ElementaryTypeName","src":"1998:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12392,"initialValue":{"arguments":[{"id":12385,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12345,"src":"2019:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12386,"name":"qy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12347,"src":"2023:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12387,"name":"qz","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12349,"src":"2027:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12388,"name":"qx2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12364,"src":"2031:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12389,"name":"qy2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12366,"src":"2036:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12390,"name":"qz2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12368,"src":"2041:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12384,"name":"ecAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13076,"src":"2013:5:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256,uint256,uint256,uint256,uint256) pure returns (uint256,uint256)"}},"id":12391,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2013:32:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"1984:61:47"},{"expression":{"components":[{"id":12393,"name":"qx3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12381,"src":"2066:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12394,"name":"qy3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12383,"src":"2071:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12395,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2065:10:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"functionReturnParameters":12239,"id":12396,"nodeType":"Return","src":"2058:17:47"}]},"documentation":{"id":12225,"nodeType":"StructuredDocumentation","src":"1005:237:47","text":"@dev recovers signer public key point value.\n @param digest hashed message\n @param v recovery\n @param r first 32 bytes of signature\n @param v last 32 bytes of signature\n @return (x, y) EC point"},"id":12398,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"1257:7:47","nodeType":"FunctionDefinition","parameters":{"id":12234,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12227,"mutability":"mutable","name":"digest","nameLocation":"1283:6:47","nodeType":"VariableDeclaration","scope":12398,"src":"1275:14:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12226,"name":"uint256","nodeType":"ElementaryTypeName","src":"1275:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12229,"mutability":"mutable","name":"v","nameLocation":"1306:1:47","nodeType":"VariableDeclaration","scope":12398,"src":"1300:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":12228,"name":"uint8","nodeType":"ElementaryTypeName","src":"1300:5:47","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":12231,"mutability":"mutable","name":"r","nameLocation":"1326:1:47","nodeType":"VariableDeclaration","scope":12398,"src":"1318:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12230,"name":"uint256","nodeType":"ElementaryTypeName","src":"1318:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12233,"mutability":"mutable","name":"s","nameLocation":"1346:1:47","nodeType":"VariableDeclaration","scope":12398,"src":"1338:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12232,"name":"uint256","nodeType":"ElementaryTypeName","src":"1338:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1264:90:47"},"returnParameters":{"id":12239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12236,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12398,"src":"1378:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12235,"name":"uint256","nodeType":"ElementaryTypeName","src":"1378:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12238,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12398,"src":"1387:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12237,"name":"uint256","nodeType":"ElementaryTypeName","src":"1387:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1377:18:47"},"scope":13216,"src":"1248:835:47","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12431,"nodeType":"Block","src":"2533:711:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12408,"name":"_base","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12401,"src":"2548:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12409,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2557:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2548:10:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12413,"nodeType":"IfStatement","src":"2544:24:47","trueBody":{"expression":{"hexValue":"30","id":12411,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2567:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":12407,"id":12412,"nodeType":"Return","src":"2560:8:47"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12414,"name":"_exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12403,"src":"2583:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2591:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2583:9:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12419,"nodeType":"IfStatement","src":"2579:23:47","trueBody":{"expression":{"hexValue":"31","id":12417,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2601:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"functionReturnParameters":12407,"id":12418,"nodeType":"Return","src":"2594:8:47"}},{"assignments":[12421],"declarations":[{"constant":false,"id":12421,"mutability":"mutable","name":"r","nameLocation":"2623:1:47","nodeType":"VariableDeclaration","scope":12431,"src":"2615:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12420,"name":"uint256","nodeType":"ElementaryTypeName","src":"2615:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12423,"initialValue":{"hexValue":"31","id":12422,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2627:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"2615:13:47"},{"assignments":[12425],"declarations":[{"constant":false,"id":12425,"mutability":"mutable","name":"bit","nameLocation":"2647:3:47","nodeType":"VariableDeclaration","scope":12431,"src":"2639:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12424,"name":"uint256","nodeType":"ElementaryTypeName","src":"2639:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12427,"initialValue":{"id":12426,"name":"U255_MAX_PLUS_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12206,"src":"2653:15:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2639:29:47"},{"AST":{"nativeSrc":"2688:528:47","nodeType":"YulBlock","src":"2688:528:47","statements":[{"body":{"nativeSrc":"2756:449:47","nodeType":"YulBlock","src":"2756:449:47","statements":[{"nativeSrc":"2775:75:47","nodeType":"YulAssignment","src":"2775:75:47","value":{"arguments":[{"arguments":[{"name":"r","nativeSrc":"2794:1:47","nodeType":"YulIdentifier","src":"2794:1:47"},{"name":"r","nativeSrc":"2797:1:47","nodeType":"YulIdentifier","src":"2797:1:47"},{"name":"P","nativeSrc":"2800:1:47","nodeType":"YulIdentifier","src":"2800:1:47"}],"functionName":{"name":"mulmod","nativeSrc":"2787:6:47","nodeType":"YulIdentifier","src":"2787:6:47"},"nativeSrc":"2787:15:47","nodeType":"YulFunctionCall","src":"2787:15:47"},{"arguments":[{"name":"_base","nativeSrc":"2808:5:47","nodeType":"YulIdentifier","src":"2808:5:47"},{"arguments":[{"arguments":[{"arguments":[{"name":"_exp","nativeSrc":"2833:4:47","nodeType":"YulIdentifier","src":"2833:4:47"},{"name":"bit","nativeSrc":"2839:3:47","nodeType":"YulIdentifier","src":"2839:3:47"}],"functionName":{"name":"and","nativeSrc":"2829:3:47","nodeType":"YulIdentifier","src":"2829:3:47"},"nativeSrc":"2829:14:47","nodeType":"YulFunctionCall","src":"2829:14:47"}],"functionName":{"name":"iszero","nativeSrc":"2822:6:47","nodeType":"YulIdentifier","src":"2822:6:47"},"nativeSrc":"2822:22:47","nodeType":"YulFunctionCall","src":"2822:22:47"}],"functionName":{"name":"iszero","nativeSrc":"2815:6:47","nodeType":"YulIdentifier","src":"2815:6:47"},"nativeSrc":"2815:30:47","nodeType":"YulFunctionCall","src":"2815:30:47"}],"functionName":{"name":"exp","nativeSrc":"2804:3:47","nodeType":"YulIdentifier","src":"2804:3:47"},"nativeSrc":"2804:42:47","nodeType":"YulFunctionCall","src":"2804:42:47"},{"name":"P","nativeSrc":"2848:1:47","nodeType":"YulIdentifier","src":"2848:1:47"}],"functionName":{"name":"mulmod","nativeSrc":"2780:6:47","nodeType":"YulIdentifier","src":"2780:6:47"},"nativeSrc":"2780:70:47","nodeType":"YulFunctionCall","src":"2780:70:47"},"variableNames":[{"name":"r","nativeSrc":"2775:1:47","nodeType":"YulIdentifier","src":"2775:1:47"}]},{"nativeSrc":"2868:83:47","nodeType":"YulAssignment","src":"2868:83:47","value":{"arguments":[{"arguments":[{"name":"r","nativeSrc":"2887:1:47","nodeType":"YulIdentifier","src":"2887:1:47"},{"name":"r","nativeSrc":"2890:1:47","nodeType":"YulIdentifier","src":"2890:1:47"},{"name":"P","nativeSrc":"2893:1:47","nodeType":"YulIdentifier","src":"2893:1:47"}],"functionName":{"name":"mulmod","nativeSrc":"2880:6:47","nodeType":"YulIdentifier","src":"2880:6:47"},"nativeSrc":"2880:15:47","nodeType":"YulFunctionCall","src":"2880:15:47"},{"arguments":[{"name":"_base","nativeSrc":"2901:5:47","nodeType":"YulIdentifier","src":"2901:5:47"},{"arguments":[{"arguments":[{"arguments":[{"name":"_exp","nativeSrc":"2926:4:47","nodeType":"YulIdentifier","src":"2926:4:47"},{"arguments":[{"name":"bit","nativeSrc":"2936:3:47","nodeType":"YulIdentifier","src":"2936:3:47"},{"kind":"number","nativeSrc":"2941:1:47","nodeType":"YulLiteral","src":"2941:1:47","type":"","value":"2"}],"functionName":{"name":"div","nativeSrc":"2932:3:47","nodeType":"YulIdentifier","src":"2932:3:47"},"nativeSrc":"2932:11:47","nodeType":"YulFunctionCall","src":"2932:11:47"}],"functionName":{"name":"and","nativeSrc":"2922:3:47","nodeType":"YulIdentifier","src":"2922:3:47"},"nativeSrc":"2922:22:47","nodeType":"YulFunctionCall","src":"2922:22:47"}],"functionName":{"name":"iszero","nativeSrc":"2915:6:47","nodeType":"YulIdentifier","src":"2915:6:47"},"nativeSrc":"2915:30:47","nodeType":"YulFunctionCall","src":"2915:30:47"}],"functionName":{"name":"iszero","nativeSrc":"2908:6:47","nodeType":"YulIdentifier","src":"2908:6:47"},"nativeSrc":"2908:38:47","nodeType":"YulFunctionCall","src":"2908:38:47"}],"functionName":{"name":"exp","nativeSrc":"2897:3:47","nodeType":"YulIdentifier","src":"2897:3:47"},"nativeSrc":"2897:50:47","nodeType":"YulFunctionCall","src":"2897:50:47"},{"name":"P","nativeSrc":"2949:1:47","nodeType":"YulIdentifier","src":"2949:1:47"}],"functionName":{"name":"mulmod","nativeSrc":"2873:6:47","nodeType":"YulIdentifier","src":"2873:6:47"},"nativeSrc":"2873:78:47","nodeType":"YulFunctionCall","src":"2873:78:47"},"variableNames":[{"name":"r","nativeSrc":"2868:1:47","nodeType":"YulIdentifier","src":"2868:1:47"}]},{"nativeSrc":"2969:83:47","nodeType":"YulAssignment","src":"2969:83:47","value":{"arguments":[{"arguments":[{"name":"r","nativeSrc":"2988:1:47","nodeType":"YulIdentifier","src":"2988:1:47"},{"name":"r","nativeSrc":"2991:1:47","nodeType":"YulIdentifier","src":"2991:1:47"},{"name":"P","nativeSrc":"2994:1:47","nodeType":"YulIdentifier","src":"2994:1:47"}],"functionName":{"name":"mulmod","nativeSrc":"2981:6:47","nodeType":"YulIdentifier","src":"2981:6:47"},"nativeSrc":"2981:15:47","nodeType":"YulFunctionCall","src":"2981:15:47"},{"arguments":[{"name":"_base","nativeSrc":"3002:5:47","nodeType":"YulIdentifier","src":"3002:5:47"},{"arguments":[{"arguments":[{"arguments":[{"name":"_exp","nativeSrc":"3027:4:47","nodeType":"YulIdentifier","src":"3027:4:47"},{"arguments":[{"name":"bit","nativeSrc":"3037:3:47","nodeType":"YulIdentifier","src":"3037:3:47"},{"kind":"number","nativeSrc":"3042:1:47","nodeType":"YulLiteral","src":"3042:1:47","type":"","value":"4"}],"functionName":{"name":"div","nativeSrc":"3033:3:47","nodeType":"YulIdentifier","src":"3033:3:47"},"nativeSrc":"3033:11:47","nodeType":"YulFunctionCall","src":"3033:11:47"}],"functionName":{"name":"and","nativeSrc":"3023:3:47","nodeType":"YulIdentifier","src":"3023:3:47"},"nativeSrc":"3023:22:47","nodeType":"YulFunctionCall","src":"3023:22:47"}],"functionName":{"name":"iszero","nativeSrc":"3016:6:47","nodeType":"YulIdentifier","src":"3016:6:47"},"nativeSrc":"3016:30:47","nodeType":"YulFunctionCall","src":"3016:30:47"}],"functionName":{"name":"iszero","nativeSrc":"3009:6:47","nodeType":"YulIdentifier","src":"3009:6:47"},"nativeSrc":"3009:38:47","nodeType":"YulFunctionCall","src":"3009:38:47"}],"functionName":{"name":"exp","nativeSrc":"2998:3:47","nodeType":"YulIdentifier","src":"2998:3:47"},"nativeSrc":"2998:50:47","nodeType":"YulFunctionCall","src":"2998:50:47"},{"name":"P","nativeSrc":"3050:1:47","nodeType":"YulIdentifier","src":"3050:1:47"}],"functionName":{"name":"mulmod","nativeSrc":"2974:6:47","nodeType":"YulIdentifier","src":"2974:6:47"},"nativeSrc":"2974:78:47","nodeType":"YulFunctionCall","src":"2974:78:47"},"variableNames":[{"name":"r","nativeSrc":"2969:1:47","nodeType":"YulIdentifier","src":"2969:1:47"}]},{"nativeSrc":"3070:83:47","nodeType":"YulAssignment","src":"3070:83:47","value":{"arguments":[{"arguments":[{"name":"r","nativeSrc":"3089:1:47","nodeType":"YulIdentifier","src":"3089:1:47"},{"name":"r","nativeSrc":"3092:1:47","nodeType":"YulIdentifier","src":"3092:1:47"},{"name":"P","nativeSrc":"3095:1:47","nodeType":"YulIdentifier","src":"3095:1:47"}],"functionName":{"name":"mulmod","nativeSrc":"3082:6:47","nodeType":"YulIdentifier","src":"3082:6:47"},"nativeSrc":"3082:15:47","nodeType":"YulFunctionCall","src":"3082:15:47"},{"arguments":[{"name":"_base","nativeSrc":"3103:5:47","nodeType":"YulIdentifier","src":"3103:5:47"},{"arguments":[{"arguments":[{"arguments":[{"name":"_exp","nativeSrc":"3128:4:47","nodeType":"YulIdentifier","src":"3128:4:47"},{"arguments":[{"name":"bit","nativeSrc":"3138:3:47","nodeType":"YulIdentifier","src":"3138:3:47"},{"kind":"number","nativeSrc":"3143:1:47","nodeType":"YulLiteral","src":"3143:1:47","type":"","value":"8"}],"functionName":{"name":"div","nativeSrc":"3134:3:47","nodeType":"YulIdentifier","src":"3134:3:47"},"nativeSrc":"3134:11:47","nodeType":"YulFunctionCall","src":"3134:11:47"}],"functionName":{"name":"and","nativeSrc":"3124:3:47","nodeType":"YulIdentifier","src":"3124:3:47"},"nativeSrc":"3124:22:47","nodeType":"YulFunctionCall","src":"3124:22:47"}],"functionName":{"name":"iszero","nativeSrc":"3117:6:47","nodeType":"YulIdentifier","src":"3117:6:47"},"nativeSrc":"3117:30:47","nodeType":"YulFunctionCall","src":"3117:30:47"}],"functionName":{"name":"iszero","nativeSrc":"3110:6:47","nodeType":"YulIdentifier","src":"3110:6:47"},"nativeSrc":"3110:38:47","nodeType":"YulFunctionCall","src":"3110:38:47"}],"functionName":{"name":"exp","nativeSrc":"3099:3:47","nodeType":"YulIdentifier","src":"3099:3:47"},"nativeSrc":"3099:50:47","nodeType":"YulFunctionCall","src":"3099:50:47"},{"name":"P","nativeSrc":"3151:1:47","nodeType":"YulIdentifier","src":"3151:1:47"}],"functionName":{"name":"mulmod","nativeSrc":"3075:6:47","nodeType":"YulIdentifier","src":"3075:6:47"},"nativeSrc":"3075:78:47","nodeType":"YulFunctionCall","src":"3075:78:47"},"variableNames":[{"name":"r","nativeSrc":"3070:1:47","nodeType":"YulIdentifier","src":"3070:1:47"}]},{"nativeSrc":"3171:19:47","nodeType":"YulAssignment","src":"3171:19:47","value":{"arguments":[{"name":"bit","nativeSrc":"3182:3:47","nodeType":"YulIdentifier","src":"3182:3:47"},{"kind":"number","nativeSrc":"3187:2:47","nodeType":"YulLiteral","src":"3187:2:47","type":"","value":"16"}],"functionName":{"name":"div","nativeSrc":"3178:3:47","nodeType":"YulIdentifier","src":"3178:3:47"},"nativeSrc":"3178:12:47","nodeType":"YulFunctionCall","src":"3178:12:47"},"variableNames":[{"name":"bit","nativeSrc":"3171:3:47","nodeType":"YulIdentifier","src":"3171:3:47"}]}]},"condition":{"arguments":[{"name":"bit","nativeSrc":"2729:3:47","nodeType":"YulIdentifier","src":"2729:3:47"},{"kind":"number","nativeSrc":"2734:1:47","nodeType":"YulLiteral","src":"2734:1:47","type":"","value":"0"}],"functionName":{"name":"gt","nativeSrc":"2726:2:47","nodeType":"YulIdentifier","src":"2726:2:47"},"nativeSrc":"2726:10:47","nodeType":"YulFunctionCall","src":"2726:10:47"},"nativeSrc":"2703:502:47","nodeType":"YulForLoop","post":{"nativeSrc":"2737:18:47","nodeType":"YulBlock","src":"2737:18:47","statements":[]},"pre":{"nativeSrc":"2707:18:47","nodeType":"YulBlock","src":"2707:18:47","statements":[]},"src":"2703:502:47"}]},"evmVersion":"paris","externalReferences":[{"declaration":12221,"isOffset":false,"isSlot":false,"src":"2800:1:47","valueSize":1},{"declaration":12221,"isOffset":false,"isSlot":false,"src":"2848:1:47","valueSize":1},{"declaration":12221,"isOffset":false,"isSlot":false,"src":"2893:1:47","valueSize":1},{"declaration":12221,"isOffset":false,"isSlot":false,"src":"2949:1:47","valueSize":1},{"declaration":12221,"isOffset":false,"isSlot":false,"src":"2994:1:47","valueSize":1},{"declaration":12221,"isOffset":false,"isSlot":false,"src":"3050:1:47","valueSize":1},{"declaration":12221,"isOffset":false,"isSlot":false,"src":"3095:1:47","valueSize":1},{"declaration":12221,"isOffset":false,"isSlot":false,"src":"3151:1:47","valueSize":1},{"declaration":12401,"isOffset":false,"isSlot":false,"src":"2808:5:47","valueSize":1},{"declaration":12401,"isOffset":false,"isSlot":false,"src":"2901:5:47","valueSize":1},{"declaration":12401,"isOffset":false,"isSlot":false,"src":"3002:5:47","valueSize":1},{"declaration":12401,"isOffset":false,"isSlot":false,"src":"3103:5:47","valueSize":1},{"declaration":12403,"isOffset":false,"isSlot":false,"src":"2833:4:47","valueSize":1},{"declaration":12403,"isOffset":false,"isSlot":false,"src":"2926:4:47","valueSize":1},{"declaration":12403,"isOffset":false,"isSlot":false,"src":"3027:4:47","valueSize":1},{"declaration":12403,"isOffset":false,"isSlot":false,"src":"3128:4:47","valueSize":1},{"declaration":12425,"isOffset":false,"isSlot":false,"src":"2729:3:47","valueSize":1},{"declaration":12425,"isOffset":false,"isSlot":false,"src":"2839:3:47","valueSize":1},{"declaration":12425,"isOffset":false,"isSlot":false,"src":"2936:3:47","valueSize":1},{"declaration":12425,"isOffset":false,"isSlot":false,"src":"3037:3:47","valueSize":1},{"declaration":12425,"isOffset":false,"isSlot":false,"src":"3138:3:47","valueSize":1},{"declaration":12425,"isOffset":false,"isSlot":false,"src":"3171:3:47","valueSize":1},{"declaration":12425,"isOffset":false,"isSlot":false,"src":"3182:3:47","valueSize":1},{"declaration":12421,"isOffset":false,"isSlot":false,"src":"2775:1:47","valueSize":1},{"declaration":12421,"isOffset":false,"isSlot":false,"src":"2794:1:47","valueSize":1},{"declaration":12421,"isOffset":false,"isSlot":false,"src":"2797:1:47","valueSize":1},{"declaration":12421,"isOffset":false,"isSlot":false,"src":"2868:1:47","valueSize":1},{"declaration":12421,"isOffset":false,"isSlot":false,"src":"2887:1:47","valueSize":1},{"declaration":12421,"isOffset":false,"isSlot":false,"src":"2890:1:47","valueSize":1},{"declaration":12421,"isOffset":false,"isSlot":false,"src":"2969:1:47","valueSize":1},{"declaration":12421,"isOffset":false,"isSlot":false,"src":"2988:1:47","valueSize":1},{"declaration":12421,"isOffset":false,"isSlot":false,"src":"2991:1:47","valueSize":1},{"declaration":12421,"isOffset":false,"isSlot":false,"src":"3070:1:47","valueSize":1},{"declaration":12421,"isOffset":false,"isSlot":false,"src":"3089:1:47","valueSize":1},{"declaration":12421,"isOffset":false,"isSlot":false,"src":"3092:1:47","valueSize":1}],"id":12428,"nodeType":"InlineAssembly","src":"2679:537:47"},{"expression":{"id":12429,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12421,"src":"3235:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12407,"id":12430,"nodeType":"Return","src":"3228:8:47"}]},"documentation":{"id":12399,"nodeType":"StructuredDocumentation","src":"2091:359:47","text":"@dev Modular exponentiation, b^e % P.\n Source: https://github.com/witnet/elliptic-curve-solidity/blob/master/contracts/EllipticCurve.sol\n Source: https://github.com/androlo/standard-contracts/blob/master/contracts/src/crypto/ECCMath.sol\n @param _base base\n @param _exp exponent\n @return r such that r = b**e (mod P)"},"id":12432,"implemented":true,"kind":"function","modifiers":[],"name":"expMod","nameLocation":"2465:6:47","nodeType":"FunctionDefinition","parameters":{"id":12404,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12401,"mutability":"mutable","name":"_base","nameLocation":"2480:5:47","nodeType":"VariableDeclaration","scope":12432,"src":"2472:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12400,"name":"uint256","nodeType":"ElementaryTypeName","src":"2472:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12403,"mutability":"mutable","name":"_exp","nameLocation":"2495:4:47","nodeType":"VariableDeclaration","scope":12432,"src":"2487:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12402,"name":"uint256","nodeType":"ElementaryTypeName","src":"2487:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2471:29:47"},"returnParameters":{"id":12407,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12406,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12432,"src":"2524:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12405,"name":"uint256","nodeType":"ElementaryTypeName","src":"2524:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2523:9:47"},"scope":13216,"src":"2456:788:47","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12752,"nodeType":"Block","src":"4004:1535:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12456,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12454,"name":"_x1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12435,"src":"4019:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12455,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4026:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4019:8:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12457,"name":"_y1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12437,"src":"4031:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12458,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4038:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4031:8:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4019:20:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12466,"nodeType":"IfStatement","src":"4015:48:47","trueBody":{"expression":{"components":[{"id":12461,"name":"_x2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12441,"src":"4049:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12462,"name":"_y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12443,"src":"4054:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12463,"name":"_z2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12445,"src":"4059:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12464,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4048:15:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"functionReturnParameters":12453,"id":12465,"nodeType":"Return","src":"4041:22:47"}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12469,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12467,"name":"_x2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12441,"src":"4078:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12468,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4085:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4078:8:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12470,"name":"_y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12443,"src":"4090:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12471,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4097:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4090:8:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4078:20:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12479,"nodeType":"IfStatement","src":"4074:48:47","trueBody":{"expression":{"components":[{"id":12474,"name":"_x1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12435,"src":"4108:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12475,"name":"_y1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12437,"src":"4113:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12476,"name":"_z1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"4118:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12477,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4107:15:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"functionReturnParameters":12453,"id":12478,"nodeType":"Return","src":"4100:22:47"}},{"assignments":[12485],"declarations":[{"constant":false,"id":12485,"mutability":"mutable","name":"zs","nameLocation":"4291:2:47","nodeType":"VariableDeclaration","scope":12752,"src":"4273:20:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4]"},"typeName":{"baseType":{"id":12483,"name":"uint256","nodeType":"ElementaryTypeName","src":"4273:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12484,"length":{"hexValue":"34","id":12482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4281:1:47","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"nodeType":"ArrayTypeName","src":"4273:10:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_storage_ptr","typeString":"uint256[4]"}},"visibility":"internal"}],"id":12486,"nodeType":"VariableDeclarationStatement","src":"4273:20:47"},{"expression":{"id":12495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12487,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4330:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12489,"indexExpression":{"hexValue":"30","id":12488,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4333:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4330:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12491,"name":"_z1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"4345:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12492,"name":"_z1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"4350:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12493,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"4355:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12490,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"4338:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4338:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4330:27:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12496,"nodeType":"ExpressionStatement","src":"4330:27:47"},{"expression":{"id":12507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12497,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4368:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12499,"indexExpression":{"hexValue":"31","id":12498,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4371:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4368:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12501,"name":"_z1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"4383:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12502,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4388:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12504,"indexExpression":{"hexValue":"30","id":12503,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4391:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4388:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12505,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"4395:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12500,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"4376:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4376:21:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4368:29:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12508,"nodeType":"ExpressionStatement","src":"4368:29:47"},{"expression":{"id":12517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12509,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4408:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12511,"indexExpression":{"hexValue":"32","id":12510,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4411:1:47","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4408:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12513,"name":"_z2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12445,"src":"4423:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12514,"name":"_z2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12445,"src":"4428:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12515,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"4433:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12512,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"4416:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12516,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4416:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4408:27:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12518,"nodeType":"ExpressionStatement","src":"4408:27:47"},{"expression":{"id":12529,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12519,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4446:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12521,"indexExpression":{"hexValue":"33","id":12520,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4449:1:47","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4446:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12523,"name":"_z2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12445,"src":"4461:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12524,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4466:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12526,"indexExpression":{"hexValue":"32","id":12525,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4469:1:47","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4466:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12527,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"4473:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12522,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"4454:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12528,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4454:21:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4446:29:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12530,"nodeType":"ExpressionStatement","src":"4446:29:47"},{"expression":{"id":12561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12531,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4515:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"arguments":[{"id":12533,"name":"_x1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12435,"src":"4528:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12534,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4533:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12536,"indexExpression":{"hexValue":"32","id":12535,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4536:1:47","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4533:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12537,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"4540:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12532,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"4521:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12538,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4521:21:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":12540,"name":"_y1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12437,"src":"4551:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12541,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4556:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12543,"indexExpression":{"hexValue":"33","id":12542,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4559:1:47","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4556:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12544,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"4563:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12539,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"4544:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12545,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4544:21:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":12547,"name":"_x2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12441,"src":"4574:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12548,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4579:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12550,"indexExpression":{"hexValue":"30","id":12549,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4582:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4579:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12551,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"4586:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12546,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"4567:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4567:21:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":12554,"name":"_y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12443,"src":"4597:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12555,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4602:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12557,"indexExpression":{"hexValue":"31","id":12556,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4605:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4602:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12558,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"4609:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12553,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"4590:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12559,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4590:21:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12560,"isConstant":false,"isInlineArray":true,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4520:92:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"src":"4515:97:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12562,"nodeType":"ExpressionStatement","src":"4515:97:47"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12570,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":12564,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4721:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12566,"indexExpression":{"hexValue":"30","id":12565,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4724:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4721:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"baseExpression":{"id":12567,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4730:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12569,"indexExpression":{"hexValue":"32","id":12568,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4733:1:47","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4730:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4721:14:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12577,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":12571,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4739:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12573,"indexExpression":{"hexValue":"31","id":12572,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4742:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4739:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"baseExpression":{"id":12574,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4748:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12576,"indexExpression":{"hexValue":"33","id":12575,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4751:1:47","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4748:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4739:14:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4721:32:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"557365206a6163446f75626c652066756e6374696f6e20696e7374656164","id":12579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4755:32:47","typeDescriptions":{"typeIdentifier":"t_stringliteral_5fdf44d35b202e4b4a5d1b6167961ee48e84a906ae5e709d7bddb824c86220a6","typeString":"literal_string \"Use jacDouble function instead\""},"value":"Use jacDouble function instead"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5fdf44d35b202e4b4a5d1b6167961ee48e84a906ae5e709d7bddb824c86220a6","typeString":"literal_string \"Use jacDouble function instead\""}],"id":12563,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4713:7:47","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":12580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4713:75:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12581,"nodeType":"ExpressionStatement","src":"4713:75:47"},{"assignments":[12587],"declarations":[{"constant":false,"id":12587,"mutability":"mutable","name":"hr","nameLocation":"4819:2:47","nodeType":"VariableDeclaration","scope":12752,"src":"4801:20:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4]"},"typeName":{"baseType":{"id":12585,"name":"uint256","nodeType":"ElementaryTypeName","src":"4801:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12586,"length":{"hexValue":"34","id":12584,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4809:1:47","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"nodeType":"ArrayTypeName","src":"4801:10:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_storage_ptr","typeString":"uint256[4]"}},"visibility":"internal"}],"id":12588,"nodeType":"VariableDeclarationStatement","src":"4801:20:47"},{"expression":{"id":12603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12589,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"4845:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12591,"indexExpression":{"hexValue":"30","id":12590,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4848:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4845:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":12593,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4860:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12595,"indexExpression":{"hexValue":"32","id":12594,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4863:1:47","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4860:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12596,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"4867:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"baseExpression":{"id":12597,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4871:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12599,"indexExpression":{"hexValue":"30","id":12598,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4874:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4871:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4867:9:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12601,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"4878:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12592,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"4853:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4853:27:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4845:35:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12604,"nodeType":"ExpressionStatement","src":"4845:35:47"},{"expression":{"id":12619,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12605,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"4904:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12607,"indexExpression":{"hexValue":"31","id":12606,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4907:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4904:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":12609,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4919:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12611,"indexExpression":{"hexValue":"33","id":12610,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4922:1:47","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4919:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12612,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"4926:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"baseExpression":{"id":12613,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"4930:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12615,"indexExpression":{"hexValue":"31","id":12614,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4933:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4930:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4926:9:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12617,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"4937:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12608,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"4912:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4912:27:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4904:35:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12620,"nodeType":"ExpressionStatement","src":"4904:35:47"},{"expression":{"id":12633,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12621,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"4965:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12623,"indexExpression":{"hexValue":"32","id":12622,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4968:1:47","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4965:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":12625,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"4980:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12627,"indexExpression":{"hexValue":"30","id":12626,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4983:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4980:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12628,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"4987:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12630,"indexExpression":{"hexValue":"30","id":12629,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4990:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4987:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12631,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"4994:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12624,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"4973:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12632,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4973:23:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4965:31:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12634,"nodeType":"ExpressionStatement","src":"4965:31:47"},{"expression":{"id":12647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12635,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"5023:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12637,"indexExpression":{"hexValue":"33","id":12636,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5026:1:47","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"5023:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"baseExpression":{"id":12639,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"5038:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12641,"indexExpression":{"hexValue":"32","id":12640,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5041:1:47","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5038:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12642,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"5045:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12644,"indexExpression":{"hexValue":"30","id":12643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5048:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5045:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12645,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5052:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12638,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"5031:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5031:23:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5023:31:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12648,"nodeType":"ExpressionStatement","src":"5023:31:47"},{"assignments":[12650],"declarations":[{"constant":false,"id":12650,"mutability":"mutable","name":"qx","nameLocation":"5108:2:47","nodeType":"VariableDeclaration","scope":12752,"src":"5100:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12649,"name":"uint256","nodeType":"ElementaryTypeName","src":"5100:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12668,"initialValue":{"arguments":[{"arguments":[{"baseExpression":{"id":12653,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"5127:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12655,"indexExpression":{"hexValue":"31","id":12654,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5130:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5127:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12656,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"5134:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12658,"indexExpression":{"hexValue":"31","id":12657,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5137:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5134:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12659,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5141:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12652,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"5120:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12660,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5120:23:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12661,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5145:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"baseExpression":{"id":12662,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"5149:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12664,"indexExpression":{"hexValue":"33","id":12663,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5152:1:47","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5149:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5145:9:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12666,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5156:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12651,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"5113:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12667,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5113:45:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5100:58:47"},{"expression":{"id":12689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12669,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12650,"src":"5169:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12671,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12650,"src":"5181:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12672,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5185:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"hexValue":"32","id":12674,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5196:1:47","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},{"arguments":[{"baseExpression":{"id":12676,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"5206:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12678,"indexExpression":{"hexValue":"30","id":12677,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5209:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5206:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12679,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"5213:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12681,"indexExpression":{"hexValue":"32","id":12680,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5216:1:47","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5213:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12682,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5220:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12675,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"5199:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12683,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5199:23:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12684,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5224:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12673,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"5189:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12685,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5189:37:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5185:41:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12687,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5228:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12670,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"5174:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12688,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5174:56:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5169:61:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12690,"nodeType":"ExpressionStatement","src":"5169:61:47"},{"assignments":[12692],"declarations":[{"constant":false,"id":12692,"mutability":"mutable","name":"qy","nameLocation":"5292:2:47","nodeType":"VariableDeclaration","scope":12752,"src":"5284:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12691,"name":"uint256","nodeType":"ElementaryTypeName","src":"5284:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12714,"initialValue":{"arguments":[{"baseExpression":{"id":12694,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"5304:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12696,"indexExpression":{"hexValue":"31","id":12695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5307:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5304:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"arguments":[{"baseExpression":{"id":12699,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"5325:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12701,"indexExpression":{"hexValue":"30","id":12700,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5328:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5325:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12702,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"5332:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12704,"indexExpression":{"hexValue":"32","id":12703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5335:1:47","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5332:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12705,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5339:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12698,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"5318:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12706,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5318:23:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12707,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5343:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12708,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12650,"src":"5347:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5343:6:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12710,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5351:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12697,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"5311:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12711,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5311:42:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12712,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5355:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12693,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"5297:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12713,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5297:60:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5284:73:47"},{"expression":{"id":12731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12715,"name":"qy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12692,"src":"5368:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12717,"name":"qy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12692,"src":"5380:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12728,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12718,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5384:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"baseExpression":{"id":12720,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12485,"src":"5395:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12722,"indexExpression":{"hexValue":"31","id":12721,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5398:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5395:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12723,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"5402:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12725,"indexExpression":{"hexValue":"33","id":12724,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5405:1:47","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5402:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12726,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5409:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12719,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"5388:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12727,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5388:23:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5384:27:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12729,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5413:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12716,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"5373:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5373:42:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5368:47:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12732,"nodeType":"ExpressionStatement","src":"5368:47:47"},{"assignments":[12734],"declarations":[{"constant":false,"id":12734,"mutability":"mutable","name":"qz","nameLocation":"5459:2:47","nodeType":"VariableDeclaration","scope":12752,"src":"5451:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12733,"name":"uint256","nodeType":"ElementaryTypeName","src":"5451:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12746,"initialValue":{"arguments":[{"baseExpression":{"id":12736,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12587,"src":"5471:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12738,"indexExpression":{"hexValue":"30","id":12737,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5474:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"5471:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":12740,"name":"_z1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"5485:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12741,"name":"_z2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12445,"src":"5490:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12742,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5495:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12739,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"5478:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12743,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5478:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12744,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"5499:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12735,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"5464:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12745,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5464:37:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5451:50:47"},{"expression":{"components":[{"id":12747,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12650,"src":"5520:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12748,"name":"qy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12692,"src":"5524:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12749,"name":"qz","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12734,"src":"5528:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12750,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5519:12:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"functionReturnParameters":12453,"id":12751,"nodeType":"Return","src":"5512:19:47"}]},"documentation":{"id":12433,"nodeType":"StructuredDocumentation","src":"3252:459:47","text":"@dev Adds two points (x1, y1, z1) and (x2 y2, z2).\n Source: https://github.com/witnet/elliptic-curve-solidity/blob/master/contracts/EllipticCurve.sol\n @param _x1 coordinate x of P1\n @param _y1 coordinate y of P1\n @param _z1 coordinate z of P1\n @param _x2 coordinate x of square\n @param _y2 coordinate y of square\n @param _z2 coordinate z of square\n @return (qx, qy, qz) P1+square in Jacobian"},"id":12753,"implemented":true,"kind":"function","modifiers":[],"name":"jacAdd","nameLocation":"3726:6:47","nodeType":"FunctionDefinition","parameters":{"id":12446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12435,"mutability":"mutable","name":"_x1","nameLocation":"3751:3:47","nodeType":"VariableDeclaration","scope":12753,"src":"3743:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12434,"name":"uint256","nodeType":"ElementaryTypeName","src":"3743:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12437,"mutability":"mutable","name":"_y1","nameLocation":"3773:3:47","nodeType":"VariableDeclaration","scope":12753,"src":"3765:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12436,"name":"uint256","nodeType":"ElementaryTypeName","src":"3765:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12439,"mutability":"mutable","name":"_z1","nameLocation":"3795:3:47","nodeType":"VariableDeclaration","scope":12753,"src":"3787:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12438,"name":"uint256","nodeType":"ElementaryTypeName","src":"3787:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12441,"mutability":"mutable","name":"_x2","nameLocation":"3817:3:47","nodeType":"VariableDeclaration","scope":12753,"src":"3809:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12440,"name":"uint256","nodeType":"ElementaryTypeName","src":"3809:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12443,"mutability":"mutable","name":"_y2","nameLocation":"3839:3:47","nodeType":"VariableDeclaration","scope":12753,"src":"3831:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12442,"name":"uint256","nodeType":"ElementaryTypeName","src":"3831:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12445,"mutability":"mutable","name":"_z2","nameLocation":"3861:3:47","nodeType":"VariableDeclaration","scope":12753,"src":"3853:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12444,"name":"uint256","nodeType":"ElementaryTypeName","src":"3853:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3732:139:47"},"returnParameters":{"id":12453,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12448,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12753,"src":"3936:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12447,"name":"uint256","nodeType":"ElementaryTypeName","src":"3936:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12450,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12753,"src":"3958:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12449,"name":"uint256","nodeType":"ElementaryTypeName","src":"3958:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12452,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12753,"src":"3980:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12451,"name":"uint256","nodeType":"ElementaryTypeName","src":"3980:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3921:77:47"},"scope":13216,"src":"3717:1822:47","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12846,"nodeType":"Block","src":"6140:560:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12773,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12771,"name":"_d","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12756,"src":"6203:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12772,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6209:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6203:7:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12780,"nodeType":"IfStatement","src":"6199:59:47","trueBody":{"id":12779,"nodeType":"Block","src":"6212:46:47","statements":[{"expression":{"components":[{"id":12774,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12758,"src":"6235:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12775,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12760,"src":"6239:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12776,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12762,"src":"6243:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12777,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6234:12:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"functionReturnParameters":12770,"id":12778,"nodeType":"Return","src":"6227:19:47"}]}},{"assignments":[12782],"declarations":[{"constant":false,"id":12782,"mutability":"mutable","name":"remaining","nameLocation":"6278:9:47","nodeType":"VariableDeclaration","scope":12846,"src":"6270:17:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12781,"name":"uint256","nodeType":"ElementaryTypeName","src":"6270:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12784,"initialValue":{"id":12783,"name":"_d","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12756,"src":"6290:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6270:22:47"},{"assignments":[12786],"declarations":[{"constant":false,"id":12786,"mutability":"mutable","name":"qx","nameLocation":"6311:2:47","nodeType":"VariableDeclaration","scope":12846,"src":"6303:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12785,"name":"uint256","nodeType":"ElementaryTypeName","src":"6303:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12788,"initialValue":{"hexValue":"30","id":12787,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6316:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6303:14:47"},{"assignments":[12790],"declarations":[{"constant":false,"id":12790,"mutability":"mutable","name":"qy","nameLocation":"6336:2:47","nodeType":"VariableDeclaration","scope":12846,"src":"6328:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12789,"name":"uint256","nodeType":"ElementaryTypeName","src":"6328:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12792,"initialValue":{"hexValue":"30","id":12791,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6341:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6328:14:47"},{"assignments":[12794],"declarations":[{"constant":false,"id":12794,"mutability":"mutable","name":"qz","nameLocation":"6361:2:47","nodeType":"VariableDeclaration","scope":12846,"src":"6353:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12793,"name":"uint256","nodeType":"ElementaryTypeName","src":"6353:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12796,"initialValue":{"hexValue":"31","id":12795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6366:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"6353:14:47"},{"body":{"id":12839,"nodeType":"Block","src":"6440:223:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12805,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12802,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12800,"name":"remaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12782,"src":"6460:9:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"31","id":12801,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6472:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6460:13:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12803,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6459:15:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":12804,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6478:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6459:20:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12821,"nodeType":"IfStatement","src":"6455:106:47","trueBody":{"id":12820,"nodeType":"Block","src":"6481:80:47","statements":[{"expression":{"id":12818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":12806,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12786,"src":"6501:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12807,"name":"qy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12790,"src":"6505:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12808,"name":"qz","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12794,"src":"6509:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12809,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"6500:12:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12811,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12786,"src":"6522:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12812,"name":"qy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12790,"src":"6526:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12813,"name":"qz","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12794,"src":"6530:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12814,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12758,"src":"6534:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12815,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12760,"src":"6538:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12816,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12762,"src":"6542:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12810,"name":"jacAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12753,"src":"6515:6:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256,uint256,uint256,uint256,uint256) pure returns (uint256,uint256,uint256)"}},"id":12817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6515:30:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"src":"6500:45:47","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12819,"nodeType":"ExpressionStatement","src":"6500:45:47"}]}},{"expression":{"id":12826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12822,"name":"remaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12782,"src":"6575:9:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12825,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12823,"name":"remaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12782,"src":"6587:9:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":12824,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6599:1:47","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"6587:13:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6575:25:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12827,"nodeType":"ExpressionStatement","src":"6575:25:47"},{"expression":{"id":12837,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":12828,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12758,"src":"6616:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12829,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12760,"src":"6620:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12830,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12762,"src":"6624:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12831,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"6615:12:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12833,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12758,"src":"6640:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12834,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12760,"src":"6644:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12835,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12762,"src":"6648:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12832,"name":"jacDouble","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12992,"src":"6630:9:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256,uint256,uint256)"}},"id":12836,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6630:21:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"src":"6615:36:47","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":12838,"nodeType":"ExpressionStatement","src":"6615:36:47"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12799,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12797,"name":"remaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12782,"src":"6424:9:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":12798,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6437:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"6424:14:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12840,"nodeType":"WhileStatement","src":"6417:246:47"},{"expression":{"components":[{"id":12841,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12786,"src":"6681:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12842,"name":"qy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12790,"src":"6685:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12843,"name":"qz","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12794,"src":"6689:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12844,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"6680:12:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"functionReturnParameters":12770,"id":12845,"nodeType":"Return","src":"6673:19:47"}]},"documentation":{"id":12754,"nodeType":"StructuredDocumentation","src":"5547:348:47","text":"@dev Multiply point (x, y, z) times d.\n Source: https://github.com/witnet/elliptic-curve-solidity/blob/master/contracts/EllipticCurve.sol\n @param _d scalar to multiply\n @param _x coordinate x of P1\n @param _y coordinate y of P1\n @param _z coordinate z of P1\n @return (qx, qy, qz) d*P1 in Jacobian"},"id":12847,"implemented":true,"kind":"function","modifiers":[],"name":"jacMul","nameLocation":"5910:6:47","nodeType":"FunctionDefinition","parameters":{"id":12763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12756,"mutability":"mutable","name":"_d","nameLocation":"5935:2:47","nodeType":"VariableDeclaration","scope":12847,"src":"5927:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12755,"name":"uint256","nodeType":"ElementaryTypeName","src":"5927:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12758,"mutability":"mutable","name":"_x","nameLocation":"5956:2:47","nodeType":"VariableDeclaration","scope":12847,"src":"5948:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12757,"name":"uint256","nodeType":"ElementaryTypeName","src":"5948:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12760,"mutability":"mutable","name":"_y","nameLocation":"5977:2:47","nodeType":"VariableDeclaration","scope":12847,"src":"5969:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12759,"name":"uint256","nodeType":"ElementaryTypeName","src":"5969:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12762,"mutability":"mutable","name":"_z","nameLocation":"5998:2:47","nodeType":"VariableDeclaration","scope":12847,"src":"5990:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12761,"name":"uint256","nodeType":"ElementaryTypeName","src":"5990:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5916:91:47"},"returnParameters":{"id":12770,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12765,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12847,"src":"6072:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12764,"name":"uint256","nodeType":"ElementaryTypeName","src":"6072:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12767,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12847,"src":"6094:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12766,"name":"uint256","nodeType":"ElementaryTypeName","src":"6094:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12769,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12847,"src":"6116:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12768,"name":"uint256","nodeType":"ElementaryTypeName","src":"6116:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6057:77:47"},"scope":13216,"src":"5901:799:47","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12991,"nodeType":"Block","src":"7237:1149:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12863,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12854,"src":"7252:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12864,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7258:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7252:7:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":12871,"nodeType":"IfStatement","src":"7248:32:47","trueBody":{"expression":{"components":[{"id":12866,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12850,"src":"7269:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12867,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12852,"src":"7273:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12868,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12854,"src":"7277:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12869,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7268:12:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"functionReturnParameters":12862,"id":12870,"nodeType":"Return","src":"7261:19:47"}},{"assignments":[12873],"declarations":[{"constant":false,"id":12873,"mutability":"mutable","name":"x","nameLocation":"7602:1:47","nodeType":"VariableDeclaration","scope":12991,"src":"7594:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12872,"name":"uint256","nodeType":"ElementaryTypeName","src":"7594:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12879,"initialValue":{"arguments":[{"id":12875,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12850,"src":"7613:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12876,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12850,"src":"7617:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12877,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"7621:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12874,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"7606:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12878,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7606:17:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7594:29:47"},{"assignments":[12881],"declarations":[{"constant":false,"id":12881,"mutability":"mutable","name":"y","nameLocation":"7649:1:47","nodeType":"VariableDeclaration","scope":12991,"src":"7641:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12880,"name":"uint256","nodeType":"ElementaryTypeName","src":"7641:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12887,"initialValue":{"arguments":[{"id":12883,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12852,"src":"7660:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12884,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12852,"src":"7664:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12885,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"7668:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12882,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"7653:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12886,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7653:17:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7641:29:47"},{"assignments":[12889],"declarations":[{"constant":false,"id":12889,"mutability":"mutable","name":"z","nameLocation":"7696:1:47","nodeType":"VariableDeclaration","scope":12991,"src":"7688:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12888,"name":"uint256","nodeType":"ElementaryTypeName","src":"7688:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12895,"initialValue":{"arguments":[{"id":12891,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12854,"src":"7707:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12892,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12854,"src":"7711:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12893,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"7715:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12890,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"7700:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12894,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7700:17:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7688:29:47"},{"assignments":[12897],"declarations":[{"constant":false,"id":12897,"mutability":"mutable","name":"s","nameLocation":"7759:1:47","nodeType":"VariableDeclaration","scope":12991,"src":"7751:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12896,"name":"uint256","nodeType":"ElementaryTypeName","src":"7751:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12907,"initialValue":{"arguments":[{"hexValue":"34","id":12899,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7770:1:47","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},{"arguments":[{"id":12901,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12850,"src":"7780:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12902,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12881,"src":"7784:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12903,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"7787:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12900,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"7773:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12904,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7773:16:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12905,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"7791:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12898,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"7763:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12906,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7763:30:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7751:42:47"},{"assignments":[12909],"declarations":[{"constant":false,"id":12909,"mutability":"mutable","name":"m","nameLocation":"7826:1:47","nodeType":"VariableDeclaration","scope":12991,"src":"7818:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12908,"name":"uint256","nodeType":"ElementaryTypeName","src":"7818:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12927,"initialValue":{"arguments":[{"arguments":[{"hexValue":"33","id":12912,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7844:1:47","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},{"id":12913,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12873,"src":"7847:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12914,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"7850:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12911,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"7837:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12915,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7837:15:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":12917,"name":"A","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12209,"src":"7861:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":12919,"name":"z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12889,"src":"7871:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12920,"name":"z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12889,"src":"7874:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12921,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"7877:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12918,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"7864:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7864:15:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12923,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"7881:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12916,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"7854:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12924,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7854:29:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12925,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"7885:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12910,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"7830:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7830:57:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7818:69:47"},{"expression":{"id":12944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12928,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12873,"src":"8099:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":12931,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12909,"src":"8117:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12932,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12909,"src":"8120:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12933,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"8123:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12930,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"8110:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12934,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8110:15:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12935,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"8127:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":12937,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12897,"src":"8138:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12938,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12897,"src":"8141:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12939,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"8144:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12936,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"8131:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12940,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8131:15:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8127:19:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12942,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"8148:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12929,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"8103:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8103:47:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8099:51:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12945,"nodeType":"ExpressionStatement","src":"8099:51:47"},{"expression":{"id":12972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12946,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12881,"src":"8195:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":12949,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12909,"src":"8213:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":12951,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12897,"src":"8223:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12954,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12952,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"8226:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12953,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12873,"src":"8230:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8226:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12955,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"8233:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12950,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"8216:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12956,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8216:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12957,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"8237:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12948,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"8206:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12958,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8206:33:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12959,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"8241:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"hexValue":"38","id":12961,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8252:1:47","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"arguments":[{"id":12963,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12881,"src":"8262:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12964,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12881,"src":"8265:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12965,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"8268:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12962,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"8255:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12966,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8255:15:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12967,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"8272:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12960,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"8245:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8245:29:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8241:33:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12970,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"8276:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12947,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"8199:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8199:79:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8195:83:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12973,"nodeType":"ExpressionStatement","src":"8195:83:47"},{"expression":{"id":12984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12974,"name":"z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12889,"src":"8314:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"32","id":12976,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8325:1:47","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},{"arguments":[{"id":12978,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12852,"src":"8335:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12979,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12854,"src":"8339:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12980,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"8343:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12977,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"8328:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12981,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8328:17:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12982,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"8347:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12975,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"8318:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":12983,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8318:31:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8314:35:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12985,"nodeType":"ExpressionStatement","src":"8314:35:47"},{"expression":{"components":[{"id":12986,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12873,"src":"8370:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12987,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12881,"src":"8373:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12988,"name":"z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12889,"src":"8376:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12989,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8369:9:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"functionReturnParameters":12862,"id":12990,"nodeType":"Return","src":"8362:16:47"}]},"documentation":{"id":12848,"nodeType":"StructuredDocumentation","src":"6708:302:47","text":"@dev Doubles a points (x, y, z).\n Source: https://github.com/witnet/elliptic-curve-solidity/blob/master/contracts/EllipticCurve.sol\n @param _x coordinate x of P1\n @param _y coordinate y of P1\n @param _z coordinate z of P1\n @return (qx, qy, qz) 2P in Jacobian"},"id":12992,"implemented":true,"kind":"function","modifiers":[],"name":"jacDouble","nameLocation":"7025:9:47","nodeType":"FunctionDefinition","parameters":{"id":12855,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12850,"mutability":"mutable","name":"_x","nameLocation":"7053:2:47","nodeType":"VariableDeclaration","scope":12992,"src":"7045:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12849,"name":"uint256","nodeType":"ElementaryTypeName","src":"7045:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12852,"mutability":"mutable","name":"_y","nameLocation":"7074:2:47","nodeType":"VariableDeclaration","scope":12992,"src":"7066:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12851,"name":"uint256","nodeType":"ElementaryTypeName","src":"7066:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12854,"mutability":"mutable","name":"_z","nameLocation":"7095:2:47","nodeType":"VariableDeclaration","scope":12992,"src":"7087:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12853,"name":"uint256","nodeType":"ElementaryTypeName","src":"7087:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7034:70:47"},"returnParameters":{"id":12862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12857,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12992,"src":"7169:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12856,"name":"uint256","nodeType":"ElementaryTypeName","src":"7169:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12859,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12992,"src":"7191:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12858,"name":"uint256","nodeType":"ElementaryTypeName","src":"7191:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12861,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12992,"src":"7213:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12860,"name":"uint256","nodeType":"ElementaryTypeName","src":"7213:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7154:77:47"},"scope":13216,"src":"7016:1370:47","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13075,"nodeType":"Block","src":"8982:533:47","statements":[{"assignments":[13013],"declarations":[{"constant":false,"id":13013,"mutability":"mutable","name":"x","nameLocation":"9001:1:47","nodeType":"VariableDeclaration","scope":13075,"src":"8993:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13012,"name":"uint256","nodeType":"ElementaryTypeName","src":"8993:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13015,"initialValue":{"hexValue":"30","id":13014,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9005:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"8993:13:47"},{"assignments":[13017],"declarations":[{"constant":false,"id":13017,"mutability":"mutable","name":"y","nameLocation":"9025:1:47","nodeType":"VariableDeclaration","scope":13075,"src":"9017:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13016,"name":"uint256","nodeType":"ElementaryTypeName","src":"9017:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13019,"initialValue":{"hexValue":"30","id":13018,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9029:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"9017:13:47"},{"assignments":[13021],"declarations":[{"constant":false,"id":13021,"mutability":"mutable","name":"z","nameLocation":"9049:1:47","nodeType":"VariableDeclaration","scope":13075,"src":"9041:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13020,"name":"uint256","nodeType":"ElementaryTypeName","src":"9041:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13023,"initialValue":{"hexValue":"30","id":13022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9053:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"9041:13:47"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13024,"name":"_x1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12995,"src":"9109:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":13025,"name":"_x2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13001,"src":"9116:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9109:10:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13067,"nodeType":"Block","src":"9367:75:47","statements":[{"expression":{"id":13065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":13053,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13013,"src":"9383:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13054,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13017,"src":"9386:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13055,"name":"z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13021,"src":"9389:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":13056,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"9382:9:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13058,"name":"_x1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12995,"src":"9401:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13059,"name":"_y1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12997,"src":"9406:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13060,"name":"_z1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12999,"src":"9411:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13061,"name":"_x2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13001,"src":"9416:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13062,"name":"_y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13003,"src":"9421:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13063,"name":"_z2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13005,"src":"9426:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13057,"name":"jacAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12753,"src":"9394:6:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256,uint256,uint256,uint256,uint256) pure returns (uint256,uint256,uint256)"}},"id":13064,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9394:36:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"src":"9382:48:47","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13066,"nodeType":"ExpressionStatement","src":"9382:48:47"}]},"id":13068,"nodeType":"IfStatement","src":"9105:337:47","trueBody":{"id":13052,"nodeType":"Block","src":"9121:240:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13028,"name":"_y1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12997,"src":"9178:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13029,"name":"_y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13003,"src":"9183:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13030,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"9188:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13027,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"9171:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":13031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9171:19:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":13032,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9194:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9171:24:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":13050,"nodeType":"Block","src":"9251:99:47","statements":[{"expression":{"id":13048,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":13039,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13013,"src":"9299:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13040,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13017,"src":"9302:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13041,"name":"z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13021,"src":"9305:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":13042,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"9298:9:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":13044,"name":"_x1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12995,"src":"9320:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13045,"name":"_y1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12997,"src":"9325:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13046,"name":"_z1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12999,"src":"9330:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13043,"name":"jacDouble","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12992,"src":"9310:9:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256,uint256,uint256)"}},"id":13047,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9310:24:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256,uint256)"}},"src":"9298:36:47","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13049,"nodeType":"ExpressionStatement","src":"9298:36:47"}]},"id":13051,"nodeType":"IfStatement","src":"9167:183:47","trueBody":{"id":13038,"nodeType":"Block","src":"9197:48:47","statements":[{"expression":{"components":[{"hexValue":"30","id":13034,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9224:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"30","id":13035,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9227:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":13036,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"9223:6:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_rational_0_by_1_$_t_rational_0_by_1_$","typeString":"tuple(int_const 0,int_const 0)"}},"functionReturnParameters":13011,"id":13037,"nodeType":"Return","src":"9216:13:47"}]}}]}},{"expression":{"arguments":[{"id":13070,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13013,"src":"9499:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13071,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13017,"src":"9502:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13072,"name":"z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13021,"src":"9505:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13069,"name":"toAffine","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13130,"src":"9490:8:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256,uint256)"}},"id":13073,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9490:17:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"functionReturnParameters":13011,"id":13074,"nodeType":"Return","src":"9483:24:47"}]},"documentation":{"id":12993,"nodeType":"StructuredDocumentation","src":"8394:387:47","text":"@dev Add two points (x1, y1) and (x2, y2) in affine coordinates.\n Source: https://github.com/witnet/elliptic-curve-solidity/blob/master/contracts/EllipticCurve.sol\n @param _x1 coordinate x of P1\n @param _y1 coordinate y of P1\n @param _x2 coordinate x of P2\n @param _y2 coordinate y of P2\n @return (qx, qy) = P1+P2 in affine coordinates"},"id":13076,"implemented":true,"kind":"function","modifiers":[],"name":"ecAdd","nameLocation":"8796:5:47","nodeType":"FunctionDefinition","parameters":{"id":13006,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12995,"mutability":"mutable","name":"_x1","nameLocation":"8820:3:47","nodeType":"VariableDeclaration","scope":13076,"src":"8812:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12994,"name":"uint256","nodeType":"ElementaryTypeName","src":"8812:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12997,"mutability":"mutable","name":"_y1","nameLocation":"8842:3:47","nodeType":"VariableDeclaration","scope":13076,"src":"8834:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12996,"name":"uint256","nodeType":"ElementaryTypeName","src":"8834:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12999,"mutability":"mutable","name":"_z1","nameLocation":"8864:3:47","nodeType":"VariableDeclaration","scope":13076,"src":"8856:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12998,"name":"uint256","nodeType":"ElementaryTypeName","src":"8856:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13001,"mutability":"mutable","name":"_x2","nameLocation":"8886:3:47","nodeType":"VariableDeclaration","scope":13076,"src":"8878:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13000,"name":"uint256","nodeType":"ElementaryTypeName","src":"8878:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13003,"mutability":"mutable","name":"_y2","nameLocation":"8908:3:47","nodeType":"VariableDeclaration","scope":13076,"src":"8900:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13002,"name":"uint256","nodeType":"ElementaryTypeName","src":"8900:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13005,"mutability":"mutable","name":"_z2","nameLocation":"8930:3:47","nodeType":"VariableDeclaration","scope":13076,"src":"8922:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13004,"name":"uint256","nodeType":"ElementaryTypeName","src":"8922:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8801:139:47"},"returnParameters":{"id":13011,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13008,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13076,"src":"8964:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13007,"name":"uint256","nodeType":"ElementaryTypeName","src":"8964:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13010,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13076,"src":"8973:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13009,"name":"uint256","nodeType":"ElementaryTypeName","src":"8973:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8963:18:47"},"scope":13216,"src":"8787:728:47","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13129,"nodeType":"Block","src":"10010:228:47","statements":[{"assignments":[13091],"declarations":[{"constant":false,"id":13091,"mutability":"mutable","name":"zInv","nameLocation":"10029:4:47","nodeType":"VariableDeclaration","scope":13129,"src":"10021:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13090,"name":"uint256","nodeType":"ElementaryTypeName","src":"10021:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13096,"initialValue":{"arguments":[{"id":13093,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13083,"src":"10043:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13094,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"10047:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13092,"name":"invMod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13215,"src":"10036:6:47","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":13095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10036:13:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10021:28:47"},{"assignments":[13098],"declarations":[{"constant":false,"id":13098,"mutability":"mutable","name":"zInv2","nameLocation":"10068:5:47","nodeType":"VariableDeclaration","scope":13129,"src":"10060:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13097,"name":"uint256","nodeType":"ElementaryTypeName","src":"10060:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13104,"initialValue":{"arguments":[{"id":13100,"name":"zInv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13091,"src":"10083:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13101,"name":"zInv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13091,"src":"10089:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13102,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"10095:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13099,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"10076:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":13103,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10076:21:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10060:37:47"},{"assignments":[13106],"declarations":[{"constant":false,"id":13106,"mutability":"mutable","name":"x2","nameLocation":"10116:2:47","nodeType":"VariableDeclaration","scope":13129,"src":"10108:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13105,"name":"uint256","nodeType":"ElementaryTypeName","src":"10108:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13112,"initialValue":{"arguments":[{"id":13108,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13079,"src":"10128:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13109,"name":"zInv2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13098,"src":"10132:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13110,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"10139:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13107,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"10121:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":13111,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10121:20:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10108:33:47"},{"assignments":[13114],"declarations":[{"constant":false,"id":13114,"mutability":"mutable","name":"y2","nameLocation":"10160:2:47","nodeType":"VariableDeclaration","scope":13129,"src":"10152:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13113,"name":"uint256","nodeType":"ElementaryTypeName","src":"10152:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13124,"initialValue":{"arguments":[{"id":13116,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13081,"src":"10172:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":13118,"name":"zInv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13091,"src":"10183:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13119,"name":"zInv2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13098,"src":"10189:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13120,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"10196:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13117,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"10176:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":13121,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10176:22:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13122,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12221,"src":"10200:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13115,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"10165:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":13123,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10165:37:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10152:50:47"},{"expression":{"components":[{"id":13125,"name":"x2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13106,"src":"10223:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13126,"name":"y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13114,"src":"10227:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":13127,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10222:8:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"functionReturnParameters":13089,"id":13128,"nodeType":"Return","src":"10215:15:47"}]},"documentation":{"id":13077,"nodeType":"StructuredDocumentation","src":"9523:352:47","text":"@dev Converts a point (x, y, z) expressed in Jacobian coordinates to affine coordinates (x', y', 1).\n Source: https://github.com/witnet/elliptic-curve-solidity/blob/master/contracts/EllipticCurve.sol\n @param _x coordinate x\n @param _y coordinate y\n @param _z coordinate z\n @return (x', y') affine coordinates"},"id":13130,"implemented":true,"kind":"function","modifiers":[],"name":"toAffine","nameLocation":"9890:8:47","nodeType":"FunctionDefinition","parameters":{"id":13084,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13079,"mutability":"mutable","name":"_x","nameLocation":"9917:2:47","nodeType":"VariableDeclaration","scope":13130,"src":"9909:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13078,"name":"uint256","nodeType":"ElementaryTypeName","src":"9909:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13081,"mutability":"mutable","name":"_y","nameLocation":"9938:2:47","nodeType":"VariableDeclaration","scope":13130,"src":"9930:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13080,"name":"uint256","nodeType":"ElementaryTypeName","src":"9930:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13083,"mutability":"mutable","name":"_z","nameLocation":"9959:2:47","nodeType":"VariableDeclaration","scope":13130,"src":"9951:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13082,"name":"uint256","nodeType":"ElementaryTypeName","src":"9951:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9898:70:47"},"returnParameters":{"id":13089,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13086,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13130,"src":"9992:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13085,"name":"uint256","nodeType":"ElementaryTypeName","src":"9992:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13088,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13130,"src":"10001:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13087,"name":"uint256","nodeType":"ElementaryTypeName","src":"10001:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9991:18:47"},"scope":13216,"src":"9881:357:47","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13214,"nodeType":"Block","src":"10596:379:47","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":13151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":13147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13141,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13133,"src":"10615:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":13142,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10621:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10615:7:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13146,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13144,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13133,"src":"10626:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":13145,"name":"_pp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13135,"src":"10632:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10626:9:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10615:20:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13148,"name":"_pp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13135,"src":"10639:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":13149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10646:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10639:8:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10615:32:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"496e76616c6964206e756d626572","id":13152,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"10649:16:47","typeDescriptions":{"typeIdentifier":"t_stringliteral_f10345bf174b7296e0343b593f8b22d6d65d2b16a2522b6b74d9848a96db003a","typeString":"literal_string \"Invalid number\""},"value":"Invalid number"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_f10345bf174b7296e0343b593f8b22d6d65d2b16a2522b6b74d9848a96db003a","typeString":"literal_string \"Invalid number\""}],"id":13140,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"10607:7:47","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":13153,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10607:59:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13154,"nodeType":"ExpressionStatement","src":"10607:59:47"},{"assignments":[13156],"declarations":[{"constant":false,"id":13156,"mutability":"mutable","name":"q","nameLocation":"10685:1:47","nodeType":"VariableDeclaration","scope":13214,"src":"10677:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13155,"name":"uint256","nodeType":"ElementaryTypeName","src":"10677:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13158,"initialValue":{"hexValue":"30","id":13157,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10689:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"10677:13:47"},{"assignments":[13160],"declarations":[{"constant":false,"id":13160,"mutability":"mutable","name":"newT","nameLocation":"10709:4:47","nodeType":"VariableDeclaration","scope":13214,"src":"10701:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13159,"name":"uint256","nodeType":"ElementaryTypeName","src":"10701:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13162,"initialValue":{"hexValue":"31","id":13161,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10716:1:47","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"10701:16:47"},{"assignments":[13164],"declarations":[{"constant":false,"id":13164,"mutability":"mutable","name":"r","nameLocation":"10736:1:47","nodeType":"VariableDeclaration","scope":13214,"src":"10728:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13163,"name":"uint256","nodeType":"ElementaryTypeName","src":"10728:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13166,"initialValue":{"id":13165,"name":"_pp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13135,"src":"10740:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10728:15:47"},{"assignments":[13168],"declarations":[{"constant":false,"id":13168,"mutability":"mutable","name":"t","nameLocation":"10762:1:47","nodeType":"VariableDeclaration","scope":13214,"src":"10754:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13167,"name":"uint256","nodeType":"ElementaryTypeName","src":"10754:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13169,"nodeType":"VariableDeclarationStatement","src":"10754:9:47"},{"body":{"id":13210,"nodeType":"Block","src":"10790:157:47","statements":[{"expression":{"id":13177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13173,"name":"t","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13168,"src":"10805:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13176,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13174,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13164,"src":"10809:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":13175,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13133,"src":"10813:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10809:6:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10805:10:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13178,"nodeType":"ExpressionStatement","src":"10805:10:47"},{"expression":{"id":13196,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":13179,"name":"q","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13156,"src":"10831:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13180,"name":"newT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13160,"src":"10834:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":13181,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"10830:9:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":13182,"name":"newT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13160,"src":"10843:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":13184,"name":"q","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13156,"src":"10856:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13185,"name":"_pp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13135,"src":"10860:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":13187,"name":"t","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13168,"src":"10873:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13188,"name":"newT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13160,"src":"10876:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13189,"name":"_pp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13135,"src":"10882:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13186,"name":"mulmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-16,"src":"10866:6:47","typeDescriptions":{"typeIdentifier":"t_function_mulmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":13190,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10866:20:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10860:26:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":13192,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10859:28:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13193,"name":"_pp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13135,"src":"10889:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":13183,"name":"addmod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-2,"src":"10849:6:47","typeDescriptions":{"typeIdentifier":"t_function_addmod_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":13194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10849:44:47","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":13195,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10842:52:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"src":"10830:64:47","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13197,"nodeType":"ExpressionStatement","src":"10830:64:47"},{"expression":{"id":13208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":13198,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13164,"src":"10910:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13199,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13133,"src":"10913:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":13200,"isConstant":false,"isInlineArray":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"TupleExpression","src":"10909:7:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"id":13201,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13133,"src":"10920:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13202,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13164,"src":"10924:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13205,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13203,"name":"t","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13168,"src":"10928:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":13204,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13133,"src":"10932:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10928:6:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10924:10:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":13207,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10919:16:47","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"src":"10909:26:47","typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13209,"nodeType":"ExpressionStatement","src":"10909:26:47"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13170,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13133,"src":"10781:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":13171,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10787:1:47","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10781:7:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":13211,"nodeType":"WhileStatement","src":"10774:173:47"},{"expression":{"id":13212,"name":"q","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13156,"src":"10966:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":13139,"id":13213,"nodeType":"Return","src":"10959:8:47"}]},"documentation":{"id":13131,"nodeType":"StructuredDocumentation","src":"10246:271:47","text":"@dev Modular euclidean inverse of a number (mod p).\n Source: https://github.com/witnet/elliptic-curve-solidity/blob/master/contracts/EllipticCurve.sol\n @param _x The number\n @param _pp The modulus\n @return q such that x*q = 1 (mod _pp)"},"id":13215,"implemented":true,"kind":"function","modifiers":[],"name":"invMod","nameLocation":"10532:6:47","nodeType":"FunctionDefinition","parameters":{"id":13136,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13133,"mutability":"mutable","name":"_x","nameLocation":"10547:2:47","nodeType":"VariableDeclaration","scope":13215,"src":"10539:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13132,"name":"uint256","nodeType":"ElementaryTypeName","src":"10539:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":13135,"mutability":"mutable","name":"_pp","nameLocation":"10559:3:47","nodeType":"VariableDeclaration","scope":13215,"src":"10551:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13134,"name":"uint256","nodeType":"ElementaryTypeName","src":"10551:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10538:25:47"},"returnParameters":{"id":13139,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13138,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13215,"src":"10587:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13137,"name":"uint256","nodeType":"ElementaryTypeName","src":"10587:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10586:9:47"},"scope":13216,"src":"10523:452:47","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":13217,"src":"299:10679:47","usedErrors":[],"usedEvents":[]}],"src":"35:10943:47"},"id":47},"witnet-solidity-bridge/contracts/libs/Witnet.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/libs/Witnet.sol","exportedSymbols":{"Bech32":[12200],"Secp256k1":[13216],"Witnet":[16767],"WitnetBuffer":[18657],"WitnetCBOR":[20200]},"id":16768,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":13218,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:31:48"},{"absolutePath":"witnet-solidity-bridge/contracts/libs/Bech32.sol","file":"./Bech32.sol","id":13219,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16768,"sourceUnit":12201,"src":"70:22:48","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/libs/Secp256k1.sol","file":"./Secp256k1.sol","id":13220,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16768,"sourceUnit":13217,"src":"94:25:48","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol","file":"./WitnetCBOR.sol","id":13221,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16768,"sourceUnit":20201,"src":"121:26:48","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Witnet","contractDependencies":[],"contractKind":"library","fullyImplemented":true,"id":16767,"linearizedBaseContracts":[16767],"name":"Witnet","nameLocation":"159:6:48","nodeType":"ContractDefinition","nodes":[{"global":false,"id":13225,"libraryName":{"id":13222,"name":"Bech32","nameLocations":["181:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":12200,"src":"181:6:48"},"nodeType":"UsingForDirective","src":"175:32:48","typeName":{"id":13224,"nodeType":"UserDefinedTypeName","pathNode":{"id":13223,"name":"Witnet.Address","nameLocations":["192:6:48","199:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"192:14:48"},"referencedDeclaration":13240,"src":"192:14:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}}},{"global":false,"id":13229,"libraryName":{"id":13226,"name":"WitnetBuffer","nameLocations":["219:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":18657,"src":"219:12:48"},"nodeType":"UsingForDirective","src":"213:43:48","typeName":{"id":13228,"nodeType":"UserDefinedTypeName","pathNode":{"id":13227,"name":"WitnetBuffer.Buffer","nameLocations":["236:12:48","249:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"236:19:48"},"referencedDeclaration":16790,"src":"236:19:48","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}}},{"global":false,"id":13233,"libraryName":{"id":13230,"name":"WitnetCBOR","nameLocations":["268:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":20200,"src":"268:10:48"},"nodeType":"UsingForDirective","src":"262:37:48","typeName":{"id":13232,"nodeType":"UserDefinedTypeName","pathNode":{"id":13231,"name":"WitnetCBOR.CBOR","nameLocations":["283:10:48","294:4:48"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"283:15:48"},"referencedDeclaration":18684,"src":"283:15:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}}},{"global":false,"id":13238,"libraryName":{"id":13234,"name":"WitnetCBOR","nameLocations":["311:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":20200,"src":"311:10:48"},"nodeType":"UsingForDirective","src":"305:39:48","typeName":{"baseType":{"id":13236,"nodeType":"UserDefinedTypeName","pathNode":{"id":13235,"name":"WitnetCBOR.CBOR","nameLocations":["326:10:48","337:4:48"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"326:15:48"},"referencedDeclaration":18684,"src":"326:15:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":13237,"nodeType":"ArrayTypeName","src":"326:17:48","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}}},{"canonicalName":"Witnet.Address","id":13240,"name":"Address","nameLocation":"357:7:48","nodeType":"UserDefinedValueTypeDefinition","src":"352:24:48","underlyingType":{"id":13239,"name":"bytes20","nodeType":"ElementaryTypeName","src":"368:7:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}},{"canonicalName":"Witnet.BlockNumber","id":13242,"name":"BlockNumber","nameLocation":"389:11:48","nodeType":"UserDefinedValueTypeDefinition","src":"384:27:48","underlyingType":{"id":13241,"name":"uint64","nodeType":"ElementaryTypeName","src":"404:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}},{"canonicalName":"Witnet.QueryEvmReward","id":13244,"name":"QueryEvmReward","nameLocation":"428:14:48","nodeType":"UserDefinedValueTypeDefinition","src":"423:30:48","underlyingType":{"id":13243,"name":"uint72","nodeType":"ElementaryTypeName","src":"446:6:48","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}}},{"canonicalName":"Witnet.QueryHash","id":13246,"name":"QueryHash","nameLocation":"464:9:48","nodeType":"UserDefinedValueTypeDefinition","src":"459:26:48","underlyingType":{"id":13245,"name":"bytes15","nodeType":"ElementaryTypeName","src":"477:7:48","typeDescriptions":{"typeIdentifier":"t_bytes15","typeString":"bytes15"}}},{"canonicalName":"Witnet.QueryId","id":13248,"name":"QueryId","nameLocation":"496:7:48","nodeType":"UserDefinedValueTypeDefinition","src":"491:23:48","underlyingType":{"id":13247,"name":"uint64","nodeType":"ElementaryTypeName","src":"507:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}},{"canonicalName":"Witnet.RadonHash","id":13250,"name":"RadonHash","nameLocation":"527:9:48","nodeType":"UserDefinedValueTypeDefinition","src":"522:26:48","underlyingType":{"id":13249,"name":"bytes32","nodeType":"ElementaryTypeName","src":"540:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"canonicalName":"Witnet.ServiceProvider","id":13252,"name":"ServiceProvider","nameLocation":"559:15:48","nodeType":"UserDefinedValueTypeDefinition","src":"554:32:48","underlyingType":{"id":13251,"name":"bytes20","nodeType":"ElementaryTypeName","src":"578:7:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}},{"canonicalName":"Witnet.Timestamp","id":13254,"name":"Timestamp","nameLocation":"603:9:48","nodeType":"UserDefinedValueTypeDefinition","src":"598:25:48","underlyingType":{"id":13253,"name":"uint64","nodeType":"ElementaryTypeName","src":"616:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}},{"canonicalName":"Witnet.TransactionHash","id":13256,"name":"TransactionHash","nameLocation":"634:15:48","nodeType":"UserDefinedValueTypeDefinition","src":"629:32:48","underlyingType":{"id":13255,"name":"bytes32","nodeType":"ElementaryTypeName","src":"653:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"constant":true,"id":13259,"mutability":"constant","name":"WIT_1_GENESIS_TIMESTAMP","nameLocation":"695:23:48","nodeType":"VariableDeclaration","scope":16767,"src":"669:53:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13257,"name":"uint32","nodeType":"ElementaryTypeName","src":"669:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"30","id":13258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"721:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"constant":true,"id":13262,"mutability":"constant","name":"WIT_1_SECS_PER_EPOCH","nameLocation":"766:20:48","nodeType":"VariableDeclaration","scope":16767,"src":"740:51:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13260,"name":"uint32","nodeType":"ElementaryTypeName","src":"740:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"3435","id":13261,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"789:2:48","typeDescriptions":{"typeIdentifier":"t_rational_45_by_1","typeString":"int_const 45"},"value":"45"},"visibility":"internal"},{"constant":true,"id":13265,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_INDEX","nameLocation":"826:26:48","nodeType":"VariableDeclaration","scope":16767,"src":"800:56:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13263,"name":"uint32","nodeType":"ElementaryTypeName","src":"800:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"30","id":13264,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"855:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"constant":true,"id":13268,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_PREV_INDEX","nameLocation":"902:31:48","nodeType":"VariableDeclaration","scope":16767,"src":"876:61:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13266,"name":"uint32","nodeType":"ElementaryTypeName","src":"876:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"30","id":13267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"936:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"constant":true,"id":13271,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_PREV_ROOT","nameLocation":"978:30:48","nodeType":"VariableDeclaration","scope":16767,"src":"952:60:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":13269,"name":"bytes24","nodeType":"ElementaryTypeName","src":"952:7:48","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"value":{"hexValue":"30","id":13270,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1011:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"constant":true,"id":13274,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_DDR_TALLIES_MERKLE_ROOT","nameLocation":"1054:44:48","nodeType":"VariableDeclaration","scope":16767,"src":"1028:74:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13272,"name":"bytes16","nodeType":"ElementaryTypeName","src":"1028:7:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"value":{"hexValue":"30","id":13273,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1101:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"constant":true,"id":13277,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_DRO_TALLIES_MERKLE_ROOT","nameLocation":"1143:44:48","nodeType":"VariableDeclaration","scope":16767,"src":"1117:74:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13275,"name":"bytes16","nodeType":"ElementaryTypeName","src":"1117:7:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"value":{"hexValue":"30","id":13276,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1190:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"constant":true,"id":13280,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_NEXT_COMMITTEE_AGG_PUBKEY_0","nameLocation":"1232:48:48","nodeType":"VariableDeclaration","scope":16767,"src":"1206:78:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13278,"name":"uint256","nodeType":"ElementaryTypeName","src":"1206:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":13279,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1283:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"constant":true,"id":13283,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_NEXT_COMMITTEE_AGG_PUBKEY_1","nameLocation":"1324:48:48","nodeType":"VariableDeclaration","scope":16767,"src":"1298:78:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13281,"name":"uint256","nodeType":"ElementaryTypeName","src":"1298:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":13282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1375:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"constant":true,"id":13286,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_NEXT_COMMITTEE_AGG_PUBKEY_2","nameLocation":"1416:48:48","nodeType":"VariableDeclaration","scope":16767,"src":"1390:78:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13284,"name":"uint256","nodeType":"ElementaryTypeName","src":"1390:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":13285,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1467:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"constant":true,"id":13289,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_NEXT_COMMITTEE_AGG_PUBKEY_3","nameLocation":"1508:48:48","nodeType":"VariableDeclaration","scope":16767,"src":"1482:78:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13287,"name":"uint256","nodeType":"ElementaryTypeName","src":"1482:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":13288,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1559:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"constant":true,"id":13292,"mutability":"constant","name":"WIT_2_GENESIS_EPOCH","nameLocation":"1600:19:48","nodeType":"VariableDeclaration","scope":16767,"src":"1574:49:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13290,"name":"uint32","nodeType":"ElementaryTypeName","src":"1574:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"30","id":13291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1622:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"constant":true,"id":13295,"mutability":"constant","name":"WIT_2_GENESIS_TIMESTAMP","nameLocation":"1668:23:48","nodeType":"VariableDeclaration","scope":16767,"src":"1642:53:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13293,"name":"uint32","nodeType":"ElementaryTypeName","src":"1642:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"30","id":13294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1694:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"constant":true,"id":13298,"mutability":"constant","name":"WIT_2_SECS_PER_EPOCH","nameLocation":"1736:20:48","nodeType":"VariableDeclaration","scope":16767,"src":"1710:51:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13296,"name":"uint32","nodeType":"ElementaryTypeName","src":"1710:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"3230","id":13297,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1759:2:48","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"visibility":"internal"},{"constant":true,"id":13301,"mutability":"constant","name":"WIT_2_FAST_FORWARD_COMMITTEE_SIZE","nameLocation":"1804:33:48","nodeType":"VariableDeclaration","scope":16767,"src":"1778:64:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13299,"name":"uint32","nodeType":"ElementaryTypeName","src":"1778:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"3634","id":13300,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1840:2:48","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"visibility":"internal"},{"body":{"id":13323,"nodeType":"Block","src":"1921:84:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"id":13315,"name":"wrb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13303,"src":"1975:3:48","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":13314,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1967:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13313,"name":"address","nodeType":"ElementaryTypeName","src":"1967:7:48","typeDescriptions":{}}},"id":13316,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1967:12:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":13317,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"1981:5:48","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":13318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1987:7:48","memberName":"chainid","nodeType":"MemberAccess","src":"1981:13:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":13311,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1956:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":13312,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1960:6:48","memberName":"encode","nodeType":"MemberAccess","src":"1956:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":13319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1956:39:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":13310,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"1946:9:48","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":13320,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1946:50:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":13309,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1939:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":13308,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1939:6:48","typeDescriptions":{}}},"id":13321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1939:58:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":13307,"id":13322,"nodeType":"Return","src":"1932:65:48"}]},"id":13324,"implemented":true,"kind":"function","modifiers":[],"name":"channel","nameLocation":"1869:7:48","nodeType":"FunctionDefinition","parameters":{"id":13304,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13303,"mutability":"mutable","name":"wrb","nameLocation":"1885:3:48","nodeType":"VariableDeclaration","scope":13324,"src":"1877:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13302,"name":"address","nodeType":"ElementaryTypeName","src":"1877:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1876:13:48"},"returnParameters":{"id":13307,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13306,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13324,"src":"1913:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13305,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1913:6:48","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1912:8:48"},"scope":16767,"src":"1860:145:48","stateMutability":"view","virtual":false,"visibility":"internal"},{"canonicalName":"Witnet.Beacon","id":13339,"members":[{"constant":false,"id":13326,"mutability":"mutable","name":"index","nameLocation":"2046:5:48","nodeType":"VariableDeclaration","scope":13339,"src":"2038:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13325,"name":"uint32","nodeType":"ElementaryTypeName","src":"2038:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13328,"mutability":"mutable","name":"prevIndex","nameLocation":"2070:9:48","nodeType":"VariableDeclaration","scope":13339,"src":"2062:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13327,"name":"uint32","nodeType":"ElementaryTypeName","src":"2062:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13330,"mutability":"mutable","name":"prevRoot","nameLocation":"2098:8:48","nodeType":"VariableDeclaration","scope":13339,"src":"2090:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":13329,"name":"bytes24","nodeType":"ElementaryTypeName","src":"2090:7:48","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":13332,"mutability":"mutable","name":"ddrTalliesMerkleRoot","nameLocation":"2125:20:48","nodeType":"VariableDeclaration","scope":13339,"src":"2117:28:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13331,"name":"bytes16","nodeType":"ElementaryTypeName","src":"2117:7:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":13334,"mutability":"mutable","name":"droTalliesMerkleRoot","nameLocation":"2164:20:48","nodeType":"VariableDeclaration","scope":13339,"src":"2156:28:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13333,"name":"bytes16","nodeType":"ElementaryTypeName","src":"2156:7:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":13338,"mutability":"mutable","name":"nextCommitteeAggPubkey","nameLocation":"2206:22:48","nodeType":"VariableDeclaration","scope":13339,"src":"2195:33:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_storage_ptr","typeString":"uint256[4]"},"typeName":{"baseType":{"id":13335,"name":"uint256","nodeType":"ElementaryTypeName","src":"2195:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13337,"length":{"hexValue":"34","id":13336,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2203:1:48","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"nodeType":"ArrayTypeName","src":"2195:10:48","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_storage_ptr","typeString":"uint256[4]"}},"visibility":"internal"}],"name":"Beacon","nameLocation":"2020:6:48","nodeType":"StructDefinition","scope":16767,"src":"2013:223:48","visibility":"public"},{"canonicalName":"Witnet.DataPullReport","id":13356,"members":[{"constant":false,"id":13342,"mutability":"mutable","name":"queryId","nameLocation":"2285:7:48","nodeType":"VariableDeclaration","scope":13356,"src":"2277:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"},"typeName":{"id":13341,"nodeType":"UserDefinedTypeName","pathNode":{"id":13340,"name":"QueryId","nameLocations":["2277:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13248,"src":"2277:7:48"},"referencedDeclaration":13248,"src":"2277:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":13345,"mutability":"mutable","name":"queryHash","nameLocation":"2313:9:48","nodeType":"VariableDeclaration","scope":13356,"src":"2303:19:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13246","typeString":"Witnet.QueryHash"},"typeName":{"id":13344,"nodeType":"UserDefinedTypeName","pathNode":{"id":13343,"name":"QueryHash","nameLocations":["2303:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"2303:9:48"},"referencedDeclaration":13246,"src":"2303:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13246","typeString":"Witnet.QueryHash"}},"visibility":"internal"},{"constant":false,"id":13347,"mutability":"mutable","name":"witDrRelayerSignature","nameLocation":"2407:21:48","nodeType":"VariableDeclaration","scope":13356,"src":"2401:27:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":13346,"name":"bytes","nodeType":"ElementaryTypeName","src":"2401:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":13350,"mutability":"mutable","name":"witDrResultEpoch","nameLocation":"2483:16:48","nodeType":"VariableDeclaration","scope":13356,"src":"2471:28:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"},"typeName":{"id":13349,"nodeType":"UserDefinedTypeName","pathNode":{"id":13348,"name":"BlockNumber","nameLocations":["2471:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13242,"src":"2471:11:48"},"referencedDeclaration":13242,"src":"2471:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"visibility":"internal"},{"constant":false,"id":13352,"mutability":"mutable","name":"witDrResultCborBytes","nameLocation":"2516:20:48","nodeType":"VariableDeclaration","scope":13356,"src":"2510:26:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":13351,"name":"bytes","nodeType":"ElementaryTypeName","src":"2510:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":13355,"mutability":"mutable","name":"witDrTxHash","nameLocation":"2563:11:48","nodeType":"VariableDeclaration","scope":13356,"src":"2547:27:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":13354,"nodeType":"UserDefinedTypeName","pathNode":{"id":13353,"name":"TransactionHash","nameLocations":["2547:15:48"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"2547:15:48"},"referencedDeclaration":13256,"src":"2547:15:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"name":"DataPullReport","nameLocation":"2251:14:48","nodeType":"StructDefinition","scope":16767,"src":"2244:338:48","visibility":"public"},{"canonicalName":"Witnet.DataPushReport","id":13371,"members":[{"constant":false,"id":13359,"mutability":"mutable","name":"witDrTxHash","nameLocation":"2639:11:48","nodeType":"VariableDeclaration","scope":13371,"src":"2623:27:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":13358,"nodeType":"UserDefinedTypeName","pathNode":{"id":13357,"name":"TransactionHash","nameLocations":["2623:15:48"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"2623:15:48"},"referencedDeclaration":13256,"src":"2623:15:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"},{"constant":false,"id":13362,"mutability":"mutable","name":"queryRadHash","nameLocation":"2671:12:48","nodeType":"VariableDeclaration","scope":13371,"src":"2661:22:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":13361,"nodeType":"UserDefinedTypeName","pathNode":{"id":13360,"name":"RadonHash","nameLocations":["2661:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"2661:9:48"},"referencedDeclaration":13250,"src":"2661:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":13365,"mutability":"mutable","name":"queryParams","nameLocation":"2704:11:48","nodeType":"VariableDeclaration","scope":13371,"src":"2694:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":13364,"nodeType":"UserDefinedTypeName","pathNode":{"id":13363,"name":"QuerySLA","nameLocations":["2694:8:48"],"nodeType":"IdentifierPath","referencedDeclaration":13472,"src":"2694:8:48"},"referencedDeclaration":13472,"src":"2694:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"},{"constant":false,"id":13368,"mutability":"mutable","name":"resultTimestamp","nameLocation":"2736:15:48","nodeType":"VariableDeclaration","scope":13371,"src":"2726:25:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":13367,"nodeType":"UserDefinedTypeName","pathNode":{"id":13366,"name":"Timestamp","nameLocations":["2726:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"2726:9:48"},"referencedDeclaration":13254,"src":"2726:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":13370,"mutability":"mutable","name":"resultCborBytes","nameLocation":"2768:15:48","nodeType":"VariableDeclaration","scope":13371,"src":"2762:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":13369,"name":"bytes","nodeType":"ElementaryTypeName","src":"2762:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"DataPushReport","nameLocation":"2597:14:48","nodeType":"StructDefinition","scope":16767,"src":"2590:201:48","visibility":"public"},{"canonicalName":"Witnet.DataResult","documentation":{"id":13372,"nodeType":"StructuredDocumentation","src":"2799:72:48","text":"Data struct containing the Witnet-provided result to a Data Request."},"id":13388,"members":[{"constant":false,"id":13375,"mutability":"mutable","name":"status","nameLocation":"2922:6:48","nodeType":"VariableDeclaration","scope":13388,"src":"2906:22:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":13374,"nodeType":"UserDefinedTypeName","pathNode":{"id":13373,"name":"ResultStatus","nameLocations":["2906:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13729,"src":"2906:12:48"},"referencedDeclaration":13729,"src":"2906:12:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"},{"constant":false,"id":13378,"mutability":"mutable","name":"dataType","nameLocation":"2955:8:48","nodeType":"VariableDeclaration","scope":13388,"src":"2939:24:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":13377,"nodeType":"UserDefinedTypeName","pathNode":{"id":13376,"name":"RadonDataTypes","nameLocations":["2939:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13751,"src":"2939:14:48"},"referencedDeclaration":13751,"src":"2939:14:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"},{"constant":false,"id":13381,"mutability":"mutable","name":"drTxHash","nameLocation":"2990:8:48","nodeType":"VariableDeclaration","scope":13388,"src":"2974:24:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":13380,"nodeType":"UserDefinedTypeName","pathNode":{"id":13379,"name":"TransactionHash","nameLocations":["2974:15:48"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"2974:15:48"},"referencedDeclaration":13256,"src":"2974:15:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"},{"constant":false,"id":13384,"mutability":"mutable","name":"timestamp","nameLocation":"3025:9:48","nodeType":"VariableDeclaration","scope":13388,"src":"3009:25:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":13383,"nodeType":"UserDefinedTypeName","pathNode":{"id":13382,"name":"Timestamp","nameLocations":["3009:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"3009:9:48"},"referencedDeclaration":13254,"src":"3009:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":13387,"mutability":"mutable","name":"value","nameLocation":"3061:5:48","nodeType":"VariableDeclaration","scope":13388,"src":"3045:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":13386,"nodeType":"UserDefinedTypeName","pathNode":{"id":13385,"name":"WitnetCBOR.CBOR","nameLocations":["3045:10:48","3056:4:48"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"3045:15:48"},"referencedDeclaration":18684,"src":"3045:15:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"name":"DataResult","nameLocation":"2884:10:48","nodeType":"StructDefinition","scope":16767,"src":"2877:197:48","visibility":"public"},{"canonicalName":"Witnet.FastForward","id":13401,"members":[{"constant":false,"id":13391,"mutability":"mutable","name":"beacon","nameLocation":"3119:6:48","nodeType":"VariableDeclaration","scope":13401,"src":"3112:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon"},"typeName":{"id":13390,"nodeType":"UserDefinedTypeName","pathNode":{"id":13389,"name":"Beacon","nameLocations":["3112:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":13339,"src":"3112:6:48"},"referencedDeclaration":13339,"src":"3112:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon"}},"visibility":"internal"},{"constant":false,"id":13395,"mutability":"mutable","name":"committeeAggSignature","nameLocation":"3147:21:48","nodeType":"VariableDeclaration","scope":13401,"src":"3136:32:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$2_storage_ptr","typeString":"uint256[2]"},"typeName":{"baseType":{"id":13392,"name":"uint256","nodeType":"ElementaryTypeName","src":"3136:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13394,"length":{"hexValue":"32","id":13393,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3144:1:48","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"ArrayTypeName","src":"3136:10:48","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$2_storage_ptr","typeString":"uint256[2]"}},"visibility":"internal"},{"constant":false,"id":13400,"mutability":"mutable","name":"committeeMissingPubkeys","nameLocation":"3192:23:48","nodeType":"VariableDeclaration","scope":13401,"src":"3179:36:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_uint256_$4_storage_$dyn_storage_ptr","typeString":"uint256[4][]"},"typeName":{"baseType":{"baseType":{"id":13396,"name":"uint256","nodeType":"ElementaryTypeName","src":"3179:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13398,"length":{"hexValue":"34","id":13397,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3187:1:48","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"nodeType":"ArrayTypeName","src":"3179:10:48","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_storage_ptr","typeString":"uint256[4]"}},"id":13399,"nodeType":"ArrayTypeName","src":"3179:12:48","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_uint256_$4_storage_$dyn_storage_ptr","typeString":"uint256[4][]"}},"visibility":"internal"}],"name":"FastForward","nameLocation":"3089:11:48","nodeType":"StructDefinition","scope":16767,"src":"3082:141:48","visibility":"public"},{"canonicalName":"Witnet.Query","documentation":{"id":13402,"nodeType":"StructuredDocumentation","src":"3231:110:48","text":"Struct containing both request and response data related to every query posted to the Witnet Request Board"},"id":13421,"members":[{"constant":false,"id":13405,"mutability":"mutable","name":"request","nameLocation":"3384:7:48","nodeType":"VariableDeclaration","scope":13421,"src":"3371:20:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_QueryRequest_$13448_storage_ptr","typeString":"struct Witnet.QueryRequest"},"typeName":{"id":13404,"nodeType":"UserDefinedTypeName","pathNode":{"id":13403,"name":"QueryRequest","nameLocations":["3371:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13448,"src":"3371:12:48"},"referencedDeclaration":13448,"src":"3371:12:48","typeDescriptions":{"typeIdentifier":"t_struct$_QueryRequest_$13448_storage_ptr","typeString":"struct Witnet.QueryRequest"}},"visibility":"internal"},{"constant":false,"id":13408,"mutability":"mutable","name":"response","nameLocation":"3416:8:48","nodeType":"VariableDeclaration","scope":13421,"src":"3402:22:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_QueryResponse_$13464_storage_ptr","typeString":"struct Witnet.QueryResponse"},"typeName":{"id":13407,"nodeType":"UserDefinedTypeName","pathNode":{"id":13406,"name":"QueryResponse","nameLocations":["3402:13:48"],"nodeType":"IdentifierPath","referencedDeclaration":13464,"src":"3402:13:48"},"referencedDeclaration":13464,"src":"3402:13:48","typeDescriptions":{"typeIdentifier":"t_struct$_QueryResponse_$13464_storage_ptr","typeString":"struct Witnet.QueryResponse"}},"visibility":"internal"},{"constant":false,"id":13411,"mutability":"mutable","name":"slaParams","nameLocation":"3444:9:48","nodeType":"VariableDeclaration","scope":13421,"src":"3435:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":13410,"nodeType":"UserDefinedTypeName","pathNode":{"id":13409,"name":"QuerySLA","nameLocations":["3435:8:48"],"nodeType":"IdentifierPath","referencedDeclaration":13472,"src":"3435:8:48"},"referencedDeclaration":13472,"src":"3435:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"},{"constant":false,"id":13414,"mutability":"mutable","name":"hash","nameLocation":"3557:4:48","nodeType":"VariableDeclaration","scope":13421,"src":"3547:14:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13246","typeString":"Witnet.QueryHash"},"typeName":{"id":13413,"nodeType":"UserDefinedTypeName","pathNode":{"id":13412,"name":"QueryHash","nameLocations":["3547:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"3547:9:48"},"referencedDeclaration":13246,"src":"3547:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13246","typeString":"Witnet.QueryHash"}},"visibility":"internal"},{"constant":false,"id":13417,"mutability":"mutable","name":"reward","nameLocation":"3694:6:48","nodeType":"VariableDeclaration","scope":13421,"src":"3679:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryEvmReward_$13244","typeString":"Witnet.QueryEvmReward"},"typeName":{"id":13416,"nodeType":"UserDefinedTypeName","pathNode":{"id":13415,"name":"QueryEvmReward","nameLocations":["3679:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13244,"src":"3679:14:48"},"referencedDeclaration":13244,"src":"3679:14:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryEvmReward_$13244","typeString":"Witnet.QueryEvmReward"}},"visibility":"internal"},{"constant":false,"id":13420,"mutability":"mutable","name":"checkpoint","nameLocation":"3791:10:48","nodeType":"VariableDeclaration","scope":13421,"src":"3779:22:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"},"typeName":{"id":13419,"nodeType":"UserDefinedTypeName","pathNode":{"id":13418,"name":"BlockNumber","nameLocations":["3779:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13242,"src":"3779:11:48"},"referencedDeclaration":13242,"src":"3779:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"name":"Query","nameLocation":"3354:5:48","nodeType":"StructDefinition","scope":16767,"src":"3347:462:48","visibility":"public"},{"canonicalName":"Witnet.QueryStatus","documentation":{"id":13422,"nodeType":"StructuredDocumentation","src":"3817:38:48","text":"Possible status of a Witnet query."},"id":13430,"members":[{"id":13423,"name":"Unknown","nameLocation":"3889:7:48","nodeType":"EnumValue","src":"3889:7:48"},{"id":13424,"name":"Posted","nameLocation":"3907:6:48","nodeType":"EnumValue","src":"3907:6:48"},{"id":13425,"name":"Reported","nameLocation":"3924:8:48","nodeType":"EnumValue","src":"3924:8:48"},{"id":13426,"name":"Finalized","nameLocation":"3943:9:48","nodeType":"EnumValue","src":"3943:9:48"},{"id":13427,"name":"Delayed","nameLocation":"3963:7:48","nodeType":"EnumValue","src":"3963:7:48"},{"id":13428,"name":"Expired","nameLocation":"3981:7:48","nodeType":"EnumValue","src":"3981:7:48"},{"id":13429,"name":"Disputed","nameLocation":"3999:8:48","nodeType":"EnumValue","src":"3999:8:48"}],"name":"QueryStatus","nameLocation":"3866:11:48","nodeType":"EnumDefinition","src":"3861:153:48"},{"canonicalName":"Witnet.QueryCallback","id":13435,"members":[{"constant":false,"id":13432,"mutability":"mutable","name":"consumer","nameLocation":"4062:8:48","nodeType":"VariableDeclaration","scope":13435,"src":"4054:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13431,"name":"address","nodeType":"ElementaryTypeName","src":"4054:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13434,"mutability":"mutable","name":"gasLimit","nameLocation":"4175:8:48","nodeType":"VariableDeclaration","scope":13435,"src":"4167:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":13433,"name":"uint24","nodeType":"ElementaryTypeName","src":"4167:6:48","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"name":"QueryCallback","nameLocation":"4029:13:48","nodeType":"StructDefinition","scope":16767,"src":"4022:270:48","visibility":"public"},{"canonicalName":"Witnet.QueryRequest","documentation":{"id":13436,"nodeType":"StructuredDocumentation","src":"4300:82:48","text":"Data kept in EVM-storage for every Request posted to the Witnet Request Board."},"id":13448,"members":[{"constant":false,"id":13438,"mutability":"mutable","name":"requester","nameLocation":"4429:9:48","nodeType":"VariableDeclaration","scope":13448,"src":"4419:19:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13437,"name":"address","nodeType":"ElementaryTypeName","src":"4419:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13440,"mutability":"mutable","name":"callbackGas","nameLocation":"4522:11:48","nodeType":"VariableDeclaration","scope":13448,"src":"4512:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":13439,"name":"uint24","nodeType":"ElementaryTypeName","src":"4512:6:48","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"},{"constant":false,"id":13442,"mutability":"mutable","name":"_0","nameLocation":"4542:2:48","nodeType":"VariableDeclaration","scope":13448,"src":"4535:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"},"typeName":{"id":13441,"name":"uint72","nodeType":"ElementaryTypeName","src":"4535:6:48","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"visibility":"internal"},{"constant":false,"id":13444,"mutability":"mutable","name":"radonBytecode","nameLocation":"4633:13:48","nodeType":"VariableDeclaration","scope":13448,"src":"4623:23:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":13443,"name":"bytes","nodeType":"ElementaryTypeName","src":"4623:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":13447,"mutability":"mutable","name":"radonHash","nameLocation":"4757:9:48","nodeType":"VariableDeclaration","scope":13448,"src":"4747:19:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":13446,"nodeType":"UserDefinedTypeName","pathNode":{"id":13445,"name":"RadonHash","nameLocations":["4747:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"4747:9:48"},"referencedDeclaration":13250,"src":"4747:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"name":"QueryRequest","nameLocation":"4395:12:48","nodeType":"StructDefinition","scope":16767,"src":"4388:475:48","visibility":"public"},{"canonicalName":"Witnet.QueryResponse","documentation":{"id":13449,"nodeType":"StructuredDocumentation","src":"4871:75:48","text":"QueryResponse metadata and result as resolved by the Witnet blockchain."},"id":13464,"members":[{"constant":false,"id":13451,"mutability":"mutable","name":"reporter","nameLocation":"4992:8:48","nodeType":"VariableDeclaration","scope":13464,"src":"4984:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13450,"name":"address","nodeType":"ElementaryTypeName","src":"4984:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13453,"mutability":"mutable","name":"_0","nameLocation":"5009:2:48","nodeType":"VariableDeclaration","scope":13464,"src":"5002:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13452,"name":"uint32","nodeType":"ElementaryTypeName","src":"5002:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13456,"mutability":"mutable","name":"resultTimestamp","nameLocation":"5099:15:48","nodeType":"VariableDeclaration","scope":13464,"src":"5089:25:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":13455,"nodeType":"UserDefinedTypeName","pathNode":{"id":13454,"name":"Timestamp","nameLocations":["5089:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"5089:9:48"},"referencedDeclaration":13254,"src":"5089:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":13459,"mutability":"mutable","name":"resultDrTxHash","nameLocation":"5239:14:48","nodeType":"VariableDeclaration","scope":13464,"src":"5223:30:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},"typeName":{"id":13458,"nodeType":"UserDefinedTypeName","pathNode":{"id":13457,"name":"TransactionHash","nameLocations":["5223:15:48"],"nodeType":"IdentifierPath","referencedDeclaration":13256,"src":"5223:15:48"},"referencedDeclaration":13256,"src":"5223:15:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},"visibility":"internal"},{"constant":false,"id":13461,"mutability":"mutable","name":"resultCborBytes","nameLocation":"5367:15:48","nodeType":"VariableDeclaration","scope":13464,"src":"5361:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":13460,"name":"bytes","nodeType":"ElementaryTypeName","src":"5361:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":13463,"mutability":"mutable","name":"disputer","nameLocation":"5486:8:48","nodeType":"VariableDeclaration","scope":13464,"src":"5478:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13462,"name":"address","nodeType":"ElementaryTypeName","src":"5478:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"QueryResponse","nameLocation":"4959:13:48","nodeType":"StructDefinition","scope":16767,"src":"4952:550:48","visibility":"public"},{"canonicalName":"Witnet.QuerySLA","documentation":{"id":13465,"nodeType":"StructuredDocumentation","src":"5510:87:48","text":"Structure containing all possible SLA security parameters for Wit/2.1 Data Requests"},"id":13472,"members":[{"constant":false,"id":13467,"mutability":"mutable","name":"witResultMaxSize","nameLocation":"5638:16:48","nodeType":"VariableDeclaration","scope":13472,"src":"5630:24:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":13466,"name":"uint16","nodeType":"ElementaryTypeName","src":"5630:6:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":13469,"mutability":"mutable","name":"witCommitteeSize","nameLocation":"5761:16:48","nodeType":"VariableDeclaration","scope":13472,"src":"5753:24:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":13468,"name":"uint16","nodeType":"ElementaryTypeName","src":"5753:6:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":13471,"mutability":"mutable","name":"witUnitaryReward","nameLocation":"5886:16:48","nodeType":"VariableDeclaration","scope":13472,"src":"5878:24:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":13470,"name":"uint64","nodeType":"ElementaryTypeName","src":"5878:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"name":"QuerySLA","nameLocation":"5610:8:48","nodeType":"StructDefinition","scope":16767,"src":"5603:405:48","visibility":"public"},{"canonicalName":"Witnet.ResultStatus","id":13729,"members":[{"id":13473,"name":"NoErrors","nameLocation":"6075:8:48","nodeType":"EnumValue","src":"6075:8:48"},{"id":13474,"name":"SourceScriptNotCBOR","nameLocation":"6461:19:48","nodeType":"EnumValue","src":"6461:19:48"},{"id":13475,"name":"SourceScriptNotArray","nameLocation":"6582:20:48","nodeType":"EnumValue","src":"6582:20:48"},{"id":13476,"name":"SourceScriptNotRADON","nameLocation":"6716:20:48","nodeType":"EnumValue","src":"6716:20:48"},{"id":13477,"name":"SourceRequestBody","nameLocation":"6848:17:48","nodeType":"EnumValue","src":"6848:17:48"},{"id":13478,"name":"SourceRequestHeaders","nameLocation":"6980:20:48","nodeType":"EnumValue","src":"6980:20:48"},{"id":13479,"name":"SourceRequestURL","nameLocation":"7111:16:48","nodeType":"EnumValue","src":"7111:16:48"},{"id":13480,"name":"SourceFormat0x07","nameLocation":"7173:16:48","nodeType":"EnumValue","src":"7173:16:48"},{"id":13481,"name":"SourceFormat0x08","nameLocation":"7191:16:48","nodeType":"EnumValue","src":"7191:16:48"},{"id":13482,"name":"SourceFormat0x09","nameLocation":"7209:16:48","nodeType":"EnumValue","src":"7209:16:48"},{"id":13483,"name":"SourceFormat0x0A","nameLocation":"7227:16:48","nodeType":"EnumValue","src":"7227:16:48"},{"id":13484,"name":"SourceFormat0x0B","nameLocation":"7245:16:48","nodeType":"EnumValue","src":"7245:16:48"},{"id":13485,"name":"SourceFormat0x0C","nameLocation":"7263:16:48","nodeType":"EnumValue","src":"7263:16:48"},{"id":13486,"name":"SourceFormat0x0D","nameLocation":"7290:16:48","nodeType":"EnumValue","src":"7290:16:48"},{"id":13487,"name":"SourceFormat0x0E","nameLocation":"7308:16:48","nodeType":"EnumValue","src":"7308:16:48"},{"id":13488,"name":"SourceFormat0x0F","nameLocation":"7326:16:48","nodeType":"EnumValue","src":"7326:16:48"},{"id":13489,"name":"RequestTooManySources","nameLocation":"7700:21:48","nodeType":"EnumValue","src":"7700:21:48"},{"id":13490,"name":"ScriptTooManyCalls","nameLocation":"7797:18:48","nodeType":"EnumValue","src":"7797:18:48"},{"id":13491,"name":"Complexity0x12","nameLocation":"7861:14:48","nodeType":"EnumValue","src":"7861:14:48"},{"id":13492,"name":"Complexity0x13","nameLocation":"7877:14:48","nodeType":"EnumValue","src":"7877:14:48"},{"id":13493,"name":"Complexity0x14","nameLocation":"7893:14:48","nodeType":"EnumValue","src":"7893:14:48"},{"id":13494,"name":"Complexity0x15","nameLocation":"7909:14:48","nodeType":"EnumValue","src":"7909:14:48"},{"id":13495,"name":"Complexity0x16","nameLocation":"7925:14:48","nodeType":"EnumValue","src":"7925:14:48"},{"id":13496,"name":"Complexity0x17","nameLocation":"7941:14:48","nodeType":"EnumValue","src":"7941:14:48"},{"id":13497,"name":"Complexity0x18","nameLocation":"7957:14:48","nodeType":"EnumValue","src":"7957:14:48"},{"id":13498,"name":"Complexity0x19","nameLocation":"7982:14:48","nodeType":"EnumValue","src":"7982:14:48"},{"id":13499,"name":"Complexity0x1A","nameLocation":"7998:14:48","nodeType":"EnumValue","src":"7998:14:48"},{"id":13500,"name":"Complexity0x1B","nameLocation":"8014:14:48","nodeType":"EnumValue","src":"8014:14:48"},{"id":13501,"name":"Complexity0x1C","nameLocation":"8030:14:48","nodeType":"EnumValue","src":"8030:14:48"},{"id":13502,"name":"Complexity0x1D","nameLocation":"8046:14:48","nodeType":"EnumValue","src":"8046:14:48"},{"id":13503,"name":"Complexity0x1E","nameLocation":"8062:14:48","nodeType":"EnumValue","src":"8062:14:48"},{"id":13504,"name":"Complexity0x1F","nameLocation":"8078:14:48","nodeType":"EnumValue","src":"8078:14:48"},{"id":13505,"name":"UnsupportedOperator","nameLocation":"8470:19:48","nodeType":"EnumValue","src":"8470:19:48"},{"id":13506,"name":"UnsupportedFilter","nameLocation":"8592:17:48","nodeType":"EnumValue","src":"8592:17:48"},{"id":13507,"name":"UnsupportedHashFunction","nameLocation":"8711:23:48","nodeType":"EnumValue","src":"8711:23:48"},{"id":13508,"name":"UnsupportedReducer","nameLocation":"8837:18:48","nodeType":"EnumValue","src":"8837:18:48"},{"id":13509,"name":"UnsupportedRequestType","nameLocation":"8958:22:48","nodeType":"EnumValue","src":"8958:22:48"},{"id":13510,"name":"UnsupportedEncodingFunction","nameLocation":"9088:27:48","nodeType":"EnumValue","src":"9088:27:48"},{"id":13511,"name":"Operator0x26","nameLocation":"9161:12:48","nodeType":"EnumValue","src":"9161:12:48"},{"id":13512,"name":"Operator0x27","nameLocation":"9175:12:48","nodeType":"EnumValue","src":"9175:12:48"},{"id":13513,"name":"WrongArguments","nameLocation":"9300:14:48","nodeType":"EnumValue","src":"9300:14:48"},{"id":13514,"name":"Operator0x29","nameLocation":"9360:12:48","nodeType":"EnumValue","src":"9360:12:48"},{"id":13515,"name":"Operator0x2A","nameLocation":"9374:12:48","nodeType":"EnumValue","src":"9374:12:48"},{"id":13516,"name":"Operator0x2B","nameLocation":"9388:12:48","nodeType":"EnumValue","src":"9388:12:48"},{"id":13517,"name":"Operator0x2C","nameLocation":"9402:12:48","nodeType":"EnumValue","src":"9402:12:48"},{"id":13518,"name":"Operator0x2D","nameLocation":"9416:12:48","nodeType":"EnumValue","src":"9416:12:48"},{"id":13519,"name":"Operator0x2E","nameLocation":"9430:12:48","nodeType":"EnumValue","src":"9430:12:48"},{"id":13520,"name":"Operator0x2F","nameLocation":"9444:12:48","nodeType":"EnumValue","src":"9444:12:48"},{"id":13521,"name":"HttpErrors","nameLocation":"9860:10:48","nodeType":"EnumValue","src":"9860:10:48"},{"id":13522,"name":"RetrievalsTimeout","nameLocation":"9948:17:48","nodeType":"EnumValue","src":"9948:17:48"},{"id":13523,"name":"RetrieveCircumstance0x32","nameLocation":"10011:24:48","nodeType":"EnumValue","src":"10011:24:48"},{"id":13524,"name":"RetrieveCircumstance0x33","nameLocation":"10037:24:48","nodeType":"EnumValue","src":"10037:24:48"},{"id":13525,"name":"RetrieveCircumstance0x34","nameLocation":"10063:24:48","nodeType":"EnumValue","src":"10063:24:48"},{"id":13526,"name":"RetrieveCircumstance0x35","nameLocation":"10089:24:48","nodeType":"EnumValue","src":"10089:24:48"},{"id":13527,"name":"RetrieveCircumstance0x36","nameLocation":"10124:24:48","nodeType":"EnumValue","src":"10124:24:48"},{"id":13528,"name":"RetrieveCircumstance0x37","nameLocation":"10150:24:48","nodeType":"EnumValue","src":"10150:24:48"},{"id":13529,"name":"RetrieveCircumstance0x38","nameLocation":"10176:24:48","nodeType":"EnumValue","src":"10176:24:48"},{"id":13530,"name":"RetrieveCircumstance0x39","nameLocation":"10202:24:48","nodeType":"EnumValue","src":"10202:24:48"},{"id":13531,"name":"RetrieveCircumstance0x3A","nameLocation":"10237:24:48","nodeType":"EnumValue","src":"10237:24:48"},{"id":13532,"name":"RetrieveCircumstance0x3B","nameLocation":"10263:24:48","nodeType":"EnumValue","src":"10263:24:48"},{"id":13533,"name":"RetrieveCircumstance0x3C","nameLocation":"10289:24:48","nodeType":"EnumValue","src":"10289:24:48"},{"id":13534,"name":"RetrieveCircumstance0x3D","nameLocation":"10315:24:48","nodeType":"EnumValue","src":"10315:24:48"},{"id":13535,"name":"RetrieveCircumstance0x3E","nameLocation":"10350:24:48","nodeType":"EnumValue","src":"10350:24:48"},{"id":13536,"name":"RetrieveCircumstance0x3F","nameLocation":"10376:24:48","nodeType":"EnumValue","src":"10376:24:48"},{"id":13537,"name":"MathUnderflow","nameLocation":"10743:13:48","nodeType":"EnumValue","src":"10743:13:48"},{"id":13538,"name":"MathOverflow","nameLocation":"10830:12:48","nodeType":"EnumValue","src":"10830:12:48"},{"id":13539,"name":"MathDivisionByZero","nameLocation":"10921:18:48","nodeType":"EnumValue","src":"10921:18:48"},{"id":13540,"name":"WrongSubscriptInput","nameLocation":"11022:19:48","nodeType":"EnumValue","src":"11022:19:48"},{"id":13541,"name":"BufferIsNotValue","nameLocation":"11133:16:48","nodeType":"EnumValue","src":"11133:16:48"},{"id":13542,"name":"Decode","nameLocation":"11233:6:48","nodeType":"EnumValue","src":"11233:6:48"},{"id":13543,"name":"EmptyArray","nameLocation":"11303:10:48","nodeType":"EnumValue","src":"11303:10:48"},{"id":13544,"name":"Encode","nameLocation":"11395:6:48","nodeType":"EnumValue","src":"11395:6:48"},{"id":13545,"name":"Filter","nameLocation":"11482:6:48","nodeType":"EnumValue","src":"11482:6:48"},{"id":13546,"name":"Hash","nameLocation":"11556:4:48","nodeType":"EnumValue","src":"11556:4:48"},{"id":13547,"name":"MismatchingArrays","nameLocation":"11625:17:48","nodeType":"EnumValue","src":"11625:17:48"},{"id":13548,"name":"NonHomegeneousArray","nameLocation":"11722:19:48","nodeType":"EnumValue","src":"11722:19:48"},{"id":13549,"name":"Parse","nameLocation":"11838:5:48","nodeType":"EnumValue","src":"11838:5:48"},{"id":13550,"name":"ParseOverflow","nameLocation":"11919:13:48","nodeType":"EnumValue","src":"11919:13:48"},{"id":13551,"name":"ScriptError0x4E","nameLocation":"11978:15:48","nodeType":"EnumValue","src":"11978:15:48"},{"id":13552,"name":"ScriptError0x4F","nameLocation":"11995:15:48","nodeType":"EnumValue","src":"11995:15:48"},{"id":13553,"name":"InsufficientReveals","nameLocation":"12370:19:48","nodeType":"EnumValue","src":"12370:19:48"},{"id":13554,"name":"InsufficientMajority","nameLocation":"12483:20:48","nodeType":"EnumValue","src":"12483:20:48"},{"id":13555,"name":"InsufficientCommits","nameLocation":"12596:19:48","nodeType":"EnumValue","src":"12596:19:48"},{"id":13556,"name":"TallyExecution","nameLocation":"12727:14:48","nodeType":"EnumValue","src":"12727:14:48"},{"id":13557,"name":"CircumstantialFailure","nameLocation":"12890:21:48","nodeType":"EnumValue","src":"12890:21:48"},{"id":13558,"name":"InconsistentSources","nameLocation":"13042:19:48","nodeType":"EnumValue","src":"13042:19:48"},{"id":13559,"name":"MalformedDataRequest","nameLocation":"13185:20:48","nodeType":"EnumValue","src":"13185:20:48"},{"id":13560,"name":"MalformedQueryResponses","nameLocation":"13326:23:48","nodeType":"EnumValue","src":"13326:23:48"},{"id":13561,"name":"OtherError0x58","nameLocation":"13400:14:48","nodeType":"EnumValue","src":"13400:14:48"},{"id":13562,"name":"OtherError0x59","nameLocation":"13416:14:48","nodeType":"EnumValue","src":"13416:14:48"},{"id":13563,"name":"OtherError0x5A","nameLocation":"13432:14:48","nodeType":"EnumValue","src":"13432:14:48"},{"id":13564,"name":"OtherError0x5B","nameLocation":"13448:14:48","nodeType":"EnumValue","src":"13448:14:48"},{"id":13565,"name":"OtherError0x5C","nameLocation":"13464:14:48","nodeType":"EnumValue","src":"13464:14:48"},{"id":13566,"name":"OtherError0x5D","nameLocation":"13480:14:48","nodeType":"EnumValue","src":"13480:14:48"},{"id":13567,"name":"OtherError0x5E","nameLocation":"13496:14:48","nodeType":"EnumValue","src":"13496:14:48"},{"id":13568,"name":"OversizedTallyResult","nameLocation":"13602:20:48","nodeType":"EnumValue","src":"13602:20:48"},{"id":13569,"name":"MalformedReveals","nameLocation":"13999:16:48","nodeType":"EnumValue","src":"13999:16:48"},{"id":13570,"name":"EncodeReveals","nameLocation":"14109:13:48","nodeType":"EnumValue","src":"14109:13:48"},{"id":13571,"name":"ModeTie","nameLocation":"14255:7:48","nodeType":"EnumValue","src":"14255:7:48"},{"id":13572,"name":"OtherError0x63","nameLocation":"14310:14:48","nodeType":"EnumValue","src":"14310:14:48"},{"id":13573,"name":"OtherError0x64","nameLocation":"14326:14:48","nodeType":"EnumValue","src":"14326:14:48"},{"id":13574,"name":"OtherError0x65","nameLocation":"14342:14:48","nodeType":"EnumValue","src":"14342:14:48"},{"id":13575,"name":"OtherError0x66","nameLocation":"14358:14:48","nodeType":"EnumValue","src":"14358:14:48"},{"id":13576,"name":"OtherError0x67","nameLocation":"14374:14:48","nodeType":"EnumValue","src":"14374:14:48"},{"id":13577,"name":"OtherError0x68","nameLocation":"14390:14:48","nodeType":"EnumValue","src":"14390:14:48"},{"id":13578,"name":"OtherError0x69","nameLocation":"14406:14:48","nodeType":"EnumValue","src":"14406:14:48"},{"id":13579,"name":"OtherError0x6A","nameLocation":"14432:14:48","nodeType":"EnumValue","src":"14432:14:48"},{"id":13580,"name":"OtherError0x6B","nameLocation":"14448:14:48","nodeType":"EnumValue","src":"14448:14:48"},{"id":13581,"name":"OtherError0x6C","nameLocation":"14464:14:48","nodeType":"EnumValue","src":"14464:14:48"},{"id":13582,"name":"OtherError0x6D","nameLocation":"14480:14:48","nodeType":"EnumValue","src":"14480:14:48"},{"id":13583,"name":"OtherError0x6E","nameLocation":"14496:14:48","nodeType":"EnumValue","src":"14496:14:48"},{"id":13584,"name":"OtherError0x6F","nameLocation":"14512:14:48","nodeType":"EnumValue","src":"14512:14:48"},{"id":13585,"name":"ArrayIndexOutOfBounds","nameLocation":"14930:21:48","nodeType":"EnumValue","src":"14930:21:48"},{"id":13586,"name":"MapKeyNotFound","nameLocation":"15069:14:48","nodeType":"EnumValue","src":"15069:14:48"},{"id":13587,"name":"JsonPathNotFound","nameLocation":"15209:16:48","nodeType":"EnumValue","src":"15209:16:48"},{"id":13588,"name":"OtherError0x73","nameLocation":"15272:14:48","nodeType":"EnumValue","src":"15272:14:48"},{"id":13589,"name":"OtherError0x74","nameLocation":"15288:14:48","nodeType":"EnumValue","src":"15288:14:48"},{"id":13590,"name":"OtherError0x75","nameLocation":"15304:14:48","nodeType":"EnumValue","src":"15304:14:48"},{"id":13591,"name":"OtherError0x76","nameLocation":"15320:14:48","nodeType":"EnumValue","src":"15320:14:48"},{"id":13592,"name":"OtherError0x77","nameLocation":"15336:14:48","nodeType":"EnumValue","src":"15336:14:48"},{"id":13593,"name":"OtherError0x78","nameLocation":"15352:14:48","nodeType":"EnumValue","src":"15352:14:48"},{"id":13594,"name":"OtherError0x79","nameLocation":"15378:14:48","nodeType":"EnumValue","src":"15378:14:48"},{"id":13595,"name":"OtherError0x7A","nameLocation":"15394:14:48","nodeType":"EnumValue","src":"15394:14:48"},{"id":13596,"name":"OtherError0x7B","nameLocation":"15410:14:48","nodeType":"EnumValue","src":"15410:14:48"},{"id":13597,"name":"OtherError0x7C","nameLocation":"15426:14:48","nodeType":"EnumValue","src":"15426:14:48"},{"id":13598,"name":"OtherError0x7D","nameLocation":"15442:14:48","nodeType":"EnumValue","src":"15442:14:48"},{"id":13599,"name":"OtherError0x7E","nameLocation":"15458:14:48","nodeType":"EnumValue","src":"15458:14:48"},{"id":13600,"name":"OtherError0x7F","nameLocation":"15474:14:48","nodeType":"EnumValue","src":"15474:14:48"},{"id":13601,"name":"OtherError0x80","nameLocation":"15500:14:48","nodeType":"EnumValue","src":"15500:14:48"},{"id":13602,"name":"OtherError0x81","nameLocation":"15516:14:48","nodeType":"EnumValue","src":"15516:14:48"},{"id":13603,"name":"OtherError0x82","nameLocation":"15532:14:48","nodeType":"EnumValue","src":"15532:14:48"},{"id":13604,"name":"OtherError0x83","nameLocation":"15548:14:48","nodeType":"EnumValue","src":"15548:14:48"},{"id":13605,"name":"OtherError0x84","nameLocation":"15564:14:48","nodeType":"EnumValue","src":"15564:14:48"},{"id":13606,"name":"OtherError0x85","nameLocation":"15580:14:48","nodeType":"EnumValue","src":"15580:14:48"},{"id":13607,"name":"OtherError0x86","nameLocation":"15596:14:48","nodeType":"EnumValue","src":"15596:14:48"},{"id":13608,"name":"OtherError0x87","nameLocation":"15622:14:48","nodeType":"EnumValue","src":"15622:14:48"},{"id":13609,"name":"OtherError0x88","nameLocation":"15638:14:48","nodeType":"EnumValue","src":"15638:14:48"},{"id":13610,"name":"OtherError0x89","nameLocation":"15654:14:48","nodeType":"EnumValue","src":"15654:14:48"},{"id":13611,"name":"OtherError0x8A","nameLocation":"15670:14:48","nodeType":"EnumValue","src":"15670:14:48"},{"id":13612,"name":"OtherError0x8B","nameLocation":"15686:14:48","nodeType":"EnumValue","src":"15686:14:48"},{"id":13613,"name":"OtherError0x8C","nameLocation":"15702:14:48","nodeType":"EnumValue","src":"15702:14:48"},{"id":13614,"name":"OtherError0x8D","nameLocation":"15718:14:48","nodeType":"EnumValue","src":"15718:14:48"},{"id":13615,"name":"OtherError0x8E","nameLocation":"15744:14:48","nodeType":"EnumValue","src":"15744:14:48"},{"id":13616,"name":"OtherError0x8F","nameLocation":"15760:14:48","nodeType":"EnumValue","src":"15760:14:48"},{"id":13617,"name":"OtherError0x90","nameLocation":"15776:14:48","nodeType":"EnumValue","src":"15776:14:48"},{"id":13618,"name":"OtherError0x91","nameLocation":"15792:14:48","nodeType":"EnumValue","src":"15792:14:48"},{"id":13619,"name":"OtherError0x92","nameLocation":"15808:14:48","nodeType":"EnumValue","src":"15808:14:48"},{"id":13620,"name":"OtherError0x93","nameLocation":"15824:14:48","nodeType":"EnumValue","src":"15824:14:48"},{"id":13621,"name":"OtherError0x94","nameLocation":"15840:14:48","nodeType":"EnumValue","src":"15840:14:48"},{"id":13622,"name":"OtherError0x95","nameLocation":"15866:14:48","nodeType":"EnumValue","src":"15866:14:48"},{"id":13623,"name":"OtherError0x96","nameLocation":"15882:14:48","nodeType":"EnumValue","src":"15882:14:48"},{"id":13624,"name":"OtherError0x97","nameLocation":"15898:14:48","nodeType":"EnumValue","src":"15898:14:48"},{"id":13625,"name":"OtherError0x98","nameLocation":"15914:14:48","nodeType":"EnumValue","src":"15914:14:48"},{"id":13626,"name":"OtherError0x99","nameLocation":"15930:14:48","nodeType":"EnumValue","src":"15930:14:48"},{"id":13627,"name":"OtherError0x9A","nameLocation":"15946:14:48","nodeType":"EnumValue","src":"15946:14:48"},{"id":13628,"name":"OtherError0x9B","nameLocation":"15962:14:48","nodeType":"EnumValue","src":"15962:14:48"},{"id":13629,"name":"OtherError0x9C","nameLocation":"15987:14:48","nodeType":"EnumValue","src":"15987:14:48"},{"id":13630,"name":"OtherError0x9D","nameLocation":"16003:14:48","nodeType":"EnumValue","src":"16003:14:48"},{"id":13631,"name":"OtherError0x9E","nameLocation":"16019:14:48","nodeType":"EnumValue","src":"16019:14:48"},{"id":13632,"name":"OtherError0x9F","nameLocation":"16035:14:48","nodeType":"EnumValue","src":"16035:14:48"},{"id":13633,"name":"OtherError0xA0","nameLocation":"16051:14:48","nodeType":"EnumValue","src":"16051:14:48"},{"id":13634,"name":"OtherError0xA1","nameLocation":"16067:14:48","nodeType":"EnumValue","src":"16067:14:48"},{"id":13635,"name":"OtherError0xA2","nameLocation":"16083:14:48","nodeType":"EnumValue","src":"16083:14:48"},{"id":13636,"name":"OtherError0xA3","nameLocation":"16109:14:48","nodeType":"EnumValue","src":"16109:14:48"},{"id":13637,"name":"OtherError0xA4","nameLocation":"16125:14:48","nodeType":"EnumValue","src":"16125:14:48"},{"id":13638,"name":"OtherError0xA5","nameLocation":"16141:14:48","nodeType":"EnumValue","src":"16141:14:48"},{"id":13639,"name":"OtherError0xA6","nameLocation":"16157:14:48","nodeType":"EnumValue","src":"16157:14:48"},{"id":13640,"name":"OtherError0xA7","nameLocation":"16173:14:48","nodeType":"EnumValue","src":"16173:14:48"},{"id":13641,"name":"OtherError0xA8","nameLocation":"16189:14:48","nodeType":"EnumValue","src":"16189:14:48"},{"id":13642,"name":"OtherError0xA9","nameLocation":"16205:14:48","nodeType":"EnumValue","src":"16205:14:48"},{"id":13643,"name":"OtherError0xAA","nameLocation":"16231:14:48","nodeType":"EnumValue","src":"16231:14:48"},{"id":13644,"name":"OtherError0xAB","nameLocation":"16247:14:48","nodeType":"EnumValue","src":"16247:14:48"},{"id":13645,"name":"OtherError0xAC","nameLocation":"16263:14:48","nodeType":"EnumValue","src":"16263:14:48"},{"id":13646,"name":"OtherError0xAD","nameLocation":"16279:14:48","nodeType":"EnumValue","src":"16279:14:48"},{"id":13647,"name":"OtherError0xAE","nameLocation":"16295:14:48","nodeType":"EnumValue","src":"16295:14:48"},{"id":13648,"name":"OtherError0xAF","nameLocation":"16311:14:48","nodeType":"EnumValue","src":"16311:14:48"},{"id":13649,"name":"OtherError0xB0","nameLocation":"16327:14:48","nodeType":"EnumValue","src":"16327:14:48"},{"id":13650,"name":"OtherError0xB1","nameLocation":"16352:14:48","nodeType":"EnumValue","src":"16352:14:48"},{"id":13651,"name":"OtherError0xB2","nameLocation":"16368:14:48","nodeType":"EnumValue","src":"16368:14:48"},{"id":13652,"name":"OtherError0xB3","nameLocation":"16384:14:48","nodeType":"EnumValue","src":"16384:14:48"},{"id":13653,"name":"OtherError0xB4","nameLocation":"16400:14:48","nodeType":"EnumValue","src":"16400:14:48"},{"id":13654,"name":"OtherError0xB5","nameLocation":"16416:14:48","nodeType":"EnumValue","src":"16416:14:48"},{"id":13655,"name":"OtherError0xB6","nameLocation":"16432:14:48","nodeType":"EnumValue","src":"16432:14:48"},{"id":13656,"name":"OtherError0xB7","nameLocation":"16448:14:48","nodeType":"EnumValue","src":"16448:14:48"},{"id":13657,"name":"OtherError0xB8","nameLocation":"16473:14:48","nodeType":"EnumValue","src":"16473:14:48"},{"id":13658,"name":"OtherError0xB9","nameLocation":"16489:14:48","nodeType":"EnumValue","src":"16489:14:48"},{"id":13659,"name":"OtherError0xBA","nameLocation":"16505:14:48","nodeType":"EnumValue","src":"16505:14:48"},{"id":13660,"name":"OtherError0xBB","nameLocation":"16521:14:48","nodeType":"EnumValue","src":"16521:14:48"},{"id":13661,"name":"OtherError0xBC","nameLocation":"16537:14:48","nodeType":"EnumValue","src":"16537:14:48"},{"id":13662,"name":"OtherError0xBD","nameLocation":"16553:14:48","nodeType":"EnumValue","src":"16553:14:48"},{"id":13663,"name":"OtherError0xBE","nameLocation":"16569:14:48","nodeType":"EnumValue","src":"16569:14:48"},{"id":13664,"name":"OtherError0xBF","nameLocation":"16594:14:48","nodeType":"EnumValue","src":"16594:14:48"},{"id":13665,"name":"OtherError0xC0","nameLocation":"16610:14:48","nodeType":"EnumValue","src":"16610:14:48"},{"id":13666,"name":"OtherError0xC1","nameLocation":"16626:14:48","nodeType":"EnumValue","src":"16626:14:48"},{"id":13667,"name":"OtherError0xC2","nameLocation":"16642:14:48","nodeType":"EnumValue","src":"16642:14:48"},{"id":13668,"name":"OtherError0xC3","nameLocation":"16658:14:48","nodeType":"EnumValue","src":"16658:14:48"},{"id":13669,"name":"OtherError0xC4","nameLocation":"16674:14:48","nodeType":"EnumValue","src":"16674:14:48"},{"id":13670,"name":"OtherError0xC5","nameLocation":"16690:14:48","nodeType":"EnumValue","src":"16690:14:48"},{"id":13671,"name":"OtherError0xC6","nameLocation":"16715:14:48","nodeType":"EnumValue","src":"16715:14:48"},{"id":13672,"name":"OtherError0xC7","nameLocation":"16731:14:48","nodeType":"EnumValue","src":"16731:14:48"},{"id":13673,"name":"OtherError0xC8","nameLocation":"16747:14:48","nodeType":"EnumValue","src":"16747:14:48"},{"id":13674,"name":"OtherError0xC9","nameLocation":"16763:14:48","nodeType":"EnumValue","src":"16763:14:48"},{"id":13675,"name":"OtherError0xCA","nameLocation":"16779:14:48","nodeType":"EnumValue","src":"16779:14:48"},{"id":13676,"name":"OtherError0xCB","nameLocation":"16795:14:48","nodeType":"EnumValue","src":"16795:14:48"},{"id":13677,"name":"OtherError0xCC","nameLocation":"16811:14:48","nodeType":"EnumValue","src":"16811:14:48"},{"id":13678,"name":"OtherError0xCD","nameLocation":"16836:14:48","nodeType":"EnumValue","src":"16836:14:48"},{"id":13679,"name":"OtherError0xCE","nameLocation":"16852:14:48","nodeType":"EnumValue","src":"16852:14:48"},{"id":13680,"name":"OtherError0xCF","nameLocation":"16868:14:48","nodeType":"EnumValue","src":"16868:14:48"},{"id":13681,"name":"OtherError0xD0","nameLocation":"16884:14:48","nodeType":"EnumValue","src":"16884:14:48"},{"id":13682,"name":"OtherError0xD1","nameLocation":"16900:14:48","nodeType":"EnumValue","src":"16900:14:48"},{"id":13683,"name":"OtherError0xD2","nameLocation":"16916:14:48","nodeType":"EnumValue","src":"16916:14:48"},{"id":13684,"name":"OtherError0xD3","nameLocation":"16932:14:48","nodeType":"EnumValue","src":"16932:14:48"},{"id":13685,"name":"OtherError0xD4","nameLocation":"16957:14:48","nodeType":"EnumValue","src":"16957:14:48"},{"id":13686,"name":"OtherError0xD5","nameLocation":"16973:14:48","nodeType":"EnumValue","src":"16973:14:48"},{"id":13687,"name":"OtherError0xD6","nameLocation":"16989:14:48","nodeType":"EnumValue","src":"16989:14:48"},{"id":13688,"name":"OtherError0xD7","nameLocation":"17005:14:48","nodeType":"EnumValue","src":"17005:14:48"},{"id":13689,"name":"OtherError0xD8","nameLocation":"17021:14:48","nodeType":"EnumValue","src":"17021:14:48"},{"id":13690,"name":"OtherError0xD9","nameLocation":"17037:14:48","nodeType":"EnumValue","src":"17037:14:48"},{"id":13691,"name":"OtherError0xDA","nameLocation":"17053:14:48","nodeType":"EnumValue","src":"17053:14:48"},{"id":13692,"name":"OtherError0xDB","nameLocation":"17078:14:48","nodeType":"EnumValue","src":"17078:14:48"},{"id":13693,"name":"OtherError0xDC","nameLocation":"17094:14:48","nodeType":"EnumValue","src":"17094:14:48"},{"id":13694,"name":"OtherError0xDD","nameLocation":"17110:14:48","nodeType":"EnumValue","src":"17110:14:48"},{"id":13695,"name":"OtherError0xDE","nameLocation":"17126:14:48","nodeType":"EnumValue","src":"17126:14:48"},{"id":13696,"name":"OtherError0xDF","nameLocation":"17142:14:48","nodeType":"EnumValue","src":"17142:14:48"},{"id":13697,"name":"BridgeMalformedDataRequest","nameLocation":"17685:26:48","nodeType":"EnumValue","src":"17685:26:48"},{"id":13698,"name":"BridgePoorIncentives","nameLocation":"17773:20:48","nodeType":"EnumValue","src":"17773:20:48"},{"id":13699,"name":"BridgeOversizedTallyResult","nameLocation":"18032:26:48","nodeType":"EnumValue","src":"18032:26:48"},{"id":13700,"name":"OtherError0xE3","nameLocation":"18105:14:48","nodeType":"EnumValue","src":"18105:14:48"},{"id":13701,"name":"OtherError0xE4","nameLocation":"18121:14:48","nodeType":"EnumValue","src":"18121:14:48"},{"id":13702,"name":"OtherError0xE5","nameLocation":"18137:14:48","nodeType":"EnumValue","src":"18137:14:48"},{"id":13703,"name":"OtherError0xE6","nameLocation":"18153:14:48","nodeType":"EnumValue","src":"18153:14:48"},{"id":13704,"name":"OtherError0xE7","nameLocation":"18169:14:48","nodeType":"EnumValue","src":"18169:14:48"},{"id":13705,"name":"OtherError0xE8","nameLocation":"18185:14:48","nodeType":"EnumValue","src":"18185:14:48"},{"id":13706,"name":"OtherError0xE9","nameLocation":"18201:14:48","nodeType":"EnumValue","src":"18201:14:48"},{"id":13707,"name":"OtherError0xEA","nameLocation":"18226:14:48","nodeType":"EnumValue","src":"18226:14:48"},{"id":13708,"name":"OtherError0xEB","nameLocation":"18242:14:48","nodeType":"EnumValue","src":"18242:14:48"},{"id":13709,"name":"OtherError0xEC","nameLocation":"18258:14:48","nodeType":"EnumValue","src":"18258:14:48"},{"id":13710,"name":"OtherError0xED","nameLocation":"18274:14:48","nodeType":"EnumValue","src":"18274:14:48"},{"id":13711,"name":"OtherError0xEE","nameLocation":"18290:14:48","nodeType":"EnumValue","src":"18290:14:48"},{"id":13712,"name":"OtherError0xEF","nameLocation":"18306:14:48","nodeType":"EnumValue","src":"18306:14:48"},{"id":13713,"name":"BoardAwaitingResult","nameLocation":"18640:19:48","nodeType":"EnumValue","src":"18640:19:48"},{"id":13714,"name":"BoardFinalizingResult","nameLocation":"18691:21:48","nodeType":"EnumValue","src":"18691:21:48"},{"id":13715,"name":"BoardBeingDisputed","nameLocation":"18744:18:48","nodeType":"EnumValue","src":"18744:18:48"},{"id":13716,"name":"OtherError0xF3","nameLocation":"18800:14:48","nodeType":"EnumValue","src":"18800:14:48"},{"id":13717,"name":"OtherError0xF4","nameLocation":"18816:14:48","nodeType":"EnumValue","src":"18816:14:48"},{"id":13718,"name":"OtherError0xF5","nameLocation":"18832:14:48","nodeType":"EnumValue","src":"18832:14:48"},{"id":13719,"name":"OtherError0xF6","nameLocation":"18848:14:48","nodeType":"EnumValue","src":"18848:14:48"},{"id":13720,"name":"OtherError0xF7","nameLocation":"18864:14:48","nodeType":"EnumValue","src":"18864:14:48"},{"id":13721,"name":"BoardAlreadyDelivered","nameLocation":"19180:21:48","nodeType":"EnumValue","src":"19180:21:48"},{"id":13722,"name":"BoardResolutionTimeout","nameLocation":"19233:22:48","nodeType":"EnumValue","src":"19233:22:48"},{"id":13723,"name":"OtherError0xFA","nameLocation":"19294:14:48","nodeType":"EnumValue","src":"19294:14:48"},{"id":13724,"name":"OtherError0xFB","nameLocation":"19310:14:48","nodeType":"EnumValue","src":"19310:14:48"},{"id":13725,"name":"OtherError0xFC","nameLocation":"19326:14:48","nodeType":"EnumValue","src":"19326:14:48"},{"id":13726,"name":"OtherError0xFD","nameLocation":"19342:14:48","nodeType":"EnumValue","src":"19342:14:48"},{"id":13727,"name":"OtherError0xFE","nameLocation":"19358:14:48","nodeType":"EnumValue","src":"19358:14:48"},{"id":13728,"name":"UnhandledIntercept","nameLocation":"19611:18:48","nodeType":"EnumValue","src":"19611:18:48"}],"name":"ResultStatus","nameLocation":"6021:12:48","nodeType":"EnumDefinition","src":"6016:13620:48"},{"canonicalName":"Witnet.RadonDataTypes","documentation":{"id":13730,"nodeType":"StructuredDocumentation","src":"19644:111:48","text":"Possible types either processed by Witnet Radon Scripts or included within results to Witnet Data Requests."},"id":13751,"members":[{"id":13731,"name":"Any","nameLocation":"19803:3:48","nodeType":"EnumValue","src":"19803:3:48"},{"id":13732,"name":"Array","nameLocation":"19829:5:48","nodeType":"EnumValue","src":"19829:5:48"},{"id":13733,"name":"Bool","nameLocation":"19856:4:48","nodeType":"EnumValue","src":"19856:4:48"},{"id":13734,"name":"Bytes","nameLocation":"19882:5:48","nodeType":"EnumValue","src":"19882:5:48"},{"id":13735,"name":"Integer","nameLocation":"19909:7:48","nodeType":"EnumValue","src":"19909:7:48"},{"id":13736,"name":"Float","nameLocation":"19938:5:48","nodeType":"EnumValue","src":"19938:5:48"},{"id":13737,"name":"Map","nameLocation":"19965:3:48","nodeType":"EnumValue","src":"19965:3:48"},{"id":13738,"name":"String","nameLocation":"19990:6:48","nodeType":"EnumValue","src":"19990:6:48"},{"id":13739,"name":"Unused0x08","nameLocation":"20007:10:48","nodeType":"EnumValue","src":"20007:10:48"},{"id":13740,"name":"Unused0x09","nameLocation":"20019:10:48","nodeType":"EnumValue","src":"20019:10:48"},{"id":13741,"name":"Unused0x0A","nameLocation":"20031:10:48","nodeType":"EnumValue","src":"20031:10:48"},{"id":13742,"name":"Unused0x0B","nameLocation":"20043:10:48","nodeType":"EnumValue","src":"20043:10:48"},{"id":13743,"name":"Unused0x0C","nameLocation":"20064:10:48","nodeType":"EnumValue","src":"20064:10:48"},{"id":13744,"name":"Unused0x0D","nameLocation":"20076:10:48","nodeType":"EnumValue","src":"20076:10:48"},{"id":13745,"name":"Unused0x0E","nameLocation":"20088:10:48","nodeType":"EnumValue","src":"20088:10:48"},{"id":13746,"name":"Unused0x0F","nameLocation":"20100:10:48","nodeType":"EnumValue","src":"20100:10:48"},{"id":13747,"name":"Same","nameLocation":"20132:4:48","nodeType":"EnumValue","src":"20132:4:48"},{"id":13748,"name":"Inner","nameLocation":"20158:5:48","nodeType":"EnumValue","src":"20158:5:48"},{"id":13749,"name":"Match","nameLocation":"20185:5:48","nodeType":"EnumValue","src":"20185:5:48"},{"id":13750,"name":"Subscript","nameLocation":"20212:9:48","nodeType":"EnumValue","src":"20212:9:48"}],"name":"RadonDataTypes","nameLocation":"19766:14:48","nodeType":"EnumDefinition","src":"19761:467:48"},{"canonicalName":"Witnet.RadonFilter","documentation":{"id":13752,"nodeType":"StructuredDocumentation","src":"20236:160:48","text":"Structure defining some data filtering that can be applied at the Aggregation or the Tally stages\n within a Witnet Data Request resolution workflow."},"id":13758,"members":[{"constant":false,"id":13755,"mutability":"mutable","name":"opcode","nameLocation":"20451:6:48","nodeType":"VariableDeclaration","scope":13758,"src":"20432:25:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonFilterOpcodes_$13770","typeString":"enum Witnet.RadonFilterOpcodes"},"typeName":{"id":13754,"nodeType":"UserDefinedTypeName","pathNode":{"id":13753,"name":"RadonFilterOpcodes","nameLocations":["20432:18:48"],"nodeType":"IdentifierPath","referencedDeclaration":13770,"src":"20432:18:48"},"referencedDeclaration":13770,"src":"20432:18:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonFilterOpcodes_$13770","typeString":"enum Witnet.RadonFilterOpcodes"}},"visibility":"internal"},{"constant":false,"id":13757,"mutability":"mutable","name":"cborArgs","nameLocation":"20474:8:48","nodeType":"VariableDeclaration","scope":13758,"src":"20468:14:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":13756,"name":"bytes","nodeType":"ElementaryTypeName","src":"20468:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"RadonFilter","nameLocation":"20409:11:48","nodeType":"StructDefinition","scope":16767,"src":"20402:88:48","visibility":"public"},{"canonicalName":"Witnet.RadonFilterOpcodes","documentation":{"id":13759,"nodeType":"StructuredDocumentation","src":"20498:68:48","text":"Filtering methods currently supported on the Witnet blockchain. "},"id":13770,"members":[{"id":13760,"name":"Reserved0x00","nameLocation":"20618:12:48","nodeType":"EnumValue","src":"20618:12:48"},{"id":13761,"name":"Reserved0x01","nameLocation":"20667:12:48","nodeType":"EnumValue","src":"20667:12:48"},{"id":13762,"name":"Reserved0x02","nameLocation":"20713:12:48","nodeType":"EnumValue","src":"20713:12:48"},{"id":13763,"name":"Reserved0x03","nameLocation":"20757:12:48","nodeType":"EnumValue","src":"20757:12:48"},{"id":13764,"name":"Reserved0x04","nameLocation":"20812:12:48","nodeType":"EnumValue","src":"20812:12:48"},{"id":13765,"name":"StandardDeviation","nameLocation":"20866:17:48","nodeType":"EnumValue","src":"20866:17:48"},{"id":13766,"name":"Reserved0x06","nameLocation":"20905:12:48","nodeType":"EnumValue","src":"20905:12:48"},{"id":13767,"name":"Reserved0x07","nameLocation":"20946:12:48","nodeType":"EnumValue","src":"20946:12:48"},{"id":13768,"name":"Mode","nameLocation":"20990:4:48","nodeType":"EnumValue","src":"20990:4:48"},{"id":13769,"name":"Reserved0x09","nameLocation":"21016:12:48","nodeType":"EnumValue","src":"21016:12:48"}],"name":"RadonFilterOpcodes","nameLocation":"20577:18:48","nodeType":"EnumDefinition","src":"20572:482:48"},{"canonicalName":"Witnet.RadonReducer","documentation":{"id":13771,"nodeType":"StructuredDocumentation","src":"21062:185:48","text":"Structure defining the array of filters and reducting function to be applied at either the Aggregation\n or the Tally stages within a Witnet Data Request resolution workflow."},"id":13779,"members":[{"constant":false,"id":13774,"mutability":"mutable","name":"opcode","nameLocation":"21303:6:48","nodeType":"VariableDeclaration","scope":13779,"src":"21284:25:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonReduceOpcodes_$13793","typeString":"enum Witnet.RadonReduceOpcodes"},"typeName":{"id":13773,"nodeType":"UserDefinedTypeName","pathNode":{"id":13772,"name":"RadonReduceOpcodes","nameLocations":["21284:18:48"],"nodeType":"IdentifierPath","referencedDeclaration":13793,"src":"21284:18:48"},"referencedDeclaration":13793,"src":"21284:18:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonReduceOpcodes_$13793","typeString":"enum Witnet.RadonReduceOpcodes"}},"visibility":"internal"},{"constant":false,"id":13778,"mutability":"mutable","name":"filters","nameLocation":"21334:7:48","nodeType":"VariableDeclaration","scope":13779,"src":"21320:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13758_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonFilter[]"},"typeName":{"baseType":{"id":13776,"nodeType":"UserDefinedTypeName","pathNode":{"id":13775,"name":"RadonFilter","nameLocations":["21320:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13758,"src":"21320:11:48"},"referencedDeclaration":13758,"src":"21320:11:48","typeDescriptions":{"typeIdentifier":"t_struct$_RadonFilter_$13758_storage_ptr","typeString":"struct Witnet.RadonFilter"}},"id":13777,"nodeType":"ArrayTypeName","src":"21320:13:48","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13758_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonFilter[]"}},"visibility":"internal"}],"name":"RadonReducer","nameLocation":"21260:12:48","nodeType":"StructDefinition","scope":16767,"src":"21253:96:48","visibility":"public"},{"canonicalName":"Witnet.RadonReduceOpcodes","documentation":{"id":13780,"nodeType":"StructuredDocumentation","src":"21357:69:48","text":"Reducting functions currently supported on the Witnet blockchain."},"id":13793,"members":[{"id":13781,"name":"Reserved0x00","nameLocation":"21478:12:48","nodeType":"EnumValue","src":"21478:12:48"},{"id":13782,"name":"Reserved0x01","nameLocation":"21523:12:48","nodeType":"EnumValue","src":"21523:12:48"},{"id":13783,"name":"Mode","nameLocation":"21568:4:48","nodeType":"EnumValue","src":"21568:4:48"},{"id":13784,"name":"AverageMean","nameLocation":"21594:11:48","nodeType":"EnumValue","src":"21594:11:48"},{"id":13785,"name":"Reserved0x04","nameLocation":"21627:12:48","nodeType":"EnumValue","src":"21627:12:48"},{"id":13786,"name":"AverageMedian","nameLocation":"21684:13:48","nodeType":"EnumValue","src":"21684:13:48"},{"id":13787,"name":"Reserved0x06","nameLocation":"21719:12:48","nodeType":"EnumValue","src":"21719:12:48"},{"id":13788,"name":"StandardDeviation","nameLocation":"21778:17:48","nodeType":"EnumValue","src":"21778:17:48"},{"id":13789,"name":"Reserved0x08","nameLocation":"21817:12:48","nodeType":"EnumValue","src":"21817:12:48"},{"id":13790,"name":"Reserved0x09","nameLocation":"21871:12:48","nodeType":"EnumValue","src":"21871:12:48"},{"id":13791,"name":"Reserved0x10","nameLocation":"21924:12:48","nodeType":"EnumValue","src":"21924:12:48"},{"id":13792,"name":"ConcatenateAndHash","nameLocation":"21978:18:48","nodeType":"EnumValue","src":"21978:18:48"}],"name":"RadonReduceOpcodes","nameLocation":"21437:18:48","nodeType":"EnumDefinition","src":"21432:571:48"},{"canonicalName":"Witnet.RadonRequest","documentation":{"id":13794,"nodeType":"StructuredDocumentation","src":"22015:100:48","text":"Structure containing the Retrieve-Attestation-Delivery parts of a Witnet-compliant Data Request."},"id":13805,"members":[{"constant":false,"id":13798,"mutability":"mutable","name":"retrieve","nameLocation":"22169:8:48","nodeType":"VariableDeclaration","scope":13805,"src":"22152:25:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonRetrieval_$13826_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonRetrieval[]"},"typeName":{"baseType":{"id":13796,"nodeType":"UserDefinedTypeName","pathNode":{"id":13795,"name":"RadonRetrieval","nameLocations":["22152:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13826,"src":"22152:14:48"},"referencedDeclaration":13826,"src":"22152:14:48","typeDescriptions":{"typeIdentifier":"t_struct$_RadonRetrieval_$13826_storage_ptr","typeString":"struct Witnet.RadonRetrieval"}},"id":13797,"nodeType":"ArrayTypeName","src":"22152:16:48","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonRetrieval_$13826_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonRetrieval[]"}},"visibility":"internal"},{"constant":false,"id":13801,"mutability":"mutable","name":"aggregate","nameLocation":"22201:9:48","nodeType":"VariableDeclaration","scope":13805,"src":"22188:22:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":13800,"nodeType":"UserDefinedTypeName","pathNode":{"id":13799,"name":"RadonReducer","nameLocations":["22188:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"22188:12:48"},"referencedDeclaration":13779,"src":"22188:12:48","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"},{"constant":false,"id":13804,"mutability":"mutable","name":"tally","nameLocation":"22234:5:48","nodeType":"VariableDeclaration","scope":13805,"src":"22221:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":13803,"nodeType":"UserDefinedTypeName","pathNode":{"id":13802,"name":"RadonReducer","nameLocations":["22221:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13779,"src":"22221:12:48"},"referencedDeclaration":13779,"src":"22221:12:48","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13779_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"name":"RadonRequest","nameLocation":"22128:12:48","nodeType":"StructDefinition","scope":16767,"src":"22121:126:48","visibility":"public"},{"canonicalName":"Witnet.RadonRetrieval","documentation":{"id":13806,"nodeType":"StructuredDocumentation","src":"22255:118:48","text":"Structure containing all the parameters that fully describe a Witnet Radon Retrieval within a Witnet Data Request."},"id":13826,"members":[{"constant":false,"id":13808,"mutability":"mutable","name":"argsCount","nameLocation":"22418:9:48","nodeType":"VariableDeclaration","scope":13826,"src":"22412:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13807,"name":"uint8","nodeType":"ElementaryTypeName","src":"22412:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":13811,"mutability":"mutable","name":"method","nameLocation":"22460:6:48","nodeType":"VariableDeclaration","scope":13826,"src":"22438:28:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13833","typeString":"enum Witnet.RadonRetrievalMethods"},"typeName":{"id":13810,"nodeType":"UserDefinedTypeName","pathNode":{"id":13809,"name":"RadonRetrievalMethods","nameLocations":["22438:21:48"],"nodeType":"IdentifierPath","referencedDeclaration":13833,"src":"22438:21:48"},"referencedDeclaration":13833,"src":"22438:21:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13833","typeString":"enum Witnet.RadonRetrievalMethods"}},"visibility":"internal"},{"constant":false,"id":13814,"mutability":"mutable","name":"dataType","nameLocation":"22492:8:48","nodeType":"VariableDeclaration","scope":13826,"src":"22477:23:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":13813,"nodeType":"UserDefinedTypeName","pathNode":{"id":13812,"name":"RadonDataTypes","nameLocations":["22477:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13751,"src":"22477:14:48"},"referencedDeclaration":13751,"src":"22477:14:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"},{"constant":false,"id":13816,"mutability":"mutable","name":"url","nameLocation":"22518:3:48","nodeType":"VariableDeclaration","scope":13826,"src":"22511:10:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":13815,"name":"string","nodeType":"ElementaryTypeName","src":"22511:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":13818,"mutability":"mutable","name":"body","nameLocation":"22539:4:48","nodeType":"VariableDeclaration","scope":13826,"src":"22532:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":13817,"name":"string","nodeType":"ElementaryTypeName","src":"22532:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":13823,"mutability":"mutable","name":"headers","nameLocation":"22566:7:48","nodeType":"VariableDeclaration","scope":13826,"src":"22554:19:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_storage_$2_storage_$dyn_storage_ptr","typeString":"string[2][]"},"typeName":{"baseType":{"baseType":{"id":13819,"name":"string","nodeType":"ElementaryTypeName","src":"22554:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":13821,"length":{"hexValue":"32","id":13820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22561:1:48","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"ArrayTypeName","src":"22554:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$2_storage_ptr","typeString":"string[2]"}},"id":13822,"nodeType":"ArrayTypeName","src":"22554:11:48","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_storage_$2_storage_$dyn_storage_ptr","typeString":"string[2][]"}},"visibility":"internal"},{"constant":false,"id":13825,"mutability":"mutable","name":"radonScript","nameLocation":"22590:11:48","nodeType":"VariableDeclaration","scope":13826,"src":"22584:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":13824,"name":"bytes","nodeType":"ElementaryTypeName","src":"22584:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"name":"RadonRetrieval","nameLocation":"22386:14:48","nodeType":"StructDefinition","scope":16767,"src":"22379:230:48","visibility":"public"},{"canonicalName":"Witnet.RadonRetrievalMethods","documentation":{"id":13827,"nodeType":"StructuredDocumentation","src":"22617:80:48","text":"Possible Radon retrieval methods that can be used within a Radon Retrieval. "},"id":13833,"members":[{"id":13828,"name":"Unknown","nameLocation":"22749:7:48","nodeType":"EnumValue","src":"22749:7:48"},{"id":13829,"name":"HttpGet","nameLocation":"22775:7:48","nodeType":"EnumValue","src":"22775:7:48"},{"id":13830,"name":"RNG","nameLocation":"22801:3:48","nodeType":"EnumValue","src":"22801:3:48"},{"id":13831,"name":"HttpPost","nameLocation":"22823:8:48","nodeType":"EnumValue","src":"22823:8:48"},{"id":13832,"name":"HttpHead","nameLocation":"22850:8:48","nodeType":"EnumValue","src":"22850:8:48"}],"name":"RadonRetrievalMethods","nameLocation":"22708:21:48","nodeType":"EnumDefinition","src":"22703:162:48"},{"canonicalName":"Witnet.RadonSLAv1","documentation":{"id":13834,"nodeType":"StructuredDocumentation","src":"22873:99:48","text":"Structure containing all possible SLA security parameters of a Witnet-compliant Data Request."},"id":13845,"members":[{"constant":false,"id":13836,"mutability":"mutable","name":"numWitnesses","nameLocation":"23013:12:48","nodeType":"VariableDeclaration","scope":13845,"src":"23007:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13835,"name":"uint8","nodeType":"ElementaryTypeName","src":"23007:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":13838,"mutability":"mutable","name":"minConsensusPercentage","nameLocation":"23042:22:48","nodeType":"VariableDeclaration","scope":13845,"src":"23036:28:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13837,"name":"uint8","nodeType":"ElementaryTypeName","src":"23036:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":13840,"mutability":"mutable","name":"witnessReward","nameLocation":"23082:13:48","nodeType":"VariableDeclaration","scope":13845,"src":"23075:20:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":13839,"name":"uint64","nodeType":"ElementaryTypeName","src":"23075:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":13842,"mutability":"mutable","name":"witnessCollateral","nameLocation":"23113:17:48","nodeType":"VariableDeclaration","scope":13845,"src":"23106:24:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":13841,"name":"uint64","nodeType":"ElementaryTypeName","src":"23106:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":13844,"mutability":"mutable","name":"minerCommitRevealFee","nameLocation":"23148:20:48","nodeType":"VariableDeclaration","scope":13845,"src":"23141:27:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":13843,"name":"uint64","nodeType":"ElementaryTypeName","src":"23141:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"name":"RadonSLAv1","nameLocation":"22985:10:48","nodeType":"StructDefinition","scope":16767,"src":"22978:198:48","visibility":"public"},{"body":{"id":13867,"nodeType":"Block","src":"23413:64:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"id":13865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13859,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13849,"src":"23446:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}],"expression":{"id":13857,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13240,"src":"23431:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Address_$13240_$","typeString":"type(Witnet.Address)"}},"id":13858,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"23439:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"23431:14:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Address_$13240_$returns$_t_bytes20_$","typeString":"function (Witnet.Address) pure returns (bytes20)"}},"id":13860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23431:17:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":13863,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13852,"src":"23467:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}],"expression":{"id":13861,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13240,"src":"23452:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Address_$13240_$","typeString":"type(Witnet.Address)"}},"id":13862,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"23460:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"23452:14:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Address_$13240_$returns$_t_bytes20_$","typeString":"function (Witnet.Address) pure returns (bytes20)"}},"id":13864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23452:17:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"src":"23431:38:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":13856,"id":13866,"nodeType":"Return","src":"23424:45:48"}]},"documentation":{"id":13846,"nodeType":"StructuredDocumentation","src":"23186:158:48","text":"=======================================================================\n --- Witnet.Address helper functions -----------------------------------"},"id":13868,"implemented":true,"kind":"function","modifiers":[],"name":"eq","nameLocation":"23359:2:48","nodeType":"FunctionDefinition","parameters":{"id":13853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13849,"mutability":"mutable","name":"a","nameLocation":"23370:1:48","nodeType":"VariableDeclaration","scope":13868,"src":"23362:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"},"typeName":{"id":13848,"nodeType":"UserDefinedTypeName","pathNode":{"id":13847,"name":"Address","nameLocations":["23362:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"23362:7:48"},"referencedDeclaration":13240,"src":"23362:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"visibility":"internal"},{"constant":false,"id":13852,"mutability":"mutable","name":"b","nameLocation":"23381:1:48","nodeType":"VariableDeclaration","scope":13868,"src":"23373:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"},"typeName":{"id":13851,"nodeType":"UserDefinedTypeName","pathNode":{"id":13850,"name":"Address","nameLocations":["23373:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"23373:7:48"},"referencedDeclaration":13240,"src":"23373:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"visibility":"internal"}],"src":"23361:22:48"},"returnParameters":{"id":13856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13855,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13868,"src":"23407:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13854,"name":"bool","nodeType":"ElementaryTypeName","src":"23407:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"23406:6:48"},"scope":16767,"src":"23350:127:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13908,"nodeType":"Block","src":"23570:183:48","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":13881,"name":"pkh","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13870,"src":"23595:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":13880,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23589:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":13879,"name":"bytes","nodeType":"ElementaryTypeName","src":"23589:5:48","typeDescriptions":{}}},"id":13882,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23589:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":13883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23600:6:48","memberName":"length","nodeType":"MemberAccess","src":"23589:17:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"components":[{"condition":{"id":13884,"name":"mainnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13872,"src":"23611:7:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"3433","id":13886,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23626:2:48","typeDescriptions":{"typeIdentifier":"t_rational_43_by_1","typeString":"int_const 43"},"value":"43"},"id":13887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"23611:17:48","trueExpression":{"hexValue":"3432","id":13885,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23621:2:48","typeDescriptions":{"typeIdentifier":"t_rational_42_by_1","typeString":"int_const 42"},"value":"42"},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":13888,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"23610:19:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"23589:40:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4265636833323a20696e76616c6964206c656e677468","id":13890,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"23631:24:48","typeDescriptions":{"typeIdentifier":"t_stringliteral_804d16c791056572535f8e2036ddf984da7d771fd478e9d9544d867a673dae25","typeString":"literal_string \"Bech32: invalid length\""},"value":"Bech32: invalid length"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_804d16c791056572535f8e2036ddf984da7d771fd478e9d9544d867a673dae25","typeString":"literal_string \"Bech32: invalid length\""}],"id":13878,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"23581:7:48","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":13891,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23581:75:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":13892,"nodeType":"ExpressionStatement","src":"23581:75:48"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":13899,"name":"pkh","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13870,"src":"23713:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"condition":{"id":13900,"name":"mainnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13872,"src":"23718:7:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"74776974","id":13902,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"23736:6:48","typeDescriptions":{"typeIdentifier":"t_stringliteral_dfbd7587b2fddacb6e475abb8480782bd328a0d86da584dbbb5c5b1cd10172c6","typeString":"literal_string \"twit\""},"value":"twit"},"id":13903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"23718:24:48","trueExpression":{"hexValue":"776974","id":13901,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"23728:5:48","typeDescriptions":{"typeIdentifier":"t_stringliteral_a40fefd25048260f5e40f1912d6008d3193b0c6b4a061e592aed558ff6e9b49c","typeString":"literal_string \"wit\""},"value":"wit"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":13897,"name":"Bech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12200,"src":"23695:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Bech32_$12200_$","typeString":"type(library Bech32)"}},"id":13898,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23702:10:48","memberName":"fromBech32","nodeType":"MemberAccess","referencedDeclaration":11037,"src":"23695:17:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$_t_address_$","typeString":"function (string memory,string memory) pure returns (address)"}},"id":13904,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23695:48:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":13896,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23687:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":13895,"name":"bytes20","nodeType":"ElementaryTypeName","src":"23687:7:48","typeDescriptions":{}}},"id":13905,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23687:57:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"expression":{"id":13893,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13240,"src":"23674:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Address_$13240_$","typeString":"type(Witnet.Address)"}},"id":13894,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"23682:4:48","memberName":"wrap","nodeType":"MemberAccess","src":"23674:12:48","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes20_$returns$_t_userDefinedValueType$_Address_$13240_$","typeString":"function (bytes20) pure returns (Witnet.Address)"}},"id":13906,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23674:71:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"functionReturnParameters":13877,"id":13907,"nodeType":"Return","src":"23667:78:48"}]},"id":13909,"implemented":true,"kind":"function","modifiers":[],"name":"fromBech32","nameLocation":"23494:10:48","nodeType":"FunctionDefinition","parameters":{"id":13873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13870,"mutability":"mutable","name":"pkh","nameLocation":"23519:3:48","nodeType":"VariableDeclaration","scope":13909,"src":"23505:17:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":13869,"name":"string","nodeType":"ElementaryTypeName","src":"23505:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":13872,"mutability":"mutable","name":"mainnet","nameLocation":"23529:7:48","nodeType":"VariableDeclaration","scope":13909,"src":"23524:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13871,"name":"bool","nodeType":"ElementaryTypeName","src":"23524:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"23504:33:48"},"returnParameters":{"id":13877,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13876,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13909,"src":"23561:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"},"typeName":{"id":13875,"nodeType":"UserDefinedTypeName","pathNode":{"id":13874,"name":"Address","nameLocations":["23561:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"23561:7:48"},"referencedDeclaration":13240,"src":"23561:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"visibility":"internal"}],"src":"23560:9:48"},"scope":16767,"src":"23485:268:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13934,"nodeType":"Block","src":"23851:104:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":13925,"name":"witAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13912,"src":"23908:10:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}],"expression":{"id":13923,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13240,"src":"23893:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Address_$13240_$","typeString":"type(Witnet.Address)"}},"id":13924,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"23901:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"23893:14:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Address_$13240_$returns$_t_bytes20_$","typeString":"function (Witnet.Address) pure returns (bytes20)"}},"id":13926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23893:26:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"id":13922,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23885:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":13921,"name":"address","nodeType":"ElementaryTypeName","src":"23885:7:48","typeDescriptions":{}}},"id":13927,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23885:35:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"condition":{"id":13928,"name":"mainnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13914,"src":"23922:7:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"74776974","id":13930,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"23940:6:48","typeDescriptions":{"typeIdentifier":"t_stringliteral_dfbd7587b2fddacb6e475abb8480782bd328a0d86da584dbbb5c5b1cd10172c6","typeString":"literal_string \"twit\""},"value":"twit"},"id":13931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"23922:24:48","trueExpression":{"hexValue":"776974","id":13929,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"23932:5:48","typeDescriptions":{"typeIdentifier":"t_stringliteral_a40fefd25048260f5e40f1912d6008d3193b0c6b4a061e592aed558ff6e9b49c","typeString":"literal_string \"wit\""},"value":"wit"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"expression":{"id":13919,"name":"Bech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12200,"src":"23869:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Bech32_$12200_$","typeString":"type(library Bech32)"}},"id":13920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23876:8:48","memberName":"toBech32","nodeType":"MemberAccess","referencedDeclaration":10848,"src":"23869:15:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_address_$_t_string_memory_ptr_$returns$_t_string_memory_ptr_$","typeString":"function (address,string memory) pure returns (string memory)"}},"id":13932,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23869:78:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":13918,"id":13933,"nodeType":"Return","src":"23862:85:48"}]},"id":13935,"implemented":true,"kind":"function","modifiers":[],"name":"toBech32","nameLocation":"23770:8:48","nodeType":"FunctionDefinition","parameters":{"id":13915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13912,"mutability":"mutable","name":"witAddress","nameLocation":"23787:10:48","nodeType":"VariableDeclaration","scope":13935,"src":"23779:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"},"typeName":{"id":13911,"nodeType":"UserDefinedTypeName","pathNode":{"id":13910,"name":"Address","nameLocations":["23779:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"23779:7:48"},"referencedDeclaration":13240,"src":"23779:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"visibility":"internal"},{"constant":false,"id":13914,"mutability":"mutable","name":"mainnet","nameLocation":"23804:7:48","nodeType":"VariableDeclaration","scope":13935,"src":"23799:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13913,"name":"bool","nodeType":"ElementaryTypeName","src":"23799:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"23778:34:48"},"returnParameters":{"id":13918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13917,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13935,"src":"23836:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":13916,"name":"string","nodeType":"ElementaryTypeName","src":"23836:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"23835:15:48"},"scope":16767,"src":"23761:194:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13953,"nodeType":"Block","src":"24019:57:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"id":13951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13945,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13938,"src":"24052:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}],"expression":{"id":13943,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13240,"src":"24037:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Address_$13240_$","typeString":"type(Witnet.Address)"}},"id":13944,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"24045:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"24037:14:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Address_$13240_$returns$_t_bytes20_$","typeString":"function (Witnet.Address) pure returns (bytes20)"}},"id":13946,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24037:17:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":13949,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24066:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":13948,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24058:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":13947,"name":"bytes20","nodeType":"ElementaryTypeName","src":"24058:7:48","typeDescriptions":{}}},"id":13950,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24058:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"src":"24037:31:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":13942,"id":13952,"nodeType":"Return","src":"24030:38:48"}]},"id":13954,"implemented":true,"kind":"function","modifiers":[],"name":"isZero","nameLocation":"23972:6:48","nodeType":"FunctionDefinition","parameters":{"id":13939,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13938,"mutability":"mutable","name":"a","nameLocation":"23987:1:48","nodeType":"VariableDeclaration","scope":13954,"src":"23979:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"},"typeName":{"id":13937,"nodeType":"UserDefinedTypeName","pathNode":{"id":13936,"name":"Address","nameLocations":["23979:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"23979:7:48"},"referencedDeclaration":13240,"src":"23979:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"visibility":"internal"}],"src":"23978:11:48"},"returnParameters":{"id":13942,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13941,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13954,"src":"24013:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13940,"name":"bool","nodeType":"ElementaryTypeName","src":"24013:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"24012:6:48"},"scope":16767,"src":"23963:113:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13975,"nodeType":"Block","src":"24357:77:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"id":13972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13967,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13958,"src":"24395:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}],"id":13966,"name":"root","nodeType":"Identifier","overloadedDeclarations":[14006,14036],"referencedDeclaration":14036,"src":"24390:4:48","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Beacon_$13339_storage_ptr_$returns$_t_bytes24_$","typeString":"function (struct Witnet.Beacon storage pointer) view returns (bytes24)"}},"id":13968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24390:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":13970,"name":"other","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13961,"src":"24409:5:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Beacon_$13339_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}],"id":13969,"name":"root","nodeType":"Identifier","overloadedDeclarations":[14006,14036],"referencedDeclaration":14006,"src":"24404:4:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Beacon_$13339_calldata_ptr_$returns$_t_bytes24_$","typeString":"function (struct Witnet.Beacon calldata) pure returns (bytes24)"}},"id":13971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24404:11:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"src":"24390:25:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":13973,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"24375:51:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":13965,"id":13974,"nodeType":"Return","src":"24368:58:48"}]},"documentation":{"id":13955,"nodeType":"StructuredDocumentation","src":"24090:158:48","text":"=======================================================================\n --- Witnet.Beacon helper functions ------------------------------------"},"id":13976,"implemented":true,"kind":"function","modifiers":[],"name":"equals","nameLocation":"24263:6:48","nodeType":"FunctionDefinition","parameters":{"id":13962,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13958,"mutability":"mutable","name":"self","nameLocation":"24285:4:48","nodeType":"VariableDeclaration","scope":13976,"src":"24270:19:48","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon"},"typeName":{"id":13957,"nodeType":"UserDefinedTypeName","pathNode":{"id":13956,"name":"Beacon","nameLocations":["24270:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":13339,"src":"24270:6:48"},"referencedDeclaration":13339,"src":"24270:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon"}},"visibility":"internal"},{"constant":false,"id":13961,"mutability":"mutable","name":"other","nameLocation":"24307:5:48","nodeType":"VariableDeclaration","scope":13976,"src":"24291:21:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_calldata_ptr","typeString":"struct Witnet.Beacon"},"typeName":{"id":13960,"nodeType":"UserDefinedTypeName","pathNode":{"id":13959,"name":"Beacon","nameLocations":["24291:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":13339,"src":"24291:6:48"},"referencedDeclaration":13339,"src":"24291:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon"}},"visibility":"internal"}],"src":"24269:44:48"},"returnParameters":{"id":13965,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13964,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13976,"src":"24346:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13963,"name":"bool","nodeType":"ElementaryTypeName","src":"24346:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"24345:6:48"},"scope":16767,"src":"24254:180:48","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14005,"nodeType":"Block","src":"24510:271:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"expression":{"id":13989,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13979,"src":"24571:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}},"id":13990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24576:5:48","memberName":"index","nodeType":"MemberAccess","referencedDeclaration":13326,"src":"24571:10:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":13991,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13979,"src":"24596:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}},"id":13992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24601:9:48","memberName":"prevIndex","nodeType":"MemberAccess","referencedDeclaration":13328,"src":"24596:14:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":13993,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13979,"src":"24625:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}},"id":13994,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24630:8:48","memberName":"prevRoot","nodeType":"MemberAccess","referencedDeclaration":13330,"src":"24625:13:48","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"expression":{"id":13995,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13979,"src":"24653:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}},"id":13996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24658:20:48","memberName":"ddrTalliesMerkleRoot","nodeType":"MemberAccess","referencedDeclaration":13332,"src":"24653:25:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"expression":{"id":13997,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13979,"src":"24693:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}},"id":13998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24698:20:48","memberName":"droTalliesMerkleRoot","nodeType":"MemberAccess","referencedDeclaration":13334,"src":"24693:25:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"expression":{"id":13999,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13979,"src":"24733:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}},"id":14000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24738:22:48","memberName":"nextCommitteeAggPubkey","nodeType":"MemberAccess","referencedDeclaration":13338,"src":"24733:27:48","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_calldata_ptr","typeString":"uint256[4] calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_array$_t_uint256_$4_calldata_ptr","typeString":"uint256[4] calldata"}],"expression":{"id":13987,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"24546:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":13988,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"24550:6:48","memberName":"encode","nodeType":"MemberAccess","src":"24546:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":14001,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24546:225:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":13986,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"24536:9:48","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":14002,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24536:236:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":13985,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24528:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes24_$","typeString":"type(bytes24)"},"typeName":{"id":13984,"name":"bytes24","nodeType":"ElementaryTypeName","src":"24528:7:48","typeDescriptions":{}}},"id":14003,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24528:245:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"functionReturnParameters":13983,"id":14004,"nodeType":"Return","src":"24521:252:48"}]},"id":14006,"implemented":true,"kind":"function","modifiers":[],"name":"root","nameLocation":"24451:4:48","nodeType":"FunctionDefinition","parameters":{"id":13980,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13979,"mutability":"mutable","name":"self","nameLocation":"24472:4:48","nodeType":"VariableDeclaration","scope":14006,"src":"24456:20:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_calldata_ptr","typeString":"struct Witnet.Beacon"},"typeName":{"id":13978,"nodeType":"UserDefinedTypeName","pathNode":{"id":13977,"name":"Beacon","nameLocations":["24456:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":13339,"src":"24456:6:48"},"referencedDeclaration":13339,"src":"24456:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon"}},"visibility":"internal"}],"src":"24455:22:48"},"returnParameters":{"id":13983,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13982,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14006,"src":"24501:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":13981,"name":"bytes24","nodeType":"ElementaryTypeName","src":"24501:7:48","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"24500:9:48"},"scope":16767,"src":"24442:339:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14035,"nodeType":"Block","src":"24860:271:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"expression":{"id":14019,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14009,"src":"24921:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}},"id":14020,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24926:5:48","memberName":"index","nodeType":"MemberAccess","referencedDeclaration":13326,"src":"24921:10:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":14021,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14009,"src":"24946:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}},"id":14022,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24951:9:48","memberName":"prevIndex","nodeType":"MemberAccess","referencedDeclaration":13328,"src":"24946:14:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":14023,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14009,"src":"24975:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}},"id":14024,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24980:8:48","memberName":"prevRoot","nodeType":"MemberAccess","referencedDeclaration":13330,"src":"24975:13:48","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"expression":{"id":14025,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14009,"src":"25003:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}},"id":14026,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25008:20:48","memberName":"ddrTalliesMerkleRoot","nodeType":"MemberAccess","referencedDeclaration":13332,"src":"25003:25:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"expression":{"id":14027,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14009,"src":"25043:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}},"id":14028,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25048:20:48","memberName":"droTalliesMerkleRoot","nodeType":"MemberAccess","referencedDeclaration":13334,"src":"25043:25:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"expression":{"id":14029,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14009,"src":"25083:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}},"id":14030,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25088:22:48","memberName":"nextCommitteeAggPubkey","nodeType":"MemberAccess","referencedDeclaration":13338,"src":"25083:27:48","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_storage","typeString":"uint256[4] storage ref"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_bytes24","typeString":"bytes24"},{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_bytes16","typeString":"bytes16"},{"typeIdentifier":"t_array$_t_uint256_$4_storage","typeString":"uint256[4] storage ref"}],"expression":{"id":14017,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"24896:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":14018,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"24900:6:48","memberName":"encode","nodeType":"MemberAccess","src":"24896:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":14031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24896:225:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":14016,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"24886:9:48","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":14032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24886:236:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":14015,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24878:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes24_$","typeString":"type(bytes24)"},"typeName":{"id":14014,"name":"bytes24","nodeType":"ElementaryTypeName","src":"24878:7:48","typeDescriptions":{}}},"id":14033,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24878:245:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"functionReturnParameters":14013,"id":14034,"nodeType":"Return","src":"24871:252:48"}]},"id":14036,"implemented":true,"kind":"function","modifiers":[],"name":"root","nameLocation":"24802:4:48","nodeType":"FunctionDefinition","parameters":{"id":14010,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14009,"mutability":"mutable","name":"self","nameLocation":"24822:4:48","nodeType":"VariableDeclaration","scope":14036,"src":"24807:19:48","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon"},"typeName":{"id":14008,"nodeType":"UserDefinedTypeName","pathNode":{"id":14007,"name":"Beacon","nameLocations":["24807:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":13339,"src":"24807:6:48"},"referencedDeclaration":13339,"src":"24807:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon"}},"visibility":"internal"}],"src":"24806:21:48"},"returnParameters":{"id":14013,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14012,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14036,"src":"24851:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":14011,"name":"bytes24","nodeType":"ElementaryTypeName","src":"24851:7:48","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"24850:9:48"},"scope":16767,"src":"24793:338:48","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14058,"nodeType":"Block","src":"25381:72:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14056,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14050,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14040,"src":"25418:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}],"expression":{"id":14048,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"25399:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":14049,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25411:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"25399:18:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_BlockNumber_$13242_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":14051,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25399:21:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"arguments":[{"id":14054,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14043,"src":"25443:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}],"expression":{"id":14052,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"25424:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":14053,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25436:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"25424:18:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_BlockNumber_$13242_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":14055,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25424:21:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"25399:46:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14047,"id":14057,"nodeType":"Return","src":"25392:53:48"}]},"documentation":{"id":14037,"nodeType":"StructuredDocumentation","src":"25145:158:48","text":"=======================================================================\n --- BlockNumber helper functions --------------------------------------"},"id":14059,"implemented":true,"kind":"function","modifiers":[],"name":"egt","nameLocation":"25318:3:48","nodeType":"FunctionDefinition","parameters":{"id":14044,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14040,"mutability":"mutable","name":"a","nameLocation":"25334:1:48","nodeType":"VariableDeclaration","scope":14059,"src":"25322:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"},"typeName":{"id":14039,"nodeType":"UserDefinedTypeName","pathNode":{"id":14038,"name":"BlockNumber","nameLocations":["25322:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13242,"src":"25322:11:48"},"referencedDeclaration":13242,"src":"25322:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"visibility":"internal"},{"constant":false,"id":14043,"mutability":"mutable","name":"b","nameLocation":"25349:1:48","nodeType":"VariableDeclaration","scope":14059,"src":"25337:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"},"typeName":{"id":14042,"nodeType":"UserDefinedTypeName","pathNode":{"id":14041,"name":"BlockNumber","nameLocations":["25337:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13242,"src":"25337:11:48"},"referencedDeclaration":13242,"src":"25337:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"25321:30:48"},"returnParameters":{"id":14047,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14046,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14059,"src":"25375:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14045,"name":"bool","nodeType":"ElementaryTypeName","src":"25375:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"25374:6:48"},"scope":16767,"src":"25309:144:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14080,"nodeType":"Block","src":"25533:72:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14078,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14072,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14062,"src":"25570:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}],"expression":{"id":14070,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"25551:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":14071,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25563:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"25551:18:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_BlockNumber_$13242_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":14073,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25551:21:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[{"id":14076,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14065,"src":"25595:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}],"expression":{"id":14074,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"25576:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":14075,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25588:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"25576:18:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_BlockNumber_$13242_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":14077,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25576:21:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"25551:46:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14069,"id":14079,"nodeType":"Return","src":"25544:53:48"}]},"id":14081,"implemented":true,"kind":"function","modifiers":[],"name":"elt","nameLocation":"25470:3:48","nodeType":"FunctionDefinition","parameters":{"id":14066,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14062,"mutability":"mutable","name":"a","nameLocation":"25486:1:48","nodeType":"VariableDeclaration","scope":14081,"src":"25474:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"},"typeName":{"id":14061,"nodeType":"UserDefinedTypeName","pathNode":{"id":14060,"name":"BlockNumber","nameLocations":["25474:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13242,"src":"25474:11:48"},"referencedDeclaration":13242,"src":"25474:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"visibility":"internal"},{"constant":false,"id":14065,"mutability":"mutable","name":"b","nameLocation":"25501:1:48","nodeType":"VariableDeclaration","scope":14081,"src":"25489:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"},"typeName":{"id":14064,"nodeType":"UserDefinedTypeName","pathNode":{"id":14063,"name":"BlockNumber","nameLocations":["25489:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13242,"src":"25489:11:48"},"referencedDeclaration":13242,"src":"25489:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"25473:30:48"},"returnParameters":{"id":14069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14068,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14081,"src":"25527:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14067,"name":"bool","nodeType":"ElementaryTypeName","src":"25527:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"25526:6:48"},"scope":16767,"src":"25461:144:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14102,"nodeType":"Block","src":"25684:71:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14100,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14094,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14084,"src":"25721:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}],"expression":{"id":14092,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"25702:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":14093,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25714:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"25702:18:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_BlockNumber_$13242_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":14095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25702:21:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"id":14098,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14087,"src":"25745:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}],"expression":{"id":14096,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"25726:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":14097,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25738:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"25726:18:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_BlockNumber_$13242_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":14099,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25726:21:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"25702:45:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14091,"id":14101,"nodeType":"Return","src":"25695:52:48"}]},"id":14103,"implemented":true,"kind":"function","modifiers":[],"name":"gt","nameLocation":"25622:2:48","nodeType":"FunctionDefinition","parameters":{"id":14088,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14084,"mutability":"mutable","name":"a","nameLocation":"25637:1:48","nodeType":"VariableDeclaration","scope":14103,"src":"25625:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"},"typeName":{"id":14083,"nodeType":"UserDefinedTypeName","pathNode":{"id":14082,"name":"BlockNumber","nameLocations":["25625:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13242,"src":"25625:11:48"},"referencedDeclaration":13242,"src":"25625:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"visibility":"internal"},{"constant":false,"id":14087,"mutability":"mutable","name":"b","nameLocation":"25652:1:48","nodeType":"VariableDeclaration","scope":14103,"src":"25640:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"},"typeName":{"id":14086,"nodeType":"UserDefinedTypeName","pathNode":{"id":14085,"name":"BlockNumber","nameLocations":["25640:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13242,"src":"25640:11:48"},"referencedDeclaration":13242,"src":"25640:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"25624:30:48"},"returnParameters":{"id":14091,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14090,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14103,"src":"25678:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14089,"name":"bool","nodeType":"ElementaryTypeName","src":"25678:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"25677:6:48"},"scope":16767,"src":"25613:142:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14124,"nodeType":"Block","src":"25834:71:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14116,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14106,"src":"25871:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}],"expression":{"id":14114,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"25852:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":14115,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25864:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"25852:18:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_BlockNumber_$13242_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":14117,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25852:21:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"arguments":[{"id":14120,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14109,"src":"25895:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}],"expression":{"id":14118,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"25876:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":14119,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"25888:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"25876:18:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_BlockNumber_$13242_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":14121,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25876:21:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"25852:45:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14113,"id":14123,"nodeType":"Return","src":"25845:52:48"}]},"id":14125,"implemented":true,"kind":"function","modifiers":[],"name":"lt","nameLocation":"25772:2:48","nodeType":"FunctionDefinition","parameters":{"id":14110,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14106,"mutability":"mutable","name":"a","nameLocation":"25787:1:48","nodeType":"VariableDeclaration","scope":14125,"src":"25775:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"},"typeName":{"id":14105,"nodeType":"UserDefinedTypeName","pathNode":{"id":14104,"name":"BlockNumber","nameLocations":["25775:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13242,"src":"25775:11:48"},"referencedDeclaration":13242,"src":"25775:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"visibility":"internal"},{"constant":false,"id":14109,"mutability":"mutable","name":"b","nameLocation":"25802:1:48","nodeType":"VariableDeclaration","scope":14125,"src":"25790:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"},"typeName":{"id":14108,"nodeType":"UserDefinedTypeName","pathNode":{"id":14107,"name":"BlockNumber","nameLocations":["25790:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13242,"src":"25790:11:48"},"referencedDeclaration":13242,"src":"25790:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"25774:30:48"},"returnParameters":{"id":14113,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14112,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14125,"src":"25828:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14111,"name":"bool","nodeType":"ElementaryTypeName","src":"25828:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"25827:6:48"},"scope":16767,"src":"25763:142:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14141,"nodeType":"Block","src":"25973:54:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14135,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14128,"src":"26011:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}],"expression":{"id":14133,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"25992:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":14134,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26004:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"25992:18:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_BlockNumber_$13242_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":14136,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25992:21:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":14137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26017:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"25992:26:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":14139,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25991:28:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14132,"id":14140,"nodeType":"Return","src":"25984:35:48"}]},"id":14142,"implemented":true,"kind":"function","modifiers":[],"name":"isZero","nameLocation":"25922:6:48","nodeType":"FunctionDefinition","parameters":{"id":14129,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14128,"mutability":"mutable","name":"b","nameLocation":"25941:1:48","nodeType":"VariableDeclaration","scope":14142,"src":"25929:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"},"typeName":{"id":14127,"nodeType":"UserDefinedTypeName","pathNode":{"id":14126,"name":"BlockNumber","nameLocations":["25929:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13242,"src":"25929:11:48"},"referencedDeclaration":13242,"src":"25929:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"25928:15:48"},"returnParameters":{"id":14132,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14131,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14142,"src":"25967:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14130,"name":"bool","nodeType":"ElementaryTypeName","src":"25967:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"25966:6:48"},"scope":16767,"src":"25913:114:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14160,"nodeType":"Block","src":"26365:131:48","statements":[{"expression":{"arguments":[{"expression":{"id":14152,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14146,"src":"26412:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13356_calldata_ptr","typeString":"struct Witnet.DataPullReport calldata"}},"id":14153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26417:21:48","memberName":"witDrRelayerSignature","nodeType":"MemberAccess","referencedDeclaration":13347,"src":"26412:26:48","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"arguments":[{"expression":{"id":14155,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14146,"src":"26462:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13356_calldata_ptr","typeString":"struct Witnet.DataPullReport calldata"}},"id":14156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26467:9:48","memberName":"queryHash","nodeType":"MemberAccess","referencedDeclaration":13345,"src":"26462:14:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13246","typeString":"Witnet.QueryHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13246","typeString":"Witnet.QueryHash"}],"id":14154,"name":"hashify","nodeType":"Identifier","overloadedDeclarations":[14724,14771,14792],"referencedDeclaration":14724,"src":"26454:7:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_QueryHash_$13246_$returns$_t_bytes32_$","typeString":"function (Witnet.QueryHash) pure returns (bytes32)"}},"id":14157,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26454:23:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":14151,"name":"recoverEvmAddr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15492,"src":"26383:14:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_bytes32_$returns$_t_address_$","typeString":"function (bytes memory,bytes32) pure returns (address)"}},"id":14158,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26383:105:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":14150,"id":14159,"nodeType":"Return","src":"26376:112:48"}]},"documentation":{"id":14143,"nodeType":"StructuredDocumentation","src":"26037:238:48","text":"===============================================================================================================\n --- Data*Report helper methods --------------------------------------------------------------------------------"},"id":14161,"implemented":true,"kind":"function","modifiers":[],"name":"queryRelayer","nameLocation":"26290:12:48","nodeType":"FunctionDefinition","parameters":{"id":14147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14146,"mutability":"mutable","name":"self","nameLocation":"26327:4:48","nodeType":"VariableDeclaration","scope":14161,"src":"26303:28:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13356_calldata_ptr","typeString":"struct Witnet.DataPullReport"},"typeName":{"id":14145,"nodeType":"UserDefinedTypeName","pathNode":{"id":14144,"name":"DataPullReport","nameLocations":["26303:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13356,"src":"26303:14:48"},"referencedDeclaration":13356,"src":"26303:14:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13356_storage_ptr","typeString":"struct Witnet.DataPullReport"}},"visibility":"internal"}],"src":"26302:30:48"},"returnParameters":{"id":14150,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14149,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14161,"src":"26356:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14148,"name":"address","nodeType":"ElementaryTypeName","src":"26356:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"26355:9:48"},"scope":16767,"src":"26281:215:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14185,"nodeType":"Block","src":"26585:235:48","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":14172,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14164,"src":"26638:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13356_calldata_ptr","typeString":"struct Witnet.DataPullReport calldata"}},"id":14173,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26643:9:48","memberName":"queryHash","nodeType":"MemberAccess","referencedDeclaration":13345,"src":"26638:14:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13246","typeString":"Witnet.QueryHash"}},{"expression":{"id":14174,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14164,"src":"26667:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13356_calldata_ptr","typeString":"struct Witnet.DataPullReport calldata"}},"id":14175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26672:21:48","memberName":"witDrRelayerSignature","nodeType":"MemberAccess","referencedDeclaration":13347,"src":"26667:26:48","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"expression":{"id":14176,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14164,"src":"26708:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13356_calldata_ptr","typeString":"struct Witnet.DataPullReport calldata"}},"id":14177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26713:11:48","memberName":"witDrTxHash","nodeType":"MemberAccess","referencedDeclaration":13355,"src":"26708:16:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},{"expression":{"id":14178,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14164,"src":"26739:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13356_calldata_ptr","typeString":"struct Witnet.DataPullReport calldata"}},"id":14179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26744:16:48","memberName":"witDrResultEpoch","nodeType":"MemberAccess","referencedDeclaration":13350,"src":"26739:21:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},{"expression":{"id":14180,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14164,"src":"26775:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13356_calldata_ptr","typeString":"struct Witnet.DataPullReport calldata"}},"id":14181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26780:20:48","memberName":"witDrResultCborBytes","nodeType":"MemberAccess","referencedDeclaration":13352,"src":"26775:25:48","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13246","typeString":"Witnet.QueryHash"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":14170,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"26613:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":14171,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26617:6:48","memberName":"encode","nodeType":"MemberAccess","src":"26613:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":14182,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26613:198:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":14169,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"26603:9:48","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":14183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26603:209:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":14168,"id":14184,"nodeType":"Return","src":"26596:216:48"}]},"id":14186,"implemented":true,"kind":"function","modifiers":[],"name":"tallyHash","nameLocation":"26513:9:48","nodeType":"FunctionDefinition","parameters":{"id":14165,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14164,"mutability":"mutable","name":"self","nameLocation":"26547:4:48","nodeType":"VariableDeclaration","scope":14186,"src":"26523:28:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13356_calldata_ptr","typeString":"struct Witnet.DataPullReport"},"typeName":{"id":14163,"nodeType":"UserDefinedTypeName","pathNode":{"id":14162,"name":"DataPullReport","nameLocations":["26523:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13356,"src":"26523:14:48"},"referencedDeclaration":13356,"src":"26523:14:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13356_storage_ptr","typeString":"struct Witnet.DataPullReport"}},"visibility":"internal"}],"src":"26522:30:48"},"returnParameters":{"id":14168,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14167,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14186,"src":"26576:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14166,"name":"bytes32","nodeType":"ElementaryTypeName","src":"26576:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"26575:9:48"},"scope":16767,"src":"26504:316:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14217,"nodeType":"Block","src":"26906:335:48","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":14197,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14189,"src":"26959:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":14198,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26964:11:48","memberName":"witDrTxHash","nodeType":"MemberAccess","referencedDeclaration":13359,"src":"26959:16:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"}},{"expression":{"id":14199,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14189,"src":"26990:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":14200,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26995:12:48","memberName":"queryRadHash","nodeType":"MemberAccess","referencedDeclaration":13362,"src":"26990:17:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},{"expression":{"expression":{"id":14201,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14189,"src":"27022:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":14202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27027:11:48","memberName":"queryParams","nodeType":"MemberAccess","referencedDeclaration":13365,"src":"27022:16:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27039:16:48","memberName":"witResultMaxSize","nodeType":"MemberAccess","referencedDeclaration":13467,"src":"27022:33:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"expression":{"expression":{"id":14204,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14189,"src":"27070:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":14205,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27075:11:48","memberName":"queryParams","nodeType":"MemberAccess","referencedDeclaration":13365,"src":"27070:16:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27087:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13469,"src":"27070:33:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"expression":{"expression":{"id":14207,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14189,"src":"27118:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":14208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27123:11:48","memberName":"queryParams","nodeType":"MemberAccess","referencedDeclaration":13365,"src":"27118:16:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14209,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27135:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"27118:33:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"expression":{"id":14210,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14189,"src":"27166:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":14211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27171:15:48","memberName":"resultTimestamp","nodeType":"MemberAccess","referencedDeclaration":13368,"src":"27166:20:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},{"expression":{"id":14212,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14189,"src":"27201:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":14213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27206:15:48","memberName":"resultCborBytes","nodeType":"MemberAccess","referencedDeclaration":13370,"src":"27201:20:48","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13256","typeString":"Witnet.TransactionHash"},{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},{"typeIdentifier":"t_uint16","typeString":"uint16"},{"typeIdentifier":"t_uint16","typeString":"uint16"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":14195,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"26934:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":14196,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"26938:6:48","memberName":"encode","nodeType":"MemberAccess","src":"26934:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":14214,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26934:298:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":14194,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"26924:9:48","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":14215,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26924:309:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":14193,"id":14216,"nodeType":"Return","src":"26917:316:48"}]},"id":14218,"implemented":true,"kind":"function","modifiers":[],"name":"digest","nameLocation":"26837:6:48","nodeType":"FunctionDefinition","parameters":{"id":14190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14189,"mutability":"mutable","name":"self","nameLocation":"26868:4:48","nodeType":"VariableDeclaration","scope":14218,"src":"26844:28:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_calldata_ptr","typeString":"struct Witnet.DataPushReport"},"typeName":{"id":14188,"nodeType":"UserDefinedTypeName","pathNode":{"id":14187,"name":"DataPushReport","nameLocations":["26844:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13371,"src":"26844:14:48"},"referencedDeclaration":13371,"src":"26844:14:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13371_storage_ptr","typeString":"struct Witnet.DataPushReport"}},"visibility":"internal"}],"src":"26843:30:48"},"returnParameters":{"id":14193,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14192,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14218,"src":"26897:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14191,"name":"bytes32","nodeType":"ElementaryTypeName","src":"26897:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"26896:9:48"},"scope":16767,"src":"26828:413:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14233,"nodeType":"Block","src":"27554:62:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"id":14231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14227,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14222,"src":"27572:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14228,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27577:6:48","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":13375,"src":"27572:11:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14229,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13729,"src":"27587:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13729_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14230,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"27600:8:48","memberName":"NoErrors","nodeType":"MemberAccess","referencedDeclaration":13473,"src":"27587:21:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"src":"27572:36:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14226,"id":14232,"nodeType":"Return","src":"27565:43:48"}]},"documentation":{"id":14219,"nodeType":"StructuredDocumentation","src":"27253:224:48","text":"========================================================================================================\n --- 'DataResult' helper methods ------------------------------------------------------------------------"},"id":14234,"implemented":true,"kind":"function","modifiers":[],"name":"noErrors","nameLocation":"27492:8:48","nodeType":"FunctionDefinition","parameters":{"id":14223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14222,"mutability":"mutable","name":"self","nameLocation":"27519:4:48","nodeType":"VariableDeclaration","scope":14234,"src":"27501:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14221,"nodeType":"UserDefinedTypeName","pathNode":{"id":14220,"name":"DataResult","nameLocations":["27501:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"27501:10:48"},"referencedDeclaration":13388,"src":"27501:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"27500:24:48"},"returnParameters":{"id":14226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14225,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14234,"src":"27548:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14224,"name":"bool","nodeType":"ElementaryTypeName","src":"27548:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"27547:6:48"},"scope":16767,"src":"27483:133:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14247,"nodeType":"Block","src":"27698:50:48","statements":[{"expression":{"arguments":[{"expression":{"id":14243,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14237,"src":"27728:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14244,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27733:6:48","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":13375,"src":"27728:11:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}],"id":14242,"name":"keepWaiting","nodeType":"Identifier","overloadedDeclarations":[14248,14985],"referencedDeclaration":14985,"src":"27716:11:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ResultStatus_$13729_$returns$_t_bool_$","typeString":"function (enum Witnet.ResultStatus) pure returns (bool)"}},"id":14245,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27716:24:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14241,"id":14246,"nodeType":"Return","src":"27709:31:48"}]},"id":14248,"implemented":true,"kind":"function","modifiers":[],"name":"keepWaiting","nameLocation":"27633:11:48","nodeType":"FunctionDefinition","parameters":{"id":14238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14237,"mutability":"mutable","name":"self","nameLocation":"27663:4:48","nodeType":"VariableDeclaration","scope":14248,"src":"27645:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14236,"nodeType":"UserDefinedTypeName","pathNode":{"id":14235,"name":"DataResult","nameLocations":["27645:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"27645:10:48"},"referencedDeclaration":13388,"src":"27645:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"27644:24:48"},"returnParameters":{"id":14241,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14240,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14248,"src":"27692:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14239,"name":"bool","nodeType":"ElementaryTypeName","src":"27692:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"27691:6:48"},"scope":16767,"src":"27624:124:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14261,"nodeType":"Block","src":"27828:48:48","statements":[{"expression":{"arguments":[{"expression":{"id":14257,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14251,"src":"27856:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14258,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27861:6:48","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":13375,"src":"27856:11:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}],"id":14256,"name":"hasErrors","nodeType":"Identifier","overloadedDeclarations":[14262,14928],"referencedDeclaration":14928,"src":"27846:9:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ResultStatus_$13729_$returns$_t_bool_$","typeString":"function (enum Witnet.ResultStatus) pure returns (bool)"}},"id":14259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27846:22:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14255,"id":14260,"nodeType":"Return","src":"27839:29:48"}]},"id":14262,"implemented":true,"kind":"function","modifiers":[],"name":"hasErrors","nameLocation":"27765:9:48","nodeType":"FunctionDefinition","parameters":{"id":14252,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14251,"mutability":"mutable","name":"self","nameLocation":"27793:4:48","nodeType":"VariableDeclaration","scope":14262,"src":"27775:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14250,"nodeType":"UserDefinedTypeName","pathNode":{"id":14249,"name":"DataResult","nameLocations":["27775:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"27775:10:48"},"referencedDeclaration":13388,"src":"27775:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"27774:24:48"},"returnParameters":{"id":14255,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14254,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14262,"src":"27822:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14253,"name":"bool","nodeType":"ElementaryTypeName","src":"27822:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"27821:6:48"},"scope":16767,"src":"27756:120:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14293,"nodeType":"Block","src":"27965:225:48","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14279,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14274,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"27998:18:48","subExpression":{"arguments":[{"id":14272,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14265,"src":"28011:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}],"id":14271,"name":"keepWaiting","nodeType":"Identifier","overloadedDeclarations":[14248,14985],"referencedDeclaration":14248,"src":"27999:11:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_DataResult_$13388_memory_ptr_$returns$_t_bool_$","typeString":"function (struct Witnet.DataResult memory) pure returns (bool)"}},"id":14273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27999:17:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"},"id":14278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14275,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14265,"src":"28037:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14276,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28042:8:48","memberName":"dataType","nodeType":"MemberAccess","referencedDeclaration":13378,"src":"28037:13:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":14277,"name":"expectedDataType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14268,"src":"28054:16:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"src":"28037:33:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"27998:72:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"63626f723a2063616e6e6f742066657463682064617461","id":14280,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"28086:25:48","typeDescriptions":{"typeIdentifier":"t_stringliteral_f9e00dcd71685f8522f8d07872510c3a81c2039687b393455d27e0cdc22dcafa","typeString":"literal_string \"cbor: cannot fetch data\""},"value":"cbor: cannot fetch data"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_f9e00dcd71685f8522f8d07872510c3a81c2039687b393455d27e0cdc22dcafa","typeString":"literal_string \"cbor: cannot fetch data\""}],"id":14270,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"27976:7:48","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":14281,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27976:146:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":14282,"nodeType":"ExpressionStatement","src":"27976:146:48"},{"id":14283,"nodeType":"PlaceholderStatement","src":"28124:1:48"},{"expression":{"id":14291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14284,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14265,"src":"28137:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14286,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"28142:8:48","memberName":"dataType","nodeType":"MemberAccess","referencedDeclaration":13378,"src":"28137:13:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":14288,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14265,"src":"28171:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14289,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28176:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13387,"src":"28171:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}],"id":14287,"name":"peekRadonDataType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14653,"src":"28153:17:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_enum$_RadonDataTypes_$13751_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (enum Witnet.RadonDataTypes)"}},"id":14290,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28153:29:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"src":"28137:45:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"id":14292,"nodeType":"ExpressionStatement","src":"28137:45:48"}]},"id":14294,"name":"_checkDataType","nameLocation":"27893:14:48","nodeType":"ModifierDefinition","parameters":{"id":14269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14265,"mutability":"mutable","name":"self","nameLocation":"27926:4:48","nodeType":"VariableDeclaration","scope":14294,"src":"27908:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14264,"nodeType":"UserDefinedTypeName","pathNode":{"id":14263,"name":"DataResult","nameLocations":["27908:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"27908:10:48"},"referencedDeclaration":13388,"src":"27908:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"},{"constant":false,"id":14268,"mutability":"mutable","name":"expectedDataType","nameLocation":"27947:16:48","nodeType":"VariableDeclaration","scope":14294,"src":"27932:31:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":14267,"nodeType":"UserDefinedTypeName","pathNode":{"id":14266,"name":"RadonDataTypes","nameLocations":["27932:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13751,"src":"27932:14:48"},"referencedDeclaration":13751,"src":"27932:14:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"}],"src":"27907:57:48"},"src":"27884:306:48","virtual":false,"visibility":"internal"},{"body":{"id":14314,"nodeType":"Block","src":"28359:59:48","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14308,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14297,"src":"28387:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14309,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28392:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13387,"src":"28387:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14310,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28398:9:48","memberName":"readBytes","nodeType":"MemberAccess","referencedDeclaration":19598,"src":"28387:20:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (bytes memory)"}},"id":14311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28387:22:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":14307,"name":"toAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15675,"src":"28377:9:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes memory) pure returns (address)"}},"id":14312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28377:33:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":14306,"id":14313,"nodeType":"Return","src":"28370:40:48"}]},"id":14315,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14300,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14297,"src":"28293:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14301,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"28299:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14302,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"28314:5:48","memberName":"Bytes","nodeType":"MemberAccess","referencedDeclaration":13734,"src":"28299:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}}],"id":14303,"kind":"modifierInvocation","modifierName":{"id":14299,"name":"_checkDataType","nameLocations":["28278:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14294,"src":"28278:14:48"},"nodeType":"ModifierInvocation","src":"28278:42:48"}],"name":"fetchAddress","nameLocation":"28207:12:48","nodeType":"FunctionDefinition","parameters":{"id":14298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14297,"mutability":"mutable","name":"self","nameLocation":"28238:4:48","nodeType":"VariableDeclaration","scope":14315,"src":"28220:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14296,"nodeType":"UserDefinedTypeName","pathNode":{"id":14295,"name":"DataResult","nameLocations":["28220:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"28220:10:48"},"referencedDeclaration":13388,"src":"28220:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"28219:24:48"},"returnParameters":{"id":14306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14305,"mutability":"mutable","name":"_res","nameLocation":"28348:4:48","nodeType":"VariableDeclaration","scope":14315,"src":"28340:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14304,"name":"address","nodeType":"ElementaryTypeName","src":"28340:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"28339:14:48"},"scope":16767,"src":"28198:220:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14333,"nodeType":"Block","src":"28575:47:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14328,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14318,"src":"28593:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14329,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28598:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13387,"src":"28593:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14330,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28604:8:48","memberName":"readBool","nodeType":"MemberAccess","referencedDeclaration":19499,"src":"28593:19:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_bool_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (bool)"}},"id":14331,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28593:21:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14327,"id":14332,"nodeType":"Return","src":"28586:28:48"}]},"id":14334,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14321,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14318,"src":"28518:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14322,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"28524:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14323,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"28539:4:48","memberName":"Bool","nodeType":"MemberAccess","referencedDeclaration":13733,"src":"28524:19:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}}],"id":14324,"kind":"modifierInvocation","modifierName":{"id":14320,"name":"_checkDataType","nameLocations":["28503:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14294,"src":"28503:14:48"},"nodeType":"ModifierInvocation","src":"28503:41:48"}],"name":"fetchBool","nameLocation":"28435:9:48","nodeType":"FunctionDefinition","parameters":{"id":14319,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14318,"mutability":"mutable","name":"self","nameLocation":"28463:4:48","nodeType":"VariableDeclaration","scope":14334,"src":"28445:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14317,"nodeType":"UserDefinedTypeName","pathNode":{"id":14316,"name":"DataResult","nameLocations":["28445:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"28445:10:48"},"referencedDeclaration":13388,"src":"28445:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"28444:24:48"},"returnParameters":{"id":14327,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14326,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14334,"src":"28564:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14325,"name":"bool","nodeType":"ElementaryTypeName","src":"28564:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"28563:6:48"},"scope":16767,"src":"28426:196:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14352,"nodeType":"Block","src":"28788:48:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14347,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14337,"src":"28806:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14348,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28811:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13387,"src":"28806:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14349,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28817:9:48","memberName":"readBytes","nodeType":"MemberAccess","referencedDeclaration":19598,"src":"28806:20:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (bytes memory)"}},"id":14350,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"28806:22:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":14346,"id":14351,"nodeType":"Return","src":"28799:29:48"}]},"id":14353,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14340,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14337,"src":"28722:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14341,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"28728:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14342,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"28743:5:48","memberName":"Bytes","nodeType":"MemberAccess","referencedDeclaration":13734,"src":"28728:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}}],"id":14343,"kind":"modifierInvocation","modifierName":{"id":14339,"name":"_checkDataType","nameLocations":["28707:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14294,"src":"28707:14:48"},"nodeType":"ModifierInvocation","src":"28707:42:48"}],"name":"fetchBytes","nameLocation":"28639:10:48","nodeType":"FunctionDefinition","parameters":{"id":14338,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14337,"mutability":"mutable","name":"self","nameLocation":"28668:4:48","nodeType":"VariableDeclaration","scope":14353,"src":"28650:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14336,"nodeType":"UserDefinedTypeName","pathNode":{"id":14335,"name":"DataResult","nameLocations":["28650:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"28650:10:48"},"referencedDeclaration":13388,"src":"28650:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"28649:24:48"},"returnParameters":{"id":14346,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14345,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14353,"src":"28769:12:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":14344,"name":"bytes","nodeType":"ElementaryTypeName","src":"28769:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"28768:14:48"},"scope":16767,"src":"28630:206:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14373,"nodeType":"Block","src":"28997:58:48","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14367,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14356,"src":"29024:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14368,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29029:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13387,"src":"29024:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14369,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29035:9:48","memberName":"readBytes","nodeType":"MemberAccess","referencedDeclaration":19598,"src":"29024:20:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (bytes memory)"}},"id":14370,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29024:22:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":14366,"name":"toBytes4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15691,"src":"29015:8:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_bytes4_$","typeString":"function (bytes memory) pure returns (bytes4)"}},"id":14371,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29015:32:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":14365,"id":14372,"nodeType":"Return","src":"29008:39:48"}]},"id":14374,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14359,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14356,"src":"28937:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14360,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"28943:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14361,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"28958:5:48","memberName":"Bytes","nodeType":"MemberAccess","referencedDeclaration":13734,"src":"28943:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}}],"id":14362,"kind":"modifierInvocation","modifierName":{"id":14358,"name":"_checkDataType","nameLocations":["28922:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14294,"src":"28922:14:48"},"nodeType":"ModifierInvocation","src":"28922:42:48"}],"name":"fetchBytes4","nameLocation":"28853:11:48","nodeType":"FunctionDefinition","parameters":{"id":14357,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14356,"mutability":"mutable","name":"self","nameLocation":"28883:4:48","nodeType":"VariableDeclaration","scope":14374,"src":"28865:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14355,"nodeType":"UserDefinedTypeName","pathNode":{"id":14354,"name":"DataResult","nameLocations":["28865:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"28865:10:48"},"referencedDeclaration":13388,"src":"28865:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"28864:24:48"},"returnParameters":{"id":14365,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14364,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14374,"src":"28984:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14363,"name":"bytes4","nodeType":"ElementaryTypeName","src":"28984:6:48","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"28983:8:48"},"scope":16767,"src":"28844:211:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14394,"nodeType":"Block","src":"29218:59:48","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14388,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14377,"src":"29246:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14389,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29251:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13387,"src":"29246:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14390,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29257:9:48","memberName":"readBytes","nodeType":"MemberAccess","referencedDeclaration":19598,"src":"29246:20:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (bytes memory)"}},"id":14391,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29246:22:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":14387,"name":"toBytes32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15720,"src":"29236:9:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":14392,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29236:33:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":14386,"id":14393,"nodeType":"Return","src":"29229:40:48"}]},"id":14395,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14380,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14377,"src":"29157:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14381,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"29163:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14382,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"29178:5:48","memberName":"Bytes","nodeType":"MemberAccess","referencedDeclaration":13734,"src":"29163:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}}],"id":14383,"kind":"modifierInvocation","modifierName":{"id":14379,"name":"_checkDataType","nameLocations":["29142:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14294,"src":"29142:14:48"},"nodeType":"ModifierInvocation","src":"29142:42:48"}],"name":"fetchBytes32","nameLocation":"29072:12:48","nodeType":"FunctionDefinition","parameters":{"id":14378,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14377,"mutability":"mutable","name":"self","nameLocation":"29103:4:48","nodeType":"VariableDeclaration","scope":14395,"src":"29085:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14376,"nodeType":"UserDefinedTypeName","pathNode":{"id":14375,"name":"DataResult","nameLocations":["29085:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"29085:10:48"},"referencedDeclaration":13388,"src":"29085:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"29084:24:48"},"returnParameters":{"id":14386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14385,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14395,"src":"29204:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14384,"name":"bytes32","nodeType":"ElementaryTypeName","src":"29204:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"29203:9:48"},"scope":16767,"src":"29063:214:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14415,"nodeType":"Block","src":"29459:48:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14410,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14398,"src":"29477:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14411,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29482:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13387,"src":"29477:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14412,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29488:9:48","memberName":"readArray","nodeType":"MemberAccess","referencedDeclaration":19266,"src":"29477:20:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory[] memory)"}},"id":14413,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"29477:22:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"functionReturnParameters":14409,"id":14414,"nodeType":"Return","src":"29470:29:48"}]},"id":14416,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14401,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14398,"src":"29381:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14402,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"29387:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14403,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"29402:5:48","memberName":"Array","nodeType":"MemberAccess","referencedDeclaration":13732,"src":"29387:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}}],"id":14404,"kind":"modifierInvocation","modifierName":{"id":14400,"name":"_checkDataType","nameLocations":["29366:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14294,"src":"29366:14:48"},"nodeType":"ModifierInvocation","src":"29366:42:48"}],"name":"fetchCborArray","nameLocation":"29294:14:48","nodeType":"FunctionDefinition","parameters":{"id":14399,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14398,"mutability":"mutable","name":"self","nameLocation":"29327:4:48","nodeType":"VariableDeclaration","scope":14416,"src":"29309:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14397,"nodeType":"UserDefinedTypeName","pathNode":{"id":14396,"name":"DataResult","nameLocations":["29309:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"29309:10:48"},"referencedDeclaration":13388,"src":"29309:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"29308:24:48"},"returnParameters":{"id":14409,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14408,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14416,"src":"29428:24:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR[]"},"typeName":{"baseType":{"id":14406,"nodeType":"UserDefinedTypeName","pathNode":{"id":14405,"name":"WitnetCBOR.CBOR","nameLocations":["29428:10:48","29439:4:48"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"29428:15:48"},"referencedDeclaration":18684,"src":"29428:15:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":14407,"nodeType":"ArrayTypeName","src":"29428:17:48","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}},"visibility":"internal"}],"src":"29427:26:48"},"scope":16767,"src":"29285:222:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14435,"nodeType":"Block","src":"30133:50:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14430,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14420,"src":"30151:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14431,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30156:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13387,"src":"30151:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14432,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30162:11:48","memberName":"readFloat16","nodeType":"MemberAccess","referencedDeclaration":19629,"src":"30151:22:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_int32_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (int32)"}},"id":14433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30151:24:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"functionReturnParameters":14429,"id":14434,"nodeType":"Return","src":"30144:31:48"}]},"documentation":{"id":14417,"nodeType":"StructuredDocumentation","src":"29515:454:48","text":"@dev Decode a fixed16 (half-precision) numeric value from the Result's CBOR value.\n @dev Due to the lack of support for floating or fixed point arithmetic in the EVM, this method offsets all values.\n by 5 decimal orders so as to get a fixed precision of 5 decimal positions, which should be OK for most `fixed16`.\n use cases. In other words, the output of this method is 10,000 times the actual value, encoded into an `int32`."},"id":14436,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14423,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14420,"src":"30074:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14424,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"30080:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14425,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"30095:5:48","memberName":"Float","nodeType":"MemberAccess","referencedDeclaration":13736,"src":"30080:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}}],"id":14426,"kind":"modifierInvocation","modifierName":{"id":14422,"name":"_checkDataType","nameLocations":["30059:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14294,"src":"30059:14:48"},"nodeType":"ModifierInvocation","src":"30059:42:48"}],"name":"fetchFloatFixed16","nameLocation":"29984:17:48","nodeType":"FunctionDefinition","parameters":{"id":14421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14420,"mutability":"mutable","name":"self","nameLocation":"30020:4:48","nodeType":"VariableDeclaration","scope":14436,"src":"30002:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14419,"nodeType":"UserDefinedTypeName","pathNode":{"id":14418,"name":"DataResult","nameLocations":["30002:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"30002:10:48"},"referencedDeclaration":13388,"src":"30002:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"30001:24:48"},"returnParameters":{"id":14429,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14428,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14436,"src":"30121:5:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":14427,"name":"int32","nodeType":"ElementaryTypeName","src":"30121:5:48","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"src":"30120:7:48"},"scope":16767,"src":"29975:208:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14456,"nodeType":"Block","src":"30439:55:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14451,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14440,"src":"30457:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14452,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30462:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13387,"src":"30457:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14453,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30468:16:48","memberName":"readFloat16Array","nodeType":"MemberAccess","referencedDeclaration":19762,"src":"30457:27:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_array$_t_int32_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (int32[] memory)"}},"id":14454,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30457:29:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_memory_ptr","typeString":"int32[] memory"}},"functionReturnParameters":14450,"id":14455,"nodeType":"Return","src":"30450:36:48"}]},"documentation":{"id":14437,"nodeType":"StructuredDocumentation","src":"30191:72:48","text":"@dev Decode an array of fixed16 values from the Result's CBOR value."},"id":14457,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14443,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14440,"src":"30372:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14444,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"30378:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14445,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"30393:5:48","memberName":"Array","nodeType":"MemberAccess","referencedDeclaration":13732,"src":"30378:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}}],"id":14446,"kind":"modifierInvocation","modifierName":{"id":14442,"name":"_checkDataType","nameLocations":["30357:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14294,"src":"30357:14:48"},"nodeType":"ModifierInvocation","src":"30357:42:48"}],"name":"fetchFloatFixed16Array","nameLocation":"30278:22:48","nodeType":"FunctionDefinition","parameters":{"id":14441,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14440,"mutability":"mutable","name":"self","nameLocation":"30319:4:48","nodeType":"VariableDeclaration","scope":14457,"src":"30301:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14439,"nodeType":"UserDefinedTypeName","pathNode":{"id":14438,"name":"DataResult","nameLocations":["30301:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"30301:10:48"},"referencedDeclaration":13388,"src":"30301:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"30300:24:48"},"returnParameters":{"id":14450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14449,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14457,"src":"30418:14:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_memory_ptr","typeString":"int32[]"},"typeName":{"baseType":{"id":14447,"name":"int32","nodeType":"ElementaryTypeName","src":"30418:5:48","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":14448,"nodeType":"ArrayTypeName","src":"30418:7:48","typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_storage_ptr","typeString":"int32[]"}},"visibility":"internal"}],"src":"30417:16:48"},"scope":16767,"src":"30269:225:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14476,"nodeType":"Block","src":"30722:46:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14471,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14461,"src":"30740:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14472,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30745:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13387,"src":"30740:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14473,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30751:7:48","memberName":"readInt","nodeType":"MemberAccess","referencedDeclaration":19821,"src":"30740:18:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_int64_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (int64)"}},"id":14474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30740:20:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"functionReturnParameters":14470,"id":14475,"nodeType":"Return","src":"30733:27:48"}]},"documentation":{"id":14458,"nodeType":"StructuredDocumentation","src":"30502:65:48","text":"@dev Decode a `int64` value from the DataResult's CBOR value."},"id":14477,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14464,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14461,"src":"30662:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14465,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"30668:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14466,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"30683:7:48","memberName":"Integer","nodeType":"MemberAccess","referencedDeclaration":13735,"src":"30668:22:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}}],"id":14467,"kind":"modifierInvocation","modifierName":{"id":14463,"name":"_checkDataType","nameLocations":["30647:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14294,"src":"30647:14:48"},"nodeType":"ModifierInvocation","src":"30647:44:48"}],"name":"fetchInt","nameLocation":"30582:8:48","nodeType":"FunctionDefinition","parameters":{"id":14462,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14461,"mutability":"mutable","name":"self","nameLocation":"30609:4:48","nodeType":"VariableDeclaration","scope":14477,"src":"30591:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14460,"nodeType":"UserDefinedTypeName","pathNode":{"id":14459,"name":"DataResult","nameLocations":["30591:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"30591:10:48"},"referencedDeclaration":13388,"src":"30591:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"30590:24:48"},"returnParameters":{"id":14470,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14469,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14477,"src":"30710:5:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"},"typeName":{"id":14468,"name":"int64","nodeType":"ElementaryTypeName","src":"30710:5:48","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"visibility":"internal"}],"src":"30709:7:48"},"scope":16767,"src":"30573:195:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14496,"nodeType":"Block","src":"30939:51:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14491,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14480,"src":"30957:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14492,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30962:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13387,"src":"30957:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14493,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30968:12:48","memberName":"readIntArray","nodeType":"MemberAccess","referencedDeclaration":19892,"src":"30957:23:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_array$_t_int64_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (int64[] memory)"}},"id":14494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"30957:25:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_memory_ptr","typeString":"int64[] memory"}},"functionReturnParameters":14490,"id":14495,"nodeType":"Return","src":"30950:32:48"}]},"id":14497,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14483,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14480,"src":"30872:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14484,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"30878:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14485,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"30893:5:48","memberName":"Array","nodeType":"MemberAccess","referencedDeclaration":13732,"src":"30878:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}}],"id":14486,"kind":"modifierInvocation","modifierName":{"id":14482,"name":"_checkDataType","nameLocations":["30857:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14294,"src":"30857:14:48"},"nodeType":"ModifierInvocation","src":"30857:42:48"}],"name":"fetchInt64Array","nameLocation":"30785:15:48","nodeType":"FunctionDefinition","parameters":{"id":14481,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14480,"mutability":"mutable","name":"self","nameLocation":"30819:4:48","nodeType":"VariableDeclaration","scope":14497,"src":"30801:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14479,"nodeType":"UserDefinedTypeName","pathNode":{"id":14478,"name":"DataResult","nameLocations":["30801:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"30801:10:48"},"referencedDeclaration":13388,"src":"30801:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"30800:24:48"},"returnParameters":{"id":14490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14489,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14497,"src":"30918:14:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_memory_ptr","typeString":"int64[]"},"typeName":{"baseType":{"id":14487,"name":"int64","nodeType":"ElementaryTypeName","src":"30918:5:48","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":14488,"nodeType":"ArrayTypeName","src":"30918:7:48","typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_storage_ptr","typeString":"int64[]"}},"visibility":"internal"}],"src":"30917:16:48"},"scope":16767,"src":"30776:214:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14515,"nodeType":"Block","src":"31157:49:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14510,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14500,"src":"31175:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14511,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31180:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13387,"src":"31175:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14512,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31186:10:48","memberName":"readString","nodeType":"MemberAccess","referencedDeclaration":19977,"src":"31175:21:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (string memory)"}},"id":14513,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31175:23:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":14509,"id":14514,"nodeType":"Return","src":"31168:30:48"}]},"id":14516,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14503,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14500,"src":"31090:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14504,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"31096:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14505,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"31111:6:48","memberName":"String","nodeType":"MemberAccess","referencedDeclaration":13738,"src":"31096:21:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}}],"id":14506,"kind":"modifierInvocation","modifierName":{"id":14502,"name":"_checkDataType","nameLocations":["31075:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14294,"src":"31075:14:48"},"nodeType":"ModifierInvocation","src":"31075:43:48"}],"name":"fetchString","nameLocation":"31007:11:48","nodeType":"FunctionDefinition","parameters":{"id":14501,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14500,"mutability":"mutable","name":"self","nameLocation":"31037:4:48","nodeType":"VariableDeclaration","scope":14516,"src":"31019:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14499,"nodeType":"UserDefinedTypeName","pathNode":{"id":14498,"name":"DataResult","nameLocations":["31019:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"31019:10:48"},"referencedDeclaration":13388,"src":"31019:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"31018:24:48"},"returnParameters":{"id":14509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14508,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14516,"src":"31137:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":14507,"name":"string","nodeType":"ElementaryTypeName","src":"31137:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"31136:15:48"},"scope":16767,"src":"30998:208:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14535,"nodeType":"Block","src":"31379:54:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14530,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14519,"src":"31397:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14531,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31402:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13387,"src":"31397:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14532,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31408:15:48","memberName":"readStringArray","nodeType":"MemberAccess","referencedDeclaration":20048,"src":"31397:26:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (string memory[] memory)"}},"id":14533,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31397:28:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"functionReturnParameters":14529,"id":14534,"nodeType":"Return","src":"31390:35:48"}]},"id":14536,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14522,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14519,"src":"31311:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14523,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"31317:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14524,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"31332:5:48","memberName":"Array","nodeType":"MemberAccess","referencedDeclaration":13732,"src":"31317:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}}],"id":14525,"kind":"modifierInvocation","modifierName":{"id":14521,"name":"_checkDataType","nameLocations":["31296:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14294,"src":"31296:14:48"},"nodeType":"ModifierInvocation","src":"31296:42:48"}],"name":"fetchStringArray","nameLocation":"31223:16:48","nodeType":"FunctionDefinition","parameters":{"id":14520,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14519,"mutability":"mutable","name":"self","nameLocation":"31258:4:48","nodeType":"VariableDeclaration","scope":14536,"src":"31240:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14518,"nodeType":"UserDefinedTypeName","pathNode":{"id":14517,"name":"DataResult","nameLocations":["31240:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"31240:10:48"},"referencedDeclaration":13388,"src":"31240:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"31239:24:48"},"returnParameters":{"id":14529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14528,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14536,"src":"31357:15:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":14526,"name":"string","nodeType":"ElementaryTypeName","src":"31357:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":14527,"nodeType":"ArrayTypeName","src":"31357:8:48","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"src":"31356:17:48"},"scope":16767,"src":"31214:219:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14555,"nodeType":"Block","src":"31664:47:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14550,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14540,"src":"31682:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14551,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31687:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13387,"src":"31682:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14552,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31693:8:48","memberName":"readUint","nodeType":"MemberAccess","referencedDeclaration":20069,"src":"31682:19:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_uint64_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64)"}},"id":14553,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31682:21:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":14549,"id":14554,"nodeType":"Return","src":"31675:28:48"}]},"documentation":{"id":14537,"nodeType":"StructuredDocumentation","src":"31441:66:48","text":"@dev Decode a `uint64` value from the DataResult's CBOR value."},"id":14556,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14543,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14540,"src":"31603:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14544,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"31609:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14545,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"31624:7:48","memberName":"Integer","nodeType":"MemberAccess","referencedDeclaration":13735,"src":"31609:22:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}}],"id":14546,"kind":"modifierInvocation","modifierName":{"id":14542,"name":"_checkDataType","nameLocations":["31588:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14294,"src":"31588:14:48"},"nodeType":"ModifierInvocation","src":"31588:44:48"}],"name":"fetchUint","nameLocation":"31522:9:48","nodeType":"FunctionDefinition","parameters":{"id":14541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14540,"mutability":"mutable","name":"self","nameLocation":"31550:4:48","nodeType":"VariableDeclaration","scope":14556,"src":"31532:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14539,"nodeType":"UserDefinedTypeName","pathNode":{"id":14538,"name":"DataResult","nameLocations":["31532:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"31532:10:48"},"referencedDeclaration":13388,"src":"31532:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"31531:24:48"},"returnParameters":{"id":14549,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14548,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14556,"src":"31651:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":14547,"name":"uint64","nodeType":"ElementaryTypeName","src":"31651:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"31650:8:48"},"scope":16767,"src":"31513:198:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14575,"nodeType":"Block","src":"31884:52:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14570,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14559,"src":"31902:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14571,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31907:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13387,"src":"31902:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14572,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31913:13:48","memberName":"readUintArray","nodeType":"MemberAccess","referencedDeclaration":20140,"src":"31902:24:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_array$_t_uint64_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64[] memory)"}},"id":14573,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31902:26:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"functionReturnParameters":14569,"id":14574,"nodeType":"Return","src":"31895:33:48"}]},"id":14576,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14562,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14559,"src":"31816:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14563,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"31822:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14564,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"31837:5:48","memberName":"Array","nodeType":"MemberAccess","referencedDeclaration":13732,"src":"31822:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}}],"id":14565,"kind":"modifierInvocation","modifierName":{"id":14561,"name":"_checkDataType","nameLocations":["31801:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14294,"src":"31801:14:48"},"nodeType":"ModifierInvocation","src":"31801:42:48"}],"name":"fetchUint64Array","nameLocation":"31728:16:48","nodeType":"FunctionDefinition","parameters":{"id":14560,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14559,"mutability":"mutable","name":"self","nameLocation":"31763:4:48","nodeType":"VariableDeclaration","scope":14576,"src":"31745:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14558,"nodeType":"UserDefinedTypeName","pathNode":{"id":14557,"name":"DataResult","nameLocations":["31745:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13388,"src":"31745:10:48"},"referencedDeclaration":13388,"src":"31745:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13388_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"31744:24:48"},"returnParameters":{"id":14569,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14568,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14576,"src":"31862:15:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[]"},"typeName":{"baseType":{"id":14566,"name":"uint64","nodeType":"ElementaryTypeName","src":"31862:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":14567,"nodeType":"ArrayTypeName","src":"31862:8:48","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_storage_ptr","typeString":"uint64[]"}},"visibility":"internal"}],"src":"31861:17:48"},"scope":16767,"src":"31719:217:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"constant":true,"id":14579,"mutability":"constant","name":"_CBOR_MAJOR_TYPE_TO_RADON_DATA_TYPES_MAP","nameLocation":"31968:40:48","nodeType":"VariableDeclaration","scope":16767,"src":"31944:83:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes7","typeString":"bytes7"},"typeName":{"id":14577,"name":"bytes7","nodeType":"ElementaryTypeName","src":"31944:6:48","typeDescriptions":{"typeIdentifier":"t_bytes7","typeString":"bytes7"}},"value":{"hexValue":"30783034303430333037303130363030","id":14578,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32011:16:48","typeDescriptions":{"typeIdentifier":"t_rational_1130310955763200_by_1","typeString":"int_const 1130310955763200"},"value":"0x04040307010600"},"visibility":"private"},{"body":{"id":14652,"nodeType":"Block","src":"32135:642:48","statements":[{"expression":{"id":14591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14588,"name":"_type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14586,"src":"32146:5:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":14589,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"32154:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14590,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"32169:3:48","memberName":"Any","nodeType":"MemberAccess","referencedDeclaration":13731,"src":"32154:18:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"src":"32146:26:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"id":14592,"nodeType":"ExpressionStatement","src":"32146:26:48"},{"condition":{"id":14596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"32187:11:48","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":14593,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14582,"src":"32188:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14594,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32193:3:48","memberName":"eof","nodeType":"MemberAccess","referencedDeclaration":18800,"src":"32188:8:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_bool_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (bool)"}},"id":14595,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32188:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14651,"nodeType":"IfStatement","src":"32183:587:48","trueBody":{"id":14650,"nodeType":"Block","src":"32200:570:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14597,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14582,"src":"32219:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14598,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32224:9:48","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"32219:14:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"36","id":14599,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32237:1:48","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"32219:19:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14615,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14582,"src":"32393:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14616,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32398:9:48","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"32393:14:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"37","id":14617,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32411:1:48","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"32393:19:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14648,"nodeType":"IfStatement","src":"32389:370:48","trueBody":{"id":14647,"nodeType":"Block","src":"32414:345:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14622,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14619,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14582,"src":"32437:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14620,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32442:21:48","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"32437:26:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3230","id":14621,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32467:2:48","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"src":"32437:32:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14626,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14623,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14582,"src":"32473:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14624,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32478:21:48","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"32473:26:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3231","id":14625,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32503:2:48","typeDescriptions":{"typeIdentifier":"t_rational_21_by_1","typeString":"int_const 21"},"value":"21"},"src":"32473:32:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"32437:68:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14632,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14582,"src":"32604:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14633,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32609:21:48","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"32604:26:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3235","id":14634,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32634:2:48","typeDescriptions":{"typeIdentifier":"t_rational_25_by_1","typeString":"int_const 25"},"value":"25"},"src":"32604:32:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14636,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14582,"src":"32640:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14637,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32645:21:48","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"32640:26:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"3237","id":14638,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"32670:2:48","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"32640:32:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"32604:68:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":14645,"nodeType":"IfStatement","src":"32600:144:48","trueBody":{"id":14644,"nodeType":"Block","src":"32674:70:48","statements":[{"expression":{"expression":{"id":14641,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"32704:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14642,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"32719:5:48","memberName":"Float","nodeType":"MemberAccess","referencedDeclaration":13736,"src":"32704:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"functionReturnParameters":14587,"id":14643,"nodeType":"Return","src":"32697:27:48"}]}},"id":14646,"nodeType":"IfStatement","src":"32433:311:48","trueBody":{"id":14631,"nodeType":"Block","src":"32507:87:48","statements":[{"expression":{"expression":{"id":14628,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"32537:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14629,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"32552:4:48","memberName":"Bool","nodeType":"MemberAccess","referencedDeclaration":13733,"src":"32537:19:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"functionReturnParameters":14587,"id":14630,"nodeType":"Return","src":"32530:26:48"}]}}]}},"id":14649,"nodeType":"IfStatement","src":"32215:544:48","trueBody":{"id":14614,"nodeType":"Block","src":"32240:143:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"baseExpression":{"id":14606,"name":"_CBOR_MAJOR_TYPE_TO_RADON_DATA_TYPES_MAP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14579,"src":"32294:40:48","typeDescriptions":{"typeIdentifier":"t_bytes7","typeString":"bytes7"}},"id":14609,"indexExpression":{"expression":{"id":14607,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14582,"src":"32335:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14608,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32340:9:48","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"32335:14:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"32294:56:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":14605,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32287:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":14604,"name":"bytes1","nodeType":"ElementaryTypeName","src":"32287:6:48","typeDescriptions":{}}},"id":14610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32287:64:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":14603,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"32281:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":14602,"name":"uint8","nodeType":"ElementaryTypeName","src":"32281:5:48","typeDescriptions":{}}},"id":14611,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32281:71:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":14601,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13751,"src":"32266:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13751_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14612,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32266:87:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"functionReturnParameters":14587,"id":14613,"nodeType":"Return","src":"32259:94:48"}]}}]}}]},"id":14653,"implemented":true,"kind":"function","modifiers":[],"name":"peekRadonDataType","nameLocation":"32043:17:48","nodeType":"FunctionDefinition","parameters":{"id":14583,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14582,"mutability":"mutable","name":"cbor","nameLocation":"32084:4:48","nodeType":"VariableDeclaration","scope":14653,"src":"32061:27:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":14581,"nodeType":"UserDefinedTypeName","pathNode":{"id":14580,"name":"WitnetCBOR.CBOR","nameLocations":["32061:10:48","32072:4:48"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"32061:15:48"},"referencedDeclaration":18684,"src":"32061:15:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"32060:29:48"},"returnParameters":{"id":14587,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14586,"mutability":"mutable","name":"_type","nameLocation":"32128:5:48","nodeType":"VariableDeclaration","scope":14653,"src":"32113:20:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":14585,"nodeType":"UserDefinedTypeName","pathNode":{"id":14584,"name":"RadonDataTypes","nameLocations":["32113:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13751,"src":"32113:14:48"},"referencedDeclaration":13751,"src":"32113:14:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13751","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"}],"src":"32112:22:48"},"scope":16767,"src":"32034:743:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14672,"nodeType":"Block","src":"33050:58:48","statements":[{"expression":{"expression":{"baseExpression":{"id":14664,"name":"rollup","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14658,"src":"33068:6:48","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_FastForward_$13401_calldata_ptr_$dyn_calldata_ptr","typeString":"struct Witnet.FastForward calldata[] calldata"}},"id":14669,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14668,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14665,"name":"rollup","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14658,"src":"33075:6:48","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_FastForward_$13401_calldata_ptr_$dyn_calldata_ptr","typeString":"struct Witnet.FastForward calldata[] calldata"}},"id":14666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33082:6:48","memberName":"length","nodeType":"MemberAccess","src":"33075:13:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14667,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"33091:1:48","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"33075:17:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"33068:25:48","typeDescriptions":{"typeIdentifier":"t_struct$_FastForward_$13401_calldata_ptr","typeString":"struct Witnet.FastForward calldata"}},"id":14670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33094:6:48","memberName":"beacon","nodeType":"MemberAccess","referencedDeclaration":13391,"src":"33068:32:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}},"functionReturnParameters":14663,"id":14671,"nodeType":"Return","src":"33061:39:48"}]},"documentation":{"id":14654,"nodeType":"StructuredDocumentation","src":"32787:158:48","text":"=======================================================================\n --- FastForward helper functions --------------------------------------"},"id":14673,"implemented":true,"kind":"function","modifiers":[],"name":"head","nameLocation":"32960:4:48","nodeType":"FunctionDefinition","parameters":{"id":14659,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14658,"mutability":"mutable","name":"rollup","nameLocation":"32988:6:48","nodeType":"VariableDeclaration","scope":14673,"src":"32965:29:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_FastForward_$13401_calldata_ptr_$dyn_calldata_ptr","typeString":"struct Witnet.FastForward[]"},"typeName":{"baseType":{"id":14656,"nodeType":"UserDefinedTypeName","pathNode":{"id":14655,"name":"FastForward","nameLocations":["32965:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13401,"src":"32965:11:48"},"referencedDeclaration":13401,"src":"32965:11:48","typeDescriptions":{"typeIdentifier":"t_struct$_FastForward_$13401_storage_ptr","typeString":"struct Witnet.FastForward"}},"id":14657,"nodeType":"ArrayTypeName","src":"32965:13:48","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_FastForward_$13401_storage_$dyn_storage_ptr","typeString":"struct Witnet.FastForward[]"}},"visibility":"internal"}],"src":"32964:31:48"},"returnParameters":{"id":14663,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14662,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14673,"src":"33028:15:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_calldata_ptr","typeString":"struct Witnet.Beacon"},"typeName":{"id":14661,"nodeType":"UserDefinedTypeName","pathNode":{"id":14660,"name":"Beacon","nameLocations":["33028:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":13339,"src":"33028:6:48"},"referencedDeclaration":13339,"src":"33028:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13339_storage_ptr","typeString":"struct Witnet.Beacon"}},"visibility":"internal"}],"src":"33027:17:48"},"scope":16767,"src":"32951:157:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14704,"nodeType":"Block","src":"33468:243:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":14689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14685,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14677,"src":"33505:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33510:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13469,"src":"33505:21:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":14687,"name":"stored","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14680,"src":"33530:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA storage pointer"}},"id":14688,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33537:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13469,"src":"33530:23:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"33505:48:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14690,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14677,"src":"33574:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14691,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33579:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"33574:21:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":14692,"name":"stored","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14680,"src":"33599:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA storage pointer"}},"id":14693,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33606:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"33599:23:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"33574:48:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"33505:117:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":14700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14696,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14677,"src":"33644:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33649:16:48","memberName":"witResultMaxSize","nodeType":"MemberAccess","referencedDeclaration":13467,"src":"33644:21:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":14698,"name":"stored","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14680,"src":"33669:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA storage pointer"}},"id":14699,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33676:16:48","memberName":"witResultMaxSize","nodeType":"MemberAccess","referencedDeclaration":13467,"src":"33669:23:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"33644:48:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"33505:187:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":14702,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"33486:217:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14684,"id":14703,"nodeType":"Return","src":"33479:224:48"}]},"documentation":{"id":14674,"nodeType":"StructuredDocumentation","src":"33118:238:48","text":"===============================================================================================================\n --- Query* helper methods -------------------------------------------------------------------------------------"},"id":14705,"implemented":true,"kind":"function","modifiers":[],"name":"equalOrGreaterThan","nameLocation":"33371:18:48","nodeType":"FunctionDefinition","parameters":{"id":14681,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14677,"mutability":"mutable","name":"self","nameLocation":"33408:4:48","nodeType":"VariableDeclaration","scope":14705,"src":"33390:22:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":14676,"nodeType":"UserDefinedTypeName","pathNode":{"id":14675,"name":"QuerySLA","nameLocations":["33390:8:48"],"nodeType":"IdentifierPath","referencedDeclaration":13472,"src":"33390:8:48"},"referencedDeclaration":13472,"src":"33390:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"},{"constant":false,"id":14680,"mutability":"mutable","name":"stored","nameLocation":"33431:6:48","nodeType":"VariableDeclaration","scope":14705,"src":"33414:23:48","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":14679,"nodeType":"UserDefinedTypeName","pathNode":{"id":14678,"name":"QuerySLA","nameLocations":["33414:8:48"],"nodeType":"IdentifierPath","referencedDeclaration":13472,"src":"33414:8:48"},"referencedDeclaration":13472,"src":"33414:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"33389:49:48"},"returnParameters":{"id":14684,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14683,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14705,"src":"33462:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14682,"name":"bool","nodeType":"ElementaryTypeName","src":"33462:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"33461:6:48"},"scope":16767,"src":"33362:349:48","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14723,"nodeType":"Block","src":"33784:71:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":14718,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14708,"src":"33840:4:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13246","typeString":"Witnet.QueryHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13246","typeString":"Witnet.QueryHash"}],"expression":{"id":14716,"name":"QueryHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13246,"src":"33823:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_QueryHash_$13246_$","typeString":"type(Witnet.QueryHash)"}},"id":14717,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"33833:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"33823:16:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_QueryHash_$13246_$returns$_t_bytes15_$","typeString":"function (Witnet.QueryHash) pure returns (bytes15)"}},"id":14719,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33823:22:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes15","typeString":"bytes15"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes15","typeString":"bytes15"}],"expression":{"id":14714,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"33812:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":14715,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"33816:6:48","memberName":"encode","nodeType":"MemberAccess","src":"33812:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":14720,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33812:34:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":14713,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"33802:9:48","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":14721,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33802:45:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":14712,"id":14722,"nodeType":"Return","src":"33795:52:48"}]},"id":14724,"implemented":true,"kind":"function","modifiers":[],"name":"hashify","nameLocation":"33728:7:48","nodeType":"FunctionDefinition","parameters":{"id":14709,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14708,"mutability":"mutable","name":"hash","nameLocation":"33746:4:48","nodeType":"VariableDeclaration","scope":14724,"src":"33736:14:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13246","typeString":"Witnet.QueryHash"},"typeName":{"id":14707,"nodeType":"UserDefinedTypeName","pathNode":{"id":14706,"name":"QueryHash","nameLocations":["33736:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"33736:9:48"},"referencedDeclaration":13246,"src":"33736:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13246","typeString":"Witnet.QueryHash"}},"visibility":"internal"}],"src":"33735:16:48"},"returnParameters":{"id":14712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14711,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14724,"src":"33775:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14710,"name":"bytes32","nodeType":"ElementaryTypeName","src":"33775:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"33774:9:48"},"scope":16767,"src":"33719:136:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14770,"nodeType":"Block","src":"33984:278:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"id":14749,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"34101:4:48","typeDescriptions":{"typeIdentifier":"t_contract$_Witnet_$16767","typeString":"library Witnet"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Witnet_$16767","typeString":"library Witnet"}],"id":14748,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34093:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":14747,"name":"address","nodeType":"ElementaryTypeName","src":"34093:7:48","typeDescriptions":{}}},"id":14750,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34093:13:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":14746,"name":"channel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13324,"src":"34085:7:48","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bytes4_$","typeString":"function (address) view returns (bytes4)"}},"id":14751,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34085:22:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14753,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"34137:5:48","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":14754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"34143:6:48","memberName":"number","nodeType":"MemberAccess","src":"34137:12:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":14755,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34152:1:48","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"34137:16:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":14752,"name":"blockhash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-5,"src":"34127:9:48","typeDescriptions":{"typeIdentifier":"t_function_blockhash_view$_t_uint256_$returns$_t_bytes32_$","typeString":"function (uint256) view returns (bytes32)"}},"id":14757,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34127:27:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":14758,"name":"_queryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14727,"src":"34173:8:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"}},{"arguments":[{"id":14762,"name":"_radHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14730,"src":"34207:8:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}],"expression":{"expression":{"id":14759,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"34183:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":14760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"34190:9:48","memberName":"RadonHash","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"34183:16:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_RadonHash_$13250_$","typeString":"type(Witnet.RadonHash)"}},"id":14761,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"34200:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"34183:23:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_RadonHash_$13250_$returns$_t_bytes32_$","typeString":"function (Witnet.RadonHash) pure returns (bytes32)"}},"id":14763,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34183:33:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":14764,"name":"_slaHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14732,"src":"34218:8:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes4","typeString":"bytes4"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":14744,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"34056:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":14745,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"34060:6:48","memberName":"encode","nodeType":"MemberAccess","src":"34056:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":14765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34056:185:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":14743,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"34046:9:48","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":14766,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34046:196:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":14742,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"34024:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes15_$","typeString":"type(bytes15)"},"typeName":{"id":14741,"name":"bytes15","nodeType":"ElementaryTypeName","src":"34024:7:48","typeDescriptions":{}}},"id":14767,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34024:229:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes15","typeString":"bytes15"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes15","typeString":"bytes15"}],"expression":{"expression":{"id":14738,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"34002:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":14739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"34009:9:48","memberName":"QueryHash","nodeType":"MemberAccess","referencedDeclaration":13246,"src":"34002:16:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_QueryHash_$13246_$","typeString":"type(Witnet.QueryHash)"}},"id":14740,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"34019:4:48","memberName":"wrap","nodeType":"MemberAccess","src":"34002:21:48","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes15_$returns$_t_userDefinedValueType$_QueryHash_$13246_$","typeString":"function (bytes15) pure returns (Witnet.QueryHash)"}},"id":14768,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34002:252:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13246","typeString":"Witnet.QueryHash"}},"functionReturnParameters":14737,"id":14769,"nodeType":"Return","src":"33995:259:48"}]},"id":14771,"implemented":true,"kind":"function","modifiers":[],"name":"hashify","nameLocation":"33872:7:48","nodeType":"FunctionDefinition","parameters":{"id":14733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14727,"mutability":"mutable","name":"_queryId","nameLocation":"33888:8:48","nodeType":"VariableDeclaration","scope":14771,"src":"33880:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"},"typeName":{"id":14726,"nodeType":"UserDefinedTypeName","pathNode":{"id":14725,"name":"QueryId","nameLocations":["33880:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13248,"src":"33880:7:48"},"referencedDeclaration":13248,"src":"33880:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":14730,"mutability":"mutable","name":"_radHash","nameLocation":"33915:8:48","nodeType":"VariableDeclaration","scope":14771,"src":"33898:25:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":14729,"nodeType":"UserDefinedTypeName","pathNode":{"id":14728,"name":"Witnet.RadonHash","nameLocations":["33898:6:48","33905:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"33898:16:48"},"referencedDeclaration":13250,"src":"33898:16:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":14732,"mutability":"mutable","name":"_slaHash","nameLocation":"33933:8:48","nodeType":"VariableDeclaration","scope":14771,"src":"33925:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14731,"name":"bytes32","nodeType":"ElementaryTypeName","src":"33925:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"33879:63:48"},"returnParameters":{"id":14737,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14736,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14771,"src":"33966:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13246","typeString":"Witnet.QueryHash"},"typeName":{"id":14735,"nodeType":"UserDefinedTypeName","pathNode":{"id":14734,"name":"Witnet.QueryHash","nameLocations":["33966:6:48","33973:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13246,"src":"33966:16:48"},"referencedDeclaration":13246,"src":"33966:16:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13246","typeString":"Witnet.QueryHash"}},"visibility":"internal"}],"src":"33965:18:48"},"scope":16767,"src":"33863:399:48","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14791,"nodeType":"Block","src":"34345:184:48","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":14782,"name":"querySLA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14774,"src":"34404:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_memory_ptr","typeString":"struct Witnet.QuerySLA memory"}},"id":14783,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34413:16:48","memberName":"witResultMaxSize","nodeType":"MemberAccess","referencedDeclaration":13467,"src":"34404:25:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"expression":{"id":14784,"name":"querySLA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14774,"src":"34444:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_memory_ptr","typeString":"struct Witnet.QuerySLA memory"}},"id":14785,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34453:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13469,"src":"34444:25:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"expression":{"id":14786,"name":"querySLA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14774,"src":"34484:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_memory_ptr","typeString":"struct Witnet.QuerySLA memory"}},"id":14787,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34493:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"34484:25:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"},{"typeIdentifier":"t_uint16","typeString":"uint16"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"expression":{"id":14780,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"34373:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":14781,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"34377:12:48","memberName":"encodePacked","nodeType":"MemberAccess","src":"34373:16:48","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":14788,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34373:147:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":14779,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"34363:9:48","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":14789,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34363:158:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":14778,"id":14790,"nodeType":"Return","src":"34356:165:48"}]},"id":14792,"implemented":true,"kind":"function","modifiers":[],"name":"hashify","nameLocation":"34279:7:48","nodeType":"FunctionDefinition","parameters":{"id":14775,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14774,"mutability":"mutable","name":"querySLA","nameLocation":"34303:8:48","nodeType":"VariableDeclaration","scope":14792,"src":"34287:24:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_memory_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":14773,"nodeType":"UserDefinedTypeName","pathNode":{"id":14772,"name":"QuerySLA","nameLocations":["34287:8:48"],"nodeType":"IdentifierPath","referencedDeclaration":13472,"src":"34287:8:48"},"referencedDeclaration":13472,"src":"34287:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"34286:26:48"},"returnParameters":{"id":14778,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14777,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14792,"src":"34336:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14776,"name":"bytes32","nodeType":"ElementaryTypeName","src":"34336:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"34335:9:48"},"scope":16767,"src":"34270:259:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14816,"nodeType":"Block","src":"34605:170:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14813,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14808,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":14803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14800,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14795,"src":"34638:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_memory_ptr","typeString":"struct Witnet.QuerySLA memory"}},"id":14801,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34643:16:48","memberName":"witResultMaxSize","nodeType":"MemberAccess","referencedDeclaration":13467,"src":"34638:21:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":14802,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34663:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"34638:26:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":14807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14804,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14795,"src":"34685:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_memory_ptr","typeString":"struct Witnet.QuerySLA memory"}},"id":14805,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34690:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13469,"src":"34685:21:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":14806,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34709:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"34685:25:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"34638:72:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14812,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14809,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14795,"src":"34731:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_memory_ptr","typeString":"struct Witnet.QuerySLA memory"}},"id":14810,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34736:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"34731:21:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":14811,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34755:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"34731:25:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"34638:118:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":14814,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"34623:144:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14799,"id":14815,"nodeType":"Return","src":"34616:151:48"}]},"id":14817,"implemented":true,"kind":"function","modifiers":[],"name":"isValid","nameLocation":"34546:7:48","nodeType":"FunctionDefinition","parameters":{"id":14796,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14795,"mutability":"mutable","name":"self","nameLocation":"34570:4:48","nodeType":"VariableDeclaration","scope":14817,"src":"34554:20:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_memory_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":14794,"nodeType":"UserDefinedTypeName","pathNode":{"id":14793,"name":"QuerySLA","nameLocations":["34554:8:48"],"nodeType":"IdentifierPath","referencedDeclaration":13472,"src":"34554:8:48"},"referencedDeclaration":13472,"src":"34554:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"34553:22:48"},"returnParameters":{"id":14799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14798,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14817,"src":"34599:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14797,"name":"bool","nodeType":"ElementaryTypeName","src":"34599:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"34598:6:48"},"scope":16767,"src":"34537:238:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14833,"nodeType":"Block","src":"34839:50:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14830,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14827,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14820,"src":"34873:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"}],"expression":{"id":14825,"name":"QueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13248,"src":"34858:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_QueryId_$13248_$","typeString":"type(Witnet.QueryId)"}},"id":14826,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"34866:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"34858:14:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_QueryId_$13248_$returns$_t_uint64_$","typeString":"function (Witnet.QueryId) pure returns (uint64)"}},"id":14828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34858:17:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":14829,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"34879:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"34858:22:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":14831,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"34857:24:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14824,"id":14832,"nodeType":"Return","src":"34850:31:48"}]},"id":14834,"implemented":true,"kind":"function","modifiers":[],"name":"isZero","nameLocation":"34792:6:48","nodeType":"FunctionDefinition","parameters":{"id":14821,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14820,"mutability":"mutable","name":"a","nameLocation":"34807:1:48","nodeType":"VariableDeclaration","scope":14834,"src":"34799:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"},"typeName":{"id":14819,"nodeType":"UserDefinedTypeName","pathNode":{"id":14818,"name":"QueryId","nameLocations":["34799:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13248,"src":"34799:7:48"},"referencedDeclaration":13248,"src":"34799:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13248","typeString":"Witnet.QueryId"}},"visibility":"internal"}],"src":"34798:11:48"},"returnParameters":{"id":14824,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14823,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14834,"src":"34833:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14822,"name":"bool","nodeType":"ElementaryTypeName","src":"34833:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"34832:6:48"},"scope":16767,"src":"34783:106:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14864,"nodeType":"Block","src":"34977:359:48","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":14846,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14837,"src":"35041:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14847,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35046:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13469,"src":"35041:21:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":14845,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"35035:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":14844,"name":"uint8","nodeType":"ElementaryTypeName","src":"35035:5:48","typeDescriptions":{}}},"id":14848,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35035:28:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"hexValue":"3531","id":14849,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"35102:2:48","typeDescriptions":{"typeIdentifier":"t_rational_51_by_1","typeString":"int_const 51"},"value":"51"},{"expression":{"id":14850,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14837,"src":"35134:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35139:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"35134:21:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14852,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14837,"src":"35189:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35194:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"35189:21:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":14854,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14837,"src":"35213:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35218:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13469,"src":"35213:21:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"35189:45:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14857,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14837,"src":"35271:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14858,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35276:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13471,"src":"35271:21:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"expression":{"id":14859,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14837,"src":"35295:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35300:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13469,"src":"35295:21:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"35271:45:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_rational_51_by_1","typeString":"int_const 51"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":14843,"name":"RadonSLAv1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13845,"src":"34995:10:48","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_RadonSLAv1_$13845_storage_ptr_$","typeString":"type(struct Witnet.RadonSLAv1 storage pointer)"}},"id":14862,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["35021:12:48","35078:22:48","35119:13:48","35170:17:48","35249:20:48"],"names":["numWitnesses","minConsensusPercentage","witnessReward","witnessCollateral","minerCommitRevealFee"],"nodeType":"FunctionCall","src":"34995:333:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_RadonSLAv1_$13845_memory_ptr","typeString":"struct Witnet.RadonSLAv1 memory"}},"functionReturnParameters":14842,"id":14863,"nodeType":"Return","src":"34988:340:48"}]},"id":14865,"implemented":true,"kind":"function","modifiers":[],"name":"toV1","nameLocation":"34906:4:48","nodeType":"FunctionDefinition","parameters":{"id":14838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14837,"mutability":"mutable","name":"self","nameLocation":"34929:4:48","nodeType":"VariableDeclaration","scope":14865,"src":"34911:22:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_calldata_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":14836,"nodeType":"UserDefinedTypeName","pathNode":{"id":14835,"name":"QuerySLA","nameLocations":["34911:8:48"],"nodeType":"IdentifierPath","referencedDeclaration":13472,"src":"34911:8:48"},"referencedDeclaration":13472,"src":"34911:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13472_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"34910:24:48"},"returnParameters":{"id":14842,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14841,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14865,"src":"34958:17:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonSLAv1_$13845_memory_ptr","typeString":"struct Witnet.RadonSLAv1"},"typeName":{"id":14840,"nodeType":"UserDefinedTypeName","pathNode":{"id":14839,"name":"RadonSLAv1","nameLocations":["34958:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13845,"src":"34958:10:48"},"referencedDeclaration":13845,"src":"34958:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_RadonSLAv1_$13845_storage_ptr","typeString":"struct Witnet.RadonSLAv1"}},"visibility":"internal"}],"src":"34957:19:48"},"scope":16767,"src":"34897:439:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14887,"nodeType":"Block","src":"35657:68:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":14885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14879,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14869,"src":"35692:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}],"expression":{"id":14877,"name":"RadonHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13250,"src":"35675:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_RadonHash_$13250_$","typeString":"type(Witnet.RadonHash)"}},"id":14878,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"35685:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"35675:16:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_RadonHash_$13250_$returns$_t_bytes32_$","typeString":"function (Witnet.RadonHash) pure returns (bytes32)"}},"id":14880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35675:19:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":14883,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14872,"src":"35715:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}],"expression":{"id":14881,"name":"RadonHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13250,"src":"35698:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_RadonHash_$13250_$","typeString":"type(Witnet.RadonHash)"}},"id":14882,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"35708:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"35698:16:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_RadonHash_$13250_$returns$_t_bytes32_$","typeString":"function (Witnet.RadonHash) pure returns (bytes32)"}},"id":14884,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35698:19:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"35675:42:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14876,"id":14886,"nodeType":"Return","src":"35668:49:48"}]},"documentation":{"id":14866,"nodeType":"StructuredDocumentation","src":"35346:238:48","text":"===============================================================================================================\n --- RadonHash helper methods ----------------------------------------------------------------------------------"},"id":14888,"implemented":true,"kind":"function","modifiers":[],"name":"eq","nameLocation":"35599:2:48","nodeType":"FunctionDefinition","parameters":{"id":14873,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14869,"mutability":"mutable","name":"a","nameLocation":"35612:1:48","nodeType":"VariableDeclaration","scope":14888,"src":"35602:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":14868,"nodeType":"UserDefinedTypeName","pathNode":{"id":14867,"name":"RadonHash","nameLocations":["35602:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"35602:9:48"},"referencedDeclaration":13250,"src":"35602:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":14872,"mutability":"mutable","name":"b","nameLocation":"35625:1:48","nodeType":"VariableDeclaration","scope":14888,"src":"35615:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":14871,"nodeType":"UserDefinedTypeName","pathNode":{"id":14870,"name":"RadonHash","nameLocations":["35615:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"35615:9:48"},"referencedDeclaration":13250,"src":"35615:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"35601:26:48"},"returnParameters":{"id":14876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14875,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14888,"src":"35651:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14874,"name":"bool","nodeType":"ElementaryTypeName","src":"35651:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"35650:6:48"},"scope":16767,"src":"35590:135:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14906,"nodeType":"Block","src":"35795:59:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":14904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14898,"name":"h","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14891,"src":"35830:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}],"expression":{"id":14896,"name":"RadonHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13250,"src":"35813:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_RadonHash_$13250_$","typeString":"type(Witnet.RadonHash)"}},"id":14897,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"35823:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"35813:16:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_RadonHash_$13250_$returns$_t_bytes32_$","typeString":"function (Witnet.RadonHash) pure returns (bytes32)"}},"id":14899,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35813:19:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":14902,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"35844:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":14901,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"35836:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":14900,"name":"bytes32","nodeType":"ElementaryTypeName","src":"35836:7:48","typeDescriptions":{}}},"id":14903,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35836:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"35813:33:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14895,"id":14905,"nodeType":"Return","src":"35806:40:48"}]},"id":14907,"implemented":true,"kind":"function","modifiers":[],"name":"isZero","nameLocation":"35746:6:48","nodeType":"FunctionDefinition","parameters":{"id":14892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14891,"mutability":"mutable","name":"h","nameLocation":"35763:1:48","nodeType":"VariableDeclaration","scope":14907,"src":"35753:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":14890,"nodeType":"UserDefinedTypeName","pathNode":{"id":14889,"name":"RadonHash","nameLocations":["35753:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"35753:9:48"},"referencedDeclaration":13250,"src":"35753:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"35752:13:48"},"returnParameters":{"id":14895,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14894,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14907,"src":"35789:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14893,"name":"bool","nodeType":"ElementaryTypeName","src":"35789:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"35788:6:48"},"scope":16767,"src":"35737:117:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14927,"nodeType":"Block","src":"36179:120:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"id":14919,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14916,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14911,"src":"36212:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":14917,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13729,"src":"36220:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13729_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14918,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"36233:8:48","memberName":"NoErrors","nodeType":"MemberAccess","referencedDeclaration":13473,"src":"36220:21:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"src":"36212:29:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":14923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"36262:18:48","subExpression":{"arguments":[{"id":14921,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14911,"src":"36275:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}],"id":14920,"name":"keepWaiting","nodeType":"Identifier","overloadedDeclarations":[14248,14985],"referencedDeclaration":14985,"src":"36263:11:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ResultStatus_$13729_$returns$_t_bool_$","typeString":"function (enum Witnet.ResultStatus) pure returns (bool)"}},"id":14922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36263:17:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"36212:68:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":14925,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"36197:94:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14915,"id":14926,"nodeType":"Return","src":"36190:101:48"}]},"documentation":{"id":14908,"nodeType":"StructuredDocumentation","src":"35868:238:48","text":"===============================================================================================================\n --- ResultStatus helper methods -------------------------------------------------------------------------------"},"id":14928,"implemented":true,"kind":"function","modifiers":[],"name":"hasErrors","nameLocation":"36121:9:48","nodeType":"FunctionDefinition","parameters":{"id":14912,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14911,"mutability":"mutable","name":"self","nameLocation":"36144:4:48","nodeType":"VariableDeclaration","scope":14928,"src":"36131:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":14910,"nodeType":"UserDefinedTypeName","pathNode":{"id":14909,"name":"ResultStatus","nameLocations":["36131:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13729,"src":"36131:12:48"},"referencedDeclaration":13729,"src":"36131:12:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"}],"src":"36130:19:48"},"returnParameters":{"id":14915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14914,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14928,"src":"36173:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14913,"name":"bool","nodeType":"ElementaryTypeName","src":"36173:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"36172:6:48"},"scope":16767,"src":"36112:187:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14942,"nodeType":"Block","src":"36381:70:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"id":14939,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14936,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14931,"src":"36400:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14937,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13729,"src":"36408:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13729_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14938,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"36421:21:48","memberName":"CircumstantialFailure","nodeType":"MemberAccess","referencedDeclaration":13557,"src":"36408:34:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"src":"36400:42:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":14940,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"36399:44:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14935,"id":14941,"nodeType":"Return","src":"36392:51:48"}]},"id":14943,"implemented":true,"kind":"function","modifiers":[],"name":"isCircumstantial","nameLocation":"36316:16:48","nodeType":"FunctionDefinition","parameters":{"id":14932,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14931,"mutability":"mutable","name":"self","nameLocation":"36346:4:48","nodeType":"VariableDeclaration","scope":14943,"src":"36333:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":14930,"nodeType":"UserDefinedTypeName","pathNode":{"id":14929,"name":"ResultStatus","nameLocations":["36333:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13729,"src":"36333:12:48"},"referencedDeclaration":13729,"src":"36333:12:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"}],"src":"36332:19:48"},"returnParameters":{"id":14935,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14934,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14943,"src":"36375:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14933,"name":"bool","nodeType":"ElementaryTypeName","src":"36375:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"36374:6:48"},"scope":16767,"src":"36307:144:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14964,"nodeType":"Block","src":"36528:157:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14957,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14952,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14946,"src":"36577:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}],"id":14951,"name":"lackOfConsensus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15010,"src":"36561:15:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ResultStatus_$13729_$returns$_t_bool_$","typeString":"function (enum Witnet.ResultStatus) pure returns (bool)"}},"id":14953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36561:21:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":14955,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14946,"src":"36620:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}],"id":14954,"name":"isCircumstantial","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14943,"src":"36603:16:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ResultStatus_$13729_$returns$_t_bool_$","typeString":"function (enum Witnet.ResultStatus) pure returns (bool)"}},"id":14956,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36603:22:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"36561:64:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"arguments":[{"id":14959,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14946,"src":"36661:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}],"id":14958,"name":"poorIncentives","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15040,"src":"36646:14:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ResultStatus_$13729_$returns$_t_bool_$","typeString":"function (enum Witnet.ResultStatus) pure returns (bool)"}},"id":14960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36646:20:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"36561:105:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":14962,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"36546:131:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14950,"id":14963,"nodeType":"Return","src":"36539:138:48"}]},"id":14965,"implemented":true,"kind":"function","modifiers":[],"name":"isRetriable","nameLocation":"36468:11:48","nodeType":"FunctionDefinition","parameters":{"id":14947,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14946,"mutability":"mutable","name":"self","nameLocation":"36493:4:48","nodeType":"VariableDeclaration","scope":14965,"src":"36480:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":14945,"nodeType":"UserDefinedTypeName","pathNode":{"id":14944,"name":"ResultStatus","nameLocations":["36480:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13729,"src":"36480:12:48"},"referencedDeclaration":13729,"src":"36480:12:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"}],"src":"36479:19:48"},"returnParameters":{"id":14950,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14949,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14965,"src":"36522:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14948,"name":"bool","nodeType":"ElementaryTypeName","src":"36522:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"36521:6:48"},"scope":16767,"src":"36459:226:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14984,"nodeType":"Block","src":"36762:155:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14981,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"id":14976,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14973,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14968,"src":"36795:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14974,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13729,"src":"36803:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13729_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14975,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"36816:19:48","memberName":"BoardAwaitingResult","nodeType":"MemberAccess","referencedDeclaration":13713,"src":"36803:32:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"src":"36795:40:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"id":14980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14977,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14968,"src":"36856:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14978,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13729,"src":"36864:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13729_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14979,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"36877:21:48","memberName":"BoardFinalizingResult","nodeType":"MemberAccess","referencedDeclaration":13714,"src":"36864:34:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"src":"36856:42:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"36795:103:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":14982,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"36780:129:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14972,"id":14983,"nodeType":"Return","src":"36773:136:48"}]},"id":14985,"implemented":true,"kind":"function","modifiers":[],"name":"keepWaiting","nameLocation":"36702:11:48","nodeType":"FunctionDefinition","parameters":{"id":14969,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14968,"mutability":"mutable","name":"self","nameLocation":"36727:4:48","nodeType":"VariableDeclaration","scope":14985,"src":"36714:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":14967,"nodeType":"UserDefinedTypeName","pathNode":{"id":14966,"name":"ResultStatus","nameLocations":["36714:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13729,"src":"36714:12:48"},"referencedDeclaration":13729,"src":"36714:12:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"}],"src":"36713:19:48"},"returnParameters":{"id":14972,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14971,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14985,"src":"36756:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14970,"name":"bool","nodeType":"ElementaryTypeName","src":"36756:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"36755:6:48"},"scope":16767,"src":"36693:224:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15009,"nodeType":"Block","src":"36998:215:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"id":14996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14993,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14988,"src":"37031:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14994,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13729,"src":"37039:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13729_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14995,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37052:19:48","memberName":"InsufficientCommits","nodeType":"MemberAccess","referencedDeclaration":13555,"src":"37039:32:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"src":"37031:40:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"id":15000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14997,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14988,"src":"37092:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14998,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13729,"src":"37100:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13729_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14999,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37113:20:48","memberName":"InsufficientMajority","nodeType":"MemberAccess","referencedDeclaration":13554,"src":"37100:33:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"src":"37092:41:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"37031:102:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"id":15005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15002,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14988,"src":"37154:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15003,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13729,"src":"37162:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13729_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":15004,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37175:19:48","memberName":"InsufficientReveals","nodeType":"MemberAccess","referencedDeclaration":13553,"src":"37162:32:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"src":"37154:40:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"37031:163:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":15007,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"37016:189:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14992,"id":15008,"nodeType":"Return","src":"37009:196:48"}]},"id":15010,"implemented":true,"kind":"function","modifiers":[],"name":"lackOfConsensus","nameLocation":"36934:15:48","nodeType":"FunctionDefinition","parameters":{"id":14989,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14988,"mutability":"mutable","name":"self","nameLocation":"36963:4:48","nodeType":"VariableDeclaration","scope":15010,"src":"36950:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":14987,"nodeType":"UserDefinedTypeName","pathNode":{"id":14986,"name":"ResultStatus","nameLocations":["36950:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13729,"src":"36950:12:48"},"referencedDeclaration":13729,"src":"36950:12:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"}],"src":"36949:19:48"},"returnParameters":{"id":14992,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14991,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15010,"src":"36992:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14990,"name":"bool","nodeType":"ElementaryTypeName","src":"36992:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"36991:6:48"},"scope":16767,"src":"36925:288:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15039,"nodeType":"Block","src":"37293:284:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"id":15021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15018,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15013,"src":"37326:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15019,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13729,"src":"37334:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13729_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":15020,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37347:20:48","memberName":"OversizedTallyResult","nodeType":"MemberAccess","referencedDeclaration":13568,"src":"37334:33:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"src":"37326:41:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"id":15025,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15022,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15013,"src":"37388:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15023,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13729,"src":"37396:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13729_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":15024,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37409:19:48","memberName":"InsufficientCommits","nodeType":"MemberAccess","referencedDeclaration":13555,"src":"37396:32:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"src":"37388:40:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"37326:102:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"id":15030,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15027,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15013,"src":"37449:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15028,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13729,"src":"37457:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13729_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":15029,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37470:20:48","memberName":"BridgePoorIncentives","nodeType":"MemberAccess","referencedDeclaration":13698,"src":"37457:33:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"src":"37449:41:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"37326:164:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"id":15035,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15032,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15013,"src":"37511:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":15033,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13729,"src":"37519:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13729_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":15034,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37532:26:48","memberName":"BridgeOversizedTallyResult","nodeType":"MemberAccess","referencedDeclaration":13699,"src":"37519:39:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"src":"37511:47:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"37326:232:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":15037,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"37311:258:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":15017,"id":15038,"nodeType":"Return","src":"37304:265:48"}]},"id":15040,"implemented":true,"kind":"function","modifiers":[],"name":"poorIncentives","nameLocation":"37230:14:48","nodeType":"FunctionDefinition","parameters":{"id":15014,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15013,"mutability":"mutable","name":"self","nameLocation":"37258:4:48","nodeType":"VariableDeclaration","scope":15040,"src":"37245:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":15012,"nodeType":"UserDefinedTypeName","pathNode":{"id":15011,"name":"ResultStatus","nameLocations":["37245:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13729,"src":"37245:12:48"},"referencedDeclaration":13729,"src":"37245:12:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13729","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"}],"src":"37244:19:48"},"returnParameters":{"id":15017,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15016,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15040,"src":"37287:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15015,"name":"bool","nodeType":"ElementaryTypeName","src":"37287:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"37286:6:48"},"scope":16767,"src":"37221:356:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15062,"nodeType":"Block","src":"37898:67:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":15060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15054,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15044,"src":"37933:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}],"expression":{"id":15052,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13254,"src":"37916:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"type(Witnet.Timestamp)"}},"id":15053,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37926:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"37916:16:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Timestamp_$13254_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":15055,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37916:19:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"arguments":[{"id":15058,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15047,"src":"37955:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}],"expression":{"id":15056,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13254,"src":"37938:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"type(Witnet.Timestamp)"}},"id":15057,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37948:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"37938:16:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Timestamp_$13254_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":15059,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37938:19:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"37916:41:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":15051,"id":15061,"nodeType":"Return","src":"37909:48:48"}]},"documentation":{"id":15041,"nodeType":"StructuredDocumentation","src":"37587:238:48","text":"===============================================================================================================\n --- Timestamp helper methods ----------------------------------------------------------------------------------"},"id":15063,"implemented":true,"kind":"function","modifiers":[],"name":"gt","nameLocation":"37840:2:48","nodeType":"FunctionDefinition","parameters":{"id":15048,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15044,"mutability":"mutable","name":"a","nameLocation":"37853:1:48","nodeType":"VariableDeclaration","scope":15063,"src":"37843:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":15043,"nodeType":"UserDefinedTypeName","pathNode":{"id":15042,"name":"Timestamp","nameLocations":["37843:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"37843:9:48"},"referencedDeclaration":13254,"src":"37843:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":15047,"mutability":"mutable","name":"b","nameLocation":"37866:1:48","nodeType":"VariableDeclaration","scope":15063,"src":"37856:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":15046,"nodeType":"UserDefinedTypeName","pathNode":{"id":15045,"name":"Timestamp","nameLocations":["37856:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"37856:9:48"},"referencedDeclaration":13254,"src":"37856:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"37842:26:48"},"returnParameters":{"id":15051,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15050,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15063,"src":"37892:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15049,"name":"bool","nodeType":"ElementaryTypeName","src":"37892:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"37891:6:48"},"scope":16767,"src":"37831:134:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15084,"nodeType":"Block","src":"38041:68:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":15082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15076,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15066,"src":"38076:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}],"expression":{"id":15074,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13254,"src":"38059:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"type(Witnet.Timestamp)"}},"id":15075,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"38069:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"38059:16:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Timestamp_$13254_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":15077,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38059:19:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"arguments":[{"id":15080,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15069,"src":"38099:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}],"expression":{"id":15078,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13254,"src":"38082:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"type(Witnet.Timestamp)"}},"id":15079,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"38092:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"38082:16:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Timestamp_$13254_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":15081,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38082:19:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"38059:42:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":15073,"id":15083,"nodeType":"Return","src":"38052:49:48"}]},"id":15085,"implemented":true,"kind":"function","modifiers":[],"name":"egt","nameLocation":"37982:3:48","nodeType":"FunctionDefinition","parameters":{"id":15070,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15066,"mutability":"mutable","name":"a","nameLocation":"37996:1:48","nodeType":"VariableDeclaration","scope":15085,"src":"37986:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":15065,"nodeType":"UserDefinedTypeName","pathNode":{"id":15064,"name":"Timestamp","nameLocations":["37986:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"37986:9:48"},"referencedDeclaration":13254,"src":"37986:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":15069,"mutability":"mutable","name":"b","nameLocation":"38009:1:48","nodeType":"VariableDeclaration","scope":15085,"src":"37999:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":15068,"nodeType":"UserDefinedTypeName","pathNode":{"id":15067,"name":"Timestamp","nameLocations":["37999:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"37999:9:48"},"referencedDeclaration":13254,"src":"37999:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"37985:26:48"},"returnParameters":{"id":15073,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15072,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15085,"src":"38035:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15071,"name":"bool","nodeType":"ElementaryTypeName","src":"38035:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"38034:6:48"},"scope":16767,"src":"37973:136:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15106,"nodeType":"Block","src":"38185:68:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":15104,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15098,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15088,"src":"38220:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}],"expression":{"id":15096,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13254,"src":"38203:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"type(Witnet.Timestamp)"}},"id":15097,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"38213:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"38203:16:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Timestamp_$13254_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":15099,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38203:19:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[{"id":15102,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15091,"src":"38243:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}],"expression":{"id":15100,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13254,"src":"38226:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"type(Witnet.Timestamp)"}},"id":15101,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"38236:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"38226:16:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Timestamp_$13254_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":15103,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38226:19:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"38203:42:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":15095,"id":15105,"nodeType":"Return","src":"38196:49:48"}]},"id":15107,"implemented":true,"kind":"function","modifiers":[],"name":"elt","nameLocation":"38126:3:48","nodeType":"FunctionDefinition","parameters":{"id":15092,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15088,"mutability":"mutable","name":"a","nameLocation":"38140:1:48","nodeType":"VariableDeclaration","scope":15107,"src":"38130:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":15087,"nodeType":"UserDefinedTypeName","pathNode":{"id":15086,"name":"Timestamp","nameLocations":["38130:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"38130:9:48"},"referencedDeclaration":13254,"src":"38130:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":15091,"mutability":"mutable","name":"b","nameLocation":"38153:1:48","nodeType":"VariableDeclaration","scope":15107,"src":"38143:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":15090,"nodeType":"UserDefinedTypeName","pathNode":{"id":15089,"name":"Timestamp","nameLocations":["38143:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"38143:9:48"},"referencedDeclaration":13254,"src":"38143:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"38129:26:48"},"returnParameters":{"id":15095,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15094,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15107,"src":"38179:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15093,"name":"bool","nodeType":"ElementaryTypeName","src":"38179:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"38178:6:48"},"scope":16767,"src":"38117:136:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15122,"nodeType":"Block","src":"38319:50:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":15120,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15117,"name":"t","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15110,"src":"38354:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}],"expression":{"id":15115,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13254,"src":"38337:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"type(Witnet.Timestamp)"}},"id":15116,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"38347:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"38337:16:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Timestamp_$13254_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":15118,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38337:19:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":15119,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38360:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"38337:24:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":15114,"id":15121,"nodeType":"Return","src":"38330:31:48"}]},"id":15123,"implemented":true,"kind":"function","modifiers":[],"name":"isZero","nameLocation":"38270:6:48","nodeType":"FunctionDefinition","parameters":{"id":15111,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15110,"mutability":"mutable","name":"t","nameLocation":"38287:1:48","nodeType":"VariableDeclaration","scope":15123,"src":"38277:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":15109,"nodeType":"UserDefinedTypeName","pathNode":{"id":15108,"name":"Timestamp","nameLocations":["38277:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"38277:9:48"},"referencedDeclaration":13254,"src":"38277:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"38276:13:48"},"returnParameters":{"id":15114,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15113,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15123,"src":"38313:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15112,"name":"bool","nodeType":"ElementaryTypeName","src":"38313:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"38312:6:48"},"scope":16767,"src":"38261:108:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15151,"nodeType":"Block","src":"38713:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":15140,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38761:2:48","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"}],"id":15139,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"38753:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15138,"name":"uint256","nodeType":"ElementaryTypeName","src":"38753:7:48","typeDescriptions":{}}},"id":15141,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38753:11:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"31","id":15142,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38766:1:48","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},{"id":15143,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15128,"src":"38769:7:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$1_memory_ptr","typeString":"bytes32[1] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},{"typeIdentifier":"t_array$_t_bytes32_$1_memory_ptr","typeString":"bytes32[1] memory"}],"expression":{"id":15136,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"38742:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15137,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"38746:6:48","memberName":"encode","nodeType":"MemberAccess","src":"38742:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15144,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38742:35:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"baseExpression":{"id":15146,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"38780:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":15145,"name":"bytes32","nodeType":"ElementaryTypeName","src":"38780:7:48","typeDescriptions":{}}},"id":15147,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"IndexAccess","src":"38780:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"id":15148,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"38779:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}],"expression":{"id":15134,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"38731:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15135,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"38735:6:48","memberName":"decode","nodeType":"MemberAccess","src":"38731:10:48","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":15149,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38731:60:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[] memory"}},"functionReturnParameters":15133,"id":15150,"nodeType":"Return","src":"38724:67:48"}]},"documentation":{"id":15124,"nodeType":"StructuredDocumentation","src":"38379:238:48","text":"===============================================================================================================\n --- 'bytes*' helper methods -----------------------------------------------------------------------------------"},"id":15152,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"38632:12:48","nodeType":"FunctionDefinition","parameters":{"id":15129,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15128,"mutability":"mutable","name":"_values","nameLocation":"38663:7:48","nodeType":"VariableDeclaration","scope":15152,"src":"38645:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$1_memory_ptr","typeString":"bytes32[1]"},"typeName":{"baseType":{"id":15125,"name":"bytes32","nodeType":"ElementaryTypeName","src":"38645:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15127,"length":{"hexValue":"31","id":15126,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38653:1:48","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"ArrayTypeName","src":"38645:10:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$1_storage_ptr","typeString":"bytes32[1]"}},"visibility":"internal"}],"src":"38644:27:48"},"returnParameters":{"id":15133,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15132,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15152,"src":"38695:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15130,"name":"bytes32","nodeType":"ElementaryTypeName","src":"38695:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15131,"nodeType":"ArrayTypeName","src":"38695:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"38694:18:48"},"scope":16767,"src":"38623:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15179,"nodeType":"Block","src":"38897:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":15168,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38945:2:48","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"}],"id":15167,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"38937:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15166,"name":"uint256","nodeType":"ElementaryTypeName","src":"38937:7:48","typeDescriptions":{}}},"id":15169,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38937:11:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"32","id":15170,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38950:1:48","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},{"id":15171,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15156,"src":"38953:7:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$2_memory_ptr","typeString":"bytes32[2] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},{"typeIdentifier":"t_array$_t_bytes32_$2_memory_ptr","typeString":"bytes32[2] memory"}],"expression":{"id":15164,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"38926:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15165,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"38930:6:48","memberName":"encode","nodeType":"MemberAccess","src":"38926:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15172,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38926:35:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"baseExpression":{"id":15174,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"38964:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":15173,"name":"bytes32","nodeType":"ElementaryTypeName","src":"38964:7:48","typeDescriptions":{}}},"id":15175,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"IndexAccess","src":"38964:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"id":15176,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"38963:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}],"expression":{"id":15162,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"38915:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15163,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"38919:6:48","memberName":"decode","nodeType":"MemberAccess","src":"38915:10:48","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":15177,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38915:60:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[] memory"}},"functionReturnParameters":15161,"id":15178,"nodeType":"Return","src":"38908:67:48"}]},"id":15180,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"38816:12:48","nodeType":"FunctionDefinition","parameters":{"id":15157,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15156,"mutability":"mutable","name":"_values","nameLocation":"38847:7:48","nodeType":"VariableDeclaration","scope":15180,"src":"38829:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$2_memory_ptr","typeString":"bytes32[2]"},"typeName":{"baseType":{"id":15153,"name":"bytes32","nodeType":"ElementaryTypeName","src":"38829:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15155,"length":{"hexValue":"32","id":15154,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38837:1:48","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"ArrayTypeName","src":"38829:10:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$2_storage_ptr","typeString":"bytes32[2]"}},"visibility":"internal"}],"src":"38828:27:48"},"returnParameters":{"id":15161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15160,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15180,"src":"38879:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15158,"name":"bytes32","nodeType":"ElementaryTypeName","src":"38879:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15159,"nodeType":"ArrayTypeName","src":"38879:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"38878:18:48"},"scope":16767,"src":"38807:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15207,"nodeType":"Block","src":"39081:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":15196,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39129:2:48","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"}],"id":15195,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"39121:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15194,"name":"uint256","nodeType":"ElementaryTypeName","src":"39121:7:48","typeDescriptions":{}}},"id":15197,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39121:11:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"33","id":15198,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39134:1:48","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},{"id":15199,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15184,"src":"39137:7:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$3_memory_ptr","typeString":"bytes32[3] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},{"typeIdentifier":"t_array$_t_bytes32_$3_memory_ptr","typeString":"bytes32[3] memory"}],"expression":{"id":15192,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39110:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15193,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"39114:6:48","memberName":"encode","nodeType":"MemberAccess","src":"39110:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15200,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39110:35:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"baseExpression":{"id":15202,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"39148:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":15201,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39148:7:48","typeDescriptions":{}}},"id":15203,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"IndexAccess","src":"39148:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"id":15204,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"39147:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}],"expression":{"id":15190,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39099:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15191,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"39103:6:48","memberName":"decode","nodeType":"MemberAccess","src":"39099:10:48","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":15205,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39099:60:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[] memory"}},"functionReturnParameters":15189,"id":15206,"nodeType":"Return","src":"39092:67:48"}]},"id":15208,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"39000:12:48","nodeType":"FunctionDefinition","parameters":{"id":15185,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15184,"mutability":"mutable","name":"_values","nameLocation":"39031:7:48","nodeType":"VariableDeclaration","scope":15208,"src":"39013:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$3_memory_ptr","typeString":"bytes32[3]"},"typeName":{"baseType":{"id":15181,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39013:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15183,"length":{"hexValue":"33","id":15182,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39021:1:48","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"nodeType":"ArrayTypeName","src":"39013:10:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$3_storage_ptr","typeString":"bytes32[3]"}},"visibility":"internal"}],"src":"39012:27:48"},"returnParameters":{"id":15189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15188,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15208,"src":"39063:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15186,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39063:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15187,"nodeType":"ArrayTypeName","src":"39063:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"39062:18:48"},"scope":16767,"src":"38991:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15235,"nodeType":"Block","src":"39265:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":15224,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39313:2:48","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"}],"id":15223,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"39305:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15222,"name":"uint256","nodeType":"ElementaryTypeName","src":"39305:7:48","typeDescriptions":{}}},"id":15225,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39305:11:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"34","id":15226,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39318:1:48","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},{"id":15227,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15212,"src":"39321:7:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$4_memory_ptr","typeString":"bytes32[4] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},{"typeIdentifier":"t_array$_t_bytes32_$4_memory_ptr","typeString":"bytes32[4] memory"}],"expression":{"id":15220,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39294:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15221,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"39298:6:48","memberName":"encode","nodeType":"MemberAccess","src":"39294:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15228,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39294:35:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"baseExpression":{"id":15230,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"39332:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":15229,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39332:7:48","typeDescriptions":{}}},"id":15231,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"IndexAccess","src":"39332:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"id":15232,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"39331:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}],"expression":{"id":15218,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39283:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15219,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"39287:6:48","memberName":"decode","nodeType":"MemberAccess","src":"39283:10:48","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":15233,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39283:60:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[] memory"}},"functionReturnParameters":15217,"id":15234,"nodeType":"Return","src":"39276:67:48"}]},"id":15236,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"39184:12:48","nodeType":"FunctionDefinition","parameters":{"id":15213,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15212,"mutability":"mutable","name":"_values","nameLocation":"39215:7:48","nodeType":"VariableDeclaration","scope":15236,"src":"39197:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$4_memory_ptr","typeString":"bytes32[4]"},"typeName":{"baseType":{"id":15209,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39197:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15211,"length":{"hexValue":"34","id":15210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39205:1:48","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"nodeType":"ArrayTypeName","src":"39197:10:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$4_storage_ptr","typeString":"bytes32[4]"}},"visibility":"internal"}],"src":"39196:27:48"},"returnParameters":{"id":15217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15216,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15236,"src":"39247:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15214,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39247:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15215,"nodeType":"ArrayTypeName","src":"39247:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"39246:18:48"},"scope":16767,"src":"39175:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15263,"nodeType":"Block","src":"39449:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":15252,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39497:2:48","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"}],"id":15251,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"39489:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15250,"name":"uint256","nodeType":"ElementaryTypeName","src":"39489:7:48","typeDescriptions":{}}},"id":15253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39489:11:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"35","id":15254,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39502:1:48","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},{"id":15255,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15240,"src":"39505:7:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$5_memory_ptr","typeString":"bytes32[5] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},{"typeIdentifier":"t_array$_t_bytes32_$5_memory_ptr","typeString":"bytes32[5] memory"}],"expression":{"id":15248,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39478:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15249,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"39482:6:48","memberName":"encode","nodeType":"MemberAccess","src":"39478:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39478:35:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"baseExpression":{"id":15258,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"39516:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":15257,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39516:7:48","typeDescriptions":{}}},"id":15259,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"IndexAccess","src":"39516:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"id":15260,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"39515:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}],"expression":{"id":15246,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39467:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15247,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"39471:6:48","memberName":"decode","nodeType":"MemberAccess","src":"39467:10:48","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":15261,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39467:60:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[] memory"}},"functionReturnParameters":15245,"id":15262,"nodeType":"Return","src":"39460:67:48"}]},"id":15264,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"39368:12:48","nodeType":"FunctionDefinition","parameters":{"id":15241,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15240,"mutability":"mutable","name":"_values","nameLocation":"39399:7:48","nodeType":"VariableDeclaration","scope":15264,"src":"39381:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$5_memory_ptr","typeString":"bytes32[5]"},"typeName":{"baseType":{"id":15237,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39381:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15239,"length":{"hexValue":"35","id":15238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39389:1:48","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"nodeType":"ArrayTypeName","src":"39381:10:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$5_storage_ptr","typeString":"bytes32[5]"}},"visibility":"internal"}],"src":"39380:27:48"},"returnParameters":{"id":15245,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15244,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15264,"src":"39431:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15242,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39431:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15243,"nodeType":"ArrayTypeName","src":"39431:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"39430:18:48"},"scope":16767,"src":"39359:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15291,"nodeType":"Block","src":"39633:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":15280,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39681:2:48","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"}],"id":15279,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"39673:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15278,"name":"uint256","nodeType":"ElementaryTypeName","src":"39673:7:48","typeDescriptions":{}}},"id":15281,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39673:11:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"36","id":15282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39686:1:48","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},{"id":15283,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15268,"src":"39689:7:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$6_memory_ptr","typeString":"bytes32[6] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},{"typeIdentifier":"t_array$_t_bytes32_$6_memory_ptr","typeString":"bytes32[6] memory"}],"expression":{"id":15276,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39662:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15277,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"39666:6:48","memberName":"encode","nodeType":"MemberAccess","src":"39662:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15284,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39662:35:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"baseExpression":{"id":15286,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"39700:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":15285,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39700:7:48","typeDescriptions":{}}},"id":15287,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"IndexAccess","src":"39700:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"id":15288,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"39699:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}],"expression":{"id":15274,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39651:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15275,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"39655:6:48","memberName":"decode","nodeType":"MemberAccess","src":"39651:10:48","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":15289,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39651:60:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[] memory"}},"functionReturnParameters":15273,"id":15290,"nodeType":"Return","src":"39644:67:48"}]},"id":15292,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"39552:12:48","nodeType":"FunctionDefinition","parameters":{"id":15269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15268,"mutability":"mutable","name":"_values","nameLocation":"39583:7:48","nodeType":"VariableDeclaration","scope":15292,"src":"39565:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$6_memory_ptr","typeString":"bytes32[6]"},"typeName":{"baseType":{"id":15265,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39565:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15267,"length":{"hexValue":"36","id":15266,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39573:1:48","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"nodeType":"ArrayTypeName","src":"39565:10:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$6_storage_ptr","typeString":"bytes32[6]"}},"visibility":"internal"}],"src":"39564:27:48"},"returnParameters":{"id":15273,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15272,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15292,"src":"39615:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15270,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39615:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15271,"nodeType":"ArrayTypeName","src":"39615:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"39614:18:48"},"scope":16767,"src":"39543:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15319,"nodeType":"Block","src":"39817:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":15308,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39865:2:48","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"}],"id":15307,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"39857:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15306,"name":"uint256","nodeType":"ElementaryTypeName","src":"39857:7:48","typeDescriptions":{}}},"id":15309,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39857:11:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"37","id":15310,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39870:1:48","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},{"id":15311,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15296,"src":"39873:7:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$7_memory_ptr","typeString":"bytes32[7] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},{"typeIdentifier":"t_array$_t_bytes32_$7_memory_ptr","typeString":"bytes32[7] memory"}],"expression":{"id":15304,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39846:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15305,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"39850:6:48","memberName":"encode","nodeType":"MemberAccess","src":"39846:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39846:35:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"baseExpression":{"id":15314,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"39884:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":15313,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39884:7:48","typeDescriptions":{}}},"id":15315,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"IndexAccess","src":"39884:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"id":15316,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"39883:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}],"expression":{"id":15302,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39835:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15303,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"39839:6:48","memberName":"decode","nodeType":"MemberAccess","src":"39835:10:48","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":15317,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"39835:60:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[] memory"}},"functionReturnParameters":15301,"id":15318,"nodeType":"Return","src":"39828:67:48"}]},"id":15320,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"39736:12:48","nodeType":"FunctionDefinition","parameters":{"id":15297,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15296,"mutability":"mutable","name":"_values","nameLocation":"39767:7:48","nodeType":"VariableDeclaration","scope":15320,"src":"39749:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$7_memory_ptr","typeString":"bytes32[7]"},"typeName":{"baseType":{"id":15293,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39749:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15295,"length":{"hexValue":"37","id":15294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39757:1:48","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"nodeType":"ArrayTypeName","src":"39749:10:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$7_storage_ptr","typeString":"bytes32[7]"}},"visibility":"internal"}],"src":"39748:27:48"},"returnParameters":{"id":15301,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15300,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15320,"src":"39799:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15298,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39799:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15299,"nodeType":"ArrayTypeName","src":"39799:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"39798:18:48"},"scope":16767,"src":"39727:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15347,"nodeType":"Block","src":"40001:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":15336,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"40049:2:48","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"}],"id":15335,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"40041:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15334,"name":"uint256","nodeType":"ElementaryTypeName","src":"40041:7:48","typeDescriptions":{}}},"id":15337,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40041:11:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"38","id":15338,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"40054:1:48","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},{"id":15339,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15324,"src":"40057:7:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$8_memory_ptr","typeString":"bytes32[8] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},{"typeIdentifier":"t_array$_t_bytes32_$8_memory_ptr","typeString":"bytes32[8] memory"}],"expression":{"id":15332,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"40030:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15333,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"40034:6:48","memberName":"encode","nodeType":"MemberAccess","src":"40030:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15340,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40030:35:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"baseExpression":{"id":15342,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"40068:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":15341,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40068:7:48","typeDescriptions":{}}},"id":15343,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"IndexAccess","src":"40068:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"id":15344,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"40067:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_type$_t_array$_t_bytes32_$dyn_memory_ptr_$","typeString":"type(bytes32[] memory)"}],"expression":{"id":15330,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"40019:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15331,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"40023:6:48","memberName":"decode","nodeType":"MemberAccess","src":"40019:10:48","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":15345,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40019:60:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[] memory"}},"functionReturnParameters":15329,"id":15346,"nodeType":"Return","src":"40012:67:48"}]},"id":15348,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"39920:12:48","nodeType":"FunctionDefinition","parameters":{"id":15325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15324,"mutability":"mutable","name":"_values","nameLocation":"39951:7:48","nodeType":"VariableDeclaration","scope":15348,"src":"39933:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$8_memory_ptr","typeString":"bytes32[8]"},"typeName":{"baseType":{"id":15321,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39933:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15323,"length":{"hexValue":"38","id":15322,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39941:1:48","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"nodeType":"ArrayTypeName","src":"39933:10:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$8_storage_ptr","typeString":"bytes32[8]"}},"visibility":"internal"}],"src":"39932:27:48"},"returnParameters":{"id":15329,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15328,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15348,"src":"39983:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15326,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39983:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15327,"nodeType":"ArrayTypeName","src":"39983:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"39982:18:48"},"scope":16767,"src":"39911:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15371,"nodeType":"Block","src":"40173:109:48","statements":[{"expression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":15359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15357,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15350,"src":"40192:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":15358,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15352,"src":"40196:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"40192:5:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":15365,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15352,"src":"40258:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":15366,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15350,"src":"40261:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15364,"name":"_merkleHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16715,"src":"40246:11:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":15367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40246:17:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"40192:71:48","trueExpression":{"arguments":[{"id":15361,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15350,"src":"40225:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":15362,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15352,"src":"40228:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15360,"name":"_merkleHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16715,"src":"40213:11:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":15363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40213:17:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"id":15369,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"40191:83:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":15356,"id":15370,"nodeType":"Return","src":"40184:90:48"}]},"id":15372,"implemented":true,"kind":"function","modifiers":[],"name":"merkleHash","nameLocation":"40108:10:48","nodeType":"FunctionDefinition","parameters":{"id":15353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15350,"mutability":"mutable","name":"a","nameLocation":"40127:1:48","nodeType":"VariableDeclaration","scope":15372,"src":"40119:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15349,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40119:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":15352,"mutability":"mutable","name":"b","nameLocation":"40138:1:48","nodeType":"VariableDeclaration","scope":15372,"src":"40130:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15351,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40130:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"40118:22:48"},"returnParameters":{"id":15356,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15355,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15372,"src":"40164:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15354,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40164:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"40163:9:48"},"scope":16767,"src":"40099:183:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15408,"nodeType":"Block","src":"40388:152:48","statements":[{"expression":{"id":15384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15382,"name":"_root","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15380,"src":"40399:5:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15383,"name":"leaf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15377,"src":"40407:4:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"40399:12:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15385,"nodeType":"ExpressionStatement","src":"40399:12:48"},{"body":{"id":15406,"nodeType":"Block","src":"40469:64:48","statements":[{"expression":{"id":15404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15397,"name":"_root","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15380,"src":"40484:5:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":15399,"name":"_root","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15380,"src":"40503:5:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":15400,"name":"proof","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15375,"src":"40510:5:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[] calldata"}},"id":15402,"indexExpression":{"id":15401,"name":"_ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15387,"src":"40516:3:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"40510:10:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15398,"name":"merkleHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15372,"src":"40492:10:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes32_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes32) pure returns (bytes32)"}},"id":15403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40492:29:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"40484:37:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15405,"nodeType":"ExpressionStatement","src":"40484:37:48"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15390,"name":"_ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15387,"src":"40441:3:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15391,"name":"proof","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15375,"src":"40447:5:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[] calldata"}},"id":15392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"40453:6:48","memberName":"length","nodeType":"MemberAccess","src":"40447:12:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"40441:18:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15407,"initializationExpression":{"assignments":[15387],"declarations":[{"constant":false,"id":15387,"mutability":"mutable","name":"_ix","nameLocation":"40432:3:48","nodeType":"VariableDeclaration","scope":15407,"src":"40427:8:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15386,"name":"uint","nodeType":"ElementaryTypeName","src":"40427:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15389,"initialValue":{"hexValue":"30","id":15388,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"40438:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"40427:12:48"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":15395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"40461:6:48","subExpression":{"id":15394,"name":"_ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15387,"src":"40461:3:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15396,"nodeType":"ExpressionStatement","src":"40461:6:48"},"nodeType":"ForStatement","src":"40422:111:48"}]},"id":15409,"implemented":true,"kind":"function","modifiers":[],"name":"merkleRoot","nameLocation":"40299:10:48","nodeType":"FunctionDefinition","parameters":{"id":15378,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15375,"mutability":"mutable","name":"proof","nameLocation":"40329:5:48","nodeType":"VariableDeclaration","scope":15409,"src":"40310:24:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15373,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40310:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15374,"nodeType":"ArrayTypeName","src":"40310:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"},{"constant":false,"id":15377,"mutability":"mutable","name":"leaf","nameLocation":"40344:4:48","nodeType":"VariableDeclaration","scope":15409,"src":"40336:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15376,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40336:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"40309:40:48"},"returnParameters":{"id":15381,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15380,"mutability":"mutable","name":"_root","nameLocation":"40381:5:48","nodeType":"VariableDeclaration","scope":15409,"src":"40373:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15379,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40373:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"40372:15:48"},"scope":16767,"src":"40290:250:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15425,"nodeType":"Block","src":"40631:68:48","statements":[{"expression":{"arguments":[{"arguments":[{"id":15421,"name":"bytecode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15411,"src":"40681:8:48","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":15420,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"40671:9:48","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":15422,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40671:19:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"expression":{"id":15417,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16767,"src":"40649:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16767_$","typeString":"type(library Witnet)"}},"id":15418,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"40656:9:48","memberName":"RadonHash","nodeType":"MemberAccess","referencedDeclaration":13250,"src":"40649:16:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_RadonHash_$13250_$","typeString":"type(Witnet.RadonHash)"}},"id":15419,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"40666:4:48","memberName":"wrap","nodeType":"MemberAccess","src":"40649:21:48","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_bytes32_$returns$_t_userDefinedValueType$_RadonHash_$13250_$","typeString":"function (bytes32) pure returns (Witnet.RadonHash)"}},"id":15423,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40649:42:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"functionReturnParameters":15416,"id":15424,"nodeType":"Return","src":"40642:49:48"}]},"id":15426,"implemented":true,"kind":"function","modifiers":[],"name":"radHash","nameLocation":"40557:7:48","nodeType":"FunctionDefinition","parameters":{"id":15412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15411,"mutability":"mutable","name":"bytecode","nameLocation":"40580:8:48","nodeType":"VariableDeclaration","scope":15426,"src":"40565:23:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":15410,"name":"bytes","nodeType":"ElementaryTypeName","src":"40565:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"40564:25:48"},"returnParameters":{"id":15416,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15415,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15426,"src":"40613:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"},"typeName":{"id":15414,"nodeType":"UserDefinedTypeName","pathNode":{"id":15413,"name":"Witnet.RadonHash","nameLocations":["40613:6:48","40620:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13250,"src":"40613:16:48"},"referencedDeclaration":13250,"src":"40613:16:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13250","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"40612:18:48"},"scope":16767,"src":"40548:151:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15491,"nodeType":"Block","src":"40826:588:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15435,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15428,"src":"40841:9:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"40851:6:48","memberName":"length","nodeType":"MemberAccess","src":"40841:16:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"3635","id":15437,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"40861:2:48","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"src":"40841:22:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15446,"nodeType":"IfStatement","src":"40837:74:48","trueBody":{"id":15445,"nodeType":"Block","src":"40865:46:48","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":15441,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"40896:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":15440,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"40888:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15439,"name":"address","nodeType":"ElementaryTypeName","src":"40888:7:48","typeDescriptions":{}}},"id":15442,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40888:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":15443,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"40887:12:48","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":15434,"id":15444,"nodeType":"Return","src":"40880:19:48"}]}},{"assignments":[15448],"declarations":[{"constant":false,"id":15448,"mutability":"mutable","name":"r","nameLocation":"40929:1:48","nodeType":"VariableDeclaration","scope":15491,"src":"40921:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15447,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40921:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":15449,"nodeType":"VariableDeclarationStatement","src":"40921:9:48"},{"assignments":[15451],"declarations":[{"constant":false,"id":15451,"mutability":"mutable","name":"s","nameLocation":"40949:1:48","nodeType":"VariableDeclaration","scope":15491,"src":"40941:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15450,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40941:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":15452,"nodeType":"VariableDeclarationStatement","src":"40941:9:48"},{"assignments":[15454],"declarations":[{"constant":false,"id":15454,"mutability":"mutable","name":"v","nameLocation":"40967:1:48","nodeType":"VariableDeclaration","scope":15491,"src":"40961:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15453,"name":"uint8","nodeType":"ElementaryTypeName","src":"40961:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":15455,"nodeType":"VariableDeclarationStatement","src":"40961:7:48"},{"AST":{"nativeSrc":"40988:159:48","nodeType":"YulBlock","src":"40988:159:48","statements":[{"nativeSrc":"41003:32:48","nodeType":"YulAssignment","src":"41003:32:48","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"41018:9:48","nodeType":"YulIdentifier","src":"41018:9:48"},{"kind":"number","nativeSrc":"41029:4:48","nodeType":"YulLiteral","src":"41029:4:48","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"41014:3:48","nodeType":"YulIdentifier","src":"41014:3:48"},"nativeSrc":"41014:20:48","nodeType":"YulFunctionCall","src":"41014:20:48"}],"functionName":{"name":"mload","nativeSrc":"41008:5:48","nodeType":"YulIdentifier","src":"41008:5:48"},"nativeSrc":"41008:27:48","nodeType":"YulFunctionCall","src":"41008:27:48"},"variableNames":[{"name":"r","nativeSrc":"41003:1:48","nodeType":"YulIdentifier","src":"41003:1:48"}]},{"nativeSrc":"41049:32:48","nodeType":"YulAssignment","src":"41049:32:48","value":{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"41064:9:48","nodeType":"YulIdentifier","src":"41064:9:48"},{"kind":"number","nativeSrc":"41075:4:48","nodeType":"YulLiteral","src":"41075:4:48","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"41060:3:48","nodeType":"YulIdentifier","src":"41060:3:48"},"nativeSrc":"41060:20:48","nodeType":"YulFunctionCall","src":"41060:20:48"}],"functionName":{"name":"mload","nativeSrc":"41054:5:48","nodeType":"YulIdentifier","src":"41054:5:48"},"nativeSrc":"41054:27:48","nodeType":"YulFunctionCall","src":"41054:27:48"},"variableNames":[{"name":"s","nativeSrc":"41049:1:48","nodeType":"YulIdentifier","src":"41049:1:48"}]},{"nativeSrc":"41095:41:48","nodeType":"YulAssignment","src":"41095:41:48","value":{"arguments":[{"kind":"number","nativeSrc":"41105:1:48","nodeType":"YulLiteral","src":"41105:1:48","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"signature","nativeSrc":"41118:9:48","nodeType":"YulIdentifier","src":"41118:9:48"},{"kind":"number","nativeSrc":"41129:4:48","nodeType":"YulLiteral","src":"41129:4:48","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"41114:3:48","nodeType":"YulIdentifier","src":"41114:3:48"},"nativeSrc":"41114:20:48","nodeType":"YulFunctionCall","src":"41114:20:48"}],"functionName":{"name":"mload","nativeSrc":"41108:5:48","nodeType":"YulIdentifier","src":"41108:5:48"},"nativeSrc":"41108:27:48","nodeType":"YulFunctionCall","src":"41108:27:48"}],"functionName":{"name":"byte","nativeSrc":"41100:4:48","nodeType":"YulIdentifier","src":"41100:4:48"},"nativeSrc":"41100:36:48","nodeType":"YulFunctionCall","src":"41100:36:48"},"variableNames":[{"name":"v","nativeSrc":"41095:1:48","nodeType":"YulIdentifier","src":"41095:1:48"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":15448,"isOffset":false,"isSlot":false,"src":"41003:1:48","valueSize":1},{"declaration":15451,"isOffset":false,"isSlot":false,"src":"41049:1:48","valueSize":1},{"declaration":15428,"isOffset":false,"isSlot":false,"src":"41018:9:48","valueSize":1},{"declaration":15428,"isOffset":false,"isSlot":false,"src":"41064:9:48","valueSize":1},{"declaration":15428,"isOffset":false,"isSlot":false,"src":"41118:9:48","valueSize":1},{"declaration":15454,"isOffset":false,"isSlot":false,"src":"41095:1:48","valueSize":1}],"id":15456,"nodeType":"InlineAssembly","src":"40979:168:48"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15459,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15451,"src":"41169:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15458,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"41161:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15457,"name":"uint256","nodeType":"ElementaryTypeName","src":"41161:7:48","typeDescriptions":{}}},"id":15460,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41161:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"307837464646464646464646464646464646464646464646464646464646464646463544353736453733353741343530314444464539324634363638314232304130","id":15461,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41174:66:48","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926418782139537452191302581570759080747168_by_1","typeString":"int_const 5789...(69 digits omitted)...7168"},"value":"0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0"},"src":"41161:79:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15469,"nodeType":"IfStatement","src":"41157:129:48","trueBody":{"id":15468,"nodeType":"Block","src":"41242:44:48","statements":[{"expression":{"arguments":[{"hexValue":"30","id":15465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41272:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":15464,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"41264:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15463,"name":"address","nodeType":"ElementaryTypeName","src":"41264:7:48","typeDescriptions":{}}},"id":15466,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41264:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":15434,"id":15467,"nodeType":"Return","src":"41257:17:48"}]}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15470,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15454,"src":"41300:1:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"3237","id":15471,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41305:2:48","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"41300:7:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15473,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15454,"src":"41311:1:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"3238","id":15474,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41316:2:48","typeDescriptions":{"typeIdentifier":"t_rational_28_by_1","typeString":"int_const 28"},"value":"28"},"src":"41311:7:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"41300:18:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15483,"nodeType":"IfStatement","src":"41296:68:48","trueBody":{"id":15482,"nodeType":"Block","src":"41320:44:48","statements":[{"expression":{"arguments":[{"hexValue":"30","id":15479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41350:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":15478,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"41342:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15477,"name":"address","nodeType":"ElementaryTypeName","src":"41342:7:48","typeDescriptions":{}}},"id":15480,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41342:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":15434,"id":15481,"nodeType":"Return","src":"41335:17:48"}]}},{"expression":{"arguments":[{"id":15485,"name":"hash_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15430,"src":"41391:5:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":15486,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15454,"src":"41398:1:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":15487,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15448,"src":"41401:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":15488,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15451,"src":"41404:1:48","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":15484,"name":"ecrecover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-6,"src":"41381:9:48","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":15489,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41381:25:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":15434,"id":15490,"nodeType":"Return","src":"41374:32:48"}]},"id":15492,"implemented":true,"kind":"function","modifiers":[],"name":"recoverEvmAddr","nameLocation":"40716:14:48","nodeType":"FunctionDefinition","parameters":{"id":15431,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15428,"mutability":"mutable","name":"signature","nameLocation":"40744:9:48","nodeType":"VariableDeclaration","scope":15492,"src":"40731:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15427,"name":"bytes","nodeType":"ElementaryTypeName","src":"40731:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":15430,"mutability":"mutable","name":"hash_","nameLocation":"40763:5:48","nodeType":"VariableDeclaration","scope":15492,"src":"40755:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15429,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40755:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"40730:39:48"},"returnParameters":{"id":15434,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15433,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15492,"src":"40812:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15432,"name":"address","nodeType":"ElementaryTypeName","src":"40812:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"40811:9:48"},"scope":16767,"src":"40707:707:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15588,"nodeType":"Block","src":"41633:578:48","statements":[{"assignments":[15505],"declarations":[{"constant":false,"id":15505,"mutability":"mutable","name":"_publicKeyX","nameLocation":"41652:11:48","nodeType":"VariableDeclaration","scope":15588,"src":"41644:19:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15504,"name":"bytes32","nodeType":"ElementaryTypeName","src":"41644:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":15515,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":15510,"name":"evmAuthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15494,"src":"41713:13:48","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":15508,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"41696:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15509,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"41700:12:48","memberName":"encodePacked","nodeType":"MemberAccess","src":"41696:16:48","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41696:31:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15507,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"41686:9:48","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":15512,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41686:42:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":15513,"name":"witSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15499,"src":"41730:12:48","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":15506,"name":"recoverWitPublicKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15660,"src":"41666:19:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes32,bytes memory) pure returns (bytes32)"}},"id":15514,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41666:77:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"41644:99:48"},{"assignments":[15517],"declarations":[{"constant":false,"id":15517,"mutability":"mutable","name":"_witSigner","nameLocation":"41762:10:48","nodeType":"VariableDeclaration","scope":15588,"src":"41754:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":15516,"name":"bytes20","nodeType":"ElementaryTypeName","src":"41754:7:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"id":15522,"initialValue":{"arguments":[{"id":15520,"name":"witSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15497,"src":"41790:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}],"expression":{"id":15518,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13240,"src":"41775:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Address_$13240_$","typeString":"type(Witnet.Address)"}},"id":15519,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"41783:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"41775:14:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Address_$13240_$returns$_t_bytes20_$","typeString":"function (Witnet.Address) pure returns (bytes20)"}},"id":15521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41775:25:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"VariableDeclarationStatement","src":"41754:46:48"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"id":15537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15523,"name":"_witSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15517,"src":"41833:10:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"hexValue":"30783030","id":15531,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41886:4:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0x00"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"id":15530,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"41879:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":15529,"name":"bytes1","nodeType":"ElementaryTypeName","src":"41879:6:48","typeDescriptions":{}}},"id":15532,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41879:12:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},{"id":15533,"name":"_publicKeyX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15505,"src":"41893:11:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":15527,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"41862:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15528,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"41866:12:48","memberName":"encodePacked","nodeType":"MemberAccess","src":"41862:16:48","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15534,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41862:43:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15526,"name":"sha256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-22,"src":"41855:6:48","typeDescriptions":{"typeIdentifier":"t_function_sha256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":15535,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41855:51:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15525,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"41847:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":15524,"name":"bytes20","nodeType":"ElementaryTypeName","src":"41847:7:48","typeDescriptions":{}}},"id":15536,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41847:60:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"src":"41833:74:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"id":15552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15538,"name":"_witSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15517,"src":"41928:10:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"hexValue":"30783031","id":15546,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41981:4:48","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"0x01"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":15545,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"41974:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":15544,"name":"bytes1","nodeType":"ElementaryTypeName","src":"41974:6:48","typeDescriptions":{}}},"id":15547,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41974:12:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},{"id":15548,"name":"_publicKeyX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15505,"src":"41988:11:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":15542,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"41957:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15543,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"41961:12:48","memberName":"encodePacked","nodeType":"MemberAccess","src":"41957:16:48","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15549,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41957:43:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15541,"name":"sha256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-22,"src":"41950:6:48","typeDescriptions":{"typeIdentifier":"t_function_sha256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":15550,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41950:51:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15540,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"41942:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":15539,"name":"bytes20","nodeType":"ElementaryTypeName","src":"41942:7:48","typeDescriptions":{}}},"id":15551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41942:60:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"src":"41928:74:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"41833:169:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"id":15568,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15554,"name":"_witSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15517,"src":"42023:10:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"hexValue":"30783032","id":15562,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"42076:4:48","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"0x02"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"}],"id":15561,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"42069:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":15560,"name":"bytes1","nodeType":"ElementaryTypeName","src":"42069:6:48","typeDescriptions":{}}},"id":15563,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42069:12:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},{"id":15564,"name":"_publicKeyX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15505,"src":"42083:11:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":15558,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"42052:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15559,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"42056:12:48","memberName":"encodePacked","nodeType":"MemberAccess","src":"42052:16:48","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15565,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42052:43:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15557,"name":"sha256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-22,"src":"42045:6:48","typeDescriptions":{"typeIdentifier":"t_function_sha256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":15566,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42045:51:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15556,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"42037:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":15555,"name":"bytes20","nodeType":"ElementaryTypeName","src":"42037:7:48","typeDescriptions":{}}},"id":15567,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42037:60:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"src":"42023:74:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"41833:264:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"id":15584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15570,"name":"_witSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15517,"src":"42118:10:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"hexValue":"30783033","id":15578,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"42171:4:48","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"0x03"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"}],"id":15577,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"42164:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":15576,"name":"bytes1","nodeType":"ElementaryTypeName","src":"42164:6:48","typeDescriptions":{}}},"id":15579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42164:12:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},{"id":15580,"name":"_publicKeyX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15505,"src":"42178:11:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":15574,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"42147:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15575,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"42151:12:48","memberName":"encodePacked","nodeType":"MemberAccess","src":"42147:16:48","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":15581,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42147:43:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15573,"name":"sha256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-22,"src":"42140:6:48","typeDescriptions":{"typeIdentifier":"t_function_sha256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":15582,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42140:51:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15572,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"42132:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":15571,"name":"bytes20","nodeType":"ElementaryTypeName","src":"42132:7:48","typeDescriptions":{}}},"id":15583,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42132:60:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"src":"42118:74:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"41833:359:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":15586,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"41818:385:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":15503,"id":15587,"nodeType":"Return","src":"41811:392:48"}]},"id":15589,"implemented":true,"kind":"function","modifiers":[],"name":"verifyWitAddressAuthorization","nameLocation":"41431:29:48","nodeType":"FunctionDefinition","parameters":{"id":15500,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15494,"mutability":"mutable","name":"evmAuthorized","nameLocation":"41483:13:48","nodeType":"VariableDeclaration","scope":15589,"src":"41475:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15493,"name":"address","nodeType":"ElementaryTypeName","src":"41475:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15497,"mutability":"mutable","name":"witSigner","nameLocation":"41520:9:48","nodeType":"VariableDeclaration","scope":15589,"src":"41512:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"},"typeName":{"id":15496,"nodeType":"UserDefinedTypeName","pathNode":{"id":15495,"name":"Address","nameLocations":["41512:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"41512:7:48"},"referencedDeclaration":13240,"src":"41512:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13240","typeString":"Witnet.Address"}},"visibility":"internal"},{"constant":false,"id":15499,"mutability":"mutable","name":"witSignature","nameLocation":"41557:12:48","nodeType":"VariableDeclaration","scope":15589,"src":"41544:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15498,"name":"bytes","nodeType":"ElementaryTypeName","src":"41544:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"41460:120:48"},"returnParameters":{"id":15503,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15502,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15589,"src":"41622:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15501,"name":"bool","nodeType":"ElementaryTypeName","src":"41622:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"41621:6:48"},"scope":16767,"src":"41422:789:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15659,"nodeType":"Block","src":"42363:679:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15598,"name":"witSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15593,"src":"42378:12:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"42391:6:48","memberName":"length","nodeType":"MemberAccess","src":"42378:19:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3635","id":15600,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"42401:2:48","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"src":"42378:25:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15658,"nodeType":"IfStatement","src":"42374:661:48","trueBody":{"id":15657,"nodeType":"Block","src":"42405:630:48","statements":[{"assignments":[15603],"declarations":[{"constant":false,"id":15603,"mutability":"mutable","name":"r","nameLocation":"42428:1:48","nodeType":"VariableDeclaration","scope":15657,"src":"42420:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15602,"name":"bytes32","nodeType":"ElementaryTypeName","src":"42420:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":15604,"nodeType":"VariableDeclarationStatement","src":"42420:9:48"},{"assignments":[15606],"declarations":[{"constant":false,"id":15606,"mutability":"mutable","name":"s","nameLocation":"42452:1:48","nodeType":"VariableDeclaration","scope":15657,"src":"42444:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15605,"name":"bytes32","nodeType":"ElementaryTypeName","src":"42444:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":15607,"nodeType":"VariableDeclarationStatement","src":"42444:9:48"},{"assignments":[15609],"declarations":[{"constant":false,"id":15609,"mutability":"mutable","name":"v","nameLocation":"42474:1:48","nodeType":"VariableDeclaration","scope":15657,"src":"42468:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15608,"name":"uint8","nodeType":"ElementaryTypeName","src":"42468:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":15610,"nodeType":"VariableDeclarationStatement","src":"42468:7:48"},{"AST":{"nativeSrc":"42499:184:48","nodeType":"YulBlock","src":"42499:184:48","statements":[{"nativeSrc":"42518:35:48","nodeType":"YulAssignment","src":"42518:35:48","value":{"arguments":[{"arguments":[{"name":"witSignature","nativeSrc":"42533:12:48","nodeType":"YulIdentifier","src":"42533:12:48"},{"kind":"number","nativeSrc":"42547:4:48","nodeType":"YulLiteral","src":"42547:4:48","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"42529:3:48","nodeType":"YulIdentifier","src":"42529:3:48"},"nativeSrc":"42529:23:48","nodeType":"YulFunctionCall","src":"42529:23:48"}],"functionName":{"name":"mload","nativeSrc":"42523:5:48","nodeType":"YulIdentifier","src":"42523:5:48"},"nativeSrc":"42523:30:48","nodeType":"YulFunctionCall","src":"42523:30:48"},"variableNames":[{"name":"r","nativeSrc":"42518:1:48","nodeType":"YulIdentifier","src":"42518:1:48"}]},{"nativeSrc":"42571:35:48","nodeType":"YulAssignment","src":"42571:35:48","value":{"arguments":[{"arguments":[{"name":"witSignature","nativeSrc":"42586:12:48","nodeType":"YulIdentifier","src":"42586:12:48"},{"kind":"number","nativeSrc":"42600:4:48","nodeType":"YulLiteral","src":"42600:4:48","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"42582:3:48","nodeType":"YulIdentifier","src":"42582:3:48"},"nativeSrc":"42582:23:48","nodeType":"YulFunctionCall","src":"42582:23:48"}],"functionName":{"name":"mload","nativeSrc":"42576:5:48","nodeType":"YulIdentifier","src":"42576:5:48"},"nativeSrc":"42576:30:48","nodeType":"YulFunctionCall","src":"42576:30:48"},"variableNames":[{"name":"s","nativeSrc":"42571:1:48","nodeType":"YulIdentifier","src":"42571:1:48"}]},{"nativeSrc":"42624:44:48","nodeType":"YulAssignment","src":"42624:44:48","value":{"arguments":[{"kind":"number","nativeSrc":"42634:1:48","nodeType":"YulLiteral","src":"42634:1:48","type":"","value":"0"},{"arguments":[{"arguments":[{"name":"witSignature","nativeSrc":"42647:12:48","nodeType":"YulIdentifier","src":"42647:12:48"},{"kind":"number","nativeSrc":"42661:4:48","nodeType":"YulLiteral","src":"42661:4:48","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"42643:3:48","nodeType":"YulIdentifier","src":"42643:3:48"},"nativeSrc":"42643:23:48","nodeType":"YulFunctionCall","src":"42643:23:48"}],"functionName":{"name":"mload","nativeSrc":"42637:5:48","nodeType":"YulIdentifier","src":"42637:5:48"},"nativeSrc":"42637:30:48","nodeType":"YulFunctionCall","src":"42637:30:48"}],"functionName":{"name":"byte","nativeSrc":"42629:4:48","nodeType":"YulIdentifier","src":"42629:4:48"},"nativeSrc":"42629:39:48","nodeType":"YulFunctionCall","src":"42629:39:48"},"variableNames":[{"name":"v","nativeSrc":"42624:1:48","nodeType":"YulIdentifier","src":"42624:1:48"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":15603,"isOffset":false,"isSlot":false,"src":"42518:1:48","valueSize":1},{"declaration":15606,"isOffset":false,"isSlot":false,"src":"42571:1:48","valueSize":1},{"declaration":15609,"isOffset":false,"isSlot":false,"src":"42624:1:48","valueSize":1},{"declaration":15593,"isOffset":false,"isSlot":false,"src":"42533:12:48","valueSize":1},{"declaration":15593,"isOffset":false,"isSlot":false,"src":"42586:12:48","valueSize":1},{"declaration":15593,"isOffset":false,"isSlot":false,"src":"42647:12:48","valueSize":1}],"id":15611,"nodeType":"InlineAssembly","src":"42490:193:48"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15626,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15614,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15606,"src":"42727:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15613,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"42719:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15612,"name":"uint256","nodeType":"ElementaryTypeName","src":"42719:7:48","typeDescriptions":{}}},"id":15615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42719:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"307837464646464646464646464646464646464646464646464646464646464646463544353736453733353741343530314444464539324634363638314232304130","id":15616,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"42733:66:48","typeDescriptions":{"typeIdentifier":"t_rational_57896044618658097711785492504343953926418782139537452191302581570759080747168_by_1","typeString":"int_const 5789...(69 digits omitted)...7168"},"value":"0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0"},"src":"42719:80:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15624,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15620,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15618,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15609,"src":"42825:1:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3237","id":15619,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"42830:2:48","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"42825:7:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15621,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15609,"src":"42836:1:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3238","id":15622,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"42841:2:48","typeDescriptions":{"typeIdentifier":"t_rational_28_by_1","typeString":"int_const 28"},"value":"28"},"src":"42836:7:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"42825:18:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":15625,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"42824:20:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"42719:125:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15656,"nodeType":"IfStatement","src":"42697:327:48","trueBody":{"id":15655,"nodeType":"Block","src":"42860:164:48","statements":[{"assignments":[15628,null],"declarations":[{"constant":false,"id":15628,"mutability":"mutable","name":"x","nameLocation":"42888:1:48","nodeType":"VariableDeclaration","scope":15655,"src":"42880:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15627,"name":"uint256","nodeType":"ElementaryTypeName","src":"42880:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},null],"id":15647,"initialValue":{"arguments":[{"arguments":[{"id":15633,"name":"evmDigest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15591,"src":"42920:9:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15632,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"42912:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15631,"name":"uint256","nodeType":"ElementaryTypeName","src":"42912:7:48","typeDescriptions":{}}},"id":15634,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42912:18:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15635,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15609,"src":"42932:1:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3237","id":15636,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"42936:2:48","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"42932:6:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"arguments":[{"id":15640,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15603,"src":"42948:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15639,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"42940:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15638,"name":"uint256","nodeType":"ElementaryTypeName","src":"42940:7:48","typeDescriptions":{}}},"id":15641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42940:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":15644,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15606,"src":"42960:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15643,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"42952:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":15642,"name":"uint256","nodeType":"ElementaryTypeName","src":"42952:7:48","typeDescriptions":{}}},"id":15645,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42952:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":15629,"name":"Secp256k1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13216,"src":"42894:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Secp256k1_$13216_$","typeString":"type(library Secp256k1)"}},"id":15630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"42904:7:48","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":12398,"src":"42894:17:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint8_$_t_uint256_$_t_uint256_$returns$_t_uint256_$_t_uint256_$","typeString":"function (uint256,uint8,uint256,uint256) pure returns (uint256,uint256)"}},"id":15646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42894:69:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_uint256_$","typeString":"tuple(uint256,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"42879:84:48"},{"expression":{"id":15653,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15648,"name":"_witPublicKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15596,"src":"42982:13:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":15651,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15628,"src":"43006:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15650,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"42998:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":15649,"name":"bytes32","nodeType":"ElementaryTypeName","src":"42998:7:48","typeDescriptions":{}}},"id":15652,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"42998:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"42982:26:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15654,"nodeType":"ExpressionStatement","src":"42982:26:48"}]}}]}}]},"id":15660,"implemented":true,"kind":"function","modifiers":[],"name":"recoverWitPublicKey","nameLocation":"42228:19:48","nodeType":"FunctionDefinition","parameters":{"id":15594,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15591,"mutability":"mutable","name":"evmDigest","nameLocation":"42256:9:48","nodeType":"VariableDeclaration","scope":15660,"src":"42248:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15590,"name":"bytes32","nodeType":"ElementaryTypeName","src":"42248:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":15593,"mutability":"mutable","name":"witSignature","nameLocation":"42280:12:48","nodeType":"VariableDeclaration","scope":15660,"src":"42267:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15592,"name":"bytes","nodeType":"ElementaryTypeName","src":"42267:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"42247:46:48"},"returnParameters":{"id":15597,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15596,"mutability":"mutable","name":"_witPublicKey","nameLocation":"42343:13:48","nodeType":"VariableDeclaration","scope":15660,"src":"42335:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15595,"name":"bytes32","nodeType":"ElementaryTypeName","src":"42335:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"42334:23:48"},"scope":16767,"src":"42219:823:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15674,"nodeType":"Block","src":"43122:52:48","statements":[{"expression":{"arguments":[{"arguments":[{"id":15670,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15662,"src":"43158:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15669,"name":"toBytes20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15707,"src":"43148:9:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_bytes20_$","typeString":"function (bytes memory) pure returns (bytes20)"}},"id":15671,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43148:17:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes20","typeString":"bytes20"}],"id":15668,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"43140:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":15667,"name":"address","nodeType":"ElementaryTypeName","src":"43140:7:48","typeDescriptions":{}}},"id":15672,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43140:26:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":15666,"id":15673,"nodeType":"Return","src":"43133:33:48"}]},"id":15675,"implemented":true,"kind":"function","modifiers":[],"name":"toAddress","nameLocation":"43059:9:48","nodeType":"FunctionDefinition","parameters":{"id":15663,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15662,"mutability":"mutable","name":"_value","nameLocation":"43082:6:48","nodeType":"VariableDeclaration","scope":15675,"src":"43069:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15661,"name":"bytes","nodeType":"ElementaryTypeName","src":"43069:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"43068:21:48"},"returnParameters":{"id":15666,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15665,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15675,"src":"43113:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15664,"name":"address","nodeType":"ElementaryTypeName","src":"43113:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"43112:9:48"},"scope":16767,"src":"43050:124:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15690,"nodeType":"Block","src":"43252:57:48","statements":[{"expression":{"arguments":[{"arguments":[{"id":15685,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15677,"src":"43290:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"34","id":15686,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"43298:1:48","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"}],"id":15684,"name":"toFixedBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15776,"src":"43277:12:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint8_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint8) pure returns (bytes32)"}},"id":15687,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43277:23:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15683,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"43270:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes4_$","typeString":"type(bytes4)"},"typeName":{"id":15682,"name":"bytes4","nodeType":"ElementaryTypeName","src":"43270:6:48","typeDescriptions":{}}},"id":15688,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43270:31:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":15681,"id":15689,"nodeType":"Return","src":"43263:38:48"}]},"id":15691,"implemented":true,"kind":"function","modifiers":[],"name":"toBytes4","nameLocation":"43191:8:48","nodeType":"FunctionDefinition","parameters":{"id":15678,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15677,"mutability":"mutable","name":"_value","nameLocation":"43213:6:48","nodeType":"VariableDeclaration","scope":15691,"src":"43200:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15676,"name":"bytes","nodeType":"ElementaryTypeName","src":"43200:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"43199:21:48"},"returnParameters":{"id":15681,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15680,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15691,"src":"43244:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":15679,"name":"bytes4","nodeType":"ElementaryTypeName","src":"43244:6:48","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"43243:8:48"},"scope":16767,"src":"43182:127:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15706,"nodeType":"Block","src":"43393:59:48","statements":[{"expression":{"arguments":[{"arguments":[{"id":15701,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15693,"src":"43432:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"3230","id":15702,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"43440:2:48","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"}],"id":15700,"name":"toFixedBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15776,"src":"43419:12:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint8_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint8) pure returns (bytes32)"}},"id":15703,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43419:24:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15699,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"43411:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes20_$","typeString":"type(bytes20)"},"typeName":{"id":15698,"name":"bytes20","nodeType":"ElementaryTypeName","src":"43411:7:48","typeDescriptions":{}}},"id":15704,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43411:33:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"functionReturnParameters":15697,"id":15705,"nodeType":"Return","src":"43404:40:48"}]},"id":15707,"implemented":true,"kind":"function","modifiers":[],"name":"toBytes20","nameLocation":"43330:9:48","nodeType":"FunctionDefinition","parameters":{"id":15694,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15693,"mutability":"mutable","name":"_value","nameLocation":"43353:6:48","nodeType":"VariableDeclaration","scope":15707,"src":"43340:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15692,"name":"bytes","nodeType":"ElementaryTypeName","src":"43340:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"43339:21:48"},"returnParameters":{"id":15697,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15696,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15707,"src":"43384:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":15695,"name":"bytes20","nodeType":"ElementaryTypeName","src":"43384:7:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"43383:9:48"},"scope":16767,"src":"43321:131:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15719,"nodeType":"Block","src":"43536:50:48","statements":[{"expression":{"arguments":[{"id":15715,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15709,"src":"43567:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"3332","id":15716,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"43575:2:48","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"}],"id":15714,"name":"toFixedBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15776,"src":"43554:12:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint8_$returns$_t_bytes32_$","typeString":"function (bytes memory,uint8) pure returns (bytes32)"}},"id":15717,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43554:24:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":15713,"id":15718,"nodeType":"Return","src":"43547:31:48"}]},"id":15720,"implemented":true,"kind":"function","modifiers":[],"name":"toBytes32","nameLocation":"43473:9:48","nodeType":"FunctionDefinition","parameters":{"id":15710,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15709,"mutability":"mutable","name":"_value","nameLocation":"43496:6:48","nodeType":"VariableDeclaration","scope":15720,"src":"43483:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15708,"name":"bytes","nodeType":"ElementaryTypeName","src":"43483:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"43482:21:48"},"returnParameters":{"id":15713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15712,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15720,"src":"43527:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15711,"name":"bytes32","nodeType":"ElementaryTypeName","src":"43527:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"43526:9:48"},"scope":16767,"src":"43464:122:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15775,"nodeType":"Block","src":"43718:289:48","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15730,"name":"_numBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15724,"src":"43736:9:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"3332","id":15731,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"43749:2:48","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"43736:15:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"id":15729,"name":"assert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-3,"src":"43729:6:48","typeDescriptions":{"typeIdentifier":"t_function_assert_pure$_t_bool_$returns$__$","typeString":"function (bool) pure"}},"id":15733,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43729:23:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":15734,"nodeType":"ExpressionStatement","src":"43729:23:48"},{"id":15774,"nodeType":"UncheckedBlock","src":"43763:237:48","statements":[{"assignments":[15736],"declarations":[{"constant":false,"id":15736,"mutability":"mutable","name":"_len","nameLocation":"43793:4:48","nodeType":"VariableDeclaration","scope":15774,"src":"43788:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15735,"name":"uint","nodeType":"ElementaryTypeName","src":"43788:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15745,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15740,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15737,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15722,"src":"43800:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15738,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"43807:6:48","memberName":"length","nodeType":"MemberAccess","src":"43800:13:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":15739,"name":"_numBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15724,"src":"43816:9:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"43800:25:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"id":15742,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15722,"src":"43840:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15743,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"43847:6:48","memberName":"length","nodeType":"MemberAccess","src":"43840:13:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"43800:53:48","trueExpression":{"id":15741,"name":"_numBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15724,"src":"43828:9:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"43788:65:48"},{"body":{"id":15772,"nodeType":"Block","src":"43904:85:48","statements":[{"expression":{"id":15770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15756,"name":"_bytes32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15727,"src":"43923:8:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":15769,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":15763,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":15759,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15722,"src":"43943:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15761,"indexExpression":{"id":15760,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15747,"src":"43950:2:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"43943:10:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30786666","id":15762,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"43956:4:48","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xff"},"src":"43943:17:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":15758,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"43935:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":15757,"name":"bytes32","nodeType":"ElementaryTypeName","src":"43935:7:48","typeDescriptions":{}}},"id":15764,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"43935:26:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15765,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15747,"src":"43966:2:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"38","id":15766,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"43971:1:48","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"43966:6:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":15768,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"43965:8:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"43935:38:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"43923:50:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15771,"nodeType":"ExpressionStatement","src":"43923:50:48"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15750,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15747,"src":"43886:2:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":15751,"name":"_len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15736,"src":"43891:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"43886:9:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15773,"initializationExpression":{"assignments":[15747],"declarations":[{"constant":false,"id":15747,"mutability":"mutable","name":"_i","nameLocation":"43878:2:48","nodeType":"VariableDeclaration","scope":15773,"src":"43873:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15746,"name":"uint","nodeType":"ElementaryTypeName","src":"43873:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15749,"initialValue":{"hexValue":"30","id":15748,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"43883:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"43873:11:48"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":15754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"43897:5:48","subExpression":{"id":15753,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15747,"src":"43897:2:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15755,"nodeType":"ExpressionStatement","src":"43897:5:48"},"nodeType":"ForStatement","src":"43868:121:48"}]}]},"id":15776,"implemented":true,"kind":"function","modifiers":[],"name":"toFixedBytes","nameLocation":"43603:12:48","nodeType":"FunctionDefinition","parameters":{"id":15725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15722,"mutability":"mutable","name":"_value","nameLocation":"43629:6:48","nodeType":"VariableDeclaration","scope":15776,"src":"43616:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15721,"name":"bytes","nodeType":"ElementaryTypeName","src":"43616:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":15724,"mutability":"mutable","name":"_numBytes","nameLocation":"43643:9:48","nodeType":"VariableDeclaration","scope":15776,"src":"43637:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15723,"name":"uint8","nodeType":"ElementaryTypeName","src":"43637:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"43615:38:48"},"returnParameters":{"id":15728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15727,"mutability":"mutable","name":"_bytes32","nameLocation":"43703:8:48","nodeType":"VariableDeclaration","scope":15776,"src":"43695:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15726,"name":"bytes32","nodeType":"ElementaryTypeName","src":"43695:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"43694:18:48"},"scope":16767,"src":"43594:413:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15820,"nodeType":"Block","src":"44162:274:48","statements":[{"assignments":[15785],"declarations":[{"constant":false,"id":15785,"mutability":"mutable","name":"_bytes","nameLocation":"44186:6:48","nodeType":"VariableDeclaration","scope":15820,"src":"44173:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15784,"name":"bytes","nodeType":"ElementaryTypeName","src":"44173:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":15792,"initialValue":{"arguments":[{"arguments":[{"id":15789,"name":"_bytes32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15779,"src":"44221:8:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15788,"name":"_toStringLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16766,"src":"44205:15:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256)"}},"id":15790,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44205:25:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15787,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"44195:9:48","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":15786,"name":"bytes","nodeType":"ElementaryTypeName","src":"44199:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":15791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44195:36:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"44173:58:48"},{"body":{"id":15813,"nodeType":"Block","src":"44281:116:48","statements":[{"expression":{"id":15807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":15801,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15785,"src":"44296:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15803,"indexExpression":{"id":15802,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15794,"src":"44303:2:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"44296:10:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":15804,"name":"_bytes32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15779,"src":"44309:8:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15806,"indexExpression":{"id":15805,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15794,"src":"44318:2:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"44309:12:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"44296:25:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":15808,"nodeType":"ExpressionStatement","src":"44296:25:48"},{"id":15812,"nodeType":"UncheckedBlock","src":"44336:50:48","statements":[{"expression":{"id":15810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"44365:5:48","subExpression":{"id":15809,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15794,"src":"44365:2:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15811,"nodeType":"ExpressionStatement","src":"44365:5:48"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15797,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15794,"src":"44260:2:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15798,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15785,"src":"44265:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15799,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"44272:6:48","memberName":"length","nodeType":"MemberAccess","src":"44265:13:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"44260:18:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15814,"initializationExpression":{"assignments":[15794],"declarations":[{"constant":false,"id":15794,"mutability":"mutable","name":"_i","nameLocation":"44252:2:48","nodeType":"VariableDeclaration","scope":15814,"src":"44247:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15793,"name":"uint","nodeType":"ElementaryTypeName","src":"44247:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15796,"initialValue":{"hexValue":"30","id":15795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"44257:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"44247:11:48"},"isSimpleCounterLoop":false,"nodeType":"ForStatement","src":"44242:155:48"},{"expression":{"arguments":[{"id":15817,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15785,"src":"44421:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15816,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"44414:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":15815,"name":"string","nodeType":"ElementaryTypeName","src":"44414:6:48","typeDescriptions":{}}},"id":15818,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44414:14:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":15783,"id":15819,"nodeType":"Return","src":"44407:21:48"}]},"documentation":{"id":15777,"nodeType":"StructuredDocumentation","src":"44019:41:48","text":"@notice Converts bytes32 into string."},"id":15821,"implemented":true,"kind":"function","modifiers":[],"name":"asAscii","nameLocation":"44075:7:48","nodeType":"FunctionDefinition","parameters":{"id":15780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15779,"mutability":"mutable","name":"_bytes32","nameLocation":"44091:8:48","nodeType":"VariableDeclaration","scope":15821,"src":"44083:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15778,"name":"bytes32","nodeType":"ElementaryTypeName","src":"44083:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"44082:18:48"},"returnParameters":{"id":15783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15782,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15821,"src":"44142:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15781,"name":"string","nodeType":"ElementaryTypeName","src":"44142:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"44141:15:48"},"scope":16767,"src":"44066:370:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15885,"nodeType":"Block","src":"44545:288:48","statements":[{"assignments":[15829],"declarations":[{"constant":false,"id":15829,"mutability":"mutable","name":"_bytes","nameLocation":"44569:6:48","nodeType":"VariableDeclaration","scope":15885,"src":"44556:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15828,"name":"bytes","nodeType":"ElementaryTypeName","src":"44556:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":15834,"initialValue":{"arguments":[{"hexValue":"3634","id":15832,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"44588:2:48","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"}],"id":15831,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"44578:9:48","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":15830,"name":"bytes","nodeType":"ElementaryTypeName","src":"44582:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":15833,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44578:13:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"44556:35:48"},{"body":{"id":15878,"nodeType":"Block","src":"44638:156:48","statements":[{"expression":{"id":15858,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":15842,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15829,"src":"44653:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15845,"indexExpression":{"id":15844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"44660:5:48","subExpression":{"id":15843,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15836,"src":"44660:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"44653:13:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":15855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":15849,"name":"_bytes32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15823,"src":"44686:8:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15853,"indexExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15850,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15836,"src":"44695:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":15851,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"44700:1:48","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"44695:6:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"44686:16:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"34","id":15854,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"44706:1:48","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"44686:21:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":15848,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"44680:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":15847,"name":"uint8","nodeType":"ElementaryTypeName","src":"44680:5:48","typeDescriptions":{}}},"id":15856,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44680:28:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15846,"name":"_toHexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16740,"src":"44669:10:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint8_$returns$_t_bytes1_$","typeString":"function (uint8) pure returns (bytes1)"}},"id":15857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44669:40:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"44653:56:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":15859,"nodeType":"ExpressionStatement","src":"44653:56:48"},{"expression":{"id":15876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":15860,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15829,"src":"44724:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15863,"indexExpression":{"id":15862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"44731:5:48","subExpression":{"id":15861,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15836,"src":"44731:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"44724:13:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":15873,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":15867,"name":"_bytes32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15823,"src":"44757:8:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15871,"indexExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15868,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15836,"src":"44766:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":15869,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"44771:1:48","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"44766:6:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"44757:16:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783066","id":15872,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"44776:4:48","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0x0f"},"src":"44757:23:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":15866,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"44751:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":15865,"name":"uint8","nodeType":"ElementaryTypeName","src":"44751:5:48","typeDescriptions":{}}},"id":15874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44751:30:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15864,"name":"_toHexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16740,"src":"44740:10:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint8_$returns$_t_bytes1_$","typeString":"function (uint8) pure returns (bytes1)"}},"id":15875,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44740:42:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"44724:58:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":15877,"nodeType":"ExpressionStatement","src":"44724:58:48"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15841,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15838,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15836,"src":"44617:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15839,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15829,"src":"44622:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"44629:6:48","memberName":"length","nodeType":"MemberAccess","src":"44622:13:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"44617:18:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15879,"initializationExpression":{"assignments":[15836],"declarations":[{"constant":false,"id":15836,"mutability":"mutable","name":"_i","nameLocation":"44613:2:48","nodeType":"VariableDeclaration","scope":15879,"src":"44607:8:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15835,"name":"uint8","nodeType":"ElementaryTypeName","src":"44607:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":15837,"nodeType":"VariableDeclarationStatement","src":"44607:8:48"},"isSimpleCounterLoop":false,"nodeType":"ForStatement","src":"44602:192:48"},{"expression":{"arguments":[{"id":15882,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15829,"src":"44818:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15881,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"44811:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":15880,"name":"string","nodeType":"ElementaryTypeName","src":"44811:6:48","typeDescriptions":{}}},"id":15883,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"44811:14:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":15827,"id":15884,"nodeType":"Return","src":"44804:21:48"}]},"id":15886,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"44453:11:48","nodeType":"FunctionDefinition","parameters":{"id":15824,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15823,"mutability":"mutable","name":"_bytes32","nameLocation":"44473:8:48","nodeType":"VariableDeclaration","scope":15886,"src":"44465:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15822,"name":"bytes32","nodeType":"ElementaryTypeName","src":"44465:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"44464:18:48"},"returnParameters":{"id":15827,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15826,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15886,"src":"44525:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15825,"name":"string","nodeType":"ElementaryTypeName","src":"44525:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"44524:15:48"},"scope":16767,"src":"44444:389:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15966,"nodeType":"Block","src":"45188:455:48","statements":[{"assignments":[15895],"declarations":[{"constant":false,"id":15895,"mutability":"mutable","name":"lowered","nameLocation":"45212:7:48","nodeType":"VariableDeclaration","scope":15966,"src":"45199:20:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15894,"name":"bytes","nodeType":"ElementaryTypeName","src":"45199:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":15904,"initialValue":{"arguments":[{"expression":{"arguments":[{"id":15900,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15889,"src":"45238:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":15899,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"45232:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":15898,"name":"bytes","nodeType":"ElementaryTypeName","src":"45232:5:48","typeDescriptions":{}}},"id":15901,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45232:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"45243:6:48","memberName":"length","nodeType":"MemberAccess","src":"45232:17:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15897,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"45222:9:48","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":15896,"name":"bytes","nodeType":"ElementaryTypeName","src":"45226:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":15903,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45222:28:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"45199:51:48"},{"id":15960,"nodeType":"UncheckedBlock","src":"45261:342:48","statements":[{"body":{"id":15958,"nodeType":"Block","src":"45329:263:48","statements":[{"assignments":[15917],"declarations":[{"constant":false,"id":15917,"mutability":"mutable","name":"char","nameLocation":"45354:4:48","nodeType":"VariableDeclaration","scope":15958,"src":"45348:10:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15916,"name":"uint8","nodeType":"ElementaryTypeName","src":"45348:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":15927,"initialValue":{"arguments":[{"baseExpression":{"arguments":[{"id":15922,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15889,"src":"45373:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":15921,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"45367:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":15920,"name":"bytes","nodeType":"ElementaryTypeName","src":"45367:5:48","typeDescriptions":{}}},"id":15923,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45367:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15925,"indexExpression":{"id":15924,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15906,"src":"45378:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"45367:13:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":15919,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"45361:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":15918,"name":"uint8","nodeType":"ElementaryTypeName","src":"45361:5:48","typeDescriptions":{}}},"id":15926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45361:20:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"45348:33:48"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15928,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15917,"src":"45404:4:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3635","id":15929,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"45412:2:48","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"65"},"src":"45404:10:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15931,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15917,"src":"45418:4:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"3930","id":15932,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"45426:2:48","typeDescriptions":{"typeIdentifier":"t_rational_90_by_1","typeString":"int_const 90"},"value":"90"},"src":"45418:10:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"45404:24:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":15956,"nodeType":"Block","src":"45509:68:48","statements":[{"expression":{"id":15954,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":15947,"name":"lowered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15895,"src":"45532:7:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15949,"indexExpression":{"id":15948,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15906,"src":"45540:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"45532:10:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":15952,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15917,"src":"45552:4:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15951,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"45545:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":15950,"name":"bytes1","nodeType":"ElementaryTypeName","src":"45545:6:48","typeDescriptions":{}}},"id":15953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45545:12:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"45532:25:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":15955,"nodeType":"ExpressionStatement","src":"45532:25:48"}]},"id":15957,"nodeType":"IfStatement","src":"45400:177:48","trueBody":{"id":15946,"nodeType":"Block","src":"45430:73:48","statements":[{"expression":{"id":15944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":15935,"name":"lowered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15895,"src":"45453:7:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15937,"indexExpression":{"id":15936,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15906,"src":"45461:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"45453:10:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15940,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15917,"src":"45473:4:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3332","id":15941,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"45480:2:48","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"45473:9:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15939,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"45466:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":15938,"name":"bytes1","nodeType":"ElementaryTypeName","src":"45466:6:48","typeDescriptions":{}}},"id":15943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45466:17:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"45453:30:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":15945,"nodeType":"ExpressionStatement","src":"45453:30:48"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15909,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15906,"src":"45303:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15910,"name":"lowered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15895,"src":"45307:7:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"45315:6:48","memberName":"length","nodeType":"MemberAccess","src":"45307:14:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"45303:18:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15959,"initializationExpression":{"assignments":[15906],"declarations":[{"constant":false,"id":15906,"mutability":"mutable","name":"i","nameLocation":"45296:1:48","nodeType":"VariableDeclaration","scope":15959,"src":"45291:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15905,"name":"uint","nodeType":"ElementaryTypeName","src":"45291:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15908,"initialValue":{"hexValue":"30","id":15907,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"45300:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"45291:10:48"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":15914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"45323:4:48","subExpression":{"id":15913,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15906,"src":"45323:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15915,"nodeType":"ExpressionStatement","src":"45323:4:48"},"nodeType":"ForStatement","src":"45286:306:48"}]},{"expression":{"arguments":[{"id":15963,"name":"lowered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15895,"src":"45627:7:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15962,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"45620:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":15961,"name":"string","nodeType":"ElementaryTypeName","src":"45620:6:48","typeDescriptions":{}}},"id":15964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45620:15:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":15893,"id":15965,"nodeType":"Return","src":"45613:22:48"}]},"documentation":{"id":15887,"nodeType":"StructuredDocumentation","src":"44843:238:48","text":"===============================================================================================================\n --- 'string' helper methods -----------------------------------------------------------------------------------"},"id":15967,"implemented":true,"kind":"function","modifiers":[],"name":"toLowerCase","nameLocation":"45096:11:48","nodeType":"FunctionDefinition","parameters":{"id":15890,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15889,"mutability":"mutable","name":"str","nameLocation":"45122:3:48","nodeType":"VariableDeclaration","scope":15967,"src":"45108:17:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15888,"name":"string","nodeType":"ElementaryTypeName","src":"45108:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"45107:19:48"},"returnParameters":{"id":15893,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15892,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15967,"src":"45168:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15891,"name":"string","nodeType":"ElementaryTypeName","src":"45168:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"45167:15:48"},"scope":16767,"src":"45087:556:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16047,"nodeType":"Block","src":"45801:438:48","statements":[{"id":16046,"nodeType":"UncheckedBlock","src":"45812:420:48","statements":[{"expression":{"id":15985,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15974,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15972,"src":"45837:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":15979,"name":"hexString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15969,"src":"45862:9:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":15978,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"45856:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":15977,"name":"bytes","nodeType":"ElementaryTypeName","src":"45856:5:48","typeDescriptions":{}}},"id":15980,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45856:16:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15981,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"45873:6:48","memberName":"length","nodeType":"MemberAccess","src":"45856:23:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":15982,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"45882:1:48","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"45856:27:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15976,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"45846:9:48","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":15975,"name":"bytes","nodeType":"ElementaryTypeName","src":"45850:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":15984,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45846:38:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"45837:47:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15986,"nodeType":"ExpressionStatement","src":"45837:47:48"},{"body":{"id":16044,"nodeType":"Block","src":"45940:281:48","statements":[{"assignments":[15998],"declarations":[{"constant":false,"id":15998,"mutability":"mutable","name":"byte1","nameLocation":"45965:5:48","nodeType":"VariableDeclaration","scope":16044,"src":"45959:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15997,"name":"uint8","nodeType":"ElementaryTypeName","src":"45959:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":16012,"initialValue":{"arguments":[{"arguments":[{"baseExpression":{"arguments":[{"id":16004,"name":"hexString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15969,"src":"46000:9:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16003,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"45994:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":16002,"name":"bytes","nodeType":"ElementaryTypeName","src":"45994:5:48","typeDescriptions":{}}},"id":16005,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45994:16:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16009,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":16006,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46011:1:48","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":16007,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15988,"src":"46015:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"46011:5:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"45994:23:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":16001,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"45988:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16000,"name":"uint8","nodeType":"ElementaryTypeName","src":"45988:5:48","typeDescriptions":{}}},"id":16010,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45988:30:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15999,"name":"_hexCharToByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16704,"src":"45973:14:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint8_$returns$_t_uint8_$","typeString":"function (uint8) pure returns (uint8)"}},"id":16011,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45973:46:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"45959:60:48"},{"assignments":[16014],"declarations":[{"constant":false,"id":16014,"mutability":"mutable","name":"byte2","nameLocation":"46044:5:48","nodeType":"VariableDeclaration","scope":16044,"src":"46038:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16013,"name":"uint8","nodeType":"ElementaryTypeName","src":"46038:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":16030,"initialValue":{"arguments":[{"arguments":[{"baseExpression":{"arguments":[{"id":16020,"name":"hexString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15969,"src":"46079:9:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16019,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"46073:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":16018,"name":"bytes","nodeType":"ElementaryTypeName","src":"46073:5:48","typeDescriptions":{}}},"id":16021,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46073:16:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16027,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16026,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16024,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":16022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46090:1:48","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":16023,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15988,"src":"46094:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"46090:5:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":16025,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46098:1:48","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"46090:9:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"46073:27:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":16017,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"46067:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16016,"name":"uint8","nodeType":"ElementaryTypeName","src":"46067:5:48","typeDescriptions":{}}},"id":16028,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46067:34:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16015,"name":"_hexCharToByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16704,"src":"46052:14:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint8_$returns$_t_uint8_$","typeString":"function (uint8) pure returns (uint8)"}},"id":16029,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46052:50:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"46038:64:48"},{"expression":{"id":16042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16031,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15972,"src":"46121:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16033,"indexExpression":{"id":16032,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15988,"src":"46128:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"46121:9:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16036,"name":"byte1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15998,"src":"46140:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3136","id":16037,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46148:2:48","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"46140:10:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":16039,"name":"byte2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16014,"src":"46153:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"46140:18:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16035,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"46133:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":16034,"name":"bytes1","nodeType":"ElementaryTypeName","src":"46133:6:48","typeDescriptions":{}}},"id":16041,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46133:26:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"46121:38:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16043,"nodeType":"ExpressionStatement","src":"46121:38:48"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15990,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15988,"src":"45915:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15991,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15972,"src":"45919:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"45926:6:48","memberName":"length","nodeType":"MemberAccess","src":"45919:13:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"45915:17:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16045,"initializationExpression":{"assignments":[15988],"declarations":[{"constant":false,"id":15988,"mutability":"mutable","name":"i","nameLocation":"45912:1:48","nodeType":"VariableDeclaration","scope":16045,"src":"45904:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15987,"name":"uint256","nodeType":"ElementaryTypeName","src":"45904:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15989,"nodeType":"VariableDeclarationStatement","src":"45904:9:48"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":15995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"45934:4:48","subExpression":{"id":15994,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15988,"src":"45934:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15996,"nodeType":"ExpressionStatement","src":"45934:4:48"},"nodeType":"ForStatement","src":"45899:322:48"}]}]},"id":16048,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexString","nameLocation":"45717:14:48","nodeType":"FunctionDefinition","parameters":{"id":15970,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15969,"mutability":"mutable","name":"hexString","nameLocation":"45746:9:48","nodeType":"VariableDeclaration","scope":16048,"src":"45732:23:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15968,"name":"string","nodeType":"ElementaryTypeName","src":"45732:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"45731:25:48"},"returnParameters":{"id":15973,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15972,"mutability":"mutable","name":"result","nameLocation":"45793:6:48","nodeType":"VariableDeclaration","scope":16048,"src":"45780:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15971,"name":"bytes","nodeType":"ElementaryTypeName","src":"45780:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"45779:21:48"},"scope":16767,"src":"45708:531:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16141,"nodeType":"Block","src":"46345:455:48","statements":[{"id":16140,"nodeType":"UncheckedBlock","src":"46356:437:48","statements":[{"body":{"id":16134,"nodeType":"Block","src":"46429:320:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":16099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"arguments":[{"id":16075,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16050,"src":"46487:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16074,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"46481:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":16073,"name":"bytes","nodeType":"ElementaryTypeName","src":"46481:5:48","typeDescriptions":{}}},"id":16076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46481:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16078,"indexExpression":{"id":16077,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16058,"src":"46492:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"46481:13:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":16072,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"46475:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16071,"name":"uint8","nodeType":"ElementaryTypeName","src":"46475:5:48","typeDescriptions":{}}},"id":16079,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46475:20:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3438","id":16080,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46498:2:48","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"46475:25:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":16082,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"46474:27:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30","id":16083,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46504:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"46474:31:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"arguments":[{"id":16089,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16050,"src":"46547:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16088,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"46541:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":16087,"name":"bytes","nodeType":"ElementaryTypeName","src":"46541:5:48","typeDescriptions":{}}},"id":16090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46541:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16092,"indexExpression":{"id":16091,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16058,"src":"46552:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"46541:13:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":16086,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"46535:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16085,"name":"uint8","nodeType":"ElementaryTypeName","src":"46535:5:48","typeDescriptions":{}}},"id":16093,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46535:20:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3438","id":16094,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46558:2:48","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"46535:25:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":16096,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"46534:27:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"39","id":16097,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46564:1:48","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"src":"46534:31:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"46474:91:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16105,"nodeType":"IfStatement","src":"46448:197:48","trueBody":{"id":16104,"nodeType":"Block","src":"46585:60:48","statements":[{"expression":{"components":[{"hexValue":"30","id":16100,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46616:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"66616c7365","id":16101,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"46619:5:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"id":16102,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"46615:10:48","typeDescriptions":{"typeIdentifier":"t_tuple$_t_rational_0_by_1_$_t_bool_$","typeString":"tuple(int_const 0,bool)"}},"functionReturnParameters":16056,"id":16103,"nodeType":"Return","src":"46608:17:48"}]}},{"expression":{"id":16132,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16106,"name":"res","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16053,"src":"46663:3:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16117,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"arguments":[{"id":16111,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16050,"src":"46683:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16110,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"46677:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":16109,"name":"bytes","nodeType":"ElementaryTypeName","src":"46677:5:48","typeDescriptions":{}}},"id":16112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46677:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16114,"indexExpression":{"id":16113,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16058,"src":"46688:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"46677:13:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":16108,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"46671:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16107,"name":"uint8","nodeType":"ElementaryTypeName","src":"46671:5:48","typeDescriptions":{}}},"id":16115,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46671:20:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3438","id":16116,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46694:2:48","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"46671:25:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":16118,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"46670:27:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":16119,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46700:2:48","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":16122,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16050,"src":"46713:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16121,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"46707:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":16120,"name":"bytes","nodeType":"ElementaryTypeName","src":"46707:5:48","typeDescriptions":{}}},"id":16123,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46707:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"46718:6:48","memberName":"length","nodeType":"MemberAccess","src":"46707:17:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":16125,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16058,"src":"46727:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"46707:21:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":16127,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46731:1:48","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"46707:25:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":16129,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"46706:27:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"46700:33:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"46670:63:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"46663:70:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16133,"nodeType":"ExpressionStatement","src":"46663:70:48"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16061,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16058,"src":"46401:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":16064,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16050,"src":"46411:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":16063,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"46405:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":16062,"name":"bytes","nodeType":"ElementaryTypeName","src":"46405:5:48","typeDescriptions":{}}},"id":16065,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46405:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16066,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"46416:6:48","memberName":"length","nodeType":"MemberAccess","src":"46405:17:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"46401:21:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16135,"initializationExpression":{"assignments":[16058],"declarations":[{"constant":false,"id":16058,"mutability":"mutable","name":"i","nameLocation":"46394:1:48","nodeType":"VariableDeclaration","scope":16135,"src":"46386:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16057,"name":"uint256","nodeType":"ElementaryTypeName","src":"46386:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16060,"initialValue":{"hexValue":"30","id":16059,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46398:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"46386:13:48"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":16069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"46424:3:48","subExpression":{"id":16068,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16058,"src":"46424:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16070,"nodeType":"ExpressionStatement","src":"46424:3:48"},"nodeType":"ForStatement","src":"46381:368:48"},{"expression":{"components":[{"id":16136,"name":"res","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16053,"src":"46771:3:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":16137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"46776:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"id":16138,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"46770:11:48","typeDescriptions":{"typeIdentifier":"t_tuple$_t_uint256_$_t_bool_$","typeString":"tuple(uint256,bool)"}},"functionReturnParameters":16056,"id":16139,"nodeType":"Return","src":"46763:18:48"}]}]},"id":16142,"implemented":true,"kind":"function","modifiers":[],"name":"tryUint","nameLocation":"46256:7:48","nodeType":"FunctionDefinition","parameters":{"id":16051,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16050,"mutability":"mutable","name":"str","nameLocation":"46278:3:48","nodeType":"VariableDeclaration","scope":16142,"src":"46264:17:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16049,"name":"string","nodeType":"ElementaryTypeName","src":"46264:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"46263:19:48"},"returnParameters":{"id":16056,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16053,"mutability":"mutable","name":"res","nameLocation":"46329:3:48","nodeType":"VariableDeclaration","scope":16142,"src":"46324:8:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16052,"name":"uint","nodeType":"ElementaryTypeName","src":"46324:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16055,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16142,"src":"46334:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":16054,"name":"bool","nodeType":"ElementaryTypeName","src":"46334:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"46323:16:48"},"scope":16767,"src":"46247:553:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16158,"nodeType":"Block","src":"47143:56:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16153,"name":"epoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16146,"src":"47180:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}],"expression":{"id":16151,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"47161:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":16152,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"47173:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"47161:18:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_BlockNumber_$13242_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":16154,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47161:25:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130","id":16155,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"47189:2:48","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"47161:30:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":16150,"id":16157,"nodeType":"Return","src":"47154:37:48"}]},"documentation":{"id":16143,"nodeType":"StructuredDocumentation","src":"46810:238:48","text":"===============================================================================================================\n --- 'uint*' helper methods ------------------------------------------------------------------------------------"},"id":16159,"implemented":true,"kind":"function","modifiers":[],"name":"determineBeaconIndexFromEpoch","nameLocation":"47063:29:48","nodeType":"FunctionDefinition","parameters":{"id":16147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16146,"mutability":"mutable","name":"epoch","nameLocation":"47105:5:48","nodeType":"VariableDeclaration","scope":16159,"src":"47093:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"},"typeName":{"id":16145,"nodeType":"UserDefinedTypeName","pathNode":{"id":16144,"name":"BlockNumber","nameLocations":["47093:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13242,"src":"47093:11:48"},"referencedDeclaration":13242,"src":"47093:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"47092:19:48"},"returnParameters":{"id":16150,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16149,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16159,"src":"47135:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":16148,"name":"uint64","nodeType":"ElementaryTypeName","src":"47135:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"47134:8:48"},"scope":16767,"src":"47054:145:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16173,"nodeType":"Block","src":"47306:151:48","statements":[{"expression":{"arguments":[{"arguments":[{"id":16169,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16162,"src":"47414:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}],"id":16168,"name":"determineEpochFromTimestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16234,"src":"47368:27:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Timestamp_$13254_$returns$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"function (Witnet.Timestamp) pure returns (Witnet.BlockNumber)"}},"id":16170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47368:70:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}],"id":16167,"name":"determineBeaconIndexFromEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16159,"src":"47324:29:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_BlockNumber_$13242_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":16171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47324:125:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":16166,"id":16172,"nodeType":"Return","src":"47317:132:48"}]},"id":16174,"implemented":true,"kind":"function","modifiers":[],"name":"determineBeaconIndexFromTimestamp","nameLocation":"47220:33:48","nodeType":"FunctionDefinition","parameters":{"id":16163,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16162,"mutability":"mutable","name":"timestamp","nameLocation":"47264:9:48","nodeType":"VariableDeclaration","scope":16174,"src":"47254:19:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":16161,"nodeType":"UserDefinedTypeName","pathNode":{"id":16160,"name":"Timestamp","nameLocations":["47254:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"47254:9:48"},"referencedDeclaration":13254,"src":"47254:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"47253:21:48"},"returnParameters":{"id":16166,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16165,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16174,"src":"47298:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":16164,"name":"uint64","nodeType":"ElementaryTypeName","src":"47298:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"47297:8:48"},"scope":16767,"src":"47211:246:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16233,"nodeType":"Block","src":"47559:614:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16185,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16177,"src":"47591:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}],"expression":{"id":16183,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13254,"src":"47574:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"type(Witnet.Timestamp)"}},"id":16184,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"47584:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"47574:16:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Timestamp_$13254_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":16186,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47574:27:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":16187,"name":"WIT_2_GENESIS_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13295,"src":"47604:23:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"47574:53:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16207,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16177,"src":"47886:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}],"expression":{"id":16205,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13254,"src":"47869:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"type(Witnet.Timestamp)"}},"id":16206,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"47879:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"47869:16:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Timestamp_$13254_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":16208,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47869:27:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":16209,"name":"WIT_1_GENESIS_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13259,"src":"47899:23:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"47869:53:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":16230,"nodeType":"Block","src":"48113:53:48","statements":[{"expression":{"arguments":[{"hexValue":"30","id":16227,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"48152:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"expression":{"id":16225,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"48135:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":16226,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"48147:4:48","memberName":"wrap","nodeType":"MemberAccess","src":"48135:16:48","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint64_$returns$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"function (uint64) pure returns (Witnet.BlockNumber)"}},"id":16228,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48135:19:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"functionReturnParameters":16182,"id":16229,"nodeType":"Return","src":"48128:26:48"}]},"id":16231,"nodeType":"IfStatement","src":"47865:301:48","trueBody":{"id":16224,"nodeType":"Block","src":"47924:183:48","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16215,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16177,"src":"47999:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}],"expression":{"id":16213,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13254,"src":"47982:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"type(Witnet.Timestamp)"}},"id":16214,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"47992:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"47982:16:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Timestamp_$13254_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":16216,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47982:27:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":16217,"name":"WIT_1_GENESIS_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13259,"src":"48012:23:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"47982:53:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"id":16219,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"47981:55:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":16220,"name":"WIT_1_SECS_PER_EPOCH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13262,"src":"48060:20:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"47981:99:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"expression":{"id":16211,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"47946:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":16212,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"47958:4:48","memberName":"wrap","nodeType":"MemberAccess","src":"47946:16:48","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint64_$returns$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"function (uint64) pure returns (Witnet.BlockNumber)"}},"id":16222,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47946:149:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"functionReturnParameters":16182,"id":16223,"nodeType":"Return","src":"47939:156:48"}]}},"id":16232,"nodeType":"IfStatement","src":"47570:596:48","trueBody":{"id":16204,"nodeType":"Block","src":"47629:230:48","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16191,"name":"WIT_2_GENESIS_EPOCH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13292,"src":"47686:19:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16200,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16194,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16177,"src":"47747:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}],"expression":{"id":16192,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13254,"src":"47730:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"type(Witnet.Timestamp)"}},"id":16193,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"47740:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"47730:16:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_Timestamp_$13254_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":16195,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47730:27:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":16196,"name":"WIT_2_GENESIS_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13295,"src":"47760:23:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"47730:53:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"id":16198,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"47729:55:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":16199,"name":"WIT_2_SECS_PER_EPOCH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13298,"src":"47812:20:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"47729:103:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"47686:146:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"expression":{"id":16189,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"47651:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":16190,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"47663:4:48","memberName":"wrap","nodeType":"MemberAccess","src":"47651:16:48","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint64_$returns$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"function (uint64) pure returns (Witnet.BlockNumber)"}},"id":16202,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47651:196:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"functionReturnParameters":16182,"id":16203,"nodeType":"Return","src":"47644:203:48"}]}}]},"id":16234,"implemented":true,"kind":"function","modifiers":[],"name":"determineEpochFromTimestamp","nameLocation":"47474:27:48","nodeType":"FunctionDefinition","parameters":{"id":16178,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16177,"mutability":"mutable","name":"timestamp","nameLocation":"47512:9:48","nodeType":"VariableDeclaration","scope":16234,"src":"47502:19:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":16176,"nodeType":"UserDefinedTypeName","pathNode":{"id":16175,"name":"Timestamp","nameLocations":["47502:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"47502:9:48"},"referencedDeclaration":13254,"src":"47502:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"47501:21:48"},"returnParameters":{"id":16182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16181,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16234,"src":"47546:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"},"typeName":{"id":16180,"nodeType":"UserDefinedTypeName","pathNode":{"id":16179,"name":"BlockNumber","nameLocations":["47546:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13242,"src":"47546:11:48"},"referencedDeclaration":13242,"src":"47546:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"47545:13:48"},"scope":16767,"src":"47465:708:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16280,"nodeType":"Block","src":"48271:499:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16245,"name":"epoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16237,"src":"48305:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}],"expression":{"id":16243,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"48286:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":16244,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"48298:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"48286:18:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_BlockNumber_$13242_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":16246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48286:25:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":16247,"name":"WIT_2_GENESIS_EPOCH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13292,"src":"48315:19:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"48286:48:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16268,"name":"WIT_1_GENESIS_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13259,"src":"48658:23:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16274,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16269,"name":"WIT_1_SECS_PER_EPOCH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13262,"src":"48702:20:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":16272,"name":"epoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16237,"src":"48744:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}],"expression":{"id":16270,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"48725:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":16271,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"48737:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"48725:18:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_BlockNumber_$13242_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":16273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48725:25:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"48702:48:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"id":16275,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"48701:50:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"48658:93:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"expression":{"id":16266,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13254,"src":"48629:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"type(Witnet.Timestamp)"}},"id":16267,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"48639:4:48","memberName":"wrap","nodeType":"MemberAccess","src":"48629:14:48","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint64_$returns$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"function (uint64) pure returns (Witnet.Timestamp)"}},"id":16277,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48629:133:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"functionReturnParameters":16242,"id":16278,"nodeType":"Return","src":"48622:140:48"},"id":16279,"nodeType":"IfStatement","src":"48282:480:48","trueBody":{"id":16265,"nodeType":"Block","src":"48336:280:48","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16251,"name":"WIT_2_GENESIS_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13295,"src":"48391:23:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16252,"name":"WIT_2_SECS_PER_EPOCH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13298,"src":"48439:20:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16258,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16255,"name":"epoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16237,"src":"48508:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}],"expression":{"id":16253,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13242,"src":"48489:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13242_$","typeString":"type(Witnet.BlockNumber)"}},"id":16254,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"48501:6:48","memberName":"unwrap","nodeType":"MemberAccess","src":"48489:18:48","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_BlockNumber_$13242_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":16256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48489:25:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":16257,"name":"WIT_2_GENESIS_EPOCH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13292,"src":"48546:19:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"48489:76:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"id":16259,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"48462:104:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"48439:127:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"id":16261,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"48438:151:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"48391:198:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"expression":{"id":16249,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13254,"src":"48358:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"type(Witnet.Timestamp)"}},"id":16250,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"48368:4:48","memberName":"wrap","nodeType":"MemberAccess","src":"48358:14:48","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint64_$returns$_t_userDefinedValueType$_Timestamp_$13254_$","typeString":"function (uint64) pure returns (Witnet.Timestamp)"}},"id":16263,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48358:246:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"functionReturnParameters":16242,"id":16264,"nodeType":"Return","src":"48351:253:48"}]}}]},"id":16281,"implemented":true,"kind":"function","modifiers":[],"name":"determineTimestampFromEpoch","nameLocation":"48190:27:48","nodeType":"FunctionDefinition","parameters":{"id":16238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16237,"mutability":"mutable","name":"epoch","nameLocation":"48230:5:48","nodeType":"VariableDeclaration","scope":16281,"src":"48218:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"},"typeName":{"id":16236,"nodeType":"UserDefinedTypeName","pathNode":{"id":16235,"name":"BlockNumber","nameLocations":["48218:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13242,"src":"48218:11:48"},"referencedDeclaration":13242,"src":"48218:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13242","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"48217:19:48"},"returnParameters":{"id":16242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16241,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16281,"src":"48260:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"},"typeName":{"id":16240,"nodeType":"UserDefinedTypeName","pathNode":{"id":16239,"name":"Timestamp","nameLocations":["48260:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13254,"src":"48260:9:48"},"referencedDeclaration":13254,"src":"48260:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13254","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"48259:11:48"},"scope":16767,"src":"48181:589:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16325,"nodeType":"Block","src":"49066:210:48","statements":[{"assignments":[16294],"declarations":[{"constant":false,"id":16294,"mutability":"mutable","name":"_number","nameLocation":"49085:7:48","nodeType":"VariableDeclaration","scope":16325,"src":"49077:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16293,"name":"uint256","nodeType":"ElementaryTypeName","src":"49077:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16314,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"arguments":[{"id":16300,"name":"seed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16288,"src":"49156:4:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":16301,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16286,"src":"49162:5:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":16298,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"49145:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":16299,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"49149:6:48","memberName":"encode","nodeType":"MemberAccess","src":"49145:10:48","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":16302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49145:23:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16297,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"49117:9:48","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":16303,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49117:66:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":16296,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"49095:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":16295,"name":"uint256","nodeType":"ElementaryTypeName","src":"49095:7:48","typeDescriptions":{}}},"id":16304,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49095:99:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_rational_26959946667150639794667015087019630673637144422540572481103610249215_by_1","typeString":"int_const 2695...(60 digits omitted)...9215"},"id":16311,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_rational_26959946667150639794667015087019630673637144422540572481103610249216_by_1","typeString":"int_const 2695...(60 digits omitted)...9216"},"id":16309,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":16307,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49205:1:48","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"323234","id":16308,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49210:3:48","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},"src":"49205:8:48","typeDescriptions":{"typeIdentifier":"t_rational_26959946667150639794667015087019630673637144422540572481103610249216_by_1","typeString":"int_const 2695...(60 digits omitted)...9216"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":16310,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49216:1:48","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"49205:12:48","typeDescriptions":{"typeIdentifier":"t_rational_26959946667150639794667015087019630673637144422540572481103610249215_by_1","typeString":"int_const 2695...(60 digits omitted)...9215"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_26959946667150639794667015087019630673637144422540572481103610249215_by_1","typeString":"int_const 2695...(60 digits omitted)...9215"}],"id":16306,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"49197:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":16305,"name":"uint256","nodeType":"ElementaryTypeName","src":"49197:7:48","typeDescriptions":{}}},"id":16312,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49197:21:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"49095:123:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"49077:141:48"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16317,"name":"_number","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16294,"src":"49244:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":16318,"name":"range","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16284,"src":"49254:5:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"49244:15:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":16320,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"49243:17:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"323234","id":16321,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49264:3:48","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"224"},"src":"49243:24:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16316,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"49236:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":16315,"name":"uint32","nodeType":"ElementaryTypeName","src":"49236:6:48","typeDescriptions":{}}},"id":16323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49236:32:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":16292,"id":16324,"nodeType":"Return","src":"49229:39:48"}]},"documentation":{"id":16282,"nodeType":"StructuredDocumentation","src":"48778:154:48","text":"Generates a pseudo-random uint32 number uniformly distributed within the range `[0 .. range)`, based on\n the given `nonce` and `seed` values. "},"id":16326,"implemented":true,"kind":"function","modifiers":[],"name":"randomUniformUint32","nameLocation":"48947:19:48","nodeType":"FunctionDefinition","parameters":{"id":16289,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16284,"mutability":"mutable","name":"range","nameLocation":"48974:5:48","nodeType":"VariableDeclaration","scope":16326,"src":"48967:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":16283,"name":"uint32","nodeType":"ElementaryTypeName","src":"48967:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":16286,"mutability":"mutable","name":"nonce","nameLocation":"48989:5:48","nodeType":"VariableDeclaration","scope":16326,"src":"48981:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16285,"name":"uint256","nodeType":"ElementaryTypeName","src":"48981:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16288,"mutability":"mutable","name":"seed","nameLocation":"49004:4:48","nodeType":"VariableDeclaration","scope":16326,"src":"48996:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16287,"name":"bytes32","nodeType":"ElementaryTypeName","src":"48996:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"48966:43:48"},"returnParameters":{"id":16292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16291,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16326,"src":"49052:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":16290,"name":"uint32","nodeType":"ElementaryTypeName","src":"49052:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"49051:8:48"},"scope":16767,"src":"48938:338:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16402,"nodeType":"Block","src":"49503:305:48","statements":[{"assignments":[16335],"declarations":[{"constant":false,"id":16335,"mutability":"mutable","name":"b2","nameLocation":"49527:2:48","nodeType":"VariableDeclaration","scope":16402,"src":"49514:15:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16334,"name":"bytes","nodeType":"ElementaryTypeName","src":"49514:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16340,"initialValue":{"arguments":[{"hexValue":"32","id":16338,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49542:1:48","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"}],"id":16337,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"49532:9:48","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":16336,"name":"bytes","nodeType":"ElementaryTypeName","src":"49536:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":16339,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49532:12:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"49514:30:48"},{"assignments":[16342],"declarations":[{"constant":false,"id":16342,"mutability":"mutable","name":"d0","nameLocation":"49561:2:48","nodeType":"VariableDeclaration","scope":16402,"src":"49555:8:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16341,"name":"uint8","nodeType":"ElementaryTypeName","src":"49555:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":16351,"initialValue":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16345,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16329,"src":"49572:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3136","id":16346,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49577:2:48","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"49572:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16344,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"49566:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16343,"name":"uint8","nodeType":"ElementaryTypeName","src":"49566:5:48","typeDescriptions":{}}},"id":16348,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49566:14:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":16349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49583:2:48","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"49566:19:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"49555:30:48"},{"assignments":[16353],"declarations":[{"constant":false,"id":16353,"mutability":"mutable","name":"d1","nameLocation":"49602:2:48","nodeType":"VariableDeclaration","scope":16402,"src":"49596:8:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16352,"name":"uint8","nodeType":"ElementaryTypeName","src":"49596:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":16362,"initialValue":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16356,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16329,"src":"49613:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"3136","id":16357,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49618:2:48","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"49613:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16355,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"49607:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16354,"name":"uint8","nodeType":"ElementaryTypeName","src":"49607:5:48","typeDescriptions":{}}},"id":16359,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49607:14:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":16360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49624:2:48","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"49607:19:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"49596:30:48"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16363,"name":"d0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16342,"src":"49641:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3537","id":16364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49646:2:48","typeDescriptions":{"typeIdentifier":"t_rational_57_by_1","typeString":"int_const 57"},"value":"57"},"src":"49641:7:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16370,"nodeType":"IfStatement","src":"49637:33:48","trueBody":{"expression":{"id":16368,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16366,"name":"d0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16342,"src":"49663:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"37","id":16367,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49669:1:48","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"49663:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":16369,"nodeType":"ExpressionStatement","src":"49663:7:48"}},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16371,"name":"d1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16353,"src":"49685:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3537","id":16372,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49690:2:48","typeDescriptions":{"typeIdentifier":"t_rational_57_by_1","typeString":"int_const 57"},"value":"57"},"src":"49685:7:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16378,"nodeType":"IfStatement","src":"49681:33:48","trueBody":{"expression":{"id":16376,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16374,"name":"d1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16353,"src":"49707:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"37","id":16375,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49713:1:48","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"49707:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":16377,"nodeType":"ExpressionStatement","src":"49707:7:48"}},{"expression":{"id":16386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16379,"name":"b2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16335,"src":"49725:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16381,"indexExpression":{"hexValue":"30","id":16380,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49728:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"49725:5:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":16384,"name":"d0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16342,"src":"49740:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16383,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"49733:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":16382,"name":"bytes1","nodeType":"ElementaryTypeName","src":"49733:6:48","typeDescriptions":{}}},"id":16385,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49733:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"49725:18:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16387,"nodeType":"ExpressionStatement","src":"49725:18:48"},{"expression":{"id":16395,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16388,"name":"b2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16335,"src":"49754:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16390,"indexExpression":{"hexValue":"31","id":16389,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"49757:1:48","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"49754:5:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":16393,"name":"d1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16353,"src":"49769:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16392,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"49762:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":16391,"name":"bytes1","nodeType":"ElementaryTypeName","src":"49762:6:48","typeDescriptions":{}}},"id":16394,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49762:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"49754:18:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16396,"nodeType":"ExpressionStatement","src":"49754:18:48"},{"expression":{"arguments":[{"id":16399,"name":"b2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16335,"src":"49797:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16398,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"49790:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":16397,"name":"string","nodeType":"ElementaryTypeName","src":"49790:6:48","typeDescriptions":{}}},"id":16400,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49790:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":16333,"id":16401,"nodeType":"Return","src":"49783:17:48"}]},"documentation":{"id":16327,"nodeType":"StructuredDocumentation","src":"49284:121:48","text":"@notice Convert a `uint8` into a 2 characters long `string` representing its two less significant hexadecimal values."},"id":16403,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"49420:11:48","nodeType":"FunctionDefinition","parameters":{"id":16330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16329,"mutability":"mutable","name":"_u","nameLocation":"49438:2:48","nodeType":"VariableDeclaration","scope":16403,"src":"49432:8:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16328,"name":"uint8","nodeType":"ElementaryTypeName","src":"49432:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"49431:10:48"},"returnParameters":{"id":16333,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16332,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16403,"src":"49483:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16331,"name":"string","nodeType":"ElementaryTypeName","src":"49483:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"49482:15:48"},"scope":16767,"src":"49411:397:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16554,"nodeType":"Block","src":"50048:626:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16411,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16406,"src":"50063:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3130","id":16412,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50068:2:48","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"50063:7:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16441,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16406,"src":"50216:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313030","id":16442,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50221:3:48","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"50216:8:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":16551,"nodeType":"Block","src":"50421:246:48","statements":[{"assignments":[16490],"declarations":[{"constant":false,"id":16490,"mutability":"mutable","name":"b3","nameLocation":"50449:2:48","nodeType":"VariableDeclaration","scope":16551,"src":"50436:15:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16489,"name":"bytes","nodeType":"ElementaryTypeName","src":"50436:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16495,"initialValue":{"arguments":[{"hexValue":"33","id":16493,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50464:1:48","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"}],"id":16492,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"50454:9:48","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":16491,"name":"bytes","nodeType":"ElementaryTypeName","src":"50458:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":16494,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50454:12:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"50436:30:48"},{"expression":{"id":16510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16496,"name":"b3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16490,"src":"50481:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16498,"indexExpression":{"hexValue":"30","id":16497,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50484:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"50481:5:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16508,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16505,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16503,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16406,"src":"50502:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":16504,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50507:3:48","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"50502:8:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16502,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50496:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16501,"name":"uint8","nodeType":"ElementaryTypeName","src":"50496:5:48","typeDescriptions":{}}},"id":16506,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50496:15:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":16507,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50514:2:48","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"50496:20:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16500,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50489:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":16499,"name":"bytes1","nodeType":"ElementaryTypeName","src":"50489:6:48","typeDescriptions":{}}},"id":16509,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50489:28:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"50481:36:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16511,"nodeType":"ExpressionStatement","src":"50481:36:48"},{"expression":{"id":16528,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16512,"name":"b3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16490,"src":"50532:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16514,"indexExpression":{"hexValue":"31","id":16513,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50535:1:48","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"50532:5:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16523,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16519,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16406,"src":"50553:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"313030","id":16520,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50558:3:48","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"src":"50553:8:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130","id":16522,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50564:2:48","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"50553:13:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16518,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50547:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16517,"name":"uint8","nodeType":"ElementaryTypeName","src":"50547:5:48","typeDescriptions":{}}},"id":16524,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50547:20:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":16525,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50570:2:48","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"50547:25:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16516,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50540:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":16515,"name":"bytes1","nodeType":"ElementaryTypeName","src":"50540:6:48","typeDescriptions":{}}},"id":16527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50540:33:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"50532:41:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16529,"nodeType":"ExpressionStatement","src":"50532:41:48"},{"expression":{"id":16544,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16530,"name":"b3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16490,"src":"50588:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16532,"indexExpression":{"hexValue":"32","id":16531,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50591:1:48","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"50588:5:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16537,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16406,"src":"50609:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"3130","id":16538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50614:2:48","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"50609:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16536,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50603:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16535,"name":"uint8","nodeType":"ElementaryTypeName","src":"50603:5:48","typeDescriptions":{}}},"id":16540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50603:14:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":16541,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50620:2:48","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"50603:19:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16534,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50596:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":16533,"name":"bytes1","nodeType":"ElementaryTypeName","src":"50596:6:48","typeDescriptions":{}}},"id":16543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50596:27:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"50588:35:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16545,"nodeType":"ExpressionStatement","src":"50588:35:48"},{"expression":{"arguments":[{"id":16548,"name":"b3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16490,"src":"50652:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16547,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50645:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":16546,"name":"string","nodeType":"ElementaryTypeName","src":"50645:6:48","typeDescriptions":{}}},"id":16549,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50645:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":16410,"id":16550,"nodeType":"Return","src":"50638:17:48"}]},"id":16552,"nodeType":"IfStatement","src":"50212:455:48","trueBody":{"id":16488,"nodeType":"Block","src":"50226:189:48","statements":[{"assignments":[16445],"declarations":[{"constant":false,"id":16445,"mutability":"mutable","name":"b2","nameLocation":"50254:2:48","nodeType":"VariableDeclaration","scope":16488,"src":"50241:15:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16444,"name":"bytes","nodeType":"ElementaryTypeName","src":"50241:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16450,"initialValue":{"arguments":[{"hexValue":"32","id":16448,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50269:1:48","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"}],"id":16447,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"50259:9:48","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":16446,"name":"bytes","nodeType":"ElementaryTypeName","src":"50263:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":16449,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50259:12:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"50241:30:48"},{"expression":{"id":16465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16451,"name":"b2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16445,"src":"50286:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16453,"indexExpression":{"hexValue":"30","id":16452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50289:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"50286:5:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16458,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16406,"src":"50307:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130","id":16459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50312:2:48","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"50307:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16457,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50301:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16456,"name":"uint8","nodeType":"ElementaryTypeName","src":"50301:5:48","typeDescriptions":{}}},"id":16461,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50301:14:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":16462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50318:2:48","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"50301:19:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16455,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50294:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":16454,"name":"bytes1","nodeType":"ElementaryTypeName","src":"50294:6:48","typeDescriptions":{}}},"id":16464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50294:27:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"50286:35:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16466,"nodeType":"ExpressionStatement","src":"50286:35:48"},{"expression":{"id":16481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16467,"name":"b2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16445,"src":"50336:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16469,"indexExpression":{"hexValue":"31","id":16468,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50339:1:48","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"50336:5:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16474,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16406,"src":"50357:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"3130","id":16475,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50362:2:48","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"50357:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16473,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50351:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16472,"name":"uint8","nodeType":"ElementaryTypeName","src":"50351:5:48","typeDescriptions":{}}},"id":16477,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50351:14:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":16478,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50368:2:48","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"50351:19:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16471,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50344:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":16470,"name":"bytes1","nodeType":"ElementaryTypeName","src":"50344:6:48","typeDescriptions":{}}},"id":16480,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50344:27:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"50336:35:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16482,"nodeType":"ExpressionStatement","src":"50336:35:48"},{"expression":{"arguments":[{"id":16485,"name":"b2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16445,"src":"50400:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16484,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50393:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":16483,"name":"string","nodeType":"ElementaryTypeName","src":"50393:6:48","typeDescriptions":{}}},"id":16486,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50393:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":16410,"id":16487,"nodeType":"Return","src":"50386:17:48"}]}},"id":16553,"nodeType":"IfStatement","src":"50059:608:48","trueBody":{"id":16440,"nodeType":"Block","src":"50072:134:48","statements":[{"assignments":[16415],"declarations":[{"constant":false,"id":16415,"mutability":"mutable","name":"b1","nameLocation":"50100:2:48","nodeType":"VariableDeclaration","scope":16440,"src":"50087:15:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16414,"name":"bytes","nodeType":"ElementaryTypeName","src":"50087:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16420,"initialValue":{"arguments":[{"hexValue":"31","id":16418,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50115:1:48","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":16417,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"50105:9:48","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":16416,"name":"bytes","nodeType":"ElementaryTypeName","src":"50109:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":16419,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50105:12:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"50087:30:48"},{"expression":{"id":16433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16421,"name":"b1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16415,"src":"50132:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16423,"indexExpression":{"hexValue":"30","id":16422,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50135:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"50132:5:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16428,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16406,"src":"50153:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16427,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50147:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16426,"name":"uint8","nodeType":"ElementaryTypeName","src":"50147:5:48","typeDescriptions":{}}},"id":16429,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50147:9:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":16430,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50159:2:48","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"50147:14:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16425,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50140:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":16424,"name":"bytes1","nodeType":"ElementaryTypeName","src":"50140:6:48","typeDescriptions":{}}},"id":16432,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50140:22:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"50132:30:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16434,"nodeType":"ExpressionStatement","src":"50132:30:48"},{"expression":{"arguments":[{"id":16437,"name":"b1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16415,"src":"50191:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16436,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50184:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":16435,"name":"string","nodeType":"ElementaryTypeName","src":"50184:6:48","typeDescriptions":{}}},"id":16438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50184:10:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":16410,"id":16439,"nodeType":"Return","src":"50177:17:48"}]}}]},"documentation":{"id":16404,"nodeType":"StructuredDocumentation","src":"49816:137:48","text":"@notice Convert a `uint8` into a 1, 2 or 3 characters long `string` representing its.\n three less significant decimal values."},"id":16555,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"49968:8:48","nodeType":"FunctionDefinition","parameters":{"id":16407,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16406,"mutability":"mutable","name":"_u","nameLocation":"49983:2:48","nodeType":"VariableDeclaration","scope":16555,"src":"49977:8:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16405,"name":"uint8","nodeType":"ElementaryTypeName","src":"49977:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"49976:10:48"},"returnParameters":{"id":16410,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16409,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16555,"src":"50028:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16408,"name":"string","nodeType":"ElementaryTypeName","src":"50028:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"50027:15:48"},"scope":16767,"src":"49959:715:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16646,"nodeType":"Block","src":"50843:448:48","statements":[{"assignments":[16564],"declarations":[{"constant":false,"id":16564,"mutability":"mutable","name":"maxlength","nameLocation":"50859:9:48","nodeType":"VariableDeclaration","scope":16646,"src":"50854:14:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16563,"name":"uint","nodeType":"ElementaryTypeName","src":"50854:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16566,"initialValue":{"hexValue":"313030","id":16565,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50871:3:48","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"nodeType":"VariableDeclarationStatement","src":"50854:20:48"},{"assignments":[16568],"declarations":[{"constant":false,"id":16568,"mutability":"mutable","name":"reversed","nameLocation":"50898:8:48","nodeType":"VariableDeclaration","scope":16646,"src":"50885:21:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16567,"name":"bytes","nodeType":"ElementaryTypeName","src":"50885:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16573,"initialValue":{"arguments":[{"id":16571,"name":"maxlength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16564,"src":"50919:9:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16570,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"50909:9:48","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":16569,"name":"bytes","nodeType":"ElementaryTypeName","src":"50913:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":16572,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50909:20:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"50885:44:48"},{"assignments":[16575],"declarations":[{"constant":false,"id":16575,"mutability":"mutable","name":"i","nameLocation":"50945:1:48","nodeType":"VariableDeclaration","scope":16646,"src":"50940:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16574,"name":"uint","nodeType":"ElementaryTypeName","src":"50940:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16577,"initialValue":{"hexValue":"30","id":16576,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50949:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"50940:10:48"},{"body":{"id":16605,"nodeType":"Block","src":"50964:137:48","statements":[{"assignments":[16579],"declarations":[{"constant":false,"id":16579,"mutability":"mutable","name":"remainder","nameLocation":"50985:9:48","nodeType":"VariableDeclaration","scope":16605,"src":"50979:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16578,"name":"uint8","nodeType":"ElementaryTypeName","src":"50979:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":16586,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16582,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16558,"src":"51003:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"3130","id":16583,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51007:2:48","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"51003:6:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16581,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"50997:5:48","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":16580,"name":"uint8","nodeType":"ElementaryTypeName","src":"50997:5:48","typeDescriptions":{}}},"id":16585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50997:13:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"50979:31:48"},{"expression":{"id":16591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16587,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16558,"src":"51025:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16590,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16588,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16558,"src":"51029:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130","id":16589,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51033:2:48","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"51029:6:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"51025:10:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16592,"nodeType":"ExpressionStatement","src":"51025:10:48"},{"expression":{"id":16603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16593,"name":"reversed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16568,"src":"51050:8:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16596,"indexExpression":{"id":16595,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"51059:4:48","subExpression":{"id":16594,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16575,"src":"51059:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"51050:14:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3438","id":16599,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51074:2:48","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":16600,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16579,"src":"51079:9:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"51074:14:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16598,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"51067:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":16597,"name":"bytes1","nodeType":"ElementaryTypeName","src":"51067:6:48","typeDescriptions":{}}},"id":16602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"51067:22:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"51050:39:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16604,"nodeType":"ExpressionStatement","src":"51050:39:48"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16606,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16558,"src":"51109:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":16607,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51114:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"51109:6:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16609,"nodeType":"DoWhileStatement","src":"50961:156:48"},{"assignments":[16611],"declarations":[{"constant":false,"id":16611,"mutability":"mutable","name":"buf","nameLocation":"51140:3:48","nodeType":"VariableDeclaration","scope":16646,"src":"51127:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16610,"name":"bytes","nodeType":"ElementaryTypeName","src":"51127:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16616,"initialValue":{"arguments":[{"id":16614,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16575,"src":"51156:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16613,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"51146:9:48","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":16612,"name":"bytes","nodeType":"ElementaryTypeName","src":"51150:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":16615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"51146:12:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"51127:31:48"},{"body":{"id":16639,"nodeType":"Block","src":"51200:55:48","statements":[{"expression":{"id":16637,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16627,"name":"buf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16611,"src":"51215:3:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16631,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16628,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16618,"src":"51219:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":16629,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51223:1:48","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"51219:5:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"51215:10:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":16632,"name":"reversed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16568,"src":"51228:8:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16636,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16633,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16575,"src":"51237:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":16634,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16618,"src":"51241:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"51237:5:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"51228:15:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"51215:28:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16638,"nodeType":"ExpressionStatement","src":"51215:28:48"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16621,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16618,"src":"51186:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":16622,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16575,"src":"51191:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"51186:6:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16640,"initializationExpression":{"assignments":[16618],"declarations":[{"constant":false,"id":16618,"mutability":"mutable","name":"j","nameLocation":"51179:1:48","nodeType":"VariableDeclaration","scope":16640,"src":"51174:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16617,"name":"uint","nodeType":"ElementaryTypeName","src":"51174:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16620,"initialValue":{"hexValue":"31","id":16619,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51183:1:48","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"51174:10:48"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":16625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"51194:4:48","subExpression":{"id":16624,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16618,"src":"51194:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16626,"nodeType":"ExpressionStatement","src":"51194:4:48"},"nodeType":"ForStatement","src":"51169:86:48"},{"expression":{"arguments":[{"id":16643,"name":"buf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16611,"src":"51279:3:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16642,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"51272:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":16641,"name":"string","nodeType":"ElementaryTypeName","src":"51272:6:48","typeDescriptions":{}}},"id":16644,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"51272:11:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":16562,"id":16645,"nodeType":"Return","src":"51265:18:48"}]},"documentation":{"id":16556,"nodeType":"StructuredDocumentation","src":"50682:67:48","text":"@notice Convert a `uint` into a string` representing its value."},"id":16647,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"50764:8:48","nodeType":"FunctionDefinition","parameters":{"id":16559,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16558,"mutability":"mutable","name":"v","nameLocation":"50778:1:48","nodeType":"VariableDeclaration","scope":16647,"src":"50773:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16557,"name":"uint","nodeType":"ElementaryTypeName","src":"50773:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"50772:8:48"},"returnParameters":{"id":16562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16561,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16647,"src":"50823:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16560,"name":"string","nodeType":"ElementaryTypeName","src":"50823:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"50822:15:48"},"scope":16767,"src":"50755:536:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16703,"nodeType":"Block","src":"51613:426:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":16661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16655,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16650,"src":"51628:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30783330","id":16656,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51639:4:48","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"0x30"},"src":"51628:15:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16658,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16650,"src":"51647:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"30783339","id":16659,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51658:4:48","typeDescriptions":{"typeIdentifier":"t_rational_57_by_1","typeString":"int_const 57"},"value":"0x39"},"src":"51647:15:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"51628:34:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":16673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16667,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16650,"src":"51740:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30783431","id":16668,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51751:4:48","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"0x41"},"src":"51740:15:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16672,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16670,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16650,"src":"51759:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"30783436","id":16671,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51770:4:48","typeDescriptions":{"typeIdentifier":"t_rational_70_by_1","typeString":"int_const 70"},"value":"0x46"},"src":"51759:15:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"51740:34:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":16687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16681,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16650,"src":"51859:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30783631","id":16682,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51870:4:48","typeDescriptions":{"typeIdentifier":"t_rational_97_by_1","typeString":"int_const 97"},"value":"0x61"},"src":"51859:15:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16684,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16650,"src":"51878:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"30783636","id":16685,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51889:4:48","typeDescriptions":{"typeIdentifier":"t_rational_102_by_1","typeString":"int_const 102"},"value":"0x66"},"src":"51878:15:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"51859:34:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":16699,"nodeType":"Block","src":"51974:58:48","statements":[{"expression":{"arguments":[{"hexValue":"496e76616c69642068657820636861726163746572","id":16696,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"51996:23:48","typeDescriptions":{"typeIdentifier":"t_stringliteral_3f6add0457b55e0d28d0df6cb630dd22967d6dac9673bb47e06495bccd4ca35c","typeString":"literal_string \"Invalid hex character\""},"value":"Invalid hex character"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_3f6add0457b55e0d28d0df6cb630dd22967d6dac9673bb47e06495bccd4ca35c","typeString":"literal_string \"Invalid hex character\""}],"id":16695,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"51989:6:48","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":16697,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"51989:31:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16698,"nodeType":"ExpressionStatement","src":"51989:31:48"}]},"id":16700,"nodeType":"IfStatement","src":"51855:177:48","trueBody":{"id":16694,"nodeType":"Block","src":"51895:73:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16692,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16690,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16688,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16650,"src":"51917:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"30783631","id":16689,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51927:4:48","typeDescriptions":{"typeIdentifier":"t_rational_97_by_1","typeString":"int_const 97"},"value":"0x61"},"src":"51917:14:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3130","id":16691,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51934:2:48","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"51917:19:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":16654,"id":16693,"nodeType":"Return","src":"51910:26:48"}]}},"id":16701,"nodeType":"IfStatement","src":"51736:296:48","trueBody":{"id":16680,"nodeType":"Block","src":"51776:73:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16674,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16650,"src":"51798:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"30783431","id":16675,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51808:4:48","typeDescriptions":{"typeIdentifier":"t_rational_65_by_1","typeString":"int_const 65"},"value":"0x41"},"src":"51798:14:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3130","id":16677,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51815:2:48","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"51798:19:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":16654,"id":16679,"nodeType":"Return","src":"51791:26:48"}]}},"id":16702,"nodeType":"IfStatement","src":"51624:408:48","trueBody":{"id":16666,"nodeType":"Block","src":"51664:66:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16662,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16650,"src":"51686:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"30783330","id":16663,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"51696:4:48","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"0x30"},"src":"51686:14:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":16654,"id":16665,"nodeType":"Return","src":"51679:21:48"}]}}]},"documentation":{"id":16648,"nodeType":"StructuredDocumentation","src":"51301:238:48","text":"===============================================================================================================\n --- Witnet library private methods ----------------------------------------------------------------------------"},"id":16704,"implemented":true,"kind":"function","modifiers":[],"name":"_hexCharToByte","nameLocation":"51554:14:48","nodeType":"FunctionDefinition","parameters":{"id":16651,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16650,"mutability":"mutable","name":"hexChar","nameLocation":"51575:7:48","nodeType":"VariableDeclaration","scope":16704,"src":"51569:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16649,"name":"uint8","nodeType":"ElementaryTypeName","src":"51569:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"51568:15:48"},"returnParameters":{"id":16654,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16653,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16704,"src":"51606:5:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16652,"name":"uint8","nodeType":"ElementaryTypeName","src":"51606:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"51605:7:48"},"scope":16767,"src":"51545:494:48","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":16714,"nodeType":"Block","src":"52129:141:48","statements":[{"AST":{"nativeSrc":"52149:114:48","nodeType":"YulBlock","src":"52149:114:48","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"52171:3:48","nodeType":"YulLiteral","src":"52171:3:48","type":"","value":"0x0"},{"name":"_a","nativeSrc":"52176:2:48","nodeType":"YulIdentifier","src":"52176:2:48"}],"functionName":{"name":"mstore","nativeSrc":"52164:6:48","nodeType":"YulIdentifier","src":"52164:6:48"},"nativeSrc":"52164:15:48","nodeType":"YulFunctionCall","src":"52164:15:48"},"nativeSrc":"52164:15:48","nodeType":"YulExpressionStatement","src":"52164:15:48"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"52200:4:48","nodeType":"YulLiteral","src":"52200:4:48","type":"","value":"0x20"},{"name":"_b","nativeSrc":"52206:2:48","nodeType":"YulIdentifier","src":"52206:2:48"}],"functionName":{"name":"mstore","nativeSrc":"52193:6:48","nodeType":"YulIdentifier","src":"52193:6:48"},"nativeSrc":"52193:16:48","nodeType":"YulFunctionCall","src":"52193:16:48"},"nativeSrc":"52193:16:48","nodeType":"YulExpressionStatement","src":"52193:16:48"},{"nativeSrc":"52223:29:48","nodeType":"YulAssignment","src":"52223:29:48","value":{"arguments":[{"kind":"number","nativeSrc":"52242:3:48","nodeType":"YulLiteral","src":"52242:3:48","type":"","value":"0x0"},{"kind":"number","nativeSrc":"52247:4:48","nodeType":"YulLiteral","src":"52247:4:48","type":"","value":"0x40"}],"functionName":{"name":"keccak256","nativeSrc":"52232:9:48","nodeType":"YulIdentifier","src":"52232:9:48"},"nativeSrc":"52232:20:48","nodeType":"YulFunctionCall","src":"52232:20:48"},"variableNames":[{"name":"_hash","nativeSrc":"52223:5:48","nodeType":"YulIdentifier","src":"52223:5:48"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":16706,"isOffset":false,"isSlot":false,"src":"52176:2:48","valueSize":1},{"declaration":16708,"isOffset":false,"isSlot":false,"src":"52206:2:48","valueSize":1},{"declaration":16711,"isOffset":false,"isSlot":false,"src":"52223:5:48","valueSize":1}],"id":16713,"nodeType":"InlineAssembly","src":"52140:123:48"}]},"id":16715,"implemented":true,"kind":"function","modifiers":[],"name":"_merkleHash","nameLocation":"52056:11:48","nodeType":"FunctionDefinition","parameters":{"id":16709,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16706,"mutability":"mutable","name":"_a","nameLocation":"52076:2:48","nodeType":"VariableDeclaration","scope":16715,"src":"52068:10:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16705,"name":"bytes32","nodeType":"ElementaryTypeName","src":"52068:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16708,"mutability":"mutable","name":"_b","nameLocation":"52088:2:48","nodeType":"VariableDeclaration","scope":16715,"src":"52080:10:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16707,"name":"bytes32","nodeType":"ElementaryTypeName","src":"52080:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"52067:24:48"},"returnParameters":{"id":16712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16711,"mutability":"mutable","name":"_hash","nameLocation":"52122:5:48","nodeType":"VariableDeclaration","scope":16715,"src":"52114:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16710,"name":"bytes32","nodeType":"ElementaryTypeName","src":"52114:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"52113:15:48"},"scope":16767,"src":"52047:223:48","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":16739,"nodeType":"Block","src":"52342:81:48","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16722,"name":"_uint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16717,"src":"52360:6:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3130","id":16723,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"52369:2:48","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"52360:11:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16733,"name":"_uint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16717,"src":"52403:6:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3837","id":16734,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"52412:2:48","typeDescriptions":{"typeIdentifier":"t_rational_87_by_1","typeString":"int_const 87"},"value":"87"},"src":"52403:11:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16732,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"52396:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":16731,"name":"bytes1","nodeType":"ElementaryTypeName","src":"52396:6:48","typeDescriptions":{}}},"id":16736,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"52396:19:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":16737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"52360:55:48","trueExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16727,"name":"_uint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16717,"src":"52381:6:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":16728,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"52390:2:48","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"52381:11:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16726,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"52374:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":16725,"name":"bytes1","nodeType":"ElementaryTypeName","src":"52374:6:48","typeDescriptions":{}}},"id":16730,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"52374:19:48","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"functionReturnParameters":16721,"id":16738,"nodeType":"Return","src":"52353:62:48"}]},"id":16740,"implemented":true,"kind":"function","modifiers":[],"name":"_toHexChar","nameLocation":"52287:10:48","nodeType":"FunctionDefinition","parameters":{"id":16718,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16717,"mutability":"mutable","name":"_uint8","nameLocation":"52304:6:48","nodeType":"VariableDeclaration","scope":16740,"src":"52298:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16716,"name":"uint8","nodeType":"ElementaryTypeName","src":"52298:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"52297:14:48"},"returnParameters":{"id":16721,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16720,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16740,"src":"52334:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":16719,"name":"bytes1","nodeType":"ElementaryTypeName","src":"52334:6:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"52333:8:48"},"scope":16767,"src":"52278:145:48","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":16765,"nodeType":"Block","src":"52603:204:48","statements":[{"body":{"id":16763,"nodeType":"Block","src":"52637:163:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":16755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":16751,"name":"_bytes32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16743,"src":"52656:8:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":16753,"indexExpression":{"id":16752,"name":"_length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16746,"src":"52665:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"52656:17:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":16754,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"52677:1:48","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"52656:22:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16758,"nodeType":"IfStatement","src":"52652:68:48","trueBody":{"id":16757,"nodeType":"Block","src":"52680:40:48","statements":[{"id":16756,"nodeType":"Break","src":"52699:5:48"}]}},{"id":16762,"nodeType":"UncheckedBlock","src":"52734:55:48","statements":[{"expression":{"id":16760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"52763:10:48","subExpression":{"id":16759,"name":"_length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16746,"src":"52763:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16761,"nodeType":"ExpressionStatement","src":"52763:10:48"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16750,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16748,"name":"_length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16746,"src":"52621:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3332","id":16749,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"52631:2:48","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"52621:12:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16764,"isSimpleCounterLoop":false,"nodeType":"ForStatement","src":"52614:186:48"}]},"documentation":{"id":16741,"nodeType":"StructuredDocumentation","src":"52431:64:48","text":"@dev Calculate length of string-equivalent to given bytes32."},"id":16766,"implemented":true,"kind":"function","modifiers":[],"name":"_toStringLength","nameLocation":"52510:15:48","nodeType":"FunctionDefinition","parameters":{"id":16744,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16743,"mutability":"mutable","name":"_bytes32","nameLocation":"52534:8:48","nodeType":"VariableDeclaration","scope":16766,"src":"52526:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16742,"name":"bytes32","nodeType":"ElementaryTypeName","src":"52526:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"52525:18:48"},"returnParameters":{"id":16747,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16746,"mutability":"mutable","name":"_length","nameLocation":"52589:7:48","nodeType":"VariableDeclaration","scope":16766,"src":"52584:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16745,"name":"uint","nodeType":"ElementaryTypeName","src":"52584:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"52583:14:48"},"scope":16767,"src":"52501:306:48","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":16768,"src":"151:52659:48","usedErrors":[],"usedEvents":[]}],"src":"35:52777:48"},"id":48},"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol","exportedSymbols":{"WitnetBuffer":[18657]},"id":18658,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":16769,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:31:49"},{"abstract":false,"baseContracts":[],"canonicalName":"WitnetBuffer","contractDependencies":[],"contractKind":"library","documentation":{"id":16770,"nodeType":"StructuredDocumentation","src":"70:574:49","text":"@title A convenient wrapper around the `bytes memory` type that exposes a buffer-like interface\n @notice The buffer has an inner cursor that tracks the final offset of every read, i.e. any subsequent read will\n start with the byte that goes right after the last one in the previous read.\n @dev `uint32` is used here for `cursor` because `uint16` would only enable seeking up to 8KB, which could in some\n theoretical use cases be exceeded. Conversely, `uint32` supports up to 512MB, which cannot credibly be exceeded.\n @author The Witnet Foundation."},"fullyImplemented":true,"id":18657,"linearizedBaseContracts":[18657],"name":"WitnetBuffer","nameLocation":"652:12:49","nodeType":"ContractDefinition","nodes":[{"errorSelector":"240db51c","id":16772,"name":"EmptyBuffer","nameLocation":"678:11:49","nodeType":"ErrorDefinition","parameters":{"id":16771,"nodeType":"ParameterList","parameters":[],"src":"689:2:49"},"src":"672:20:49"},{"errorSelector":"63a056dd","id":16778,"name":"IndexOutOfBounds","nameLocation":"702:16:49","nodeType":"ErrorDefinition","parameters":{"id":16777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16774,"mutability":"mutable","name":"index","nameLocation":"724:5:49","nodeType":"VariableDeclaration","scope":16778,"src":"719:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16773,"name":"uint","nodeType":"ElementaryTypeName","src":"719:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16776,"mutability":"mutable","name":"range","nameLocation":"736:5:49","nodeType":"VariableDeclaration","scope":16778,"src":"731:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16775,"name":"uint","nodeType":"ElementaryTypeName","src":"731:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"718:24:49"},"src":"696:47:49"},{"errorSelector":"19e1b81c","id":16784,"name":"MissingArgs","nameLocation":"753:11:49","nodeType":"ErrorDefinition","parameters":{"id":16783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16780,"mutability":"mutable","name":"expected","nameLocation":"770:8:49","nodeType":"VariableDeclaration","scope":16784,"src":"765:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16779,"name":"uint","nodeType":"ElementaryTypeName","src":"765:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16782,"mutability":"mutable","name":"given","nameLocation":"785:5:49","nodeType":"VariableDeclaration","scope":16784,"src":"780:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16781,"name":"uint","nodeType":"ElementaryTypeName","src":"780:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"764:27:49"},"src":"747:45:49"},{"canonicalName":"WitnetBuffer.Buffer","documentation":{"id":16785,"nodeType":"StructuredDocumentation","src":"798:26:49","text":"Iterable bytes buffer."},"id":16790,"members":[{"constant":false,"id":16787,"mutability":"mutable","name":"data","nameLocation":"857:4:49","nodeType":"VariableDeclaration","scope":16790,"src":"851:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":16786,"name":"bytes","nodeType":"ElementaryTypeName","src":"851:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":16789,"mutability":"mutable","name":"cursor","nameLocation":"875:6:49","nodeType":"VariableDeclaration","scope":16790,"src":"870:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16788,"name":"uint","nodeType":"ElementaryTypeName","src":"870:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"Buffer","nameLocation":"835:6:49","nodeType":"StructDefinition","scope":18657,"src":"828:59:49","visibility":"public"},{"body":{"id":16807,"nodeType":"Block","src":"993:95:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16796,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16792,"src":"1004:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":16797,"name":"_range","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16794,"src":"1012:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1004:14:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16805,"nodeType":"IfStatement","src":"1000:75:49","trueBody":{"id":16804,"nodeType":"Block","src":"1020:55:49","statements":[{"errorCall":{"arguments":[{"id":16800,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16792,"src":"1053:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16801,"name":"_range","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16794,"src":"1060:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16799,"name":"IndexOutOfBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16778,"src":"1036:16:49","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":16802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1036:31:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":16803,"nodeType":"RevertStatement","src":"1029:38:49"}]}},{"id":16806,"nodeType":"PlaceholderStatement","src":"1081:1:49"}]},"id":16808,"name":"withinRange","nameLocation":"956:11:49","nodeType":"ModifierDefinition","parameters":{"id":16795,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16792,"mutability":"mutable","name":"index","nameLocation":"973:5:49","nodeType":"VariableDeclaration","scope":16808,"src":"968:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16791,"name":"uint","nodeType":"ElementaryTypeName","src":"968:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16794,"mutability":"mutable","name":"_range","nameLocation":"985:6:49","nodeType":"VariableDeclaration","scope":16808,"src":"980:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16793,"name":"uint","nodeType":"ElementaryTypeName","src":"980:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"967:25:49"},"src":"947:141:49","virtual":false,"visibility":"internal"},{"body":{"id":16856,"nodeType":"Block","src":"1327:1316:49","statements":[{"id":16855,"nodeType":"UncheckedBlock","src":"1334:1304:49","statements":[{"assignments":[16818],"declarations":[{"constant":false,"id":16818,"mutability":"mutable","name":"destinationPointer","nameLocation":"1358:18:49","nodeType":"VariableDeclaration","scope":16855,"src":"1353:23:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16817,"name":"uint","nodeType":"ElementaryTypeName","src":"1353:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16819,"nodeType":"VariableDeclarationStatement","src":"1353:23:49"},{"assignments":[16821],"declarations":[{"constant":false,"id":16821,"mutability":"mutable","name":"destinationLength","nameLocation":"1390:17:49","nodeType":"VariableDeclaration","scope":16855,"src":"1385:22:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16820,"name":"uint","nodeType":"ElementaryTypeName","src":"1385:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16822,"nodeType":"VariableDeclarationStatement","src":"1385:22:49"},{"AST":{"nativeSrc":"1425:171:49","nodeType":"YulBlock","src":"1425:171:49","statements":[{"nativeSrc":"1474:21:49","nodeType":"YulAssignment","src":"1474:21:49","value":{"arguments":[{"kind":"number","nativeSrc":"1490:4:49","nodeType":"YulLiteral","src":"1490:4:49","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"1484:5:49","nodeType":"YulIdentifier","src":"1484:5:49"},"nativeSrc":"1484:11:49","nodeType":"YulFunctionCall","src":"1484:11:49"},"variableNames":[{"name":"output","nativeSrc":"1474:6:49","nodeType":"YulIdentifier","src":"1474:6:49"}]},{"nativeSrc":"1550:37:49","nodeType":"YulAssignment","src":"1550:37:49","value":{"arguments":[{"name":"output","nativeSrc":"1576:6:49","nodeType":"YulIdentifier","src":"1576:6:49"},{"kind":"number","nativeSrc":"1584:2:49","nodeType":"YulLiteral","src":"1584:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1572:3:49","nodeType":"YulIdentifier","src":"1572:3:49"},"nativeSrc":"1572:15:49","nodeType":"YulFunctionCall","src":"1572:15:49"},"variableNames":[{"name":"destinationPointer","nativeSrc":"1550:18:49","nodeType":"YulIdentifier","src":"1550:18:49"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":16818,"isOffset":false,"isSlot":false,"src":"1550:18:49","valueSize":1},{"declaration":16815,"isOffset":false,"isSlot":false,"src":"1474:6:49","valueSize":1},{"declaration":16815,"isOffset":false,"isSlot":false,"src":"1576:6:49","valueSize":1}],"id":16823,"nodeType":"InlineAssembly","src":"1416:180:49"},{"body":{"id":16852,"nodeType":"Block","src":"1656:768:49","statements":[{"assignments":[16836],"declarations":[{"constant":false,"id":16836,"mutability":"mutable","name":"source","nameLocation":"1674:6:49","nodeType":"VariableDeclaration","scope":16852,"src":"1669:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16835,"name":"uint","nodeType":"ElementaryTypeName","src":"1669:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16837,"nodeType":"VariableDeclarationStatement","src":"1669:11:49"},{"assignments":[16839],"declarations":[{"constant":false,"id":16839,"mutability":"mutable","name":"sourceLength","nameLocation":"1696:12:49","nodeType":"VariableDeclaration","scope":16852,"src":"1691:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16838,"name":"uint","nodeType":"ElementaryTypeName","src":"1691:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16840,"nodeType":"VariableDeclarationStatement","src":"1691:17:49"},{"assignments":[16842],"declarations":[{"constant":false,"id":16842,"mutability":"mutable","name":"sourcePointer","nameLocation":"1724:13:49","nodeType":"VariableDeclaration","scope":16852,"src":"1719:18:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16841,"name":"uint","nodeType":"ElementaryTypeName","src":"1719:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16843,"nodeType":"VariableDeclarationStatement","src":"1719:18:49"},{"AST":{"nativeSrc":"1765:265:49","nodeType":"YulBlock","src":"1765:265:49","statements":[{"nativeSrc":"1819:41:49","nodeType":"YulAssignment","src":"1819:41:49","value":{"arguments":[{"arguments":[{"name":"_buffs","nativeSrc":"1839:6:49","nodeType":"YulIdentifier","src":"1839:6:49"},{"arguments":[{"name":"ix","nativeSrc":"1851:2:49","nodeType":"YulIdentifier","src":"1851:2:49"},{"kind":"number","nativeSrc":"1855:2:49","nodeType":"YulLiteral","src":"1855:2:49","type":"","value":"32"}],"functionName":{"name":"mul","nativeSrc":"1847:3:49","nodeType":"YulIdentifier","src":"1847:3:49"},"nativeSrc":"1847:11:49","nodeType":"YulFunctionCall","src":"1847:11:49"}],"functionName":{"name":"add","nativeSrc":"1835:3:49","nodeType":"YulIdentifier","src":"1835:3:49"},"nativeSrc":"1835:24:49","nodeType":"YulFunctionCall","src":"1835:24:49"}],"functionName":{"name":"mload","nativeSrc":"1829:5:49","nodeType":"YulIdentifier","src":"1829:5:49"},"nativeSrc":"1829:31:49","nodeType":"YulFunctionCall","src":"1829:31:49"},"variableNames":[{"name":"source","nativeSrc":"1819:6:49","nodeType":"YulIdentifier","src":"1819:6:49"}]},{"nativeSrc":"1905:29:49","nodeType":"YulAssignment","src":"1905:29:49","value":{"arguments":[{"name":"source","nativeSrc":"1927:6:49","nodeType":"YulIdentifier","src":"1927:6:49"}],"functionName":{"name":"mload","nativeSrc":"1921:5:49","nodeType":"YulIdentifier","src":"1921:5:49"},"nativeSrc":"1921:13:49","nodeType":"YulFunctionCall","src":"1921:13:49"},"variableNames":[{"name":"sourceLength","nativeSrc":"1905:12:49","nodeType":"YulIdentifier","src":"1905:12:49"}]},{"nativeSrc":"1987:32:49","nodeType":"YulAssignment","src":"1987:32:49","value":{"arguments":[{"name":"source","nativeSrc":"2008:6:49","nodeType":"YulIdentifier","src":"2008:6:49"},{"kind":"number","nativeSrc":"2016:2:49","nodeType":"YulLiteral","src":"2016:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2004:3:49","nodeType":"YulIdentifier","src":"2004:3:49"},"nativeSrc":"2004:15:49","nodeType":"YulFunctionCall","src":"2004:15:49"},"variableNames":[{"name":"sourcePointer","nativeSrc":"1987:13:49","nodeType":"YulIdentifier","src":"1987:13:49"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":16812,"isOffset":false,"isSlot":false,"src":"1839:6:49","valueSize":1},{"declaration":16825,"isOffset":false,"isSlot":false,"src":"1851:2:49","valueSize":1},{"declaration":16836,"isOffset":false,"isSlot":false,"src":"1819:6:49","valueSize":1},{"declaration":16836,"isOffset":false,"isSlot":false,"src":"1927:6:49","valueSize":1},{"declaration":16836,"isOffset":false,"isSlot":false,"src":"2008:6:49","valueSize":1},{"declaration":16839,"isOffset":false,"isSlot":false,"src":"1905:12:49","valueSize":1},{"declaration":16842,"isOffset":false,"isSlot":false,"src":"1987:13:49","valueSize":1}],"id":16844,"nodeType":"InlineAssembly","src":"1756:274:49"},{"expression":{"arguments":[{"id":16846,"name":"destinationPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16818,"src":"2059:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16847,"name":"sourcePointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16842,"src":"2090:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16848,"name":"sourceLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16839,"src":"2116:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16845,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18656,"src":"2040:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":16849,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2040:99:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":16850,"nodeType":"ExpressionStatement","src":"2040:99:49"},{"AST":{"nativeSrc":"2159:256:49","nodeType":"YulBlock","src":"2159:256:49","statements":[{"nativeSrc":"2230:57:49","nodeType":"YulAssignment","src":"2230:57:49","value":{"arguments":[{"name":"destinationLength","nativeSrc":"2255:17:49","nodeType":"YulIdentifier","src":"2255:17:49"},{"name":"sourceLength","nativeSrc":"2274:12:49","nodeType":"YulIdentifier","src":"2274:12:49"}],"functionName":{"name":"add","nativeSrc":"2251:3:49","nodeType":"YulIdentifier","src":"2251:3:49"},"nativeSrc":"2251:36:49","nodeType":"YulFunctionCall","src":"2251:36:49"},"variableNames":[{"name":"destinationLength","nativeSrc":"2230:17:49","nodeType":"YulIdentifier","src":"2230:17:49"}]},{"nativeSrc":"2345:59:49","nodeType":"YulAssignment","src":"2345:59:49","value":{"arguments":[{"name":"destinationPointer","nativeSrc":"2371:18:49","nodeType":"YulIdentifier","src":"2371:18:49"},{"name":"sourceLength","nativeSrc":"2391:12:49","nodeType":"YulIdentifier","src":"2391:12:49"}],"functionName":{"name":"add","nativeSrc":"2367:3:49","nodeType":"YulIdentifier","src":"2367:3:49"},"nativeSrc":"2367:37:49","nodeType":"YulFunctionCall","src":"2367:37:49"},"variableNames":[{"name":"destinationPointer","nativeSrc":"2345:18:49","nodeType":"YulIdentifier","src":"2345:18:49"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":16821,"isOffset":false,"isSlot":false,"src":"2230:17:49","valueSize":1},{"declaration":16821,"isOffset":false,"isSlot":false,"src":"2255:17:49","valueSize":1},{"declaration":16818,"isOffset":false,"isSlot":false,"src":"2345:18:49","valueSize":1},{"declaration":16818,"isOffset":false,"isSlot":false,"src":"2371:18:49","valueSize":1},{"declaration":16839,"isOffset":false,"isSlot":false,"src":"2274:12:49","valueSize":1},{"declaration":16839,"isOffset":false,"isSlot":false,"src":"2391:12:49","valueSize":1}],"id":16851,"nodeType":"InlineAssembly","src":"2150:265:49"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16831,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16828,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16825,"src":"1628:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":16829,"name":"_buffs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16812,"src":"1634:6:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":16830,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1641:6:49","memberName":"length","nodeType":"MemberAccess","src":"1634:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1628:19:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16853,"initializationExpression":{"assignments":[16825],"declarations":[{"constant":false,"id":16825,"mutability":"mutable","name":"ix","nameLocation":"1620:2:49","nodeType":"VariableDeclaration","scope":16853,"src":"1615:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16824,"name":"uint","nodeType":"ElementaryTypeName","src":"1615:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16827,"initialValue":{"hexValue":"31","id":16826,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1625:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"VariableDeclarationStatement","src":"1615:11:49"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":16833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1649:5:49","subExpression":{"id":16832,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16825,"src":"1649:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16834,"nodeType":"ExpressionStatement","src":"1649:5:49"},"nodeType":"ForStatement","src":"1610:814:49"},{"AST":{"nativeSrc":"2441:190:49","nodeType":"YulBlock","src":"2441:190:49","statements":[{"expression":{"arguments":[{"name":"output","nativeSrc":"2492:6:49","nodeType":"YulIdentifier","src":"2492:6:49"},{"name":"destinationLength","nativeSrc":"2500:17:49","nodeType":"YulIdentifier","src":"2500:17:49"}],"functionName":{"name":"mstore","nativeSrc":"2485:6:49","nodeType":"YulIdentifier","src":"2485:6:49"},"nativeSrc":"2485:33:49","nodeType":"YulFunctionCall","src":"2485:33:49"},"nativeSrc":"2485:33:49","nodeType":"YulExpressionStatement","src":"2485:33:49"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2571:4:49","nodeType":"YulLiteral","src":"2571:4:49","type":"","value":"0x40"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2587:4:49","nodeType":"YulLiteral","src":"2587:4:49","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"2581:5:49","nodeType":"YulIdentifier","src":"2581:5:49"},"nativeSrc":"2581:11:49","nodeType":"YulFunctionCall","src":"2581:11:49"},{"arguments":[{"name":"destinationLength","nativeSrc":"2598:17:49","nodeType":"YulIdentifier","src":"2598:17:49"},{"kind":"number","nativeSrc":"2617:2:49","nodeType":"YulLiteral","src":"2617:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2594:3:49","nodeType":"YulIdentifier","src":"2594:3:49"},"nativeSrc":"2594:26:49","nodeType":"YulFunctionCall","src":"2594:26:49"}],"functionName":{"name":"add","nativeSrc":"2577:3:49","nodeType":"YulIdentifier","src":"2577:3:49"},"nativeSrc":"2577:44:49","nodeType":"YulFunctionCall","src":"2577:44:49"}],"functionName":{"name":"mstore","nativeSrc":"2564:6:49","nodeType":"YulIdentifier","src":"2564:6:49"},"nativeSrc":"2564:58:49","nodeType":"YulFunctionCall","src":"2564:58:49"},"nativeSrc":"2564:58:49","nodeType":"YulExpressionStatement","src":"2564:58:49"}]},"evmVersion":"paris","externalReferences":[{"declaration":16821,"isOffset":false,"isSlot":false,"src":"2500:17:49","valueSize":1},{"declaration":16821,"isOffset":false,"isSlot":false,"src":"2598:17:49","valueSize":1},{"declaration":16815,"isOffset":false,"isSlot":false,"src":"2492:6:49","valueSize":1}],"id":16854,"nodeType":"InlineAssembly","src":"2432:199:49"}]}]},"documentation":{"id":16809,"nodeType":"StructuredDocumentation","src":"1094:133:49","text":"@notice Concatenate undefinite number of bytes chunks.\n @dev Faster than looping on `abi.encodePacked(output, _buffs[ix])`."},"id":16857,"implemented":true,"kind":"function","modifiers":[],"name":"concat","nameLocation":"1240:6:49","nodeType":"FunctionDefinition","parameters":{"id":16813,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16812,"mutability":"mutable","name":"_buffs","nameLocation":"1262:6:49","nodeType":"VariableDeclaration","scope":16857,"src":"1247:21:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":16810,"name":"bytes","nodeType":"ElementaryTypeName","src":"1247:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":16811,"nodeType":"ArrayTypeName","src":"1247:7:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"src":"1246:23:49"},"returnParameters":{"id":16816,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16815,"mutability":"mutable","name":"output","nameLocation":"1316:6:49","nodeType":"VariableDeclaration","scope":16857,"src":"1303:19:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16814,"name":"bytes","nodeType":"ElementaryTypeName","src":"1303:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1302:21:49"},"scope":18657,"src":"1231:1412:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16873,"nodeType":"Block","src":"2762:75:49","statements":[{"expression":{"arguments":[{"expression":{"id":16867,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16860,"src":"2791:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16868,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2798:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"2791:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"expression":{"id":16869,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16860,"src":"2811:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16870,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2818:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"2811:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16866,"name":"Buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16790,"src":"2776:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Buffer_$16790_storage_ptr_$","typeString":"type(struct WitnetBuffer.Buffer storage pointer)"}},"id":16871,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2776:55:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"functionReturnParameters":16865,"id":16872,"nodeType":"Return","src":"2769:62:49"}]},"id":16874,"implemented":true,"kind":"function","modifiers":[],"name":"fork","nameLocation":"2658:4:49","nodeType":"FunctionDefinition","parameters":{"id":16861,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16860,"mutability":"mutable","name":"buffer","nameLocation":"2690:6:49","nodeType":"VariableDeclaration","scope":16874,"src":"2663:33:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":16859,"nodeType":"UserDefinedTypeName","pathNode":{"id":16858,"name":"WitnetBuffer.Buffer","nameLocations":["2663:12:49","2676:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"2663:19:49"},"referencedDeclaration":16790,"src":"2663:19:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"2662:35:49"},"returnParameters":{"id":16865,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16864,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16874,"src":"2731:26:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":16863,"nodeType":"UserDefinedTypeName","pathNode":{"id":16862,"name":"WitnetBuffer.Buffer","nameLocations":["2731:12:49","2744:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"2731:19:49"},"referencedDeclaration":16790,"src":"2731:19:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"2730:28:49"},"scope":18657,"src":"2649:188:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16951,"nodeType":"Block","src":"3042:310:49","statements":[{"assignments":[16899],"declarations":[{"constant":false,"id":16899,"mutability":"mutable","name":"parts","nameLocation":"3064:5:49","nodeType":"VariableDeclaration","scope":16951,"src":"3049:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":16897,"name":"bytes","nodeType":"ElementaryTypeName","src":"3049:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":16898,"nodeType":"ArrayTypeName","src":"3049:7:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"id":16905,"initialValue":{"arguments":[{"hexValue":"33","id":16903,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3084:1:49","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"}],"id":16902,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"3072:11:49","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":16900,"name":"bytes","nodeType":"ElementaryTypeName","src":"3076:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":16901,"nodeType":"ArrayTypeName","src":"3076:7:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":16904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3072:14:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"3049:37:49"},{"expression":{"id":16915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16906,"name":"parts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16899,"src":"3093:5:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":16908,"indexExpression":{"hexValue":"30","id":16907,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3099:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3093:8:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":16910,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16877,"src":"3117:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"hexValue":"30","id":16911,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3132:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"expression":{"id":16912,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16877,"src":"3142:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16913,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3149:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"3142:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16909,"name":"peek","nodeType":"Identifier","overloadedDeclarations":[17024,17052],"referencedDeclaration":17024,"src":"3104:4:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256,uint256) pure returns (bytes memory)"}},"id":16914,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3104:58:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"3093:69:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16916,"nodeType":"ExpressionStatement","src":"3093:69:49"},{"expression":{"id":16921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16917,"name":"parts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16899,"src":"3169:5:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":16919,"indexExpression":{"hexValue":"31","id":16918,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3175:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3169:8:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":16920,"name":"pokes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16881,"src":"3180:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"3169:16:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16922,"nodeType":"ExpressionStatement","src":"3169:16:49"},{"expression":{"id":16941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16923,"name":"parts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16899,"src":"3192:5:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":16925,"indexExpression":{"hexValue":"32","id":16924,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3198:1:49","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"3192:8:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":16927,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16877,"src":"3216:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":16928,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16877,"src":"3231:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16929,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3238:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"3231:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":16930,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16879,"src":"3247:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3231:22:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16939,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":16932,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16877,"src":"3262:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16933,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3269:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"3262:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3274:6:49","memberName":"length","nodeType":"MemberAccess","src":"3262:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":16935,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16877,"src":"3283:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16936,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3290:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"3283:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3262:34:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":16938,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16879,"src":"3299:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3262:43:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16926,"name":"peek","nodeType":"Identifier","overloadedDeclarations":[17024,17052],"referencedDeclaration":17024,"src":"3203:4:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256,uint256) pure returns (bytes memory)"}},"id":16940,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3203:109:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"3192:120:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16942,"nodeType":"ExpressionStatement","src":"3192:120:49"},{"expression":{"id":16949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":16943,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16877,"src":"3319:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16945,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3326:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"3319:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":16947,"name":"parts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16899,"src":"3340:5:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}],"id":16946,"name":"concat","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16857,"src":"3333:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_array$_t_bytes_memory_ptr_$dyn_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (bytes memory[] memory) pure returns (bytes memory)"}},"id":16948,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3333:13:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"3319:27:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16950,"nodeType":"ExpressionStatement","src":"3319:27:49"}]},"id":16952,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":16884,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16879,"src":"2991:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16892,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":16885,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16877,"src":"2999:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16886,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3006:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"2999:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3011:6:49","memberName":"length","nodeType":"MemberAccess","src":"2999:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":16888,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16877,"src":"3020:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16889,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3027:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"3020:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2999:34:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":16891,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3036:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2999:38:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":16893,"kind":"modifierInvocation","modifierName":{"id":16883,"name":"withinRange","nameLocations":["2979:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16808,"src":"2979:11:49"},"nodeType":"ModifierInvocation","src":"2979:59:49"}],"name":"mutate","nameLocation":"2852:6:49","nodeType":"FunctionDefinition","parameters":{"id":16882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16877,"mutability":"mutable","name":"buffer","nameLocation":"2894:6:49","nodeType":"VariableDeclaration","scope":16952,"src":"2867:33:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":16876,"nodeType":"UserDefinedTypeName","pathNode":{"id":16875,"name":"WitnetBuffer.Buffer","nameLocations":["2867:12:49","2880:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"2867:19:49"},"referencedDeclaration":16790,"src":"2867:19:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":16879,"mutability":"mutable","name":"length","nameLocation":"2914:6:49","nodeType":"VariableDeclaration","scope":16952,"src":"2909:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16878,"name":"uint","nodeType":"ElementaryTypeName","src":"2909:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16881,"mutability":"mutable","name":"pokes","nameLocation":"2942:5:49","nodeType":"VariableDeclaration","scope":16952,"src":"2929:18:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16880,"name":"bytes","nodeType":"ElementaryTypeName","src":"2929:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2858:96:49"},"returnParameters":{"id":16894,"nodeType":"ParameterList","parameters":[],"src":"3042:0:49"},"scope":18657,"src":"2843:509:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16975,"nodeType":"Block","src":"3677:145:49","statements":[{"expression":{"baseExpression":{"expression":{"id":16968,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16956,"src":"3787:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16969,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3794:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"3787:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16973,"indexExpression":{"id":16972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"3799:16:49","subExpression":{"expression":{"id":16970,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16956,"src":"3799:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16971,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3806:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"3799:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3787:29:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"functionReturnParameters":16967,"id":16974,"nodeType":"Return","src":"3780:36:49"}]},"documentation":{"id":16953,"nodeType":"StructuredDocumentation","src":"3358:183:49","text":"@notice Read and consume the next byte from the buffer.\n @param buffer An instance of `Buffer`.\n @return The next byte in the buffer counting from the cursor position."},"id":16976,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"expression":{"id":16959,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16956,"src":"3617:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16960,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3624:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"3617:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":16961,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16956,"src":"3632:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16962,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3639:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"3632:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16963,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3644:6:49","memberName":"length","nodeType":"MemberAccess","src":"3632:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":16964,"kind":"modifierInvocation","modifierName":{"id":16958,"name":"withinRange","nameLocations":["3605:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16808,"src":"3605:11:49"},"nodeType":"ModifierInvocation","src":"3605:46:49"}],"name":"next","nameLocation":"3554:4:49","nodeType":"FunctionDefinition","parameters":{"id":16957,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16956,"mutability":"mutable","name":"buffer","nameLocation":"3573:6:49","nodeType":"VariableDeclaration","scope":16976,"src":"3559:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":16955,"nodeType":"UserDefinedTypeName","pathNode":{"id":16954,"name":"Buffer","nameLocations":["3559:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"3559:6:49"},"referencedDeclaration":16790,"src":"3559:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"3558:22:49"},"returnParameters":{"id":16967,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16966,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16976,"src":"3666:6:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":16965,"name":"bytes1","nodeType":"ElementaryTypeName","src":"3666:6:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"3665:8:49"},"scope":18657,"src":"3545:277:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17023,"nodeType":"Block","src":"4035:365:49","statements":[{"assignments":[16997],"declarations":[{"constant":false,"id":16997,"mutability":"mutable","name":"data","nameLocation":"4055:4:49","nodeType":"VariableDeclaration","scope":17023,"src":"4042:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16996,"name":"bytes","nodeType":"ElementaryTypeName","src":"4042:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17000,"initialValue":{"expression":{"id":16998,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16979,"src":"4062:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16999,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4069:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"4062:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"4042:31:49"},{"assignments":[17002],"declarations":[{"constant":false,"id":17002,"mutability":"mutable","name":"peeks","nameLocation":"4093:5:49","nodeType":"VariableDeclaration","scope":17023,"src":"4080:18:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17001,"name":"bytes","nodeType":"ElementaryTypeName","src":"4080:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17007,"initialValue":{"arguments":[{"id":17005,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16983,"src":"4111:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17004,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"4101:9:49","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":17003,"name":"bytes","nodeType":"ElementaryTypeName","src":"4105:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":17006,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4101:17:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"4080:38:49"},{"assignments":[17009],"declarations":[{"constant":false,"id":17009,"mutability":"mutable","name":"destinationPointer","nameLocation":"4130:18:49","nodeType":"VariableDeclaration","scope":17023,"src":"4125:23:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17008,"name":"uint","nodeType":"ElementaryTypeName","src":"4125:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17010,"nodeType":"VariableDeclarationStatement","src":"4125:23:49"},{"assignments":[17012],"declarations":[{"constant":false,"id":17012,"mutability":"mutable","name":"sourcePointer","nameLocation":"4160:13:49","nodeType":"VariableDeclaration","scope":17023,"src":"4155:18:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17011,"name":"uint","nodeType":"ElementaryTypeName","src":"4155:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17013,"nodeType":"VariableDeclarationStatement","src":"4155:18:49"},{"AST":{"nativeSrc":"4189:103:49","nodeType":"YulBlock","src":"4189:103:49","statements":[{"nativeSrc":"4198:36:49","nodeType":"YulAssignment","src":"4198:36:49","value":{"arguments":[{"name":"peeks","nativeSrc":"4224:5:49","nodeType":"YulIdentifier","src":"4224:5:49"},{"kind":"number","nativeSrc":"4231:2:49","nodeType":"YulLiteral","src":"4231:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4220:3:49","nodeType":"YulIdentifier","src":"4220:3:49"},"nativeSrc":"4220:14:49","nodeType":"YulFunctionCall","src":"4220:14:49"},"variableNames":[{"name":"destinationPointer","nativeSrc":"4198:18:49","nodeType":"YulIdentifier","src":"4198:18:49"}]},{"nativeSrc":"4242:43:49","nodeType":"YulAssignment","src":"4242:43:49","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"4267:4:49","nodeType":"YulIdentifier","src":"4267:4:49"},{"kind":"number","nativeSrc":"4273:2:49","nodeType":"YulLiteral","src":"4273:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4263:3:49","nodeType":"YulIdentifier","src":"4263:3:49"},"nativeSrc":"4263:13:49","nodeType":"YulFunctionCall","src":"4263:13:49"},{"name":"offset","nativeSrc":"4278:6:49","nodeType":"YulIdentifier","src":"4278:6:49"}],"functionName":{"name":"add","nativeSrc":"4259:3:49","nodeType":"YulIdentifier","src":"4259:3:49"},"nativeSrc":"4259:26:49","nodeType":"YulFunctionCall","src":"4259:26:49"},"variableNames":[{"name":"sourcePointer","nativeSrc":"4242:13:49","nodeType":"YulIdentifier","src":"4242:13:49"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":16997,"isOffset":false,"isSlot":false,"src":"4267:4:49","valueSize":1},{"declaration":17009,"isOffset":false,"isSlot":false,"src":"4198:18:49","valueSize":1},{"declaration":16981,"isOffset":false,"isSlot":false,"src":"4278:6:49","valueSize":1},{"declaration":17002,"isOffset":false,"isSlot":false,"src":"4224:5:49","valueSize":1},{"declaration":17012,"isOffset":false,"isSlot":false,"src":"4242:13:49","valueSize":1}],"id":17014,"nodeType":"InlineAssembly","src":"4180:112:49"},{"expression":{"arguments":[{"id":17016,"name":"destinationPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17009,"src":"4313:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17017,"name":"sourcePointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17012,"src":"4340:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17018,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16983,"src":"4362:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17015,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18656,"src":"4298:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":17019,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4298:77:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17020,"nodeType":"ExpressionStatement","src":"4298:77:49"},{"expression":{"id":17021,"name":"peeks","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17002,"src":"4389:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":16995,"id":17022,"nodeType":"Return","src":"4382:12:49"}]},"id":17024,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16986,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16981,"src":"3967:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":16987,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16983,"src":"3976:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3967:15:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":16989,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16979,"src":"3984:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16990,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3991:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"3984:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16991,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3996:6:49","memberName":"length","nodeType":"MemberAccess","src":"3984:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":16992,"kind":"modifierInvocation","modifierName":{"id":16985,"name":"withinRange","nameLocations":["3955:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16808,"src":"3955:11:49"},"nodeType":"ModifierInvocation","src":"3955:48:49"}],"name":"peek","nameLocation":"3837:4:49","nodeType":"FunctionDefinition","parameters":{"id":16984,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16979,"mutability":"mutable","name":"buffer","nameLocation":"3877:6:49","nodeType":"VariableDeclaration","scope":17024,"src":"3850:33:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":16978,"nodeType":"UserDefinedTypeName","pathNode":{"id":16977,"name":"WitnetBuffer.Buffer","nameLocations":["3850:12:49","3863:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"3850:19:49"},"referencedDeclaration":16790,"src":"3850:19:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":16981,"mutability":"mutable","name":"offset","nameLocation":"3897:6:49","nodeType":"VariableDeclaration","scope":17024,"src":"3892:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16980,"name":"uint","nodeType":"ElementaryTypeName","src":"3892:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16983,"mutability":"mutable","name":"length","nameLocation":"3917:6:49","nodeType":"VariableDeclaration","scope":17024,"src":"3912:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16982,"name":"uint","nodeType":"ElementaryTypeName","src":"3912:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3841:89:49"},"returnParameters":{"id":16995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16994,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17024,"src":"4018:12:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16993,"name":"bytes","nodeType":"ElementaryTypeName","src":"4018:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4017:14:49"},"scope":18657,"src":"3828:572:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17051,"nodeType":"Block","src":"4840:83:49","statements":[{"expression":{"arguments":[{"id":17045,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17028,"src":"4867:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":17046,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17028,"src":"4882:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17047,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4889:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"4882:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17048,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17030,"src":"4904:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17044,"name":"peek","nodeType":"Identifier","overloadedDeclarations":[17024,17052],"referencedDeclaration":17024,"src":"4854:4:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256,uint256) pure returns (bytes memory)"}},"id":17049,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4854:63:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":17043,"id":17050,"nodeType":"Return","src":"4847:70:49"}]},"documentation":{"id":17025,"nodeType":"StructuredDocumentation","src":"4482:103:49","text":"@param buffer An instance of `Buffer`.\n @param length How many bytes to peek from the Buffer."},"id":17052,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":17033,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17030,"src":"4765:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":17034,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17028,"src":"4773:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17035,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4780:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"4773:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4785:6:49","memberName":"length","nodeType":"MemberAccess","src":"4773:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":17037,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17028,"src":"4794:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17038,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4801:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"4794:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4773:34:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":17040,"kind":"modifierInvocation","modifierName":{"id":17032,"name":"withinRange","nameLocations":["4753:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16808,"src":"4753:11:49"},"nodeType":"ModifierInvocation","src":"4753:55:49"}],"name":"peek","nameLocation":"4655:4:49","nodeType":"FunctionDefinition","parameters":{"id":17031,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17028,"mutability":"mutable","name":"buffer","nameLocation":"4695:6:49","nodeType":"VariableDeclaration","scope":17052,"src":"4668:33:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17027,"nodeType":"UserDefinedTypeName","pathNode":{"id":17026,"name":"WitnetBuffer.Buffer","nameLocations":["4668:12:49","4681:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"4668:19:49"},"referencedDeclaration":16790,"src":"4668:19:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":17030,"mutability":"mutable","name":"length","nameLocation":"4715:6:49","nodeType":"VariableDeclaration","scope":17052,"src":"4710:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17029,"name":"uint","nodeType":"ElementaryTypeName","src":"4710:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4659:69:49"},"returnParameters":{"id":17043,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17042,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":17052,"src":"4823:12:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17041,"name":"bytes","nodeType":"ElementaryTypeName","src":"4823:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4822:14:49"},"scope":18657,"src":"4646:277:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17113,"nodeType":"Block","src":"5417:767:49","statements":[{"expression":{"id":17077,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17072,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17070,"src":"5478:6:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17075,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17058,"src":"5497:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17074,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"5487:9:49","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":17073,"name":"bytes","nodeType":"ElementaryTypeName","src":"5491:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":17076,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5487:17:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"5478:26:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17078,"nodeType":"ExpressionStatement","src":"5478:26:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17079,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17058,"src":"5567:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":17080,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5576:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"5567:10:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17112,"nodeType":"IfStatement","src":"5563:616:49","trueBody":{"id":17111,"nodeType":"Block","src":"5579:600:49","statements":[{"assignments":[17083],"declarations":[{"constant":false,"id":17083,"mutability":"mutable","name":"input","nameLocation":"5601:5:49","nodeType":"VariableDeclaration","scope":17111,"src":"5588:18:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17082,"name":"bytes","nodeType":"ElementaryTypeName","src":"5588:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17086,"initialValue":{"expression":{"id":17084,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17056,"src":"5609:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17085,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5616:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"5609:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"5588:32:49"},{"assignments":[17088],"declarations":[{"constant":false,"id":17088,"mutability":"mutable","name":"offset","nameLocation":"5634:6:49","nodeType":"VariableDeclaration","scope":17111,"src":"5629:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17087,"name":"uint","nodeType":"ElementaryTypeName","src":"5629:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17091,"initialValue":{"expression":{"id":17089,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17056,"src":"5643:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17090,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5650:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"5643:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5629:27:49"},{"assignments":[17093],"declarations":[{"constant":false,"id":17093,"mutability":"mutable","name":"sourcePointer","nameLocation":"5724:13:49","nodeType":"VariableDeclaration","scope":17111,"src":"5719:18:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17092,"name":"uint","nodeType":"ElementaryTypeName","src":"5719:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17094,"nodeType":"VariableDeclarationStatement","src":"5719:18:49"},{"assignments":[17096],"declarations":[{"constant":false,"id":17096,"mutability":"mutable","name":"destinationPointer","nameLocation":"5751:18:49","nodeType":"VariableDeclaration","scope":17111,"src":"5746:23:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17095,"name":"uint","nodeType":"ElementaryTypeName","src":"5746:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17097,"nodeType":"VariableDeclarationStatement","src":"5746:23:49"},{"AST":{"nativeSrc":"5787:111:49","nodeType":"YulBlock","src":"5787:111:49","statements":[{"nativeSrc":"5798:44:49","nodeType":"YulAssignment","src":"5798:44:49","value":{"arguments":[{"arguments":[{"name":"input","nativeSrc":"5823:5:49","nodeType":"YulIdentifier","src":"5823:5:49"},{"kind":"number","nativeSrc":"5830:2:49","nodeType":"YulLiteral","src":"5830:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5819:3:49","nodeType":"YulIdentifier","src":"5819:3:49"},"nativeSrc":"5819:14:49","nodeType":"YulFunctionCall","src":"5819:14:49"},{"name":"offset","nativeSrc":"5835:6:49","nodeType":"YulIdentifier","src":"5835:6:49"}],"functionName":{"name":"add","nativeSrc":"5815:3:49","nodeType":"YulIdentifier","src":"5815:3:49"},"nativeSrc":"5815:27:49","nodeType":"YulFunctionCall","src":"5815:27:49"},"variableNames":[{"name":"sourcePointer","nativeSrc":"5798:13:49","nodeType":"YulIdentifier","src":"5798:13:49"}]},{"nativeSrc":"5852:37:49","nodeType":"YulAssignment","src":"5852:37:49","value":{"arguments":[{"name":"output","nativeSrc":"5878:6:49","nodeType":"YulIdentifier","src":"5878:6:49"},{"kind":"number","nativeSrc":"5886:2:49","nodeType":"YulLiteral","src":"5886:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5874:3:49","nodeType":"YulIdentifier","src":"5874:3:49"},"nativeSrc":"5874:15:49","nodeType":"YulFunctionCall","src":"5874:15:49"},"variableNames":[{"name":"destinationPointer","nativeSrc":"5852:18:49","nodeType":"YulIdentifier","src":"5852:18:49"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":17096,"isOffset":false,"isSlot":false,"src":"5852:18:49","valueSize":1},{"declaration":17083,"isOffset":false,"isSlot":false,"src":"5823:5:49","valueSize":1},{"declaration":17088,"isOffset":false,"isSlot":false,"src":"5835:6:49","valueSize":1},{"declaration":17070,"isOffset":false,"isSlot":false,"src":"5878:6:49","valueSize":1},{"declaration":17093,"isOffset":false,"isSlot":false,"src":"5798:13:49","valueSize":1}],"id":17098,"nodeType":"InlineAssembly","src":"5778:120:49"},{"expression":{"arguments":[{"id":17100,"name":"destinationPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17096,"src":"5980:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17101,"name":"sourcePointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17093,"src":"6009:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17102,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17058,"src":"6033:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17099,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18656,"src":"5963:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":17103,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5963:85:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17104,"nodeType":"ExpressionStatement","src":"5963:85:49"},{"expression":{"arguments":[{"id":17106,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17056,"src":"6124:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"id":17107,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17058,"src":"6141:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":17108,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6158:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":17105,"name":"seek","nodeType":"Identifier","overloadedDeclarations":[18591,18609],"referencedDeclaration":18591,"src":"6109:4:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint256_$_t_bool_$returns$_t_uint256_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256,bool) pure returns (uint256)"}},"id":17109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6109:62:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17110,"nodeType":"ExpressionStatement","src":"6109:62:49"}]}}]},"documentation":{"id":17053,"nodeType":"StructuredDocumentation","src":"4929:317:49","text":"@notice Read and consume a certain amount of bytes from the buffer.\n @param buffer An instance of `Buffer`.\n @param length How many bytes to read and consume from the buffer.\n @return output A `bytes memory` containing the first `length` bytes from the buffer, counting from the cursor position."},"id":17114,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17061,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17056,"src":"5335:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17062,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5342:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"5335:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":17063,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17058,"src":"5351:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5335:22:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":17065,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17056,"src":"5359:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17066,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5366:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"5359:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17067,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5371:6:49","memberName":"length","nodeType":"MemberAccess","src":"5359:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":17068,"kind":"modifierInvocation","modifierName":{"id":17060,"name":"withinRange","nameLocations":["5323:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16808,"src":"5323:11:49"},"nodeType":"ModifierInvocation","src":"5323:55:49"}],"name":"read","nameLocation":"5259:4:49","nodeType":"FunctionDefinition","parameters":{"id":17059,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17056,"mutability":"mutable","name":"buffer","nameLocation":"5278:6:49","nodeType":"VariableDeclaration","scope":17114,"src":"5264:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17055,"nodeType":"UserDefinedTypeName","pathNode":{"id":17054,"name":"Buffer","nameLocations":["5264:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"5264:6:49"},"referencedDeclaration":16790,"src":"5264:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":17058,"mutability":"mutable","name":"length","nameLocation":"5291:6:49","nodeType":"VariableDeclaration","scope":17114,"src":"5286:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17057,"name":"uint","nodeType":"ElementaryTypeName","src":"5286:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5263:35:49"},"returnParameters":{"id":17071,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17070,"mutability":"mutable","name":"output","nameLocation":"5406:6:49","nodeType":"VariableDeclaration","scope":17114,"src":"5393:19:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17069,"name":"bytes","nodeType":"ElementaryTypeName","src":"5393:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5392:21:49"},"scope":18657,"src":"5250:934:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17264,"nodeType":"Block","src":"7043:1153:49","statements":[{"assignments":[17124],"declarations":[{"constant":false,"id":17124,"mutability":"mutable","name":"value","nameLocation":"7057:5:49","nodeType":"VariableDeclaration","scope":17264,"src":"7050:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":17123,"name":"uint32","nodeType":"ElementaryTypeName","src":"7050:6:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":17128,"initialValue":{"arguments":[{"id":17126,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17118,"src":"7076:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17125,"name":"readUint16","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17763,"src":"7065:10:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint16_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint16)"}},"id":17127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7065:18:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"VariableDeclarationStatement","src":"7050:33:49"},{"assignments":[17130],"declarations":[{"constant":false,"id":17130,"mutability":"mutable","name":"sign","nameLocation":"7127:4:49","nodeType":"VariableDeclaration","scope":17264,"src":"7120:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":17129,"name":"uint32","nodeType":"ElementaryTypeName","src":"7120:6:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":17134,"initialValue":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":17133,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17131,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17124,"src":"7134:5:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307838303030","id":17132,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7142:6:49","typeDescriptions":{"typeIdentifier":"t_rational_32768_by_1","typeString":"int_const 32768"},"value":"0x8000"},"src":"7134:14:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"7120:28:49"},{"assignments":[17136],"declarations":[{"constant":false,"id":17136,"mutability":"mutable","name":"exponent","nameLocation":"7274:8:49","nodeType":"VariableDeclaration","scope":17264,"src":"7268:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":17135,"name":"int32","nodeType":"ElementaryTypeName","src":"7268:5:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"id":17148,"initialValue":{"commonType":{"typeIdentifier":"t_int32","typeString":"int32"},"id":17147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int32","typeString":"int32"},"id":17144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":17141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17139,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17124,"src":"7292:5:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307837633030","id":17140,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7300:6:49","typeDescriptions":{"typeIdentifier":"t_rational_31744_by_1","typeString":"int_const 31744"},"value":"0x7c00"},"src":"7292:14:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":17138,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7286:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int32_$","typeString":"type(int32)"},"typeName":{"id":17137,"name":"int32","nodeType":"ElementaryTypeName","src":"7286:5:49","typeDescriptions":{}}},"id":17142,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7286:21:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3130","id":17143,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7311:2:49","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"7286:27:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}}],"id":17145,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7285:29:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3135","id":17146,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7317:2:49","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"15"},"src":"7285:34:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"VariableDeclarationStatement","src":"7268:51:49"},{"assignments":[17150],"declarations":[{"constant":false,"id":17150,"mutability":"mutable","name":"fraction","nameLocation":"7357:8:49","nodeType":"VariableDeclaration","scope":17264,"src":"7351:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":17149,"name":"int32","nodeType":"ElementaryTypeName","src":"7351:5:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"id":17157,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":17155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17153,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17124,"src":"7374:5:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830336666","id":17154,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7382:6:49","typeDescriptions":{"typeIdentifier":"t_rational_1023_by_1","typeString":"int_const 1023"},"value":"0x03ff"},"src":"7374:14:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"id":17152,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7368:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int32_$","typeString":"type(int32)"},"typeName":{"id":17151,"name":"int32","nodeType":"ElementaryTypeName","src":"7368:5:49","typeDescriptions":{}}},"id":17156,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7368:21:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"VariableDeclarationStatement","src":"7351:38:49"},{"condition":{"commonType":{"typeIdentifier":"t_int32","typeString":"int32"},"id":17161,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17158,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17136,"src":"7456:8:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17160,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"7468:3:49","subExpression":{"hexValue":"3135","id":17159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7469:2:49","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"15"},"typeDescriptions":{"typeIdentifier":"t_rational_minus_15_by_1","typeString":"int_const -15"}},"src":"7456:15:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_int32","typeString":"int32"},"id":17169,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17167,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17136,"src":"7517:8:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3136","id":17168,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7529:2:49","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"7517:14:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17188,"nodeType":"IfStatement","src":"7513:206:49","trueBody":{"id":17187,"nodeType":"Block","src":"7533:186:49","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"5769746e65744275666665722e72656164466c6f617431363a20","id":17175,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7595:28:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_34f674675c8354d2881e0fe40ffc802ad882f0cf9f9efc9643de3b2bc1155054","typeString":"literal_string \"WitnetBuffer.readFloat16: \""},"value":"WitnetBuffer.readFloat16: "},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":17178,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17176,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17130,"src":"7636:4:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":17177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7644:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7636:9:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":17180,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"7661:5:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":17181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"7636:30:49","trueExpression":{"hexValue":"6e65676174697665","id":17179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7648:10:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_5c5e2f1fbc734e42aa272c3420aeb7631dc1efac79a3bf6e1303c2b8c0ccc2e4","typeString":"literal_string \"negative\""},"value":"negative"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"20696e66696e697479","id":17182,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"7679:11:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_91f1a0a624b4b9daa319ca31429bf6584116647ceaf3a744bd0f4c2aad95b621","typeString":"literal_string \" infinity\""},"value":" infinity"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_34f674675c8354d2881e0fe40ffc802ad882f0cf9f9efc9643de3b2bc1155054","typeString":"literal_string \"WitnetBuffer.readFloat16: \""},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_stringliteral_91f1a0a624b4b9daa319ca31429bf6584116647ceaf3a744bd0f4c2aad95b621","typeString":"literal_string \" infinity\""}],"expression":{"id":17173,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"7566:3:49","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":17174,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7570:12:49","memberName":"encodePacked","nodeType":"MemberAccess","src":"7566:16:49","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":17183,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7566:135:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":17172,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7559:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":17171,"name":"string","nodeType":"ElementaryTypeName","src":"7559:6:49","typeDescriptions":{}}},"id":17184,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7559:143:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17170,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"7542:6:49","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":17185,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7542:169:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17186,"nodeType":"ExpressionStatement","src":"7542:169:49"}]}},"id":17189,"nodeType":"IfStatement","src":"7452:267:49","trueBody":{"id":17166,"nodeType":"Block","src":"7473:34:49","statements":[{"expression":{"id":17164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17162,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17150,"src":"7482:8:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"hexValue":"3078343030","id":17163,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7494:5:49","typeDescriptions":{"typeIdentifier":"t_rational_1024_by_1","typeString":"int_const 1024"},"value":"0x400"},"src":"7482:17:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":17165,"nodeType":"ExpressionStatement","src":"7482:17:49"}]}},{"condition":{"commonType":{"typeIdentifier":"t_int32","typeString":"int32"},"id":17192,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17190,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17136,"src":"7785:8:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":17191,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7797:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7785:13:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":17252,"nodeType":"Block","src":"7944:139:49","statements":[{"expression":{"id":17250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17221,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17121,"src":"7953:6:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17228,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17150,"src":"7986:8:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int32","typeString":"int32"}],"id":17227,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7982:3:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17226,"name":"int","nodeType":"ElementaryTypeName","src":"7982:3:49","typeDescriptions":{}}},"id":17229,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7982:13:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3130303030","id":17230,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8009:5:49","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"7982:32:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":17234,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8032:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"arguments":[{"id":17240,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"8046:10:49","subExpression":{"id":17239,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17136,"src":"8048:8:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int32","typeString":"int32"}],"id":17238,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8042:3:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17237,"name":"int","nodeType":"ElementaryTypeName","src":"8042:3:49","typeDescriptions":{}}},"id":17241,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8042:15:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17236,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8037:4:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":17235,"name":"uint","nodeType":"ElementaryTypeName","src":"8037:4:49","typeDescriptions":{}}},"id":17242,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8037:21:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8032:26:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17233,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"8028:3:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17232,"name":"int","nodeType":"ElementaryTypeName","src":"8028:3:49","typeDescriptions":{}}},"id":17244,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8028:31:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"7982:77:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17225,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7968:3:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17224,"name":"int","nodeType":"ElementaryTypeName","src":"7968:3:49","typeDescriptions":{}}},"id":17246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7968:100:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3130","id":17247,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8072:2:49","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"7968:106:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17223,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7962:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int32_$","typeString":"type(int32)"},"typeName":{"id":17222,"name":"int32","nodeType":"ElementaryTypeName","src":"7962:5:49","typeDescriptions":{}}},"id":17249,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7962:113:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"src":"7953:122:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":17251,"nodeType":"ExpressionStatement","src":"7953:122:49"}]},"id":17253,"nodeType":"IfStatement","src":"7781:302:49","trueBody":{"id":17220,"nodeType":"Block","src":"7800:138:49","statements":[{"expression":{"id":17218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17193,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17121,"src":"7809:6:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":17200,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7842:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"arguments":[{"id":17205,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17136,"src":"7862:8:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int32","typeString":"int32"}],"id":17204,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7855:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17203,"name":"int256","nodeType":"ElementaryTypeName","src":"7855:6:49","typeDescriptions":{}}},"id":17206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7855:16:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17202,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7847:7:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":17201,"name":"uint256","nodeType":"ElementaryTypeName","src":"7847:7:49","typeDescriptions":{}}},"id":17207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7847:25:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7842:30:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17199,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7838:3:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17198,"name":"int","nodeType":"ElementaryTypeName","src":"7838:3:49","typeDescriptions":{}}},"id":17209,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7838:35:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3130303030","id":17210,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7887:5:49","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"10000"},"src":"7838:54:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":17212,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17150,"src":"7906:8:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"src":"7838:76:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17197,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7824:3:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17196,"name":"int","nodeType":"ElementaryTypeName","src":"7824:3:49","typeDescriptions":{}}},"id":17214,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7824:99:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3130","id":17215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7927:2:49","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"7824:105:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17195,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7818:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int32_$","typeString":"type(int32)"},"typeName":{"id":17194,"name":"int32","nodeType":"ElementaryTypeName","src":"7818:5:49","typeDescriptions":{}}},"id":17217,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7818:112:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"src":"7809:121:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":17219,"nodeType":"ExpressionStatement","src":"7809:121:49"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":17256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17254,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17130,"src":"8151:4:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":17255,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8159:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"8151:9:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17263,"nodeType":"IfStatement","src":"8147:44:49","trueBody":{"id":17262,"nodeType":"Block","src":"8162:29:49","statements":[{"expression":{"id":17260,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17257,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17121,"src":"8171:6:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"id":17259,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"8181:2:49","subExpression":{"hexValue":"31","id":17258,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8182:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"typeDescriptions":{"typeIdentifier":"t_rational_minus_1_by_1","typeString":"int_const -1"}},"src":"8171:12:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":17261,"nodeType":"ExpressionStatement","src":"8171:12:49"}]}}]},"documentation":{"id":17115,"nodeType":"StructuredDocumentation","src":"6192:754:49","text":"@notice Read and consume the next 2 bytes from the buffer as an IEEE 754-2008 floating point number enclosed in an\n `int32`.\n @dev Due to the lack of support for floating or fixed point arithmetic in the EVM, this method offsets all values\n by 5 decimal orders so as to get a fixed precision of 5 decimal positions, which should be OK for most `float16`\n use cases. In other words, the integer output of this method is 10,000 times the actual value. The input bytes are\n expected to follow the 16-bit base-2 format (a.k.a. `binary16`) in the IEEE 754-2008 standard.\n @param buffer An instance of `Buffer`.\n @return result The `int32` value of the next 4 bytes in the buffer counting from the cursor position."},"id":17265,"implemented":true,"kind":"function","modifiers":[],"name":"readFloat16","nameLocation":"6959:11:49","nodeType":"FunctionDefinition","parameters":{"id":17119,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17118,"mutability":"mutable","name":"buffer","nameLocation":"6985:6:49","nodeType":"VariableDeclaration","scope":17265,"src":"6971:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17117,"nodeType":"UserDefinedTypeName","pathNode":{"id":17116,"name":"Buffer","nameLocations":["6971:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"6971:6:49"},"referencedDeclaration":16790,"src":"6971:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"6970:22:49"},"returnParameters":{"id":17122,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17121,"mutability":"mutable","name":"result","nameLocation":"7032:6:49","nodeType":"VariableDeclaration","scope":17265,"src":"7026:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":17120,"name":"int32","nodeType":"ElementaryTypeName","src":"7026:5:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"src":"7025:14:49"},"scope":18657,"src":"6950:1246:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17402,"nodeType":"Block","src":"9031:1130:49","statements":[{"assignments":[17275],"declarations":[{"constant":false,"id":17275,"mutability":"mutable","name":"value","nameLocation":"9043:5:49","nodeType":"VariableDeclaration","scope":17402,"src":"9038:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17274,"name":"uint","nodeType":"ElementaryTypeName","src":"9038:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17279,"initialValue":{"arguments":[{"id":17277,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17269,"src":"9062:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17276,"name":"readUint32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17799,"src":"9051:10:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint32_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint32)"}},"id":17278,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9051:18:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"9038:31:49"},{"assignments":[17281],"declarations":[{"constant":false,"id":17281,"mutability":"mutable","name":"sign","nameLocation":"9111:4:49","nodeType":"VariableDeclaration","scope":17402,"src":"9106:9:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17280,"name":"uint","nodeType":"ElementaryTypeName","src":"9106:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17285,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17284,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17282,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17275,"src":"9118:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783830303030303030","id":17283,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9126:10:49","typeDescriptions":{"typeIdentifier":"t_rational_2147483648_by_1","typeString":"int_const 2147483648"},"value":"0x80000000"},"src":"9118:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"9106:30:49"},{"assignments":[17287],"declarations":[{"constant":false,"id":17287,"mutability":"mutable","name":"exponent","nameLocation":"9262:8:49","nodeType":"VariableDeclaration","scope":17402,"src":"9258:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17286,"name":"int","nodeType":"ElementaryTypeName","src":"9258:3:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":17299,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17290,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17275,"src":"9278:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783766383030303030","id":17291,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9286:10:49","typeDescriptions":{"typeIdentifier":"t_rational_2139095040_by_1","typeString":"int_const 2139095040"},"value":"0x7f800000"},"src":"9278:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17289,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9274:3:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17288,"name":"int","nodeType":"ElementaryTypeName","src":"9274:3:49","typeDescriptions":{}}},"id":17293,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9274:23:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3233","id":17294,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9301:2:49","typeDescriptions":{"typeIdentifier":"t_rational_23_by_1","typeString":"int_const 23"},"value":"23"},"src":"9274:29:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17296,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9273:31:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"313237","id":17297,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9307:3:49","typeDescriptions":{"typeIdentifier":"t_rational_127_by_1","typeString":"int_const 127"},"value":"127"},"src":"9273:37:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"9258:52:49"},{"assignments":[17301],"declarations":[{"constant":false,"id":17301,"mutability":"mutable","name":"fraction","nameLocation":"9346:8:49","nodeType":"VariableDeclaration","scope":17402,"src":"9342:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17300,"name":"int","nodeType":"ElementaryTypeName","src":"9342:3:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":17308,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17304,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17275,"src":"9361:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783030376666666666","id":17305,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9369:10:49","typeDescriptions":{"typeIdentifier":"t_rational_8388607_by_1","typeString":"int_const 8388607"},"value":"0x007fffff"},"src":"9361:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17303,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9357:3:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17302,"name":"int","nodeType":"ElementaryTypeName","src":"9357:3:49","typeDescriptions":{}}},"id":17307,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9357:23:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"9342:38:49"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17312,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17309,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17287,"src":"9448:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17311,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"9460:4:49","subExpression":{"hexValue":"313237","id":17310,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9461:3:49","typeDescriptions":{"typeIdentifier":"t_rational_127_by_1","typeString":"int_const 127"},"value":"127"},"typeDescriptions":{"typeIdentifier":"t_rational_minus_127_by_1","typeString":"int_const -127"}},"src":"9448:16:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17318,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17287,"src":"9513:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"313238","id":17319,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9525:3:49","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"128"},"src":"9513:15:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17339,"nodeType":"IfStatement","src":"9509:207:49","trueBody":{"id":17338,"nodeType":"Block","src":"9530:186:49","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"5769746e65744275666665722e72656164466c6f617433323a20","id":17326,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9592:28:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_be0cb2789421943803792602cd42479bd61d90cbfea056011c494e84e6306fc0","typeString":"literal_string \"WitnetBuffer.readFloat32: \""},"value":"WitnetBuffer.readFloat32: "},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17329,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17327,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17281,"src":"9633:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":17328,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9641:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9633:9:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":17331,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"9658:5:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":17332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9633:30:49","trueExpression":{"hexValue":"6e65676174697665","id":17330,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9645:10:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_5c5e2f1fbc734e42aa272c3420aeb7631dc1efac79a3bf6e1303c2b8c0ccc2e4","typeString":"literal_string \"negative\""},"value":"negative"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"20696e66696e697479","id":17333,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"9676:11:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_91f1a0a624b4b9daa319ca31429bf6584116647ceaf3a744bd0f4c2aad95b621","typeString":"literal_string \" infinity\""},"value":" infinity"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_be0cb2789421943803792602cd42479bd61d90cbfea056011c494e84e6306fc0","typeString":"literal_string \"WitnetBuffer.readFloat32: \""},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_stringliteral_91f1a0a624b4b9daa319ca31429bf6584116647ceaf3a744bd0f4c2aad95b621","typeString":"literal_string \" infinity\""}],"expression":{"id":17324,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"9563:3:49","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":17325,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"9567:12:49","memberName":"encodePacked","nodeType":"MemberAccess","src":"9563:16:49","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":17334,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9563:135:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":17323,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9556:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":17322,"name":"string","nodeType":"ElementaryTypeName","src":"9556:6:49","typeDescriptions":{}}},"id":17335,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9556:143:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17321,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"9539:6:49","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":17336,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9539:169:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17337,"nodeType":"ExpressionStatement","src":"9539:169:49"}]}},"id":17340,"nodeType":"IfStatement","src":"9444:272:49","trueBody":{"id":17317,"nodeType":"Block","src":"9466:37:49","statements":[{"expression":{"id":17315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17313,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17301,"src":"9475:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"hexValue":"3078383030303030","id":17314,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9487:8:49","typeDescriptions":{"typeIdentifier":"t_rational_8388608_by_1","typeString":"int_const 8388608"},"value":"0x800000"},"src":"9475:20:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":17316,"nodeType":"ExpressionStatement","src":"9475:20:49"}]}},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17341,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17287,"src":"9782:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":17342,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9794:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"9782:13:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":17390,"nodeType":"Block","src":"9924:124:49","statements":[{"expression":{"id":17388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17367,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17272,"src":"9933:6:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17368,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17301,"src":"9953:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_1000000000_by_1","typeString":"int_const 1000000000"},"id":17371,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":17369,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9977:2:49","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"39","id":17370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9983:1:49","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"src":"9977:7:49","typeDescriptions":{"typeIdentifier":"t_rational_1000000000_by_1","typeString":"int_const 1000000000"}}],"id":17372,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"9976:9:49","typeDescriptions":{"typeIdentifier":"t_rational_1000000000_by_1","typeString":"int_const 1000000000"}},"src":"9953:32:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":17376,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10003:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"id":17380,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"10013:9:49","subExpression":{"id":17379,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17287,"src":"10014:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17378,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10008:4:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":17377,"name":"uint","nodeType":"ElementaryTypeName","src":"10008:4:49","typeDescriptions":{}}},"id":17381,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10008:15:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10003:20:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9999:3:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17374,"name":"int","nodeType":"ElementaryTypeName","src":"9999:3:49","typeDescriptions":{}}},"id":17383,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9999:25:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"9953:71:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17385,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9942:92:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3233","id":17386,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10038:2:49","typeDescriptions":{"typeIdentifier":"t_rational_23_by_1","typeString":"int_const 23"},"value":"23"},"src":"9942:98:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"9933:107:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":17389,"nodeType":"ExpressionStatement","src":"9933:107:49"}]},"id":17391,"nodeType":"IfStatement","src":"9778:270:49","trueBody":{"id":17366,"nodeType":"Block","src":"9797:121:49","statements":[{"expression":{"id":17364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17344,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17272,"src":"9806:6:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17352,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":17347,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9830:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"id":17350,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17287,"src":"9840:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17349,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9835:4:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":17348,"name":"uint","nodeType":"ElementaryTypeName","src":"9835:4:49","typeDescriptions":{}}},"id":17351,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9835:14:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9830:19:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17346,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"9826:3:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17345,"name":"int","nodeType":"ElementaryTypeName","src":"9826:3:49","typeDescriptions":{}}},"id":17353,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9826:24:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_1000000000_by_1","typeString":"int_const 1000000000"},"id":17356,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":17354,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9865:2:49","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"39","id":17355,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9871:1:49","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"src":"9865:7:49","typeDescriptions":{"typeIdentifier":"t_rational_1000000000_by_1","typeString":"int_const 1000000000"}}],"id":17357,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"9864:9:49","typeDescriptions":{"typeIdentifier":"t_rational_1000000000_by_1","typeString":"int_const 1000000000"}},"src":"9826:47:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":17359,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17301,"src":"9887:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"9826:69:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17361,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"9815:89:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3233","id":17362,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9908:2:49","typeDescriptions":{"typeIdentifier":"t_rational_23_by_1","typeString":"int_const 23"},"value":"23"},"src":"9815:95:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"9806:104:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":17365,"nodeType":"ExpressionStatement","src":"9806:104:49"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17392,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17281,"src":"10116:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":17393,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10124:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10116:9:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17401,"nodeType":"IfStatement","src":"10112:44:49","trueBody":{"id":17400,"nodeType":"Block","src":"10127:29:49","statements":[{"expression":{"id":17398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17395,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17272,"src":"10136:6:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"id":17397,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"10146:2:49","subExpression":{"hexValue":"31","id":17396,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10147:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"typeDescriptions":{"typeIdentifier":"t_rational_minus_1_by_1","typeString":"int_const -1"}},"src":"10136:12:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":17399,"nodeType":"ExpressionStatement","src":"10136:12:49"}]}}]},"documentation":{"id":17266,"nodeType":"StructuredDocumentation","src":"8202:734:49","text":"@notice Consume the next 4 bytes from the buffer as an IEEE 754-2008 floating point number enclosed into an `int`.\n @dev Due to the lack of support for floating or fixed point arithmetic in the EVM, this method offsets all values\n by 9 decimal orders so as to get a fixed precision of 9 decimal positions, which should be OK for most `float32`\n use cases. In other words, the integer output of this method is 10^9 times the actual value. The input bytes are\n expected to follow the 64-bit base-2 format (a.k.a. `binary32`) in the IEEE 754-2008 standard.\n @param buffer An instance of `Buffer`.\n @return result The `int` value of the next 8 bytes in the buffer counting from the cursor position."},"id":17403,"implemented":true,"kind":"function","modifiers":[],"name":"readFloat32","nameLocation":"8949:11:49","nodeType":"FunctionDefinition","parameters":{"id":17270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17269,"mutability":"mutable","name":"buffer","nameLocation":"8975:6:49","nodeType":"VariableDeclaration","scope":17403,"src":"8961:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17268,"nodeType":"UserDefinedTypeName","pathNode":{"id":17267,"name":"Buffer","nameLocations":["8961:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"8961:6:49"},"referencedDeclaration":16790,"src":"8961:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"8960:22:49"},"returnParameters":{"id":17273,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17272,"mutability":"mutable","name":"result","nameLocation":"9020:6:49","nodeType":"VariableDeclaration","scope":17403,"src":"9016:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17271,"name":"int","nodeType":"ElementaryTypeName","src":"9016:3:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9015:12:49"},"scope":18657,"src":"8940:1221:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17540,"nodeType":"Block","src":"10999:1171:49","statements":[{"assignments":[17413],"declarations":[{"constant":false,"id":17413,"mutability":"mutable","name":"value","nameLocation":"11011:5:49","nodeType":"VariableDeclaration","scope":17540,"src":"11006:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17412,"name":"uint","nodeType":"ElementaryTypeName","src":"11006:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17417,"initialValue":{"arguments":[{"id":17415,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17407,"src":"11030:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17414,"name":"readUint64","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17835,"src":"11019:10:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint64)"}},"id":17416,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11019:18:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"11006:31:49"},{"assignments":[17419],"declarations":[{"constant":false,"id":17419,"mutability":"mutable","name":"sign","nameLocation":"11079:4:49","nodeType":"VariableDeclaration","scope":17540,"src":"11074:9:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17418,"name":"uint","nodeType":"ElementaryTypeName","src":"11074:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17423,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17420,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17413,"src":"11086:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307838303030303030303030303030303030","id":17421,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11094:18:49","typeDescriptions":{"typeIdentifier":"t_rational_9223372036854775808_by_1","typeString":"int_const 9223372036854775808"},"value":"0x8000000000000000"},"src":"11086:26:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"11074:38:49"},{"assignments":[17425],"declarations":[{"constant":false,"id":17425,"mutability":"mutable","name":"exponent","nameLocation":"11241:8:49","nodeType":"VariableDeclaration","scope":17540,"src":"11237:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17424,"name":"int","nodeType":"ElementaryTypeName","src":"11237:3:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":17437,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17428,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17413,"src":"11257:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307837666630303030303030303030303030","id":17429,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11265:18:49","typeDescriptions":{"typeIdentifier":"t_rational_9218868437227405312_by_1","typeString":"int_const 9218868437227405312"},"value":"0x7ff0000000000000"},"src":"11257:26:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17427,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11253:3:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17426,"name":"int","nodeType":"ElementaryTypeName","src":"11253:3:49","typeDescriptions":{}}},"id":17431,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11253:31:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3532","id":17432,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11288:2:49","typeDescriptions":{"typeIdentifier":"t_rational_52_by_1","typeString":"int_const 52"},"value":"52"},"src":"11253:37:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17434,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11252:39:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31303233","id":17435,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11294:4:49","typeDescriptions":{"typeIdentifier":"t_rational_1023_by_1","typeString":"int_const 1023"},"value":"1023"},"src":"11252:46:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"11237:61:49"},{"assignments":[17439],"declarations":[{"constant":false,"id":17439,"mutability":"mutable","name":"fraction","nameLocation":"11334:8:49","nodeType":"VariableDeclaration","scope":17540,"src":"11330:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17438,"name":"int","nodeType":"ElementaryTypeName","src":"11330:3:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":17446,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17444,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17442,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17413,"src":"11349:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303066666666666666666666666666","id":17443,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11357:18:49","typeDescriptions":{"typeIdentifier":"t_rational_4503599627370495_by_1","typeString":"int_const 4503599627370495"},"value":"0x000fffffffffffff"},"src":"11349:26:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17441,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11345:3:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17440,"name":"int","nodeType":"ElementaryTypeName","src":"11345:3:49","typeDescriptions":{}}},"id":17445,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11345:31:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"VariableDeclarationStatement","src":"11330:46:49"},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17447,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17425,"src":"11445:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17449,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"11457:5:49","subExpression":{"hexValue":"31303233","id":17448,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11458:4:49","typeDescriptions":{"typeIdentifier":"t_rational_1023_by_1","typeString":"int_const 1023"},"value":"1023"},"typeDescriptions":{"typeIdentifier":"t_rational_minus_1023_by_1","typeString":"int_const -1023"}},"src":"11445:17:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17456,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17425,"src":"11519:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31303234","id":17457,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11531:4:49","typeDescriptions":{"typeIdentifier":"t_rational_1024_by_1","typeString":"int_const 1024"},"value":"1024"},"src":"11519:16:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17477,"nodeType":"IfStatement","src":"11515:208:49","trueBody":{"id":17476,"nodeType":"Block","src":"11537:186:49","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"5769746e65744275666665722e72656164466c6f617436343a20","id":17464,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11599:28:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_e27e152ba6f409df83635474e0a4e498ab47d78b85d078a1e6a48e178626ecb5","typeString":"literal_string \"WitnetBuffer.readFloat64: \""},"value":"WitnetBuffer.readFloat64: "},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17467,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17465,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17419,"src":"11640:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":17466,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11648:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11640:9:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"","id":17469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"11665:5:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":17470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"11640:30:49","trueExpression":{"hexValue":"6e65676174697665","id":17468,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11652:10:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_5c5e2f1fbc734e42aa272c3420aeb7631dc1efac79a3bf6e1303c2b8c0ccc2e4","typeString":"literal_string \"negative\""},"value":"negative"},"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"hexValue":"20696e66696e697479","id":17471,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"11683:11:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_91f1a0a624b4b9daa319ca31429bf6584116647ceaf3a744bd0f4c2aad95b621","typeString":"literal_string \" infinity\""},"value":" infinity"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_e27e152ba6f409df83635474e0a4e498ab47d78b85d078a1e6a48e178626ecb5","typeString":"literal_string \"WitnetBuffer.readFloat64: \""},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_stringliteral_91f1a0a624b4b9daa319ca31429bf6584116647ceaf3a744bd0f4c2aad95b621","typeString":"literal_string \" infinity\""}],"expression":{"id":17462,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"11570:3:49","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":17463,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11574:12:49","memberName":"encodePacked","nodeType":"MemberAccess","src":"11570:16:49","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":17472,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11570:135:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":17461,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11563:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":17460,"name":"string","nodeType":"ElementaryTypeName","src":"11563:6:49","typeDescriptions":{}}},"id":17473,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11563:143:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":17459,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"11546:6:49","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":17474,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11546:169:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":17475,"nodeType":"ExpressionStatement","src":"11546:169:49"}]}},"id":17478,"nodeType":"IfStatement","src":"11441:282:49","trueBody":{"id":17455,"nodeType":"Block","src":"11464:45:49","statements":[{"expression":{"id":17453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17451,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17439,"src":"11473:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"hexValue":"30783130303030303030303030303030","id":17452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11485:16:49","typeDescriptions":{"typeIdentifier":"t_rational_4503599627370496_by_1","typeString":"int_const 4503599627370496"},"value":"0x10000000000000"},"src":"11473:28:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":17454,"nodeType":"ExpressionStatement","src":"11473:28:49"}]}},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17479,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17425,"src":"11789:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":17480,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11801:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"11789:13:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":17528,"nodeType":"Block","src":"11932:125:49","statements":[{"expression":{"id":17526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17505,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17410,"src":"11941:6:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17506,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17439,"src":"11961:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_1000000000000000_by_1","typeString":"int_const 1000000000000000"},"id":17509,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":17507,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11985:2:49","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3135","id":17508,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11991:2:49","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"15"},"src":"11985:8:49","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000_by_1","typeString":"int_const 1000000000000000"}}],"id":17510,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"11984:10:49","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000_by_1","typeString":"int_const 1000000000000000"}},"src":"11961:33:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":17514,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12012:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"id":17518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"12022:9:49","subExpression":{"id":17517,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17425,"src":"12023:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17516,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12017:4:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":17515,"name":"uint","nodeType":"ElementaryTypeName","src":"12017:4:49","typeDescriptions":{}}},"id":17519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12017:15:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12012:20:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17513,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"12008:3:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17512,"name":"int","nodeType":"ElementaryTypeName","src":"12008:3:49","typeDescriptions":{}}},"id":17521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12008:25:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11961:72:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17523,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11950:93:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3532","id":17524,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12047:2:49","typeDescriptions":{"typeIdentifier":"t_rational_52_by_1","typeString":"int_const 52"},"value":"52"},"src":"11950:99:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11941:108:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":17527,"nodeType":"ExpressionStatement","src":"11941:108:49"}]},"id":17529,"nodeType":"IfStatement","src":"11785:272:49","trueBody":{"id":17504,"nodeType":"Block","src":"11804:122:49","statements":[{"expression":{"id":17502,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17482,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17410,"src":"11813:6:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17498,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17496,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17490,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":17485,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11837:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"arguments":[{"id":17488,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17425,"src":"11847:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17487,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11842:4:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":17486,"name":"uint","nodeType":"ElementaryTypeName","src":"11842:4:49","typeDescriptions":{}}},"id":17489,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11842:14:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11837:19:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":17484,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11833:3:49","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":17483,"name":"int","nodeType":"ElementaryTypeName","src":"11833:3:49","typeDescriptions":{}}},"id":17491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11833:24:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_rational_1000000000000000_by_1","typeString":"int_const 1000000000000000"},"id":17494,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":17492,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11872:2:49","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"hexValue":"3135","id":17493,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11878:2:49","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"15"},"src":"11872:8:49","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000_by_1","typeString":"int_const 1000000000000000"}}],"id":17495,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"11871:10:49","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000_by_1","typeString":"int_const 1000000000000000"}},"src":"11833:48:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":17497,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17439,"src":"11895:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11833:70:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17499,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"11822:90:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3532","id":17500,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11916:2:49","typeDescriptions":{"typeIdentifier":"t_rational_52_by_1","typeString":"int_const 52"},"value":"52"},"src":"11822:96:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11813:105:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":17503,"nodeType":"ExpressionStatement","src":"11813:105:49"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17532,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17530,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17419,"src":"12125:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":17531,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12133:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12125:9:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17539,"nodeType":"IfStatement","src":"12121:44:49","trueBody":{"id":17538,"nodeType":"Block","src":"12136:29:49","statements":[{"expression":{"id":17536,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17533,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17410,"src":"12145:6:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"id":17535,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"12155:2:49","subExpression":{"hexValue":"31","id":17534,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12156:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"typeDescriptions":{"typeIdentifier":"t_rational_minus_1_by_1","typeString":"int_const -1"}},"src":"12145:12:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":17537,"nodeType":"ExpressionStatement","src":"12145:12:49"}]}}]},"documentation":{"id":17404,"nodeType":"StructuredDocumentation","src":"10167:737:49","text":"@notice Consume the next 8 bytes from the buffer as an IEEE 754-2008 floating point number enclosed into an `int`.\n @dev Due to the lack of support for floating or fixed point arithmetic in the EVM, this method offsets all values\n by 15 decimal orders so as to get a fixed precision of 15 decimal positions, which should be OK for most `float64`\n use cases. In other words, the integer output of this method is 10^15 times the actual value. The input bytes are\n expected to follow the 64-bit base-2 format (a.k.a. `binary64`) in the IEEE 754-2008 standard.\n @param buffer An instance of `Buffer`.\n @return result The `int` value of the next 8 bytes in the buffer counting from the cursor position."},"id":17541,"implemented":true,"kind":"function","modifiers":[],"name":"readFloat64","nameLocation":"10917:11:49","nodeType":"FunctionDefinition","parameters":{"id":17408,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17407,"mutability":"mutable","name":"buffer","nameLocation":"10943:6:49","nodeType":"VariableDeclaration","scope":17541,"src":"10929:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17406,"nodeType":"UserDefinedTypeName","pathNode":{"id":17405,"name":"Buffer","nameLocations":["10929:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"10929:6:49"},"referencedDeclaration":16790,"src":"10929:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"10928:22:49"},"returnParameters":{"id":17411,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17410,"mutability":"mutable","name":"result","nameLocation":"10988:6:49","nodeType":"VariableDeclaration","scope":17541,"src":"10984:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17409,"name":"int","nodeType":"ElementaryTypeName","src":"10984:3:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"10983:12:49"},"scope":18657,"src":"10908:1262:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17693,"nodeType":"Block","src":"12567:930:49","statements":[{"expression":{"id":17557,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17552,"name":"text","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17550,"src":"12574:4:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17555,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17547,"src":"12591:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":17554,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"12581:9:49","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (uint256) pure returns (bytes memory)"},"typeName":{"id":17553,"name":"bytes","nodeType":"ElementaryTypeName","src":"12585:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":17556,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12581:17:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"12574:24:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17558,"nodeType":"ExpressionStatement","src":"12574:24:49"},{"id":17692,"nodeType":"UncheckedBlock","src":"12605:887:49","statements":[{"body":{"id":17689,"nodeType":"Block","src":"12673:715:49","statements":[{"assignments":[17570],"declarations":[{"constant":false,"id":17570,"mutability":"mutable","name":"char","nameLocation":"12690:4:49","nodeType":"VariableDeclaration","scope":17689,"src":"12684:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17569,"name":"uint8","nodeType":"ElementaryTypeName","src":"12684:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":17574,"initialValue":{"arguments":[{"id":17572,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17545,"src":"12707:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17571,"name":"readUint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17727,"src":"12697:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint8_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":17573,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12697:17:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"12684:30:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17577,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17575,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17570,"src":"12729:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783830","id":17576,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12736:4:49","typeDescriptions":{"typeIdentifier":"t_rational_128_by_1","typeString":"int_const 128"},"value":"0x80"},"src":"12729:11:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":17578,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12744:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"12729:16:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17679,"nodeType":"IfStatement","src":"12725:617:49","trueBody":{"id":17678,"nodeType":"Block","src":"12747:595:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17582,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17580,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17570,"src":"12764:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30786530","id":17581,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12771:4:49","typeDescriptions":{"typeIdentifier":"t_rational_224_by_1","typeString":"int_const 224"},"value":"0xe0"},"src":"12764:11:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17604,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17570,"src":"12911:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30786630","id":17605,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12918:4:49","typeDescriptions":{"typeIdentifier":"t_rational_240_by_1","typeString":"int_const 240"},"value":"0xf0"},"src":"12911:11:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":17675,"nodeType":"Block","src":"13105:226:49","statements":[{"expression":{"id":17669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17637,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17570,"src":"13120:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17668,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17643,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17638,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17570,"src":"13128:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783066","id":17639,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13135:4:49","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0x0f"},"src":"13128:11:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":17641,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13127:13:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3138","id":17642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13144:2:49","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"src":"13127:19:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17648,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17645,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17545,"src":"13175:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17644,"name":"readUint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17727,"src":"13165:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint8_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":17646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13165:17:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783366","id":17647,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13185:4:49","typeDescriptions":{"typeIdentifier":"t_rational_63_by_1","typeString":"int_const 63"},"value":"0x3f"},"src":"13165:24:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":17649,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13164:26:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3132","id":17650,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13194:2:49","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"src":"13164:32:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"13127:69:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17654,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17545,"src":"13225:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17653,"name":"readUint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17727,"src":"13215:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint8_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":17655,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13215:17:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783366","id":17656,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13235:4:49","typeDescriptions":{"typeIdentifier":"t_rational_63_by_1","typeString":"int_const 63"},"value":"0x3f"},"src":"13215:24:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":17658,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13214:26:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"36","id":17659,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13244:1:49","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"13214:31:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"13127:118:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17663,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17545,"src":"13276:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17662,"name":"readUint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17727,"src":"13266:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint8_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":17664,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13266:17:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783366","id":17665,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13286:4:49","typeDescriptions":{"typeIdentifier":"t_rational_63_by_1","typeString":"int_const 63"},"value":"0x3f"},"src":"13266:24:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":17667,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13265:26:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"13127:164:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"13120:171:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":17670,"nodeType":"ExpressionStatement","src":"13120:171:49"},{"expression":{"id":17673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17671,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17547,"src":"13306:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"33","id":17672,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13316:1:49","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"13306:11:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":17674,"nodeType":"ExpressionStatement","src":"13306:11:49"}]},"id":17676,"nodeType":"IfStatement","src":"12907:424:49","trueBody":{"id":17636,"nodeType":"Block","src":"12924:175:49","statements":[{"expression":{"id":17630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17607,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17570,"src":"12939:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17622,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17613,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17610,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17608,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17570,"src":"12948:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783066","id":17609,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12955:4:49","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0x0f"},"src":"12948:11:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":17611,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12947:13:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"3132","id":17612,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12964:2:49","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"12"},"src":"12947:19:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17621,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17618,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17615,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17545,"src":"12995:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17614,"name":"readUint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17727,"src":"12985:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint8_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":17616,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12985:17:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783366","id":17617,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13005:4:49","typeDescriptions":{"typeIdentifier":"t_rational_63_by_1","typeString":"int_const 63"},"value":"0x3f"},"src":"12985:24:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":17619,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12984:26:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"36","id":17620,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13014:1:49","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"12984:31:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"12947:68:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17624,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17545,"src":"13044:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17623,"name":"readUint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17727,"src":"13034:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint8_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":17625,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13034:17:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783366","id":17626,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13054:4:49","typeDescriptions":{"typeIdentifier":"t_rational_63_by_1","typeString":"int_const 63"},"value":"0x3f"},"src":"13034:24:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":17628,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13033:26:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"12947:112:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"12939:120:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":17631,"nodeType":"ExpressionStatement","src":"12939:120:49"},{"expression":{"id":17634,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17632,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17547,"src":"13074:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"32","id":17633,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13084:1:49","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"13074:11:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":17635,"nodeType":"ExpressionStatement","src":"13074:11:49"}]}},"id":17677,"nodeType":"IfStatement","src":"12760:571:49","trueBody":{"id":17603,"nodeType":"Block","src":"12777:124:49","statements":[{"expression":{"id":17597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17583,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17570,"src":"12792:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17586,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17584,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17570,"src":"12800:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783166","id":17585,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12807:4:49","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"0x1f"},"src":"12800:11:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":17587,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12799:13:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"hexValue":"36","id":17588,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12816:1:49","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"src":"12799:18:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"|","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17591,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17545,"src":"12846:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17590,"name":"readUint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17727,"src":"12836:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint8_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":17592,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12836:17:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783366","id":17593,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12856:4:49","typeDescriptions":{"typeIdentifier":"t_rational_63_by_1","typeString":"int_const 63"},"value":"0x3f"},"src":"12836:24:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":17595,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12835:26:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"12799:62:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"12792:69:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":17598,"nodeType":"ExpressionStatement","src":"12792:69:49"},{"expression":{"id":17601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17599,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17547,"src":"12876:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"31","id":17600,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12886:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12876:11:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":17602,"nodeType":"ExpressionStatement","src":"12876:11:49"}]}}]}},{"expression":{"id":17687,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":17680,"name":"text","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17550,"src":"13352:4:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17682,"indexExpression":{"id":17681,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17560,"src":"13357:5:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"13352:11:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17685,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17570,"src":"13373:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":17684,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13366:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":17683,"name":"bytes1","nodeType":"ElementaryTypeName","src":"13366:6:49","typeDescriptions":{}}},"id":17686,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13366:12:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"13352:26:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":17688,"nodeType":"ExpressionStatement","src":"13352:26:49"}]},"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":17565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17563,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17560,"src":"12647:5:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":17564,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17547,"src":"12655:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"12647:14:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17690,"initializationExpression":{"assignments":[17560],"declarations":[{"constant":false,"id":17560,"mutability":"mutable","name":"index","nameLocation":"12636:5:49","nodeType":"VariableDeclaration","scope":17690,"src":"12629:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":17559,"name":"uint64","nodeType":"ElementaryTypeName","src":"12629:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":17562,"initialValue":{"hexValue":"30","id":17561,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12644:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"12629:16:49"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":17567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"12663:8:49","subExpression":{"id":17566,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17560,"src":"12663:5:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":17568,"nodeType":"ExpressionStatement","src":"12663:8:49"},"nodeType":"ForStatement","src":"12624:764:49"},{"AST":{"nativeSrc":"13445:40:49","nodeType":"YulBlock","src":"13445:40:49","statements":[{"expression":{"arguments":[{"name":"text","nativeSrc":"13463:4:49","nodeType":"YulIdentifier","src":"13463:4:49"},{"name":"length","nativeSrc":"13469:6:49","nodeType":"YulIdentifier","src":"13469:6:49"}],"functionName":{"name":"mstore","nativeSrc":"13456:6:49","nodeType":"YulIdentifier","src":"13456:6:49"},"nativeSrc":"13456:20:49","nodeType":"YulFunctionCall","src":"13456:20:49"},"nativeSrc":"13456:20:49","nodeType":"YulExpressionStatement","src":"13456:20:49"}]},"evmVersion":"paris","externalReferences":[{"declaration":17547,"isOffset":false,"isSlot":false,"src":"13469:6:49","valueSize":1},{"declaration":17550,"isOffset":false,"isSlot":false,"src":"13463:4:49","valueSize":1}],"id":17691,"nodeType":"InlineAssembly","src":"13436:49:49"}]}]},"documentation":{"id":17542,"nodeType":"StructuredDocumentation","src":"12294:68:49","text":"but it can be easily casted into a string with `string(result)`."},"id":17694,"implemented":true,"kind":"function","modifiers":[],"name":"readText","nameLocation":"12432:8:49","nodeType":"FunctionDefinition","parameters":{"id":17548,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17545,"mutability":"mutable","name":"buffer","nameLocation":"12476:6:49","nodeType":"VariableDeclaration","scope":17694,"src":"12449:33:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17544,"nodeType":"UserDefinedTypeName","pathNode":{"id":17543,"name":"WitnetBuffer.Buffer","nameLocations":["12449:12:49","12462:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"12449:19:49"},"referencedDeclaration":16790,"src":"12449:19:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":17547,"mutability":"mutable","name":"length","nameLocation":"12498:6:49","nodeType":"VariableDeclaration","scope":17694,"src":"12491:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":17546,"name":"uint64","nodeType":"ElementaryTypeName","src":"12491:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"12440:71:49"},"returnParameters":{"id":17551,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17550,"mutability":"mutable","name":"text","nameLocation":"12558:4:49","nodeType":"VariableDeclaration","scope":17694,"src":"12545:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17549,"name":"bytes","nodeType":"ElementaryTypeName","src":"12545:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"12544:19:49"},"scope":18657,"src":"12423:1074:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17726,"nodeType":"Block","src":"13873:173:49","statements":[{"assignments":[17711],"declarations":[{"constant":false,"id":17711,"mutability":"mutable","name":"data","nameLocation":"13893:4:49","nodeType":"VariableDeclaration","scope":17726,"src":"13880:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17710,"name":"bytes","nodeType":"ElementaryTypeName","src":"13880:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17714,"initialValue":{"expression":{"id":17712,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17698,"src":"13900:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17713,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13907:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"13900:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"13880:31:49"},{"assignments":[17716],"declarations":[{"constant":false,"id":17716,"mutability":"mutable","name":"offset","nameLocation":"13923:6:49","nodeType":"VariableDeclaration","scope":17726,"src":"13918:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17715,"name":"uint","nodeType":"ElementaryTypeName","src":"13918:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17719,"initialValue":{"expression":{"id":17717,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17698,"src":"13932:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17718,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13939:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"13932:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13918:27:49"},{"AST":{"nativeSrc":"13961:57:49","nodeType":"YulBlock","src":"13961:57:49","statements":[{"nativeSrc":"13970:41:49","nodeType":"YulAssignment","src":"13970:41:49","value":{"arguments":[{"arguments":[{"arguments":[{"name":"data","nativeSrc":"13993:4:49","nodeType":"YulIdentifier","src":"13993:4:49"},{"kind":"number","nativeSrc":"13999:1:49","nodeType":"YulLiteral","src":"13999:1:49","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"13989:3:49","nodeType":"YulIdentifier","src":"13989:3:49"},"nativeSrc":"13989:12:49","nodeType":"YulFunctionCall","src":"13989:12:49"},{"name":"offset","nativeSrc":"14003:6:49","nodeType":"YulIdentifier","src":"14003:6:49"}],"functionName":{"name":"add","nativeSrc":"13985:3:49","nodeType":"YulIdentifier","src":"13985:3:49"},"nativeSrc":"13985:25:49","nodeType":"YulFunctionCall","src":"13985:25:49"}],"functionName":{"name":"mload","nativeSrc":"13979:5:49","nodeType":"YulIdentifier","src":"13979:5:49"},"nativeSrc":"13979:32:49","nodeType":"YulFunctionCall","src":"13979:32:49"},"variableNames":[{"name":"value","nativeSrc":"13970:5:49","nodeType":"YulIdentifier","src":"13970:5:49"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":17711,"isOffset":false,"isSlot":false,"src":"13993:4:49","valueSize":1},{"declaration":17716,"isOffset":false,"isSlot":false,"src":"14003:6:49","valueSize":1},{"declaration":17708,"isOffset":false,"isSlot":false,"src":"13970:5:49","valueSize":1}],"id":17720,"nodeType":"InlineAssembly","src":"13952:66:49"},{"expression":{"id":17724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"14024:16:49","subExpression":{"expression":{"id":17721,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17698,"src":"14024:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17723,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14031:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"14024:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17725,"nodeType":"ExpressionStatement","src":"14024:16:49"}]},"documentation":{"id":17695,"nodeType":"StructuredDocumentation","src":"13503:224:49","text":"@notice Read and consume the next byte from the buffer as an `uint8`.\n @param buffer An instance of `Buffer`.\n @return value The `uint8` value of the next byte in the buffer counting from the cursor position."},"id":17727,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"expression":{"id":17701,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17698,"src":"13808:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17702,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13815:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"13808:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":17703,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17698,"src":"13823:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17704,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13830:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"13823:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13835:6:49","memberName":"length","nodeType":"MemberAccess","src":"13823:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":17706,"kind":"modifierInvocation","modifierName":{"id":17700,"name":"withinRange","nameLocations":["13796:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16808,"src":"13796:11:49"},"nodeType":"ModifierInvocation","src":"13796:46:49"}],"name":"readUint8","nameLocation":"13740:9:49","nodeType":"FunctionDefinition","parameters":{"id":17699,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17698,"mutability":"mutable","name":"buffer","nameLocation":"13764:6:49","nodeType":"VariableDeclaration","scope":17727,"src":"13750:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17697,"nodeType":"UserDefinedTypeName","pathNode":{"id":17696,"name":"Buffer","nameLocations":["13750:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"13750:6:49"},"referencedDeclaration":16790,"src":"13750:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"13749:22:49"},"returnParameters":{"id":17709,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17708,"mutability":"mutable","name":"value","nameLocation":"13863:5:49","nodeType":"VariableDeclaration","scope":17727,"src":"13857:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17707,"name":"uint8","nodeType":"ElementaryTypeName","src":"13857:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"13856:13:49"},"scope":18657,"src":"13731:315:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17762,"nodeType":"Block","src":"14436:175:49","statements":[{"assignments":[17746],"declarations":[{"constant":false,"id":17746,"mutability":"mutable","name":"data","nameLocation":"14456:4:49","nodeType":"VariableDeclaration","scope":17762,"src":"14443:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17745,"name":"bytes","nodeType":"ElementaryTypeName","src":"14443:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17749,"initialValue":{"expression":{"id":17747,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17731,"src":"14463:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17748,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14470:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"14463:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"14443:31:49"},{"assignments":[17751],"declarations":[{"constant":false,"id":17751,"mutability":"mutable","name":"offset","nameLocation":"14486:6:49","nodeType":"VariableDeclaration","scope":17762,"src":"14481:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17750,"name":"uint","nodeType":"ElementaryTypeName","src":"14481:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17754,"initialValue":{"expression":{"id":17752,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17731,"src":"14495:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17753,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14502:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"14495:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"14481:27:49"},{"AST":{"nativeSrc":"14524:57:49","nodeType":"YulBlock","src":"14524:57:49","statements":[{"nativeSrc":"14533:41:49","nodeType":"YulAssignment","src":"14533:41:49","value":{"arguments":[{"arguments":[{"arguments":[{"name":"data","nativeSrc":"14556:4:49","nodeType":"YulIdentifier","src":"14556:4:49"},{"kind":"number","nativeSrc":"14562:1:49","nodeType":"YulLiteral","src":"14562:1:49","type":"","value":"2"}],"functionName":{"name":"add","nativeSrc":"14552:3:49","nodeType":"YulIdentifier","src":"14552:3:49"},"nativeSrc":"14552:12:49","nodeType":"YulFunctionCall","src":"14552:12:49"},{"name":"offset","nativeSrc":"14566:6:49","nodeType":"YulIdentifier","src":"14566:6:49"}],"functionName":{"name":"add","nativeSrc":"14548:3:49","nodeType":"YulIdentifier","src":"14548:3:49"},"nativeSrc":"14548:25:49","nodeType":"YulFunctionCall","src":"14548:25:49"}],"functionName":{"name":"mload","nativeSrc":"14542:5:49","nodeType":"YulIdentifier","src":"14542:5:49"},"nativeSrc":"14542:32:49","nodeType":"YulFunctionCall","src":"14542:32:49"},"variableNames":[{"name":"value","nativeSrc":"14533:5:49","nodeType":"YulIdentifier","src":"14533:5:49"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":17746,"isOffset":false,"isSlot":false,"src":"14556:4:49","valueSize":1},{"declaration":17751,"isOffset":false,"isSlot":false,"src":"14566:6:49","valueSize":1},{"declaration":17743,"isOffset":false,"isSlot":false,"src":"14533:5:49","valueSize":1}],"id":17755,"nodeType":"InlineAssembly","src":"14515:66:49"},{"expression":{"id":17760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":17756,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17731,"src":"14587:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17758,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14594:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"14587:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":17759,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14604:1:49","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"14587:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17761,"nodeType":"ExpressionStatement","src":"14587:18:49"}]},"documentation":{"id":17728,"nodeType":"StructuredDocumentation","src":"14052:232:49","text":"@notice Read and consume the next 2 bytes from the buffer as an `uint16`.\n @param buffer An instance of `Buffer`.\n @return value The `uint16` value of the next 2 bytes in the buffer counting from the cursor position."},"id":17763,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17734,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17731,"src":"14366:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17735,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14373:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"14366:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":17736,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14382:1:49","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"14366:17:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":17738,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17731,"src":"14385:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17739,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14392:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"14385:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17740,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14397:6:49","memberName":"length","nodeType":"MemberAccess","src":"14385:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":17741,"kind":"modifierInvocation","modifierName":{"id":17733,"name":"withinRange","nameLocations":["14354:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16808,"src":"14354:11:49"},"nodeType":"ModifierInvocation","src":"14354:50:49"}],"name":"readUint16","nameLocation":"14297:10:49","nodeType":"FunctionDefinition","parameters":{"id":17732,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17731,"mutability":"mutable","name":"buffer","nameLocation":"14322:6:49","nodeType":"VariableDeclaration","scope":17763,"src":"14308:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17730,"nodeType":"UserDefinedTypeName","pathNode":{"id":17729,"name":"Buffer","nameLocations":["14308:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"14308:6:49"},"referencedDeclaration":16790,"src":"14308:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"14307:22:49"},"returnParameters":{"id":17744,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17743,"mutability":"mutable","name":"value","nameLocation":"14426:5:49","nodeType":"VariableDeclaration","scope":17763,"src":"14419:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":17742,"name":"uint16","nodeType":"ElementaryTypeName","src":"14419:6:49","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"14418:14:49"},"scope":18657,"src":"14288:323:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17798,"nodeType":"Block","src":"15001:175:49","statements":[{"assignments":[17782],"declarations":[{"constant":false,"id":17782,"mutability":"mutable","name":"data","nameLocation":"15021:4:49","nodeType":"VariableDeclaration","scope":17798,"src":"15008:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17781,"name":"bytes","nodeType":"ElementaryTypeName","src":"15008:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17785,"initialValue":{"expression":{"id":17783,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17767,"src":"15028:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17784,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15035:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"15028:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"15008:31:49"},{"assignments":[17787],"declarations":[{"constant":false,"id":17787,"mutability":"mutable","name":"offset","nameLocation":"15051:6:49","nodeType":"VariableDeclaration","scope":17798,"src":"15046:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17786,"name":"uint","nodeType":"ElementaryTypeName","src":"15046:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17790,"initialValue":{"expression":{"id":17788,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17767,"src":"15060:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17789,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15067:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"15060:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15046:27:49"},{"AST":{"nativeSrc":"15089:57:49","nodeType":"YulBlock","src":"15089:57:49","statements":[{"nativeSrc":"15098:41:49","nodeType":"YulAssignment","src":"15098:41:49","value":{"arguments":[{"arguments":[{"arguments":[{"name":"data","nativeSrc":"15121:4:49","nodeType":"YulIdentifier","src":"15121:4:49"},{"kind":"number","nativeSrc":"15127:1:49","nodeType":"YulLiteral","src":"15127:1:49","type":"","value":"4"}],"functionName":{"name":"add","nativeSrc":"15117:3:49","nodeType":"YulIdentifier","src":"15117:3:49"},"nativeSrc":"15117:12:49","nodeType":"YulFunctionCall","src":"15117:12:49"},{"name":"offset","nativeSrc":"15131:6:49","nodeType":"YulIdentifier","src":"15131:6:49"}],"functionName":{"name":"add","nativeSrc":"15113:3:49","nodeType":"YulIdentifier","src":"15113:3:49"},"nativeSrc":"15113:25:49","nodeType":"YulFunctionCall","src":"15113:25:49"}],"functionName":{"name":"mload","nativeSrc":"15107:5:49","nodeType":"YulIdentifier","src":"15107:5:49"},"nativeSrc":"15107:32:49","nodeType":"YulFunctionCall","src":"15107:32:49"},"variableNames":[{"name":"value","nativeSrc":"15098:5:49","nodeType":"YulIdentifier","src":"15098:5:49"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":17782,"isOffset":false,"isSlot":false,"src":"15121:4:49","valueSize":1},{"declaration":17787,"isOffset":false,"isSlot":false,"src":"15131:6:49","valueSize":1},{"declaration":17779,"isOffset":false,"isSlot":false,"src":"15098:5:49","valueSize":1}],"id":17791,"nodeType":"InlineAssembly","src":"15080:66:49"},{"expression":{"id":17796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":17792,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17767,"src":"15152:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17794,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"15159:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"15152:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":17795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15169:1:49","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"15152:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17797,"nodeType":"ExpressionStatement","src":"15152:18:49"}]},"documentation":{"id":17764,"nodeType":"StructuredDocumentation","src":"14617:232:49","text":"@notice Read and consume the next 4 bytes from the buffer as an `uint32`.\n @param buffer An instance of `Buffer`.\n @return value The `uint32` value of the next 4 bytes in the buffer counting from the cursor position."},"id":17799,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17773,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17770,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17767,"src":"14931:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17771,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14938:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"14931:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"34","id":17772,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14947:1:49","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"14931:17:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":17774,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17767,"src":"14950:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17775,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14957:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"14950:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17776,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14962:6:49","memberName":"length","nodeType":"MemberAccess","src":"14950:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":17777,"kind":"modifierInvocation","modifierName":{"id":17769,"name":"withinRange","nameLocations":["14919:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16808,"src":"14919:11:49"},"nodeType":"ModifierInvocation","src":"14919:50:49"}],"name":"readUint32","nameLocation":"14862:10:49","nodeType":"FunctionDefinition","parameters":{"id":17768,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17767,"mutability":"mutable","name":"buffer","nameLocation":"14887:6:49","nodeType":"VariableDeclaration","scope":17799,"src":"14873:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17766,"nodeType":"UserDefinedTypeName","pathNode":{"id":17765,"name":"Buffer","nameLocations":["14873:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"14873:6:49"},"referencedDeclaration":16790,"src":"14873:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"14872:22:49"},"returnParameters":{"id":17780,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17779,"mutability":"mutable","name":"value","nameLocation":"14991:5:49","nodeType":"VariableDeclaration","scope":17799,"src":"14984:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":17778,"name":"uint32","nodeType":"ElementaryTypeName","src":"14984:6:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"14983:14:49"},"scope":18657,"src":"14853:323:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17834,"nodeType":"Block","src":"15566:175:49","statements":[{"assignments":[17818],"declarations":[{"constant":false,"id":17818,"mutability":"mutable","name":"data","nameLocation":"15586:4:49","nodeType":"VariableDeclaration","scope":17834,"src":"15573:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17817,"name":"bytes","nodeType":"ElementaryTypeName","src":"15573:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17821,"initialValue":{"expression":{"id":17819,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17803,"src":"15593:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17820,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15600:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"15593:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"15573:31:49"},{"assignments":[17823],"declarations":[{"constant":false,"id":17823,"mutability":"mutable","name":"offset","nameLocation":"15616:6:49","nodeType":"VariableDeclaration","scope":17834,"src":"15611:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17822,"name":"uint","nodeType":"ElementaryTypeName","src":"15611:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17826,"initialValue":{"expression":{"id":17824,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17803,"src":"15625:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17825,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15632:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"15625:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15611:27:49"},{"AST":{"nativeSrc":"15654:57:49","nodeType":"YulBlock","src":"15654:57:49","statements":[{"nativeSrc":"15663:41:49","nodeType":"YulAssignment","src":"15663:41:49","value":{"arguments":[{"arguments":[{"arguments":[{"name":"data","nativeSrc":"15686:4:49","nodeType":"YulIdentifier","src":"15686:4:49"},{"kind":"number","nativeSrc":"15692:1:49","nodeType":"YulLiteral","src":"15692:1:49","type":"","value":"8"}],"functionName":{"name":"add","nativeSrc":"15682:3:49","nodeType":"YulIdentifier","src":"15682:3:49"},"nativeSrc":"15682:12:49","nodeType":"YulFunctionCall","src":"15682:12:49"},{"name":"offset","nativeSrc":"15696:6:49","nodeType":"YulIdentifier","src":"15696:6:49"}],"functionName":{"name":"add","nativeSrc":"15678:3:49","nodeType":"YulIdentifier","src":"15678:3:49"},"nativeSrc":"15678:25:49","nodeType":"YulFunctionCall","src":"15678:25:49"}],"functionName":{"name":"mload","nativeSrc":"15672:5:49","nodeType":"YulIdentifier","src":"15672:5:49"},"nativeSrc":"15672:32:49","nodeType":"YulFunctionCall","src":"15672:32:49"},"variableNames":[{"name":"value","nativeSrc":"15663:5:49","nodeType":"YulIdentifier","src":"15663:5:49"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":17818,"isOffset":false,"isSlot":false,"src":"15686:4:49","valueSize":1},{"declaration":17823,"isOffset":false,"isSlot":false,"src":"15696:6:49","valueSize":1},{"declaration":17815,"isOffset":false,"isSlot":false,"src":"15663:5:49","valueSize":1}],"id":17827,"nodeType":"InlineAssembly","src":"15645:66:49"},{"expression":{"id":17832,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":17828,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17803,"src":"15717:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17830,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"15724:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"15717:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":17831,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15734:1:49","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"15717:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17833,"nodeType":"ExpressionStatement","src":"15717:18:49"}]},"documentation":{"id":17800,"nodeType":"StructuredDocumentation","src":"15182:232:49","text":"@notice Read and consume the next 8 bytes from the buffer as an `uint64`.\n @param buffer An instance of `Buffer`.\n @return value The `uint64` value of the next 8 bytes in the buffer counting from the cursor position."},"id":17835,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17806,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17803,"src":"15496:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17807,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15503:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"15496:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"38","id":17808,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15512:1:49","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"src":"15496:17:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":17810,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17803,"src":"15515:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17811,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15522:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"15515:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17812,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15527:6:49","memberName":"length","nodeType":"MemberAccess","src":"15515:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":17813,"kind":"modifierInvocation","modifierName":{"id":17805,"name":"withinRange","nameLocations":["15484:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16808,"src":"15484:11:49"},"nodeType":"ModifierInvocation","src":"15484:50:49"}],"name":"readUint64","nameLocation":"15427:10:49","nodeType":"FunctionDefinition","parameters":{"id":17804,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17803,"mutability":"mutable","name":"buffer","nameLocation":"15452:6:49","nodeType":"VariableDeclaration","scope":17835,"src":"15438:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17802,"nodeType":"UserDefinedTypeName","pathNode":{"id":17801,"name":"Buffer","nameLocations":["15438:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"15438:6:49"},"referencedDeclaration":16790,"src":"15438:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"15437:22:49"},"returnParameters":{"id":17816,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17815,"mutability":"mutable","name":"value","nameLocation":"15556:5:49","nodeType":"VariableDeclaration","scope":17835,"src":"15549:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":17814,"name":"uint64","nodeType":"ElementaryTypeName","src":"15549:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"15548:14:49"},"scope":18657,"src":"15418:323:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17870,"nodeType":"Block","src":"16138:177:49","statements":[{"assignments":[17854],"declarations":[{"constant":false,"id":17854,"mutability":"mutable","name":"data","nameLocation":"16158:4:49","nodeType":"VariableDeclaration","scope":17870,"src":"16145:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17853,"name":"bytes","nodeType":"ElementaryTypeName","src":"16145:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17857,"initialValue":{"expression":{"id":17855,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17839,"src":"16165:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17856,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16172:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"16165:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"16145:31:49"},{"assignments":[17859],"declarations":[{"constant":false,"id":17859,"mutability":"mutable","name":"offset","nameLocation":"16188:6:49","nodeType":"VariableDeclaration","scope":17870,"src":"16183:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17858,"name":"uint","nodeType":"ElementaryTypeName","src":"16183:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17862,"initialValue":{"expression":{"id":17860,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17839,"src":"16197:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17861,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16204:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"16197:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16183:27:49"},{"AST":{"nativeSrc":"16226:58:49","nodeType":"YulBlock","src":"16226:58:49","statements":[{"nativeSrc":"16235:42:49","nodeType":"YulAssignment","src":"16235:42:49","value":{"arguments":[{"arguments":[{"arguments":[{"name":"data","nativeSrc":"16258:4:49","nodeType":"YulIdentifier","src":"16258:4:49"},{"kind":"number","nativeSrc":"16264:2:49","nodeType":"YulLiteral","src":"16264:2:49","type":"","value":"16"}],"functionName":{"name":"add","nativeSrc":"16254:3:49","nodeType":"YulIdentifier","src":"16254:3:49"},"nativeSrc":"16254:13:49","nodeType":"YulFunctionCall","src":"16254:13:49"},{"name":"offset","nativeSrc":"16269:6:49","nodeType":"YulIdentifier","src":"16269:6:49"}],"functionName":{"name":"add","nativeSrc":"16250:3:49","nodeType":"YulIdentifier","src":"16250:3:49"},"nativeSrc":"16250:26:49","nodeType":"YulFunctionCall","src":"16250:26:49"}],"functionName":{"name":"mload","nativeSrc":"16244:5:49","nodeType":"YulIdentifier","src":"16244:5:49"},"nativeSrc":"16244:33:49","nodeType":"YulFunctionCall","src":"16244:33:49"},"variableNames":[{"name":"value","nativeSrc":"16235:5:49","nodeType":"YulIdentifier","src":"16235:5:49"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":17854,"isOffset":false,"isSlot":false,"src":"16258:4:49","valueSize":1},{"declaration":17859,"isOffset":false,"isSlot":false,"src":"16269:6:49","valueSize":1},{"declaration":17851,"isOffset":false,"isSlot":false,"src":"16235:5:49","valueSize":1}],"id":17863,"nodeType":"InlineAssembly","src":"16217:67:49"},{"expression":{"id":17868,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":17864,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17839,"src":"16290:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17866,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16297:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"16290:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":17867,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16307:2:49","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"16290:19:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17869,"nodeType":"ExpressionStatement","src":"16290:19:49"}]},"documentation":{"id":17836,"nodeType":"StructuredDocumentation","src":"15747:236:49","text":"@notice Read and consume the next 16 bytes from the buffer as an `uint128`.\n @param buffer An instance of `Buffer`.\n @return value The `uint128` value of the next 16 bytes in the buffer counting from the cursor position."},"id":17871,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17845,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17842,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17839,"src":"16066:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17843,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16073:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"16066:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3136","id":17844,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16082:2:49","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"16066:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":17846,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17839,"src":"16086:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17847,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16093:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"16086:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16098:6:49","memberName":"length","nodeType":"MemberAccess","src":"16086:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":17849,"kind":"modifierInvocation","modifierName":{"id":17841,"name":"withinRange","nameLocations":["16054:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16808,"src":"16054:11:49"},"nodeType":"ModifierInvocation","src":"16054:51:49"}],"name":"readUint128","nameLocation":"15996:11:49","nodeType":"FunctionDefinition","parameters":{"id":17840,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17839,"mutability":"mutable","name":"buffer","nameLocation":"16022:6:49","nodeType":"VariableDeclaration","scope":17871,"src":"16008:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17838,"nodeType":"UserDefinedTypeName","pathNode":{"id":17837,"name":"Buffer","nameLocations":["16008:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"16008:6:49"},"referencedDeclaration":16790,"src":"16008:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"16007:22:49"},"returnParameters":{"id":17852,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17851,"mutability":"mutable","name":"value","nameLocation":"16128:5:49","nodeType":"VariableDeclaration","scope":17871,"src":"16120:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":17850,"name":"uint128","nodeType":"ElementaryTypeName","src":"16120:7:49","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"16119:15:49"},"scope":18657,"src":"15987:328:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17906,"nodeType":"Block","src":"16712:177:49","statements":[{"assignments":[17890],"declarations":[{"constant":false,"id":17890,"mutability":"mutable","name":"data","nameLocation":"16732:4:49","nodeType":"VariableDeclaration","scope":17906,"src":"16719:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17889,"name":"bytes","nodeType":"ElementaryTypeName","src":"16719:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17893,"initialValue":{"expression":{"id":17891,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17875,"src":"16739:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17892,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16746:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"16739:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"16719:31:49"},{"assignments":[17895],"declarations":[{"constant":false,"id":17895,"mutability":"mutable","name":"offset","nameLocation":"16762:6:49","nodeType":"VariableDeclaration","scope":17906,"src":"16757:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17894,"name":"uint","nodeType":"ElementaryTypeName","src":"16757:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17898,"initialValue":{"expression":{"id":17896,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17875,"src":"16771:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17897,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16778:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"16771:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"16757:27:49"},{"AST":{"nativeSrc":"16800:58:49","nodeType":"YulBlock","src":"16800:58:49","statements":[{"nativeSrc":"16809:42:49","nodeType":"YulAssignment","src":"16809:42:49","value":{"arguments":[{"arguments":[{"arguments":[{"name":"data","nativeSrc":"16832:4:49","nodeType":"YulIdentifier","src":"16832:4:49"},{"kind":"number","nativeSrc":"16838:2:49","nodeType":"YulLiteral","src":"16838:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16828:3:49","nodeType":"YulIdentifier","src":"16828:3:49"},"nativeSrc":"16828:13:49","nodeType":"YulFunctionCall","src":"16828:13:49"},{"name":"offset","nativeSrc":"16843:6:49","nodeType":"YulIdentifier","src":"16843:6:49"}],"functionName":{"name":"add","nativeSrc":"16824:3:49","nodeType":"YulIdentifier","src":"16824:3:49"},"nativeSrc":"16824:26:49","nodeType":"YulFunctionCall","src":"16824:26:49"}],"functionName":{"name":"mload","nativeSrc":"16818:5:49","nodeType":"YulIdentifier","src":"16818:5:49"},"nativeSrc":"16818:33:49","nodeType":"YulFunctionCall","src":"16818:33:49"},"variableNames":[{"name":"value","nativeSrc":"16809:5:49","nodeType":"YulIdentifier","src":"16809:5:49"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":17890,"isOffset":false,"isSlot":false,"src":"16832:4:49","valueSize":1},{"declaration":17895,"isOffset":false,"isSlot":false,"src":"16843:6:49","valueSize":1},{"declaration":17887,"isOffset":false,"isSlot":false,"src":"16809:5:49","valueSize":1}],"id":17899,"nodeType":"InlineAssembly","src":"16791:67:49"},{"expression":{"id":17904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":17900,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17875,"src":"16864:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17902,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16871:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"16864:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":17903,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16881:2:49","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"16864:19:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17905,"nodeType":"ExpressionStatement","src":"16864:19:49"}]},"documentation":{"id":17872,"nodeType":"StructuredDocumentation","src":"16321:236:49","text":"@notice Read and consume the next 32 bytes from the buffer as an `uint256`.\n @param buffer An instance of `Buffer`.\n @return value The `uint256` value of the next 32 bytes in the buffer counting from the cursor position."},"id":17907,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17881,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17878,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17875,"src":"16640:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17879,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16647:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"16640:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3332","id":17880,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16656:2:49","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"16640:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":17882,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17875,"src":"16660:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17883,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16667:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"16660:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17884,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16672:6:49","memberName":"length","nodeType":"MemberAccess","src":"16660:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":17885,"kind":"modifierInvocation","modifierName":{"id":17877,"name":"withinRange","nameLocations":["16628:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16808,"src":"16628:11:49"},"nodeType":"ModifierInvocation","src":"16628:51:49"}],"name":"readUint256","nameLocation":"16570:11:49","nodeType":"FunctionDefinition","parameters":{"id":17876,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17875,"mutability":"mutable","name":"buffer","nameLocation":"16596:6:49","nodeType":"VariableDeclaration","scope":17907,"src":"16582:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17874,"nodeType":"UserDefinedTypeName","pathNode":{"id":17873,"name":"Buffer","nameLocations":["16582:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"16582:6:49"},"referencedDeclaration":16790,"src":"16582:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"16581:22:49"},"returnParameters":{"id":17888,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17887,"mutability":"mutable","name":"value","nameLocation":"16702:5:49","nodeType":"VariableDeclaration","scope":17907,"src":"16694:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17886,"name":"uint256","nodeType":"ElementaryTypeName","src":"16694:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16693:15:49"},"scope":18657,"src":"16561:328:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18024,"nodeType":"Block","src":"17227:593:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17915,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17910,"src":"17238:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17244:6:49","memberName":"length","nodeType":"MemberAccess","src":"17238:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"33","id":17917,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17253:1:49","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"17238:16:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17922,"nodeType":"IfStatement","src":"17234:47:49","trueBody":{"id":17921,"nodeType":"Block","src":"17256:25:49","statements":[{"expression":{"hexValue":"30","id":17919,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17272:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":17914,"id":17920,"nodeType":"Return","src":"17265:8:49"}]}},{"id":18023,"nodeType":"UncheckedBlock","src":"17287:528:49","statements":[{"assignments":[17924],"declarations":[{"constant":false,"id":17924,"mutability":"mutable","name":"ix","nameLocation":"17311:2:49","nodeType":"VariableDeclaration","scope":18023,"src":"17306:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17923,"name":"uint","nodeType":"ElementaryTypeName","src":"17306:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17926,"initialValue":{"hexValue":"30","id":17925,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17316:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17306:11:49"},{"assignments":[17928],"declarations":[{"constant":false,"id":17928,"mutability":"mutable","name":"length","nameLocation":"17332:6:49","nodeType":"VariableDeclaration","scope":18023,"src":"17327:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17927,"name":"uint","nodeType":"ElementaryTypeName","src":"17327:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17933,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17929,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17910,"src":"17341:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17347:6:49","memberName":"length","nodeType":"MemberAccess","src":"17341:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"32","id":17931,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17356:1:49","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"17341:16:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"17327:30:49"},{"body":{"id":18021,"nodeType":"Block","src":"17388:420:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17966,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17955,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":17944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":17937,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17910,"src":"17415:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17939,"indexExpression":{"id":17938,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17924,"src":"17421:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17415:9:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"5c","id":17942,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17435:4:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""}],"id":17941,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17428:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":17940,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17428:6:49","typeDescriptions":{}}},"id":17943,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17428:12:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"17415:25:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":17954,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":17945,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17910,"src":"17457:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17949,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17946,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17924,"src":"17463:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":17947,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17468:1:49","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"17463:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17457:13:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"5c","id":17952,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17481:4:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""}],"id":17951,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17474:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":17950,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17474:6:49","typeDescriptions":{}}},"id":17953,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17474:12:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"17457:29:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17415:71:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":17965,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":17956,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17910,"src":"17503:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17960,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17959,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17957,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17924,"src":"17509:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":17958,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17514:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17509:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17503:13:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"arguments":[{"hexValue":"30","id":17963,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17527:3:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""}],"id":17962,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17520:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":17961,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17520:6:49","typeDescriptions":{}}},"id":17964,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17520:11:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"17503:28:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17415:116:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":17976,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":17967,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17910,"src":"17548:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17971,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17968,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17924,"src":"17554:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":17969,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17559:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17554:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17548:13:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[{"hexValue":"39","id":17974,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17572:3:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_d2f8f61201b2b11a78d6e866abc9c3db2ae8631fa656bfe5cb53668255367afb","typeString":"literal_string \"9\""},"value":"9"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d2f8f61201b2b11a78d6e866abc9c3db2ae8631fa656bfe5cb53668255367afb","typeString":"literal_string \"9\""}],"id":17973,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17565:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":17972,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17565:6:49","typeDescriptions":{}}},"id":17975,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17565:11:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"17548:28:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"17415:161:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":18019,"nodeType":"Block","src":"17769:30:49","statements":[{"expression":{"id":18017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17782:5:49","subExpression":{"id":18016,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17924,"src":"17782:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18018,"nodeType":"ExpressionStatement","src":"17782:5:49"}]},"id":18020,"nodeType":"IfStatement","src":"17399:400:49","trueBody":{"id":18015,"nodeType":"Block","src":"17588:175:49","statements":[{"assignments":[17979],"declarations":[{"constant":false,"id":17979,"mutability":"mutable","name":"ax","nameLocation":"17607:2:49","nodeType":"VariableDeclaration","scope":18015,"src":"17601:8:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17978,"name":"uint8","nodeType":"ElementaryTypeName","src":"17601:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":18001,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":17984,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17910,"src":"17624:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17988,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17987,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17985,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17924,"src":"17630:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":17986,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17635:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17630:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"17624:13:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":17983,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17618:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":17982,"name":"uint8","nodeType":"ElementaryTypeName","src":"17618:5:49","typeDescriptions":{}}},"id":17989,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17618:20:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[{"hexValue":"30","id":17994,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"17654:3:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""}],"id":17993,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17647:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":17992,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17647:6:49","typeDescriptions":{}}},"id":17995,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17647:11:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":17991,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17641:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":17990,"name":"uint8","nodeType":"ElementaryTypeName","src":"17641:5:49","typeDescriptions":{}}},"id":17996,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17641:18:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"17618:41:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":17998,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17662:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"17618:45:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":17981,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"17612:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":17980,"name":"uint8","nodeType":"ElementaryTypeName","src":"17612:5:49","typeDescriptions":{}}},"id":18000,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17612:52:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"17601:63:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18004,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18002,"name":"ax","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17979,"src":"17681:2:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":18003,"name":"count","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17913,"src":"17686:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"17681:10:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18010,"nodeType":"IfStatement","src":"17677:55:49","trueBody":{"id":18009,"nodeType":"Block","src":"17693:39:49","statements":[{"expression":{"id":18007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18005,"name":"count","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17913,"src":"17708:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":18006,"name":"ax","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17979,"src":"17716:2:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"17708:10:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":18008,"nodeType":"ExpressionStatement","src":"17708:10:49"}]}},{"expression":{"id":18013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18011,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17924,"src":"17744:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"33","id":18012,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17750:1:49","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"17744:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18014,"nodeType":"ExpressionStatement","src":"17744:7:49"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17934,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17924,"src":"17373:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":17935,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17928,"src":"17378:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17373:11:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18022,"isSimpleCounterLoop":false,"nodeType":"ForStatement","src":"17366:442:49"}]}]},"documentation":{"id":17908,"nodeType":"StructuredDocumentation","src":"16895:238:49","text":"@notice Count number of required parameters for given bytes arrays\n @dev Wildcard format: \"\\#\\\", with # in [\"0\"..\"9\"].\n @param input Bytes array containing strings.\n @param count Highest wildcard index found, plus 1."},"id":18025,"implemented":true,"kind":"function","modifiers":[],"name":"argsCountOf","nameLocation":"17146:11:49","nodeType":"FunctionDefinition","parameters":{"id":17911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17910,"mutability":"mutable","name":"input","nameLocation":"17171:5:49","nodeType":"VariableDeclaration","scope":18025,"src":"17158:18:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17909,"name":"bytes","nodeType":"ElementaryTypeName","src":"17158:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"17157:20:49"},"returnParameters":{"id":17914,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17913,"mutability":"mutable","name":"count","nameLocation":"17217:5:49","nodeType":"VariableDeclaration","scope":18025,"src":"17211:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17912,"name":"uint8","nodeType":"ElementaryTypeName","src":"17211:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"17210:13:49"},"scope":18657,"src":"17137:683:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18271,"nodeType":"Block","src":"18348:2340:49","statements":[{"assignments":[18039],"declarations":[{"constant":false,"id":18039,"mutability":"mutable","name":"ix","nameLocation":"18360:2:49","nodeType":"VariableDeclaration","scope":18271,"src":"18355:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18038,"name":"uint","nodeType":"ElementaryTypeName","src":"18355:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18041,"initialValue":{"hexValue":"30","id":18040,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18365:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"18355:11:49"},{"assignments":[18043],"declarations":[{"constant":false,"id":18043,"mutability":"mutable","name":"lix","nameLocation":"18373:3:49","nodeType":"VariableDeclaration","scope":18271,"src":"18368:8:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18042,"name":"uint","nodeType":"ElementaryTypeName","src":"18368:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18045,"initialValue":{"hexValue":"30","id":18044,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18379:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"18368:12:49"},{"assignments":[18047],"declarations":[{"constant":false,"id":18047,"mutability":"mutable","name":"inputLength","nameLocation":"18392:11:49","nodeType":"VariableDeclaration","scope":18271,"src":"18387:16:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18046,"name":"uint","nodeType":"ElementaryTypeName","src":"18387:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18048,"nodeType":"VariableDeclarationStatement","src":"18387:16:49"},{"assignments":[18050],"declarations":[{"constant":false,"id":18050,"mutability":"mutable","name":"inputPointer","nameLocation":"18415:12:49","nodeType":"VariableDeclaration","scope":18271,"src":"18410:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18049,"name":"uint","nodeType":"ElementaryTypeName","src":"18410:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18051,"nodeType":"VariableDeclarationStatement","src":"18410:17:49"},{"assignments":[18053],"declarations":[{"constant":false,"id":18053,"mutability":"mutable","name":"outputLength","nameLocation":"18439:12:49","nodeType":"VariableDeclaration","scope":18271,"src":"18434:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18052,"name":"uint","nodeType":"ElementaryTypeName","src":"18434:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18054,"nodeType":"VariableDeclarationStatement","src":"18434:17:49"},{"assignments":[18056],"declarations":[{"constant":false,"id":18056,"mutability":"mutable","name":"outputPointer","nameLocation":"18463:13:49","nodeType":"VariableDeclaration","scope":18271,"src":"18458:18:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18055,"name":"uint","nodeType":"ElementaryTypeName","src":"18458:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18057,"nodeType":"VariableDeclarationStatement","src":"18458:18:49"},{"assignments":[18059],"declarations":[{"constant":false,"id":18059,"mutability":"mutable","name":"source","nameLocation":"18492:6:49","nodeType":"VariableDeclaration","scope":18271,"src":"18487:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18058,"name":"uint","nodeType":"ElementaryTypeName","src":"18487:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18060,"nodeType":"VariableDeclarationStatement","src":"18487:11:49"},{"assignments":[18062],"declarations":[{"constant":false,"id":18062,"mutability":"mutable","name":"sourceLength","nameLocation":"18510:12:49","nodeType":"VariableDeclaration","scope":18271,"src":"18505:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18061,"name":"uint","nodeType":"ElementaryTypeName","src":"18505:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18063,"nodeType":"VariableDeclarationStatement","src":"18505:17:49"},{"assignments":[18065],"declarations":[{"constant":false,"id":18065,"mutability":"mutable","name":"sourcePointer","nameLocation":"18534:13:49","nodeType":"VariableDeclaration","scope":18271,"src":"18529:18:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18064,"name":"uint","nodeType":"ElementaryTypeName","src":"18529:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18066,"nodeType":"VariableDeclarationStatement","src":"18529:18:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18067,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18028,"src":"18560:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18566:6:49","memberName":"length","nodeType":"MemberAccess","src":"18560:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"33","id":18069,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18575:1:49","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"18560:16:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18076,"nodeType":"IfStatement","src":"18556:56:49","trueBody":{"id":18075,"nodeType":"Block","src":"18578:34:49","statements":[{"expression":{"components":[{"id":18071,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18028,"src":"18595:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":18072,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18602:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":18073,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"18594:10:49","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_rational_0_by_1_$","typeString":"tuple(bytes memory,int_const 0)"}},"functionReturnParameters":18037,"id":18074,"nodeType":"Return","src":"18587:17:49"}]}},{"AST":{"nativeSrc":"18633:225:49","nodeType":"YulBlock","src":"18633:225:49","statements":[{"nativeSrc":"18679:30:49","nodeType":"YulAssignment","src":"18679:30:49","value":{"arguments":[{"name":"input","nativeSrc":"18699:5:49","nodeType":"YulIdentifier","src":"18699:5:49"},{"kind":"number","nativeSrc":"18706:2:49","nodeType":"YulLiteral","src":"18706:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18695:3:49","nodeType":"YulIdentifier","src":"18695:3:49"},"nativeSrc":"18695:14:49","nodeType":"YulFunctionCall","src":"18695:14:49"},"variableNames":[{"name":"inputPointer","nativeSrc":"18679:12:49","nodeType":"YulIdentifier","src":"18679:12:49"}]},{"nativeSrc":"18752:21:49","nodeType":"YulAssignment","src":"18752:21:49","value":{"arguments":[{"kind":"number","nativeSrc":"18768:4:49","nodeType":"YulLiteral","src":"18768:4:49","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"18762:5:49","nodeType":"YulIdentifier","src":"18762:5:49"},"nativeSrc":"18762:11:49","nodeType":"YulFunctionCall","src":"18762:11:49"},"variableNames":[{"name":"output","nativeSrc":"18752:6:49","nodeType":"YulIdentifier","src":"18752:6:49"}]},{"nativeSrc":"18819:32:49","nodeType":"YulAssignment","src":"18819:32:49","value":{"arguments":[{"name":"output","nativeSrc":"18840:6:49","nodeType":"YulIdentifier","src":"18840:6:49"},{"kind":"number","nativeSrc":"18848:2:49","nodeType":"YulLiteral","src":"18848:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18836:3:49","nodeType":"YulIdentifier","src":"18836:3:49"},"nativeSrc":"18836:15:49","nodeType":"YulFunctionCall","src":"18836:15:49"},"variableNames":[{"name":"outputPointer","nativeSrc":"18819:13:49","nodeType":"YulIdentifier","src":"18819:13:49"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":18028,"isOffset":false,"isSlot":false,"src":"18699:5:49","valueSize":1},{"declaration":18050,"isOffset":false,"isSlot":false,"src":"18679:12:49","valueSize":1},{"declaration":18034,"isOffset":false,"isSlot":false,"src":"18752:6:49","valueSize":1},{"declaration":18034,"isOffset":false,"isSlot":false,"src":"18840:6:49","valueSize":1},{"declaration":18056,"isOffset":false,"isSlot":false,"src":"18819:13:49","valueSize":1}],"id":18077,"nodeType":"InlineAssembly","src":"18624:234:49"},{"id":18239,"nodeType":"UncheckedBlock","src":"18875:1360:49","statements":[{"assignments":[18079],"declarations":[{"constant":false,"id":18079,"mutability":"mutable","name":"length","nameLocation":"18899:6:49","nodeType":"VariableDeclaration","scope":18239,"src":"18894:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18078,"name":"uint","nodeType":"ElementaryTypeName","src":"18894:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18084,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18080,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18028,"src":"18908:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18914:6:49","memberName":"length","nodeType":"MemberAccess","src":"18908:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"32","id":18082,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18923:1:49","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"18908:16:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"18894:30:49"},{"body":{"id":18232,"nodeType":"Block","src":"18955:1243:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18117,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18106,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":18095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":18088,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18028,"src":"18982:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18090,"indexExpression":{"id":18089,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18039,"src":"18988:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"18982:9:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"5c","id":18093,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"19002:4:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""}],"id":18092,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18995:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":18091,"name":"bytes1","nodeType":"ElementaryTypeName","src":"18995:6:49","typeDescriptions":{}}},"id":18094,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18995:12:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"18982:25:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":18105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":18096,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18028,"src":"19024:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18100,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18097,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18039,"src":"19030:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":18098,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19035:1:49","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"19030:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19024:13:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"5c","id":18103,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"19048:4:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""}],"id":18102,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19041:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":18101,"name":"bytes1","nodeType":"ElementaryTypeName","src":"19041:6:49","typeDescriptions":{}}},"id":18104,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19041:12:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"19024:29:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"18982:71:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":18116,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":18107,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18028,"src":"19070:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18111,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18108,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18039,"src":"19076:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":18109,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19081:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"19076:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19070:13:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"arguments":[{"hexValue":"30","id":18114,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"19094:3:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""}],"id":18113,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19087:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":18112,"name":"bytes1","nodeType":"ElementaryTypeName","src":"19087:6:49","typeDescriptions":{}}},"id":18115,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19087:11:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"19070:28:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"18982:116:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":18127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":18118,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18028,"src":"19115:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18122,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18121,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18119,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18039,"src":"19121:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":18120,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19126:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"19121:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19115:13:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[{"hexValue":"39","id":18125,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"19139:3:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_d2f8f61201b2b11a78d6e866abc9c3db2ae8631fa656bfe5cb53668255367afb","typeString":"literal_string \"9\""},"value":"9"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d2f8f61201b2b11a78d6e866abc9c3db2ae8631fa656bfe5cb53668255367afb","typeString":"literal_string \"9\""}],"id":18124,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19132:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":18123,"name":"bytes1","nodeType":"ElementaryTypeName","src":"19132:6:49","typeDescriptions":{}}},"id":18126,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19132:11:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"19115:28:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"18982:161:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":18230,"nodeType":"Block","src":"20159:30:49","statements":[{"expression":{"id":18228,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"20172:5:49","subExpression":{"id":18227,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18039,"src":"20172:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18229,"nodeType":"ExpressionStatement","src":"20172:5:49"}]},"id":18231,"nodeType":"IfStatement","src":"18966:1223:49","trueBody":{"id":18226,"nodeType":"Block","src":"19155:998:49","statements":[{"expression":{"id":18134,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18129,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18047,"src":"19168:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18132,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18130,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18039,"src":"19183:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18131,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18043,"src":"19188:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19183:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18133,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"19182:10:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19168:24:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18135,"nodeType":"ExpressionStatement","src":"19168:24:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18138,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18136,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18039,"src":"19209:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":18137,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18043,"src":"19214:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19209:8:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":18160,"nodeType":"Block","src":"19451:46:49","statements":[{"expression":{"id":18158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18156,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18050,"src":"19466:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"33","id":18157,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19482:1:49","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"19466:17:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18159,"nodeType":"ExpressionStatement","src":"19466:17:49"}]},"id":18161,"nodeType":"IfStatement","src":"19205:292:49","trueBody":{"id":18155,"nodeType":"Block","src":"19219:226:49","statements":[{"expression":{"arguments":[{"id":18140,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18056,"src":"19257:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18141,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18050,"src":"19287:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18142,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18047,"src":"19316:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18139,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18656,"src":"19234:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":18143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19234:108:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18144,"nodeType":"ExpressionStatement","src":"19234:108:49"},{"expression":{"id":18149,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18145,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18050,"src":"19357:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18148,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18146,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18047,"src":"19373:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"33","id":18147,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19387:1:49","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"19373:15:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19357:31:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18150,"nodeType":"ExpressionStatement","src":"19357:31:49"},{"expression":{"id":18153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18151,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18056,"src":"19403:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":18152,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18047,"src":"19420:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19403:28:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18154,"nodeType":"ExpressionStatement","src":"19403:28:49"}]}},{"assignments":[18163],"declarations":[{"constant":false,"id":18163,"mutability":"mutable","name":"ax","nameLocation":"19514:2:49","nodeType":"VariableDeclaration","scope":18226,"src":"19509:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18162,"name":"uint","nodeType":"ElementaryTypeName","src":"19509:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18183,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":18168,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18028,"src":"19530:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18172,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18169,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18039,"src":"19536:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":18170,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19541:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"19536:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19530:13:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":18167,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19524:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":18166,"name":"uint8","nodeType":"ElementaryTypeName","src":"19524:5:49","typeDescriptions":{}}},"id":18173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19524:20:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[{"hexValue":"30","id":18178,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"19560:3:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""}],"id":18177,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19553:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":18176,"name":"bytes1","nodeType":"ElementaryTypeName","src":"19553:6:49","typeDescriptions":{}}},"id":18179,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19553:11:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":18175,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19547:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":18174,"name":"uint8","nodeType":"ElementaryTypeName","src":"19547:5:49","typeDescriptions":{}}},"id":18180,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19547:18:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"19524:41:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":18165,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"19519:4:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":18164,"name":"uint","nodeType":"ElementaryTypeName","src":"19519:4:49","typeDescriptions":{}}},"id":18182,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19519:47:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"19509:57:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18184,"name":"ax","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18163,"src":"19583:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":18185,"name":"args","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18031,"src":"19589:4:49","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":18186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19594:6:49","memberName":"length","nodeType":"MemberAccess","src":"19589:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19583:17:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18197,"nodeType":"IfStatement","src":"19579:91:49","trueBody":{"id":18196,"nodeType":"Block","src":"19602:68:49","statements":[{"errorCall":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18191,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18189,"name":"ax","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18163,"src":"19636:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":18190,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19641:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"19636:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":18192,"name":"args","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18031,"src":"19644:4:49","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":18193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19649:6:49","memberName":"length","nodeType":"MemberAccess","src":"19644:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18188,"name":"MissingArgs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16784,"src":"19624:11:49","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":18194,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19624:32:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18195,"nodeType":"RevertStatement","src":"19617:39:49"}]}},{"AST":{"nativeSrc":"19691:170:49","nodeType":"YulBlock","src":"19691:170:49","statements":[{"nativeSrc":"19706:47:49","nodeType":"YulAssignment","src":"19706:47:49","value":{"arguments":[{"arguments":[{"name":"args","nativeSrc":"19726:4:49","nodeType":"YulIdentifier","src":"19726:4:49"},{"arguments":[{"kind":"number","nativeSrc":"19736:2:49","nodeType":"YulLiteral","src":"19736:2:49","type":"","value":"32"},{"arguments":[{"name":"ax","nativeSrc":"19744:2:49","nodeType":"YulIdentifier","src":"19744:2:49"},{"kind":"number","nativeSrc":"19748:1:49","nodeType":"YulLiteral","src":"19748:1:49","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"19740:3:49","nodeType":"YulIdentifier","src":"19740:3:49"},"nativeSrc":"19740:10:49","nodeType":"YulFunctionCall","src":"19740:10:49"}],"functionName":{"name":"mul","nativeSrc":"19732:3:49","nodeType":"YulIdentifier","src":"19732:3:49"},"nativeSrc":"19732:19:49","nodeType":"YulFunctionCall","src":"19732:19:49"}],"functionName":{"name":"add","nativeSrc":"19722:3:49","nodeType":"YulIdentifier","src":"19722:3:49"},"nativeSrc":"19722:30:49","nodeType":"YulFunctionCall","src":"19722:30:49"}],"functionName":{"name":"mload","nativeSrc":"19716:5:49","nodeType":"YulIdentifier","src":"19716:5:49"},"nativeSrc":"19716:37:49","nodeType":"YulFunctionCall","src":"19716:37:49"},"variableNames":[{"name":"source","nativeSrc":"19706:6:49","nodeType":"YulIdentifier","src":"19706:6:49"}]},{"nativeSrc":"19767:29:49","nodeType":"YulAssignment","src":"19767:29:49","value":{"arguments":[{"name":"source","nativeSrc":"19789:6:49","nodeType":"YulIdentifier","src":"19789:6:49"}],"functionName":{"name":"mload","nativeSrc":"19783:5:49","nodeType":"YulIdentifier","src":"19783:5:49"},"nativeSrc":"19783:13:49","nodeType":"YulFunctionCall","src":"19783:13:49"},"variableNames":[{"name":"sourceLength","nativeSrc":"19767:12:49","nodeType":"YulIdentifier","src":"19767:12:49"}]},{"nativeSrc":"19810:32:49","nodeType":"YulAssignment","src":"19810:32:49","value":{"arguments":[{"name":"source","nativeSrc":"19831:6:49","nodeType":"YulIdentifier","src":"19831:6:49"},{"kind":"number","nativeSrc":"19839:2:49","nodeType":"YulLiteral","src":"19839:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19827:3:49","nodeType":"YulIdentifier","src":"19827:3:49"},"nativeSrc":"19827:15:49","nodeType":"YulFunctionCall","src":"19827:15:49"},"variableNames":[{"name":"sourcePointer","nativeSrc":"19810:13:49","nodeType":"YulIdentifier","src":"19810:13:49"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":18031,"isOffset":false,"isSlot":false,"src":"19726:4:49","valueSize":1},{"declaration":18163,"isOffset":false,"isSlot":false,"src":"19744:2:49","valueSize":1},{"declaration":18059,"isOffset":false,"isSlot":false,"src":"19706:6:49","valueSize":1},{"declaration":18059,"isOffset":false,"isSlot":false,"src":"19789:6:49","valueSize":1},{"declaration":18059,"isOffset":false,"isSlot":false,"src":"19831:6:49","valueSize":1},{"declaration":18062,"isOffset":false,"isSlot":false,"src":"19767:12:49","valueSize":1},{"declaration":18065,"isOffset":false,"isSlot":false,"src":"19810:13:49","valueSize":1}],"id":18198,"nodeType":"InlineAssembly","src":"19682:179:49"},{"expression":{"arguments":[{"id":18200,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18056,"src":"19902:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18201,"name":"sourcePointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18065,"src":"19930:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18202,"name":"sourceLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18062,"src":"19958:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18199,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18656,"src":"19881:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":18203,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19881:102:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18204,"nodeType":"ExpressionStatement","src":"19881:102:49"},{"expression":{"id":18209,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18205,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18053,"src":"19996:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18208,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18206,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18047,"src":"20012:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":18207,"name":"sourceLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18062,"src":"20026:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20012:26:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19996:42:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18210,"nodeType":"ExpressionStatement","src":"19996:42:49"},{"expression":{"id":18213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18211,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18056,"src":"20051:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":18212,"name":"sourceLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18062,"src":"20068:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20051:29:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18214,"nodeType":"ExpressionStatement","src":"20051:29:49"},{"expression":{"id":18217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18215,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18039,"src":"20093:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"33","id":18216,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20099:1:49","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"20093:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18218,"nodeType":"ExpressionStatement","src":"20093:7:49"},{"expression":{"id":18221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18219,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18043,"src":"20113:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":18220,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18039,"src":"20119:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20113:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18222,"nodeType":"ExpressionStatement","src":"20113:8:49"},{"expression":{"id":18224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"20134:7:49","subExpression":{"id":18223,"name":"hits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18036,"src":"20134:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18225,"nodeType":"ExpressionStatement","src":"20134:7:49"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18085,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18039,"src":"18940:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":18086,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18079,"src":"18945:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18940:11:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18233,"isSimpleCounterLoop":false,"nodeType":"ForStatement","src":"18933:1265:49"},{"expression":{"id":18237,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18234,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18039,"src":"20206:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":18235,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18028,"src":"20211:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"20217:6:49","memberName":"length","nodeType":"MemberAccess","src":"20211:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20206:17:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18238,"nodeType":"ExpressionStatement","src":"20206:17:49"}]},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18240,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18053,"src":"20245:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":18241,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20260:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"20245:16:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":18269,"nodeType":"Block","src":"20649:34:49","statements":[{"expression":{"components":[{"id":18265,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18028,"src":"20666:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":18266,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"20673:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":18267,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20665:10:49","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_rational_0_by_1_$","typeString":"tuple(bytes memory,int_const 0)"}},"functionReturnParameters":18037,"id":18268,"nodeType":"Return","src":"20658:17:49"}]},"id":18270,"nodeType":"IfStatement","src":"20241:442:49","trueBody":{"id":18264,"nodeType":"Block","src":"20263:375:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18243,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18039,"src":"20276:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":18244,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18043,"src":"20281:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20276:8:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18262,"nodeType":"IfStatement","src":"20272:162:49","trueBody":{"id":18261,"nodeType":"Block","src":"20287:147:49","statements":[{"expression":{"arguments":[{"id":18247,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18056,"src":"20317:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18248,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18050,"src":"20343:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18249,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18039,"src":"20368:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18250,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18043,"src":"20373:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20368:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18246,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18656,"src":"20298:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":18252,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20298:89:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18253,"nodeType":"ExpressionStatement","src":"20298:89:49"},{"expression":{"id":18259,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18254,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18053,"src":"20398:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18257,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18255,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18039,"src":"20415:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18256,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18043,"src":"20420:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20415:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18258,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"20414:10:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20398:26:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18260,"nodeType":"ExpressionStatement","src":"20398:26:49"}]}},{"AST":{"nativeSrc":"20451:180:49","nodeType":"YulBlock","src":"20451:180:49","statements":[{"expression":{"arguments":[{"name":"output","nativeSrc":"20505:6:49","nodeType":"YulIdentifier","src":"20505:6:49"},{"name":"outputLength","nativeSrc":"20513:12:49","nodeType":"YulIdentifier","src":"20513:12:49"}],"functionName":{"name":"mstore","nativeSrc":"20498:6:49","nodeType":"YulIdentifier","src":"20498:6:49"},"nativeSrc":"20498:28:49","nodeType":"YulFunctionCall","src":"20498:28:49"},"nativeSrc":"20498:28:49","nodeType":"YulExpressionStatement","src":"20498:28:49"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"20576:4:49","nodeType":"YulLiteral","src":"20576:4:49","type":"","value":"0x40"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"20592:4:49","nodeType":"YulLiteral","src":"20592:4:49","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"20586:5:49","nodeType":"YulIdentifier","src":"20586:5:49"},"nativeSrc":"20586:11:49","nodeType":"YulFunctionCall","src":"20586:11:49"},{"arguments":[{"name":"outputLength","nativeSrc":"20603:12:49","nodeType":"YulIdentifier","src":"20603:12:49"},{"kind":"number","nativeSrc":"20617:2:49","nodeType":"YulLiteral","src":"20617:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20599:3:49","nodeType":"YulIdentifier","src":"20599:3:49"},"nativeSrc":"20599:21:49","nodeType":"YulFunctionCall","src":"20599:21:49"}],"functionName":{"name":"add","nativeSrc":"20582:3:49","nodeType":"YulIdentifier","src":"20582:3:49"},"nativeSrc":"20582:39:49","nodeType":"YulFunctionCall","src":"20582:39:49"}],"functionName":{"name":"mstore","nativeSrc":"20569:6:49","nodeType":"YulIdentifier","src":"20569:6:49"},"nativeSrc":"20569:53:49","nodeType":"YulFunctionCall","src":"20569:53:49"},"nativeSrc":"20569:53:49","nodeType":"YulExpressionStatement","src":"20569:53:49"}]},"evmVersion":"paris","externalReferences":[{"declaration":18034,"isOffset":false,"isSlot":false,"src":"20505:6:49","valueSize":1},{"declaration":18053,"isOffset":false,"isSlot":false,"src":"20513:12:49","valueSize":1},{"declaration":18053,"isOffset":false,"isSlot":false,"src":"20603:12:49","valueSize":1}],"id":18263,"nodeType":"InlineAssembly","src":"20442:189:49"}]}}]},"documentation":{"id":18026,"nodeType":"StructuredDocumentation","src":"17826:391:49","text":"@notice Replace indexed bytes-wildcards by correspondent substrings.\n @dev Wildcard format: \"\\#\\\", with # in [\"0\"..\"9\"].\n @param input Bytes array containing strings.\n @param args Array of substring values for replacing indexed wildcards.\n @return output Resulting bytes array after replacing all wildcards.\n @return hits Total number of replaced wildcards."},"id":18272,"implemented":true,"kind":"function","modifiers":[],"name":"replace","nameLocation":"18230:7:49","nodeType":"FunctionDefinition","parameters":{"id":18032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18028,"mutability":"mutable","name":"input","nameLocation":"18251:5:49","nodeType":"VariableDeclaration","scope":18272,"src":"18238:18:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18027,"name":"bytes","nodeType":"ElementaryTypeName","src":"18238:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":18031,"mutability":"mutable","name":"args","nameLocation":"18274:4:49","nodeType":"VariableDeclaration","scope":18272,"src":"18258:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":18029,"name":"string","nodeType":"ElementaryTypeName","src":"18258:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":18030,"nodeType":"ArrayTypeName","src":"18258:8:49","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"src":"18237:42:49"},"returnParameters":{"id":18037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18034,"mutability":"mutable","name":"output","nameLocation":"18326:6:49","nodeType":"VariableDeclaration","scope":18272,"src":"18313:19:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18033,"name":"bytes","nodeType":"ElementaryTypeName","src":"18313:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":18036,"mutability":"mutable","name":"hits","nameLocation":"18339:4:49","nodeType":"VariableDeclaration","scope":18272,"src":"18334:9:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18035,"name":"uint","nodeType":"ElementaryTypeName","src":"18334:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18312:32:49"},"scope":18657,"src":"18221:2467:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18498,"nodeType":"Block","src":"21262:2200:49","statements":[{"assignments":[18287],"declarations":[{"constant":false,"id":18287,"mutability":"mutable","name":"ix","nameLocation":"21274:2:49","nodeType":"VariableDeclaration","scope":18498,"src":"21269:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18286,"name":"uint","nodeType":"ElementaryTypeName","src":"21269:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18289,"initialValue":{"hexValue":"30","id":18288,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21279:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"21269:11:49"},{"assignments":[18291],"declarations":[{"constant":false,"id":18291,"mutability":"mutable","name":"lix","nameLocation":"21287:3:49","nodeType":"VariableDeclaration","scope":18498,"src":"21282:8:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18290,"name":"uint","nodeType":"ElementaryTypeName","src":"21282:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18293,"initialValue":{"hexValue":"30","id":18292,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21293:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"21282:12:49"},{"assignments":[18295],"declarations":[{"constant":false,"id":18295,"mutability":"mutable","name":"inputLength","nameLocation":"21306:11:49","nodeType":"VariableDeclaration","scope":18498,"src":"21301:16:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18294,"name":"uint","nodeType":"ElementaryTypeName","src":"21301:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18296,"nodeType":"VariableDeclarationStatement","src":"21301:16:49"},{"assignments":[18298],"declarations":[{"constant":false,"id":18298,"mutability":"mutable","name":"inputPointer","nameLocation":"21329:12:49","nodeType":"VariableDeclaration","scope":18498,"src":"21324:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18297,"name":"uint","nodeType":"ElementaryTypeName","src":"21324:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18299,"nodeType":"VariableDeclarationStatement","src":"21324:17:49"},{"assignments":[18301],"declarations":[{"constant":false,"id":18301,"mutability":"mutable","name":"outputLength","nameLocation":"21353:12:49","nodeType":"VariableDeclaration","scope":18498,"src":"21348:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18300,"name":"uint","nodeType":"ElementaryTypeName","src":"21348:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18302,"nodeType":"VariableDeclarationStatement","src":"21348:17:49"},{"assignments":[18304],"declarations":[{"constant":false,"id":18304,"mutability":"mutable","name":"outputPointer","nameLocation":"21377:13:49","nodeType":"VariableDeclaration","scope":18498,"src":"21372:18:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18303,"name":"uint","nodeType":"ElementaryTypeName","src":"21372:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18305,"nodeType":"VariableDeclarationStatement","src":"21372:18:49"},{"assignments":[18307],"declarations":[{"constant":false,"id":18307,"mutability":"mutable","name":"argValueLength","nameLocation":"21403:14:49","nodeType":"VariableDeclaration","scope":18498,"src":"21398:19:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18306,"name":"uint","nodeType":"ElementaryTypeName","src":"21398:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18308,"nodeType":"VariableDeclarationStatement","src":"21398:19:49"},{"assignments":[18310],"declarations":[{"constant":false,"id":18310,"mutability":"mutable","name":"argValuePointer","nameLocation":"21429:15:49","nodeType":"VariableDeclaration","scope":18498,"src":"21424:20:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18309,"name":"uint","nodeType":"ElementaryTypeName","src":"21424:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18311,"nodeType":"VariableDeclarationStatement","src":"21424:20:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18312,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18275,"src":"21457:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21463:6:49","memberName":"length","nodeType":"MemberAccess","src":"21457:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"33","id":18314,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21472:1:49","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"21457:16:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18321,"nodeType":"IfStatement","src":"21453:56:49","trueBody":{"id":18320,"nodeType":"Block","src":"21475:34:49","statements":[{"expression":{"components":[{"id":18316,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18275,"src":"21492:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":18317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21499:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":18318,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"21491:10:49","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_rational_0_by_1_$","typeString":"tuple(bytes memory,int_const 0)"}},"functionReturnParameters":18285,"id":18319,"nodeType":"Return","src":"21484:17:49"}]}},{"AST":{"nativeSrc":"21530:396:49","nodeType":"YulBlock","src":"21530:396:49","statements":[{"nativeSrc":"21576:30:49","nodeType":"YulAssignment","src":"21576:30:49","value":{"arguments":[{"name":"input","nativeSrc":"21596:5:49","nodeType":"YulIdentifier","src":"21596:5:49"},{"kind":"number","nativeSrc":"21603:2:49","nodeType":"YulLiteral","src":"21603:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21592:3:49","nodeType":"YulIdentifier","src":"21592:3:49"},"nativeSrc":"21592:14:49","nodeType":"YulFunctionCall","src":"21592:14:49"},"variableNames":[{"name":"inputPointer","nativeSrc":"21576:12:49","nodeType":"YulIdentifier","src":"21576:12:49"}]},{"nativeSrc":"21649:21:49","nodeType":"YulAssignment","src":"21649:21:49","value":{"arguments":[{"kind":"number","nativeSrc":"21665:4:49","nodeType":"YulLiteral","src":"21665:4:49","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"21659:5:49","nodeType":"YulIdentifier","src":"21659:5:49"},"nativeSrc":"21659:11:49","nodeType":"YulFunctionCall","src":"21659:11:49"},"variableNames":[{"name":"output","nativeSrc":"21649:6:49","nodeType":"YulIdentifier","src":"21649:6:49"}]},{"nativeSrc":"21716:32:49","nodeType":"YulAssignment","src":"21716:32:49","value":{"arguments":[{"name":"output","nativeSrc":"21737:6:49","nodeType":"YulIdentifier","src":"21737:6:49"},{"kind":"number","nativeSrc":"21745:2:49","nodeType":"YulLiteral","src":"21745:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21733:3:49","nodeType":"YulIdentifier","src":"21733:3:49"},"nativeSrc":"21733:15:49","nodeType":"YulFunctionCall","src":"21733:15:49"},"variableNames":[{"name":"outputPointer","nativeSrc":"21716:13:49","nodeType":"YulIdentifier","src":"21716:13:49"}]},{"nativeSrc":"21801:36:49","nodeType":"YulAssignment","src":"21801:36:49","value":{"arguments":[{"name":"argValue","nativeSrc":"21824:8:49","nodeType":"YulIdentifier","src":"21824:8:49"},{"kind":"number","nativeSrc":"21834:2:49","nodeType":"YulLiteral","src":"21834:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21820:3:49","nodeType":"YulIdentifier","src":"21820:3:49"},"nativeSrc":"21820:17:49","nodeType":"YulFunctionCall","src":"21820:17:49"},"variableNames":[{"name":"argValuePointer","nativeSrc":"21801:15:49","nodeType":"YulIdentifier","src":"21801:15:49"}]},{"nativeSrc":"21886:33:49","nodeType":"YulAssignment","src":"21886:33:49","value":{"arguments":[{"name":"argValue","nativeSrc":"21910:8:49","nodeType":"YulIdentifier","src":"21910:8:49"}],"functionName":{"name":"mload","nativeSrc":"21904:5:49","nodeType":"YulIdentifier","src":"21904:5:49"},"nativeSrc":"21904:15:49","nodeType":"YulFunctionCall","src":"21904:15:49"},"variableNames":[{"name":"argValueLength","nativeSrc":"21886:14:49","nodeType":"YulIdentifier","src":"21886:14:49"}]}]},"evmVersion":"paris","externalReferences":[{"declaration":18279,"isOffset":false,"isSlot":false,"src":"21824:8:49","valueSize":1},{"declaration":18279,"isOffset":false,"isSlot":false,"src":"21910:8:49","valueSize":1},{"declaration":18307,"isOffset":false,"isSlot":false,"src":"21886:14:49","valueSize":1},{"declaration":18310,"isOffset":false,"isSlot":false,"src":"21801:15:49","valueSize":1},{"declaration":18275,"isOffset":false,"isSlot":false,"src":"21596:5:49","valueSize":1},{"declaration":18298,"isOffset":false,"isSlot":false,"src":"21576:12:49","valueSize":1},{"declaration":18282,"isOffset":false,"isSlot":false,"src":"21649:6:49","valueSize":1},{"declaration":18282,"isOffset":false,"isSlot":false,"src":"21737:6:49","valueSize":1},{"declaration":18304,"isOffset":false,"isSlot":false,"src":"21716:13:49","valueSize":1}],"id":18322,"nodeType":"InlineAssembly","src":"21521:405:49"},{"id":18466,"nodeType":"UncheckedBlock","src":"21943:1066:49","statements":[{"assignments":[18324],"declarations":[{"constant":false,"id":18324,"mutability":"mutable","name":"length","nameLocation":"21967:6:49","nodeType":"VariableDeclaration","scope":18466,"src":"21962:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18323,"name":"uint","nodeType":"ElementaryTypeName","src":"21962:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18329,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18325,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18275,"src":"21976:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18326,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"21982:6:49","memberName":"length","nodeType":"MemberAccess","src":"21976:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"32","id":18327,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"21991:1:49","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"21976:16:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"21962:30:49"},{"body":{"id":18459,"nodeType":"Block","src":"22023:949:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18392,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":18340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":18333,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18275,"src":"22050:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18335,"indexExpression":{"id":18334,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18287,"src":"22056:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22050:9:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"5c","id":18338,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22070:4:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""}],"id":18337,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22063:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":18336,"name":"bytes1","nodeType":"ElementaryTypeName","src":"22063:6:49","typeDescriptions":{}}},"id":18339,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22063:12:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"22050:25:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":18350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":18341,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18275,"src":"22092:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18345,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18342,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18287,"src":"22098:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":18343,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22103:1:49","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"22098:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22092:13:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"5c","id":18348,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22116:4:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""}],"id":18347,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22109:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":18346,"name":"bytes1","nodeType":"ElementaryTypeName","src":"22109:6:49","typeDescriptions":{}}},"id":18349,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22109:12:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"22092:29:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"22050:71:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":18361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":18352,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18275,"src":"22138:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18356,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18353,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18287,"src":"22144:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":18354,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22149:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22144:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22138:13:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"arguments":[{"hexValue":"30","id":18359,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22162:3:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""}],"id":18358,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22155:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":18357,"name":"bytes1","nodeType":"ElementaryTypeName","src":"22155:6:49","typeDescriptions":{}}},"id":18360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22155:11:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"22138:28:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"22050:116:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":18372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":18363,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18275,"src":"22183:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18367,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18366,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18364,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18287,"src":"22189:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":18365,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22194:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22189:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22183:13:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[{"hexValue":"39","id":18370,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22207:3:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_d2f8f61201b2b11a78d6e866abc9c3db2ae8631fa656bfe5cb53668255367afb","typeString":"literal_string \"9\""},"value":"9"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_d2f8f61201b2b11a78d6e866abc9c3db2ae8631fa656bfe5cb53668255367afb","typeString":"literal_string \"9\""}],"id":18369,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22200:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":18368,"name":"bytes1","nodeType":"ElementaryTypeName","src":"22200:6:49","typeDescriptions":{}}},"id":18371,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22200:11:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"22183:28:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"22050:161:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18389,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":18376,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18275,"src":"22234:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18380,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18377,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18287,"src":"22240:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":18378,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22245:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"22240:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"22234:13:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":18375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22228:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":18374,"name":"uint8","nodeType":"ElementaryTypeName","src":"22228:5:49","typeDescriptions":{}}},"id":18381,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22228:20:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[{"hexValue":"30","id":18386,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22264:3:49","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""}],"id":18385,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22257:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":18384,"name":"bytes1","nodeType":"ElementaryTypeName","src":"22257:6:49","typeDescriptions":{}}},"id":18387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22257:11:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":18383,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"22251:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":18382,"name":"uint8","nodeType":"ElementaryTypeName","src":"22251:5:49","typeDescriptions":{}}},"id":18388,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22251:18:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"22228:41:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":18390,"name":"argIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18277,"src":"22273:8:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"22228:53:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"22050:231:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":18457,"nodeType":"Block","src":"22933:30:49","statements":[{"expression":{"id":18455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"22946:5:49","subExpression":{"id":18454,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18287,"src":"22946:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18456,"nodeType":"ExpressionStatement","src":"22946:5:49"}]},"id":18458,"nodeType":"IfStatement","src":"22034:929:49","trueBody":{"id":18453,"nodeType":"Block","src":"22293:634:49","statements":[{"expression":{"id":18398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18393,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18295,"src":"22306:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18394,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18287,"src":"22321:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18395,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18291,"src":"22326:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22321:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18397,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"22320:10:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22306:24:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18399,"nodeType":"ExpressionStatement","src":"22306:24:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18400,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18287,"src":"22347:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":18401,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18291,"src":"22352:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22347:8:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":18424,"nodeType":"Block","src":"22589:46:49","statements":[{"expression":{"id":18422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18420,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18298,"src":"22604:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"33","id":18421,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22620:1:49","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"22604:17:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18423,"nodeType":"ExpressionStatement","src":"22604:17:49"}]},"id":18425,"nodeType":"IfStatement","src":"22343:292:49","trueBody":{"id":18419,"nodeType":"Block","src":"22357:226:49","statements":[{"expression":{"arguments":[{"id":18404,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18304,"src":"22395:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18405,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18298,"src":"22425:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18406,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18295,"src":"22454:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18403,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18656,"src":"22372:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":18407,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22372:108:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18408,"nodeType":"ExpressionStatement","src":"22372:108:49"},{"expression":{"id":18413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18409,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18298,"src":"22495:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18412,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18410,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18295,"src":"22511:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"33","id":18411,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22525:1:49","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"22511:15:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22495:31:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18414,"nodeType":"ExpressionStatement","src":"22495:31:49"},{"expression":{"id":18417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18415,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18304,"src":"22541:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":18416,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18295,"src":"22558:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22541:28:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18418,"nodeType":"ExpressionStatement","src":"22541:28:49"}]}},{"expression":{"arguments":[{"id":18427,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18304,"src":"22668:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18428,"name":"argValuePointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18310,"src":"22696:15:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18429,"name":"argValueLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18307,"src":"22726:14:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18426,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18656,"src":"22647:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":18430,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22647:106:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18431,"nodeType":"ExpressionStatement","src":"22647:106:49"},{"expression":{"id":18436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18432,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18301,"src":"22766:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18433,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18295,"src":"22782:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":18434,"name":"argValueLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18307,"src":"22796:14:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22782:28:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22766:44:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18437,"nodeType":"ExpressionStatement","src":"22766:44:49"},{"expression":{"id":18440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18438,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18304,"src":"22823:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":18439,"name":"argValueLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18307,"src":"22840:14:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22823:31:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18441,"nodeType":"ExpressionStatement","src":"22823:31:49"},{"expression":{"id":18444,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18442,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18287,"src":"22867:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"33","id":18443,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"22873:1:49","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"22867:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18445,"nodeType":"ExpressionStatement","src":"22867:7:49"},{"expression":{"id":18448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18446,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18291,"src":"22887:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":18447,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18287,"src":"22893:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22887:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18449,"nodeType":"ExpressionStatement","src":"22887:8:49"},{"expression":{"id":18451,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"22908:7:49","subExpression":{"id":18450,"name":"hits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18284,"src":"22908:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18452,"nodeType":"ExpressionStatement","src":"22908:7:49"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18330,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18287,"src":"22008:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":18331,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18324,"src":"22013:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22008:11:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18460,"isSimpleCounterLoop":false,"nodeType":"ForStatement","src":"22001:971:49"},{"expression":{"id":18464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18461,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18287,"src":"22980:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":18462,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18275,"src":"22985:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"22991:6:49","memberName":"length","nodeType":"MemberAccess","src":"22985:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22980:17:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18465,"nodeType":"ExpressionStatement","src":"22980:17:49"}]},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18469,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18467,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18301,"src":"23019:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":18468,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23034:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"23019:16:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":18496,"nodeType":"Block","src":"23423:34:49","statements":[{"expression":{"components":[{"id":18492,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18275,"src":"23440:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":18493,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23447:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"id":18494,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"23439:10:49","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_rational_0_by_1_$","typeString":"tuple(bytes memory,int_const 0)"}},"functionReturnParameters":18285,"id":18495,"nodeType":"Return","src":"23432:17:49"}]},"id":18497,"nodeType":"IfStatement","src":"23015:442:49","trueBody":{"id":18491,"nodeType":"Block","src":"23037:375:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18470,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18287,"src":"23050:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":18471,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18291,"src":"23055:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23050:8:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18489,"nodeType":"IfStatement","src":"23046:162:49","trueBody":{"id":18488,"nodeType":"Block","src":"23061:147:49","statements":[{"expression":{"arguments":[{"id":18474,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18304,"src":"23091:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18475,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18298,"src":"23117:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18476,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18287,"src":"23142:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18477,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18291,"src":"23147:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23142:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18473,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18656,"src":"23072:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":18479,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23072:89:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":18480,"nodeType":"ExpressionStatement","src":"23072:89:49"},{"expression":{"id":18486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18481,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18301,"src":"23172:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18484,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18482,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18287,"src":"23189:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18483,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18291,"src":"23194:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23189:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18485,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"23188:10:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23172:26:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18487,"nodeType":"ExpressionStatement","src":"23172:26:49"}]}},{"AST":{"nativeSrc":"23225:180:49","nodeType":"YulBlock","src":"23225:180:49","statements":[{"expression":{"arguments":[{"name":"output","nativeSrc":"23279:6:49","nodeType":"YulIdentifier","src":"23279:6:49"},{"name":"outputLength","nativeSrc":"23287:12:49","nodeType":"YulIdentifier","src":"23287:12:49"}],"functionName":{"name":"mstore","nativeSrc":"23272:6:49","nodeType":"YulIdentifier","src":"23272:6:49"},"nativeSrc":"23272:28:49","nodeType":"YulFunctionCall","src":"23272:28:49"},"nativeSrc":"23272:28:49","nodeType":"YulExpressionStatement","src":"23272:28:49"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"23350:4:49","nodeType":"YulLiteral","src":"23350:4:49","type":"","value":"0x40"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23366:4:49","nodeType":"YulLiteral","src":"23366:4:49","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"23360:5:49","nodeType":"YulIdentifier","src":"23360:5:49"},"nativeSrc":"23360:11:49","nodeType":"YulFunctionCall","src":"23360:11:49"},{"arguments":[{"name":"outputLength","nativeSrc":"23377:12:49","nodeType":"YulIdentifier","src":"23377:12:49"},{"kind":"number","nativeSrc":"23391:2:49","nodeType":"YulLiteral","src":"23391:2:49","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23373:3:49","nodeType":"YulIdentifier","src":"23373:3:49"},"nativeSrc":"23373:21:49","nodeType":"YulFunctionCall","src":"23373:21:49"}],"functionName":{"name":"add","nativeSrc":"23356:3:49","nodeType":"YulIdentifier","src":"23356:3:49"},"nativeSrc":"23356:39:49","nodeType":"YulFunctionCall","src":"23356:39:49"}],"functionName":{"name":"mstore","nativeSrc":"23343:6:49","nodeType":"YulIdentifier","src":"23343:6:49"},"nativeSrc":"23343:53:49","nodeType":"YulFunctionCall","src":"23343:53:49"},"nativeSrc":"23343:53:49","nodeType":"YulExpressionStatement","src":"23343:53:49"}]},"evmVersion":"paris","externalReferences":[{"declaration":18282,"isOffset":false,"isSlot":false,"src":"23279:6:49","valueSize":1},{"declaration":18301,"isOffset":false,"isSlot":false,"src":"23287:12:49","valueSize":1},{"declaration":18301,"isOffset":false,"isSlot":false,"src":"23377:12:49","valueSize":1}],"id":18490,"nodeType":"InlineAssembly","src":"23216:189:49"}]}}]},"documentation":{"id":18273,"nodeType":"StructuredDocumentation","src":"20694:419:49","text":"@notice Replace indexed bytes-wildcard by given substring.\n @dev Wildcard format: \"\\#\\\", with # in [\"0\"..\"9\"].\n @param input Bytes array containing strings.\n @param argIndex Index of the wildcard to be replaced.\n @param argValue Replacing substring to be used.\n @return output Resulting bytes array after replacing all wildcards.\n @return hits Total number of replaced wildcards."},"id":18499,"implemented":true,"kind":"function","modifiers":[],"name":"replace","nameLocation":"21126:7:49","nodeType":"FunctionDefinition","parameters":{"id":18280,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18275,"mutability":"mutable","name":"input","nameLocation":"21147:5:49","nodeType":"VariableDeclaration","scope":18499,"src":"21134:18:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18274,"name":"bytes","nodeType":"ElementaryTypeName","src":"21134:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":18277,"mutability":"mutable","name":"argIndex","nameLocation":"21160:8:49","nodeType":"VariableDeclaration","scope":18499,"src":"21154:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18276,"name":"uint8","nodeType":"ElementaryTypeName","src":"21154:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":18279,"mutability":"mutable","name":"argValue","nameLocation":"21184:8:49","nodeType":"VariableDeclaration","scope":18499,"src":"21170:22:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18278,"name":"string","nodeType":"ElementaryTypeName","src":"21170:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"21133:60:49"},"returnParameters":{"id":18285,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18282,"mutability":"mutable","name":"output","nameLocation":"21240:6:49","nodeType":"VariableDeclaration","scope":18499,"src":"21227:19:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18281,"name":"bytes","nodeType":"ElementaryTypeName","src":"21227:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":18284,"mutability":"mutable","name":"hits","nameLocation":"21253:4:49","nodeType":"VariableDeclaration","scope":18499,"src":"21248:9:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18283,"name":"uint","nodeType":"ElementaryTypeName","src":"21248:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21226:32:49"},"scope":18657,"src":"21117:2345:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18525,"nodeType":"Block","src":"23923:106:49","statements":[{"assignments":[18511,null],"declarations":[{"constant":false,"id":18511,"mutability":"mutable","name":"_outputBytes","nameLocation":"23944:12:49","nodeType":"VariableDeclaration","scope":18525,"src":"23931:25:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18510,"name":"bytes","nodeType":"ElementaryTypeName","src":"23931:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},null],"id":18519,"initialValue":{"arguments":[{"arguments":[{"id":18515,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18502,"src":"23976:5:49","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":18514,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23970:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":18513,"name":"bytes","nodeType":"ElementaryTypeName","src":"23970:5:49","typeDescriptions":{}}},"id":18516,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23970:12:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":18517,"name":"args","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18505,"src":"23984:4:49","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}],"id":18512,"name":"replace","nodeType":"Identifier","overloadedDeclarations":[18272,18499,18526,18555],"referencedDeclaration":18272,"src":"23962:7:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$returns$_t_bytes_memory_ptr_$_t_uint256_$","typeString":"function (bytes memory,string memory[] memory) pure returns (bytes memory,uint256)"}},"id":18518,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23962:27:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_uint256_$","typeString":"tuple(bytes memory,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"23930:59:49"},{"expression":{"arguments":[{"id":18522,"name":"_outputBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18511,"src":"24010:12:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":18521,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24003:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":18520,"name":"string","nodeType":"ElementaryTypeName","src":"24003:6:49","typeDescriptions":{}}},"id":18523,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24003:20:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":18509,"id":18524,"nodeType":"Return","src":"23996:27:49"}]},"documentation":{"id":18500,"nodeType":"StructuredDocumentation","src":"23468:340:49","text":"@notice Replace indexed string wildcards by correspondent substrings.\n @dev Wildcard format: \"\\#\\\", with # in [\"0\"..\"9\"].\n @param input String potentially containing wildcards.\n @param args Array of substring values for replacing indexed wildcards.\n @return output Resulting string after replacing all wildcards."},"id":18526,"implemented":true,"kind":"function","modifiers":[],"name":"replace","nameLocation":"23821:7:49","nodeType":"FunctionDefinition","parameters":{"id":18506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18502,"mutability":"mutable","name":"input","nameLocation":"23843:5:49","nodeType":"VariableDeclaration","scope":18526,"src":"23829:19:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18501,"name":"string","nodeType":"ElementaryTypeName","src":"23829:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":18505,"mutability":"mutable","name":"args","nameLocation":"23866:4:49","nodeType":"VariableDeclaration","scope":18526,"src":"23850:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":18503,"name":"string","nodeType":"ElementaryTypeName","src":"23850:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":18504,"nodeType":"ArrayTypeName","src":"23850:8:49","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"src":"23828:43:49"},"returnParameters":{"id":18509,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18508,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18526,"src":"23905:13:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18507,"name":"string","nodeType":"ElementaryTypeName","src":"23905:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"23904:15:49"},"scope":18657,"src":"23812:217:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18554,"nodeType":"Block","src":"24531:120:49","statements":[{"assignments":[18539,null],"declarations":[{"constant":false,"id":18539,"mutability":"mutable","name":"_outputBytes","nameLocation":"24552:12:49","nodeType":"VariableDeclaration","scope":18554,"src":"24539:25:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18538,"name":"bytes","nodeType":"ElementaryTypeName","src":"24539:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},null],"id":18548,"initialValue":{"arguments":[{"arguments":[{"id":18543,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18529,"src":"24584:5:49","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":18542,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24578:5:49","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":18541,"name":"bytes","nodeType":"ElementaryTypeName","src":"24578:5:49","typeDescriptions":{}}},"id":18544,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24578:12:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":18545,"name":"argIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18531,"src":"24592:8:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":18546,"name":"argValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18533,"src":"24602:8:49","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":18540,"name":"replace","nodeType":"Identifier","overloadedDeclarations":[18272,18499,18526,18555],"referencedDeclaration":18499,"src":"24570:7:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_uint8_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$_t_uint256_$","typeString":"function (bytes memory,uint8,string memory) pure returns (bytes memory,uint256)"}},"id":18547,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24570:41:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bytes_memory_ptr_$_t_uint256_$","typeString":"tuple(bytes memory,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"24538:73:49"},{"expression":{"arguments":[{"id":18551,"name":"_outputBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18539,"src":"24632:12:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":18550,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24625:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":18549,"name":"string","nodeType":"ElementaryTypeName","src":"24625:6:49","typeDescriptions":{}}},"id":18552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24625:20:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":18537,"id":18553,"nodeType":"Return","src":"24618:27:49"}]},"documentation":{"id":18527,"nodeType":"StructuredDocumentation","src":"24035:363:49","text":"@notice Replace last indexed wildcard by given substring.\n @dev Wildcard format: \"\\#\\\", with # in [\"0\"..\"9\"].\n @param input String potentially containing wildcards.\n @param argIndex Index of the wildcard to be replaced.\n @param argValue Replacing string to be used.\n @return output Resulting string after replacing all wildcards."},"id":18555,"implemented":true,"kind":"function","modifiers":[],"name":"replace","nameLocation":"24411:7:49","nodeType":"FunctionDefinition","parameters":{"id":18534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18529,"mutability":"mutable","name":"input","nameLocation":"24433:5:49","nodeType":"VariableDeclaration","scope":18555,"src":"24419:19:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18528,"name":"string","nodeType":"ElementaryTypeName","src":"24419:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":18531,"mutability":"mutable","name":"argIndex","nameLocation":"24446:8:49","nodeType":"VariableDeclaration","scope":18555,"src":"24440:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18530,"name":"uint8","nodeType":"ElementaryTypeName","src":"24440:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":18533,"mutability":"mutable","name":"argValue","nameLocation":"24470:8:49","nodeType":"VariableDeclaration","scope":18555,"src":"24456:22:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18532,"name":"string","nodeType":"ElementaryTypeName","src":"24456:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"24418:61:49"},"returnParameters":{"id":18537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18536,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18555,"src":"24513:13:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18535,"name":"string","nodeType":"ElementaryTypeName","src":"24513:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"24512:15:49"},"scope":18657,"src":"24402:249:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18590,"nodeType":"Block","src":"25329:150:49","statements":[{"condition":{"id":18574,"name":"relative","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18563,"src":"25375:8:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18581,"nodeType":"IfStatement","src":"25371:54:49","trueBody":{"id":18580,"nodeType":"Block","src":"25385:40:49","statements":[{"expression":{"id":18578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18575,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18561,"src":"25394:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"expression":{"id":18576,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18559,"src":"25404:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18577,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25411:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"25404:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25394:23:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18579,"nodeType":"ExpressionStatement","src":"25394:23:49"}]}},{"expression":{"id":18586,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":18582,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18559,"src":"25431:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18584,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"25438:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"25431:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":18585,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18561,"src":"25447:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25431:22:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18587,"nodeType":"ExpressionStatement","src":"25431:22:49"},{"expression":{"id":18588,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18561,"src":"25467:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18573,"id":18589,"nodeType":"Return","src":"25460:13:49"}]},"documentation":{"id":18556,"nodeType":"StructuredDocumentation","src":"24657:432:49","text":"@notice Move the inner cursor of the buffer to a relative or absolute position.\n @param buffer An instance of `Buffer`.\n @param offset How many bytes to move the cursor forward.\n @param relative Whether to count `offset` from the last position of the cursor (`true`) or the beginning of the\n buffer (`true`).\n @return The final position of the cursor (will equal `offset` if `relative` is `false`)."},"id":18591,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":18566,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18561,"src":"25278:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":18567,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18559,"src":"25286:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18568,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25293:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"25286:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"25298:6:49","memberName":"length","nodeType":"MemberAccess","src":"25286:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18570,"kind":"modifierInvocation","modifierName":{"id":18565,"name":"withinRange","nameLocations":["25266:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16808,"src":"25266:11:49"},"nodeType":"ModifierInvocation","src":"25266:39:49"}],"name":"seek","nameLocation":"25159:4:49","nodeType":"FunctionDefinition","parameters":{"id":18564,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18559,"mutability":"mutable","name":"buffer","nameLocation":"25186:6:49","nodeType":"VariableDeclaration","scope":18591,"src":"25172:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":18558,"nodeType":"UserDefinedTypeName","pathNode":{"id":18557,"name":"Buffer","nameLocations":["25172:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"25172:6:49"},"referencedDeclaration":16790,"src":"25172:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":18561,"mutability":"mutable","name":"offset","nameLocation":"25206:6:49","nodeType":"VariableDeclaration","scope":18591,"src":"25201:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18560,"name":"uint","nodeType":"ElementaryTypeName","src":"25201:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18563,"mutability":"mutable","name":"relative","nameLocation":"25226:8:49","nodeType":"VariableDeclaration","scope":18591,"src":"25221:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18562,"name":"bool","nodeType":"ElementaryTypeName","src":"25221:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"25163:78:49"},"returnParameters":{"id":18573,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18572,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18591,"src":"25320:4:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18571,"name":"uint","nodeType":"ElementaryTypeName","src":"25320:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25319:6:49"},"scope":18657,"src":"25150:329:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18608,"nodeType":"Block","src":"25918:82:49","statements":[{"expression":{"arguments":[{"id":18603,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18595,"src":"25945:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"id":18604,"name":"relativeOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18597,"src":"25960:14:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":18605,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"25983:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":18602,"name":"seek","nodeType":"Identifier","overloadedDeclarations":[18591,18609],"referencedDeclaration":18591,"src":"25932:4:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint256_$_t_bool_$returns$_t_uint256_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256,bool) pure returns (uint256)"}},"id":18606,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25932:62:49","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18601,"id":18607,"nodeType":"Return","src":"25925:69:49"}]},"documentation":{"id":18592,"nodeType":"StructuredDocumentation","src":"25485:309:49","text":"@notice Move the inner cursor a number of bytes forward.\n @dev This is a simple wrapper around the relative offset case of `seek()`.\n @param buffer An instance of `Buffer`.\n @param relativeOffset How many bytes to move the cursor forward.\n @return The final position of the cursor."},"id":18609,"implemented":true,"kind":"function","modifiers":[],"name":"seek","nameLocation":"25807:4:49","nodeType":"FunctionDefinition","parameters":{"id":18598,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18595,"mutability":"mutable","name":"buffer","nameLocation":"25834:6:49","nodeType":"VariableDeclaration","scope":18609,"src":"25820:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":18594,"nodeType":"UserDefinedTypeName","pathNode":{"id":18593,"name":"Buffer","nameLocations":["25820:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"25820:6:49"},"referencedDeclaration":16790,"src":"25820:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":18597,"mutability":"mutable","name":"relativeOffset","nameLocation":"25854:14:49","nodeType":"VariableDeclaration","scope":18609,"src":"25849:19:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18596,"name":"uint","nodeType":"ElementaryTypeName","src":"25849:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25811:64:49"},"returnParameters":{"id":18601,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18600,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18609,"src":"25909:4:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18599,"name":"uint","nodeType":"ElementaryTypeName","src":"25909:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25908:6:49"},"scope":18657,"src":"25798:202:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18655,"nodeType":"Block","src":"26592:526:49","statements":[{"id":18654,"nodeType":"UncheckedBlock","src":"26599:514:49","statements":[{"body":{"id":18635,"nodeType":"Block","src":"26696:118:49","statements":[{"AST":{"nativeSrc":"26716:48:49","nodeType":"YulBlock","src":"26716:48:49","statements":[{"expression":{"arguments":[{"name":"dest","nativeSrc":"26736:4:49","nodeType":"YulIdentifier","src":"26736:4:49"},{"arguments":[{"name":"src","nativeSrc":"26748:3:49","nodeType":"YulIdentifier","src":"26748:3:49"}],"functionName":{"name":"mload","nativeSrc":"26742:5:49","nodeType":"YulIdentifier","src":"26742:5:49"},"nativeSrc":"26742:10:49","nodeType":"YulFunctionCall","src":"26742:10:49"}],"functionName":{"name":"mstore","nativeSrc":"26729:6:49","nodeType":"YulIdentifier","src":"26729:6:49"},"nativeSrc":"26729:24:49","nodeType":"YulFunctionCall","src":"26729:24:49"},"nativeSrc":"26729:24:49","nodeType":"YulExpressionStatement","src":"26729:24:49"}]},"evmVersion":"paris","externalReferences":[{"declaration":18612,"isOffset":false,"isSlot":false,"src":"26736:4:49","valueSize":1},{"declaration":18614,"isOffset":false,"isSlot":false,"src":"26748:3:49","valueSize":1}],"id":18626,"nodeType":"InlineAssembly","src":"26707:57:49"},{"expression":{"id":18629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18627,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18612,"src":"26774:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":18628,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26782:2:49","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"26774:10:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18630,"nodeType":"ExpressionStatement","src":"26774:10:49"},{"expression":{"id":18633,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18631,"name":"src","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18614,"src":"26795:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":18632,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26802:2:49","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"26795:9:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18634,"nodeType":"ExpressionStatement","src":"26795:9:49"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18621,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18619,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18616,"src":"26674:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3332","id":18620,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26681:2:49","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"26674:9:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18636,"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":18624,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18622,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18616,"src":"26685:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3332","id":18623,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26692:2:49","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"src":"26685:9:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18625,"nodeType":"ExpressionStatement","src":"26685:9:49"},"nodeType":"ForStatement","src":"26667:147:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18637,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18616,"src":"26826:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":18638,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26832:1:49","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"26826:7:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18653,"nodeType":"IfStatement","src":"26822:284:49","trueBody":{"id":18652,"nodeType":"Block","src":"26835:271:49","statements":[{"assignments":[18641],"declarations":[{"constant":false,"id":18641,"mutability":"mutable","name":"_mask","nameLocation":"26884:5:49","nodeType":"VariableDeclaration","scope":18652,"src":"26879:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18640,"name":"uint","nodeType":"ElementaryTypeName","src":"26879:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18650,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"323536","id":18642,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26892:3:49","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"value":"256"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18645,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3332","id":18643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26900:2:49","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"32"},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18644,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18616,"src":"26905:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26900:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18646,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"26899:10:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26892:17:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":18648,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26912:1:49","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"26892:21:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"26879:34:49"},{"AST":{"nativeSrc":"26933:164:49","nodeType":"YulBlock","src":"26933:164:49","statements":[{"nativeSrc":"26946:42:49","nodeType":"YulVariableDeclaration","src":"26946:42:49","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"26971:3:49","nodeType":"YulIdentifier","src":"26971:3:49"}],"functionName":{"name":"mload","nativeSrc":"26965:5:49","nodeType":"YulIdentifier","src":"26965:5:49"},"nativeSrc":"26965:10:49","nodeType":"YulFunctionCall","src":"26965:10:49"},{"arguments":[{"name":"_mask","nativeSrc":"26981:5:49","nodeType":"YulIdentifier","src":"26981:5:49"}],"functionName":{"name":"not","nativeSrc":"26977:3:49","nodeType":"YulIdentifier","src":"26977:3:49"},"nativeSrc":"26977:10:49","nodeType":"YulFunctionCall","src":"26977:10:49"}],"functionName":{"name":"and","nativeSrc":"26961:3:49","nodeType":"YulIdentifier","src":"26961:3:49"},"nativeSrc":"26961:27:49","nodeType":"YulFunctionCall","src":"26961:27:49"},"variables":[{"name":"srcpart","nativeSrc":"26950:7:49","nodeType":"YulTypedName","src":"26950:7:49","type":""}]},{"nativeSrc":"27000:39:49","nodeType":"YulVariableDeclaration","src":"27000:39:49","value":{"arguments":[{"arguments":[{"name":"dest","nativeSrc":"27026:4:49","nodeType":"YulIdentifier","src":"27026:4:49"}],"functionName":{"name":"mload","nativeSrc":"27020:5:49","nodeType":"YulIdentifier","src":"27020:5:49"},"nativeSrc":"27020:11:49","nodeType":"YulFunctionCall","src":"27020:11:49"},{"name":"_mask","nativeSrc":"27033:5:49","nodeType":"YulIdentifier","src":"27033:5:49"}],"functionName":{"name":"and","nativeSrc":"27016:3:49","nodeType":"YulIdentifier","src":"27016:3:49"},"nativeSrc":"27016:23:49","nodeType":"YulFunctionCall","src":"27016:23:49"},"variables":[{"name":"destpart","nativeSrc":"27004:8:49","nodeType":"YulTypedName","src":"27004:8:49","type":""}]},{"expression":{"arguments":[{"name":"dest","nativeSrc":"27058:4:49","nodeType":"YulIdentifier","src":"27058:4:49"},{"arguments":[{"name":"destpart","nativeSrc":"27067:8:49","nodeType":"YulIdentifier","src":"27067:8:49"},{"name":"srcpart","nativeSrc":"27077:7:49","nodeType":"YulIdentifier","src":"27077:7:49"}],"functionName":{"name":"or","nativeSrc":"27064:2:49","nodeType":"YulIdentifier","src":"27064:2:49"},"nativeSrc":"27064:21:49","nodeType":"YulFunctionCall","src":"27064:21:49"}],"functionName":{"name":"mstore","nativeSrc":"27051:6:49","nodeType":"YulIdentifier","src":"27051:6:49"},"nativeSrc":"27051:35:49","nodeType":"YulFunctionCall","src":"27051:35:49"},"nativeSrc":"27051:35:49","nodeType":"YulExpressionStatement","src":"27051:35:49"}]},"evmVersion":"paris","externalReferences":[{"declaration":18641,"isOffset":false,"isSlot":false,"src":"26981:5:49","valueSize":1},{"declaration":18641,"isOffset":false,"isSlot":false,"src":"27033:5:49","valueSize":1},{"declaration":18612,"isOffset":false,"isSlot":false,"src":"27026:4:49","valueSize":1},{"declaration":18612,"isOffset":false,"isSlot":false,"src":"27058:4:49","valueSize":1},{"declaration":18614,"isOffset":false,"isSlot":false,"src":"26971:3:49","valueSize":1}],"id":18651,"nodeType":"InlineAssembly","src":"26924:173:49"}]}}]}]},"documentation":{"id":18610,"nodeType":"StructuredDocumentation","src":"26006:429:49","text":"@notice Copy bytes from one memory address into another.\n @dev This function was borrowed from Nick Johnson's `solidity-stringutils` lib, and reproduced here under the terms\n of [Apache License 2.0](https://github.com/Arachnid/solidity-stringutils/blob/master/LICENSE).\n @param dest Address of the destination memory.\n @param src Address to the source memory.\n @param len How many bytes to copy."},"id":18656,"implemented":true,"kind":"function","modifiers":[],"name":"memcpy","nameLocation":"26505:6:49","nodeType":"FunctionDefinition","parameters":{"id":18617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18612,"mutability":"mutable","name":"dest","nameLocation":"26525:4:49","nodeType":"VariableDeclaration","scope":18656,"src":"26520:9:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18611,"name":"uint","nodeType":"ElementaryTypeName","src":"26520:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18614,"mutability":"mutable","name":"src","nameLocation":"26543:3:49","nodeType":"VariableDeclaration","scope":18656,"src":"26538:8:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18613,"name":"uint","nodeType":"ElementaryTypeName","src":"26538:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18616,"mutability":"mutable","name":"len","nameLocation":"26560:3:49","nodeType":"VariableDeclaration","scope":18656,"src":"26555:8:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18615,"name":"uint","nodeType":"ElementaryTypeName","src":"26555:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26511:59:49"},"returnParameters":{"id":18618,"nodeType":"ParameterList","parameters":[],"src":"26592:0:49"},"scope":18657,"src":"26496:622:49","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":18658,"src":"644:26479:49","usedErrors":[16772,16778,16784],"usedEvents":[]}],"src":"35:27088:49"},"id":49},"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol","exportedSymbols":{"WitnetBuffer":[18657],"WitnetCBOR":[20200]},"id":20201,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":18659,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:31:50"},{"absolutePath":"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol","file":"./WitnetBuffer.sol","id":18660,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":20201,"sourceUnit":18658,"src":"70:28:50","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"WitnetCBOR","contractDependencies":[],"contractKind":"library","documentation":{"id":18661,"nodeType":"StructuredDocumentation","src":"102:432:50","text":"@title A minimalistic implementation of “RFC 7049 Concise Binary Object Representation”\n @notice This library leverages a buffer-like structure for step-by-step decoding of bytes so as to minimize\n the gas cost of decoding them into a useful native type.\n @dev Most of the logic has been borrowed from Patrick Gansterer’s cbor.js library: https://github.com/paroga/cbor-js\n @author The Witnet Foundation."},"fullyImplemented":true,"id":20200,"linearizedBaseContracts":[20200],"name":"WitnetCBOR","nameLocation":"544:10:50","nodeType":"ContractDefinition","nodes":[{"global":false,"id":18665,"libraryName":{"id":18662,"name":"WitnetBuffer","nameLocations":["568:12:50"],"nodeType":"IdentifierPath","referencedDeclaration":18657,"src":"568:12:50"},"nodeType":"UsingForDirective","src":"562:43:50","typeName":{"id":18664,"nodeType":"UserDefinedTypeName","pathNode":{"id":18663,"name":"WitnetBuffer.Buffer","nameLocations":["585:12:50","598:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"585:19:50"},"referencedDeclaration":16790,"src":"585:19:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}}},{"global":false,"id":18669,"libraryName":{"id":18666,"name":"WitnetCBOR","nameLocations":["615:10:50"],"nodeType":"IdentifierPath","referencedDeclaration":20200,"src":"615:10:50"},"nodeType":"UsingForDirective","src":"609:37:50","typeName":{"id":18668,"nodeType":"UserDefinedTypeName","pathNode":{"id":18667,"name":"WitnetCBOR.CBOR","nameLocations":["630:10:50","641:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"630:15:50"},"referencedDeclaration":18684,"src":"630:15:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}}},{"canonicalName":"WitnetCBOR.CBOR","documentation":{"id":18670,"nodeType":"StructuredDocumentation","src":"652:86:50","text":"Data struct following the RFC-7049 standard: Concise Binary Object Representation."},"id":18684,"members":[{"constant":false,"id":18673,"mutability":"mutable","name":"buffer","nameLocation":"783:6:50","nodeType":"VariableDeclaration","scope":18684,"src":"763:26:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":18672,"nodeType":"UserDefinedTypeName","pathNode":{"id":18671,"name":"WitnetBuffer.Buffer","nameLocations":["763:12:50","776:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"763:19:50"},"referencedDeclaration":16790,"src":"763:19:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":18675,"mutability":"mutable","name":"initialByte","nameLocation":"804:11:50","nodeType":"VariableDeclaration","scope":18684,"src":"798:17:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18674,"name":"uint8","nodeType":"ElementaryTypeName","src":"798:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":18677,"mutability":"mutable","name":"majorType","nameLocation":"830:9:50","nodeType":"VariableDeclaration","scope":18684,"src":"824:15:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18676,"name":"uint8","nodeType":"ElementaryTypeName","src":"824:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":18679,"mutability":"mutable","name":"additionalInformation","nameLocation":"854:21:50","nodeType":"VariableDeclaration","scope":18684,"src":"848:27:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18678,"name":"uint8","nodeType":"ElementaryTypeName","src":"848:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":18681,"mutability":"mutable","name":"len","nameLocation":"891:3:50","nodeType":"VariableDeclaration","scope":18684,"src":"884:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":18680,"name":"uint64","nodeType":"ElementaryTypeName","src":"884:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":18683,"mutability":"mutable","name":"tag","nameLocation":"910:3:50","nodeType":"VariableDeclaration","scope":18684,"src":"903:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":18682,"name":"uint64","nodeType":"ElementaryTypeName","src":"903:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"name":"CBOR","nameLocation":"749:4:50","nodeType":"StructDefinition","scope":20200,"src":"742:177:50","visibility":"public"},{"constant":true,"id":18687,"mutability":"constant","name":"MAJOR_TYPE_INT","nameLocation":"949:14:50","nodeType":"VariableDeclaration","scope":20200,"src":"925:42:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18685,"name":"uint8","nodeType":"ElementaryTypeName","src":"925:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"30","id":18686,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"966:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"constant":true,"id":18690,"mutability":"constant","name":"MAJOR_TYPE_NEGATIVE_INT","nameLocation":"996:23:50","nodeType":"VariableDeclaration","scope":20200,"src":"972:51:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18688,"name":"uint8","nodeType":"ElementaryTypeName","src":"972:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"31","id":18689,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1022:1:50","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"internal"},{"constant":true,"id":18693,"mutability":"constant","name":"MAJOR_TYPE_BYTES","nameLocation":"1052:16:50","nodeType":"VariableDeclaration","scope":20200,"src":"1028:44:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18691,"name":"uint8","nodeType":"ElementaryTypeName","src":"1028:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"32","id":18692,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1071:1:50","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"visibility":"internal"},{"constant":true,"id":18696,"mutability":"constant","name":"MAJOR_TYPE_STRING","nameLocation":"1101:17:50","nodeType":"VariableDeclaration","scope":20200,"src":"1077:45:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18694,"name":"uint8","nodeType":"ElementaryTypeName","src":"1077:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"33","id":18695,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1121:1:50","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"visibility":"internal"},{"constant":true,"id":18699,"mutability":"constant","name":"MAJOR_TYPE_ARRAY","nameLocation":"1151:16:50","nodeType":"VariableDeclaration","scope":20200,"src":"1127:44:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18697,"name":"uint8","nodeType":"ElementaryTypeName","src":"1127:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"34","id":18698,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1170:1:50","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"visibility":"internal"},{"constant":true,"id":18702,"mutability":"constant","name":"MAJOR_TYPE_MAP","nameLocation":"1200:14:50","nodeType":"VariableDeclaration","scope":20200,"src":"1176:42:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18700,"name":"uint8","nodeType":"ElementaryTypeName","src":"1176:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"35","id":18701,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1217:1:50","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"visibility":"internal"},{"constant":true,"id":18705,"mutability":"constant","name":"MAJOR_TYPE_TAG","nameLocation":"1247:14:50","nodeType":"VariableDeclaration","scope":20200,"src":"1223:42:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18703,"name":"uint8","nodeType":"ElementaryTypeName","src":"1223:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"36","id":18704,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1264:1:50","typeDescriptions":{"typeIdentifier":"t_rational_6_by_1","typeString":"int_const 6"},"value":"6"},"visibility":"internal"},{"constant":true,"id":18708,"mutability":"constant","name":"MAJOR_TYPE_CONTENT_FREE","nameLocation":"1294:23:50","nodeType":"VariableDeclaration","scope":20200,"src":"1270:51:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18706,"name":"uint8","nodeType":"ElementaryTypeName","src":"1270:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"37","id":18707,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1320:1:50","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"visibility":"internal"},{"constant":true,"id":18715,"mutability":"constant","name":"UINT32_MAX","nameLocation":"1353:10:50","nodeType":"VariableDeclaration","scope":20200,"src":"1328:54:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":18709,"name":"uint32","nodeType":"ElementaryTypeName","src":"1328:6:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"expression":{"arguments":[{"id":18712,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1371:6:50","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":18711,"name":"uint32","nodeType":"ElementaryTypeName","src":"1371:6:50","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"}],"id":18710,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1366:4:50","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":18713,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1366:12:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint32","typeString":"type(uint32)"}},"id":18714,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1379:3:50","memberName":"max","nodeType":"MemberAccess","src":"1366:16:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":true,"id":18722,"mutability":"constant","name":"UINT64_MAX","nameLocation":"1412:10:50","nodeType":"VariableDeclaration","scope":20200,"src":"1387:54:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":18716,"name":"uint64","nodeType":"ElementaryTypeName","src":"1387:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"value":{"expression":{"arguments":[{"id":18719,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1430:6:50","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":18718,"name":"uint64","nodeType":"ElementaryTypeName","src":"1430:6:50","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":18717,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1425:4:50","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":18720,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1425:12:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":18721,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1438:3:50","memberName":"max","nodeType":"MemberAccess","src":"1425:16:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"errorSelector":"521299a9","id":18724,"name":"EmptyArray","nameLocation":"1456:10:50","nodeType":"ErrorDefinition","parameters":{"id":18723,"nodeType":"ParameterList","parameters":[],"src":"1466:2:50"},"src":"1450:19:50"},{"errorSelector":"6d785b13","id":18728,"name":"InvalidLengthEncoding","nameLocation":"1479:21:50","nodeType":"ErrorDefinition","parameters":{"id":18727,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18726,"mutability":"mutable","name":"length","nameLocation":"1506:6:50","nodeType":"VariableDeclaration","scope":18728,"src":"1501:11:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18725,"name":"uint","nodeType":"ElementaryTypeName","src":"1501:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1500:13:50"},"src":"1473:41:50"},{"errorSelector":"001000a0","id":18734,"name":"UnexpectedMajorType","nameLocation":"1524:19:50","nodeType":"ErrorDefinition","parameters":{"id":18733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18730,"mutability":"mutable","name":"read","nameLocation":"1549:4:50","nodeType":"VariableDeclaration","scope":18734,"src":"1544:9:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18729,"name":"uint","nodeType":"ElementaryTypeName","src":"1544:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18732,"mutability":"mutable","name":"expected","nameLocation":"1560:8:50","nodeType":"VariableDeclaration","scope":18734,"src":"1555:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18731,"name":"uint","nodeType":"ElementaryTypeName","src":"1555:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1543:26:50"},"src":"1518:52:50"},{"errorSelector":"300c1304","id":18738,"name":"UnsupportedPrimitive","nameLocation":"1580:20:50","nodeType":"ErrorDefinition","parameters":{"id":18737,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18736,"mutability":"mutable","name":"primitive","nameLocation":"1606:9:50","nodeType":"VariableDeclaration","scope":18738,"src":"1601:14:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18735,"name":"uint","nodeType":"ElementaryTypeName","src":"1601:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1600:16:50"},"src":"1574:43:50"},{"errorSelector":"bd2ac879","id":18742,"name":"UnsupportedMajorType","nameLocation":"1627:20:50","nodeType":"ErrorDefinition","parameters":{"id":18741,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18740,"mutability":"mutable","name":"unexpected","nameLocation":"1653:10:50","nodeType":"VariableDeclaration","scope":18742,"src":"1648:15:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18739,"name":"uint","nodeType":"ElementaryTypeName","src":"1648:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1647:17:50"},"src":"1621:44:50"},{"body":{"id":18762,"nodeType":"Block","src":"1758:121:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18749,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18745,"src":"1769:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18750,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1774:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"1769:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":18751,"name":"expected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18747,"src":"1787:8:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"1769:26:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18760,"nodeType":"IfStatement","src":"1765:101:50","trueBody":{"id":18759,"nodeType":"Block","src":"1797:69:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":18754,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18745,"src":"1833:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18755,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1838:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"1833:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":18756,"name":"expected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18747,"src":"1849:8:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":18753,"name":"UnexpectedMajorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18734,"src":"1813:19:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":18757,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1813:45:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18758,"nodeType":"RevertStatement","src":"1806:52:50"}]}},{"id":18761,"nodeType":"PlaceholderStatement","src":"1872:1:50"}]},"id":18763,"name":"isMajorType","nameLocation":"1682:11:50","nodeType":"ModifierDefinition","parameters":{"id":18748,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18745,"mutability":"mutable","name":"cbor","nameLocation":"1725:4:50","nodeType":"VariableDeclaration","scope":18763,"src":"1702:27:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18744,"nodeType":"UserDefinedTypeName","pathNode":{"id":18743,"name":"WitnetCBOR.CBOR","nameLocations":["1702:10:50","1713:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"1702:15:50"},"referencedDeclaration":18684,"src":"1702:15:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"},{"constant":false,"id":18747,"mutability":"mutable","name":"expected","nameLocation":"1744:8:50","nodeType":"VariableDeclaration","scope":18763,"src":"1738:14:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18746,"name":"uint8","nodeType":"ElementaryTypeName","src":"1738:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"1693:64:50"},"src":"1673:206:50","virtual":false,"visibility":"internal"},{"body":{"id":18781,"nodeType":"Block","src":"1938:99:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18772,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":18768,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18766,"src":"1949:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18769,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1956:4:50","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"1949:11:50","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1961:6:50","memberName":"length","nodeType":"MemberAccess","src":"1949:18:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":18771,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1971:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1949:23:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18779,"nodeType":"IfStatement","src":"1945:79:50","trueBody":{"id":18778,"nodeType":"Block","src":"1974:50:50","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":18773,"name":"WitnetBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18657,"src":"1990:12:50","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WitnetBuffer_$18657_$","typeString":"type(library WitnetBuffer)"}},"id":18775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2003:11:50","memberName":"EmptyBuffer","nodeType":"MemberAccess","referencedDeclaration":16772,"src":"1990:24:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":18776,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1990:26:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18777,"nodeType":"RevertStatement","src":"1983:33:50"}]}},{"id":18780,"nodeType":"PlaceholderStatement","src":"2030:1:50"}]},"id":18782,"name":"notEmpty","nameLocation":"1894:8:50","nodeType":"ModifierDefinition","parameters":{"id":18767,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18766,"mutability":"mutable","name":"buffer","nameLocation":"1930:6:50","nodeType":"VariableDeclaration","scope":18782,"src":"1903:33:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":18765,"nodeType":"UserDefinedTypeName","pathNode":{"id":18764,"name":"WitnetBuffer.Buffer","nameLocations":["1903:12:50","1916:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"1903:19:50"},"referencedDeclaration":16790,"src":"1903:19:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"1902:35:50"},"src":"1885:152:50","virtual":false,"visibility":"internal"},{"body":{"id":18799,"nodeType":"Block","src":"2116:65:50","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18797,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":18790,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18785,"src":"2130:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18791,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2135:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"2130:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18792,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2142:6:50","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"2130:18:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"expression":{"expression":{"id":18793,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18785,"src":"2152:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18794,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2157:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"2152:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18795,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2164:4:50","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16787,"src":"2152:16:50","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2169:6:50","memberName":"length","nodeType":"MemberAccess","src":"2152:23:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2130:45:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":18789,"id":18798,"nodeType":"Return","src":"2123:52:50"}]},"id":18800,"implemented":true,"kind":"function","modifiers":[],"name":"eof","nameLocation":"2052:3:50","nodeType":"FunctionDefinition","parameters":{"id":18786,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18785,"mutability":"mutable","name":"cbor","nameLocation":"2068:4:50","nodeType":"VariableDeclaration","scope":18800,"src":"2056:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18784,"nodeType":"UserDefinedTypeName","pathNode":{"id":18783,"name":"CBOR","nameLocations":["2056:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"2056:4:50"},"referencedDeclaration":18684,"src":"2056:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"2055:18:50"},"returnParameters":{"id":18789,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18788,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18800,"src":"2107:4:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18787,"name":"bool","nodeType":"ElementaryTypeName","src":"2107:4:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2106:6:50"},"scope":20200,"src":"2043:138:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18824,"nodeType":"Block","src":"2579:113:50","statements":[{"assignments":[18813],"declarations":[{"constant":false,"id":18813,"mutability":"mutable","name":"buffer","nameLocation":"2613:6:50","nodeType":"VariableDeclaration","scope":18824,"src":"2586:33:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":18812,"nodeType":"UserDefinedTypeName","pathNode":{"id":18811,"name":"WitnetBuffer.Buffer","nameLocations":["2586:12:50","2599:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"2586:19:50"},"referencedDeclaration":16790,"src":"2586:19:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"id":18819,"initialValue":{"arguments":[{"id":18816,"name":"bytecode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18803,"src":"2642:8:50","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":18817,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2652:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"}],"expression":{"id":18814,"name":"WitnetBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18657,"src":"2622:12:50","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WitnetBuffer_$18657_$","typeString":"type(library WitnetBuffer)"}},"id":18815,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2635:6:50","memberName":"Buffer","nodeType":"MemberAccess","referencedDeclaration":16790,"src":"2622:19:50","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Buffer_$16790_storage_ptr_$","typeString":"type(struct WitnetBuffer.Buffer storage pointer)"}},"id":18818,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2622:32:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"nodeType":"VariableDeclarationStatement","src":"2586:68:50"},{"expression":{"arguments":[{"id":18821,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18813,"src":"2679:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":18820,"name":"fromBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18934,"src":"2668:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":18822,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2668:18:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"functionReturnParameters":18808,"id":18823,"nodeType":"Return","src":"2661:25:50"}]},"documentation":{"id":18801,"nodeType":"StructuredDocumentation","src":"2187:297:50","text":"@notice Decode a CBOR structure from raw bytes.\n @dev This is the main factory for CBOR instances, which can be later decoded into native EVM types.\n @param bytecode Raw bytes representing a CBOR-encoded value.\n @return A `CBOR` instance containing a partially decoded value."},"id":18825,"implemented":true,"kind":"function","modifiers":[],"name":"fromBytes","nameLocation":"2497:9:50","nodeType":"FunctionDefinition","parameters":{"id":18804,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18803,"mutability":"mutable","name":"bytecode","nameLocation":"2520:8:50","nodeType":"VariableDeclaration","scope":18825,"src":"2507:21:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18802,"name":"bytes","nodeType":"ElementaryTypeName","src":"2507:5:50","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2506:23:50"},"returnParameters":{"id":18808,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18807,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18825,"src":"2563:11:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18806,"nodeType":"UserDefinedTypeName","pathNode":{"id":18805,"name":"CBOR","nameLocations":["2563:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"2563:4:50"},"referencedDeclaration":18684,"src":"2563:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"2562:13:50"},"scope":20200,"src":"2488:204:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18933,"nodeType":"Block","src":"3136:907:50","statements":[{"assignments":[18839],"declarations":[{"constant":false,"id":18839,"mutability":"mutable","name":"initialByte","nameLocation":"3149:11:50","nodeType":"VariableDeclaration","scope":18933,"src":"3143:17:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18838,"name":"uint8","nodeType":"ElementaryTypeName","src":"3143:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":18840,"nodeType":"VariableDeclarationStatement","src":"3143:17:50"},{"assignments":[18842],"declarations":[{"constant":false,"id":18842,"mutability":"mutable","name":"majorType","nameLocation":"3173:9:50","nodeType":"VariableDeclaration","scope":18933,"src":"3167:15:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18841,"name":"uint8","nodeType":"ElementaryTypeName","src":"3167:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":18844,"initialValue":{"hexValue":"323535","id":18843,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3185:3:50","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"nodeType":"VariableDeclarationStatement","src":"3167:21:50"},{"assignments":[18846],"declarations":[{"constant":false,"id":18846,"mutability":"mutable","name":"additionalInformation","nameLocation":"3201:21:50","nodeType":"VariableDeclaration","scope":18933,"src":"3195:27:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18845,"name":"uint8","nodeType":"ElementaryTypeName","src":"3195:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":18847,"nodeType":"VariableDeclarationStatement","src":"3195:27:50"},{"assignments":[18849],"declarations":[{"constant":false,"id":18849,"mutability":"mutable","name":"tag","nameLocation":"3236:3:50","nodeType":"VariableDeclaration","scope":18933,"src":"3229:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":18848,"name":"uint64","nodeType":"ElementaryTypeName","src":"3229:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":18851,"initialValue":{"id":18850,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18722,"src":"3242:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"3229:23:50"},{"assignments":[18853],"declarations":[{"constant":false,"id":18853,"mutability":"mutable","name":"len","nameLocation":"3267:3:50","nodeType":"VariableDeclaration","scope":18933,"src":"3259:11:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18852,"name":"uint256","nodeType":"ElementaryTypeName","src":"3259:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18854,"nodeType":"VariableDeclarationStatement","src":"3259:11:50"},{"assignments":[18856],"declarations":[{"constant":false,"id":18856,"mutability":"mutable","name":"isTagged","nameLocation":"3282:8:50","nodeType":"VariableDeclaration","scope":18933,"src":"3277:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18855,"name":"bool","nodeType":"ElementaryTypeName","src":"3277:4:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":18858,"initialValue":{"hexValue":"74727565","id":18857,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3293:4:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"nodeType":"VariableDeclarationStatement","src":"3277:20:50"},{"body":{"id":18910,"nodeType":"Block","src":"3321:475:50","statements":[{"expression":{"id":18864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18860,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18839,"src":"3387:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":18861,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18829,"src":"3401:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18862,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3408:9:50","memberName":"readUint8","nodeType":"MemberAccess","referencedDeclaration":17727,"src":"3401:16:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint8_$attached_to$_t_struct$_Buffer_$16790_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":18863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3401:18:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"3387:32:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":18865,"nodeType":"ExpressionStatement","src":"3387:32:50"},{"expression":{"id":18867,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"3428:6:50","subExpression":{"id":18866,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18853,"src":"3428:3:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18868,"nodeType":"ExpressionStatement","src":"3428:6:50"},{"expression":{"id":18873,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18869,"name":"majorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18842,"src":"3443:9:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18870,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18839,"src":"3455:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"35","id":18871,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3470:1:50","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"3455:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"3443:28:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":18874,"nodeType":"ExpressionStatement","src":"3443:28:50"},{"expression":{"id":18879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18875,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18846,"src":"3480:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18878,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18876,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18839,"src":"3504:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783166","id":18877,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3518:4:50","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"0x1f"},"src":"3504:18:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"3480:42:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":18880,"nodeType":"ExpressionStatement","src":"3480:42:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18881,"name":"majorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18842,"src":"3569:9:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":18882,"name":"MAJOR_TYPE_TAG","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18705,"src":"3582:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"3569:27:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":18908,"nodeType":"Block","src":"3752:37:50","statements":[{"expression":{"id":18906,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18904,"name":"isTagged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18856,"src":"3763:8:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":18905,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3774:5:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"3763:16:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18907,"nodeType":"ExpressionStatement","src":"3763:16:50"}]},"id":18909,"nodeType":"IfStatement","src":"3565:224:50","trueBody":{"id":18903,"nodeType":"Block","src":"3598:148:50","statements":[{"assignments":[18885],"declarations":[{"constant":false,"id":18885,"mutability":"mutable","name":"_cursor","nameLocation":"3614:7:50","nodeType":"VariableDeclaration","scope":18903,"src":"3609:12:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18884,"name":"uint","nodeType":"ElementaryTypeName","src":"3609:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18888,"initialValue":{"expression":{"id":18886,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18829,"src":"3624:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18887,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3631:6:50","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"3624:13:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3609:28:50"},{"expression":{"id":18894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18889,"name":"tag","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18849,"src":"3648:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":18891,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18829,"src":"3665:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"id":18892,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18846,"src":"3673:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":18890,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19463,"src":"3654:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":18893,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3654:41:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"3648:47:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":18895,"nodeType":"ExpressionStatement","src":"3648:47:50"},{"expression":{"id":18901,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18896,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18853,"src":"3706:3:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18897,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18829,"src":"3713:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18898,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3720:6:50","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"3713:13:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18899,"name":"_cursor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18885,"src":"3729:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3713:23:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3706:30:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18902,"nodeType":"ExpressionStatement","src":"3706:30:50"}]}}]},"condition":{"id":18859,"name":"isTagged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18856,"src":"3311:8:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18911,"nodeType":"WhileStatement","src":"3304:492:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18912,"name":"majorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18842,"src":"3806:9:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":18913,"name":"MAJOR_TYPE_CONTENT_FREE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18708,"src":"3818:23:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"3806:35:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18920,"nodeType":"IfStatement","src":"3802:96:50","trueBody":{"id":18919,"nodeType":"Block","src":"3843:55:50","statements":[{"errorCall":{"arguments":[{"id":18916,"name":"majorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18842,"src":"3880:9:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":18915,"name":"UnsupportedMajorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18742,"src":"3859:20:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":18917,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3859:31:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":18918,"nodeType":"RevertStatement","src":"3852:38:50"}]}},{"expression":{"arguments":[{"id":18922,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18829,"src":"3924:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"id":18923,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18839,"src":"3939:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":18924,"name":"majorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18842,"src":"3959:9:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":18925,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18846,"src":"3977:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"arguments":[{"id":18928,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18853,"src":"4014:3:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18927,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4007:6:50","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":18926,"name":"uint64","nodeType":"ElementaryTypeName","src":"4007:6:50","typeDescriptions":{}}},"id":18929,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4007:11:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":18930,"name":"tag","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18849,"src":"4027:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":18921,"name":"CBOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18684,"src":"3911:4:50","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_CBOR_$18684_storage_ptr_$","typeString":"type(struct WitnetCBOR.CBOR storage pointer)"}},"id":18931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3911:126:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"functionReturnParameters":18837,"id":18932,"nodeType":"Return","src":"3904:133:50"}]},"documentation":{"id":18826,"nodeType":"StructuredDocumentation","src":"2698:308:50","text":"@notice Decode a CBOR structure from raw bytes.\n @dev This is an alternate factory for CBOR instances, which can be later decoded into native EVM types.\n @param buffer A Buffer structure representing a CBOR-encoded value.\n @return A `CBOR` instance containing a partially decoded value."},"id":18934,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":18832,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18829,"src":"3098:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"id":18833,"kind":"modifierInvocation","modifierName":{"id":18831,"name":"notEmpty","nameLocations":["3089:8:50"],"nodeType":"IdentifierPath","referencedDeclaration":18782,"src":"3089:8:50"},"nodeType":"ModifierInvocation","src":"3089:16:50"}],"name":"fromBuffer","nameLocation":"3019:10:50","nodeType":"FunctionDefinition","parameters":{"id":18830,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18829,"mutability":"mutable","name":"buffer","nameLocation":"3057:6:50","nodeType":"VariableDeclaration","scope":18934,"src":"3030:33:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":18828,"nodeType":"UserDefinedTypeName","pathNode":{"id":18827,"name":"WitnetBuffer.Buffer","nameLocations":["3030:12:50","3043:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"3030:19:50"},"referencedDeclaration":16790,"src":"3030:19:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"3029:35:50"},"returnParameters":{"id":18837,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18836,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18934,"src":"3120:11:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18835,"nodeType":"UserDefinedTypeName","pathNode":{"id":18834,"name":"CBOR","nameLocations":["3120:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"3120:4:50"},"referencedDeclaration":18684,"src":"3120:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"3119:13:50"},"scope":20200,"src":"3010:1033:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18960,"nodeType":"Block","src":"4152:242:50","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":18944,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18937,"src":"4188:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18945,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4193:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"4188:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18946,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4200:4:50","memberName":"fork","nodeType":"MemberAccess","referencedDeclaration":16874,"src":"4188:16:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_struct$_Buffer_$16790_memory_ptr_$attached_to$_t_struct$_Buffer_$16790_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (struct WitnetBuffer.Buffer memory)"}},"id":18947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4188:18:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":18948,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18937,"src":"4228:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18949,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4233:11:50","memberName":"initialByte","nodeType":"MemberAccess","referencedDeclaration":18675,"src":"4228:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"expression":{"id":18950,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18937,"src":"4264:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18951,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4269:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"4264:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"expression":{"id":18952,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18937,"src":"4310:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18953,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4315:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"4310:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"expression":{"id":18954,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18937,"src":"4350:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18955,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4355:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18681,"src":"4350:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"expression":{"id":18956,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18937,"src":"4372:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18957,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4377:3:50","memberName":"tag","nodeType":"MemberAccess","referencedDeclaration":18683,"src":"4372:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":18943,"name":"CBOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18684,"src":"4166:4:50","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_CBOR_$18684_storage_ptr_$","typeString":"type(struct WitnetCBOR.CBOR storage pointer)"}},"id":18958,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["4180:6:50","4215:11:50","4253:9:50","4287:21:50","4345:3:50","4367:3:50"],"names":["buffer","initialByte","majorType","additionalInformation","len","tag"],"nodeType":"FunctionCall","src":"4166:222:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"functionReturnParameters":18942,"id":18959,"nodeType":"Return","src":"4159:229:50"}]},"id":18961,"implemented":true,"kind":"function","modifiers":[],"name":"fork","nameLocation":"4058:4:50","nodeType":"FunctionDefinition","parameters":{"id":18938,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18937,"mutability":"mutable","name":"self","nameLocation":"4086:4:50","nodeType":"VariableDeclaration","scope":18961,"src":"4063:27:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18936,"nodeType":"UserDefinedTypeName","pathNode":{"id":18935,"name":"WitnetCBOR.CBOR","nameLocations":["4063:10:50","4074:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"4063:15:50"},"referencedDeclaration":18684,"src":"4063:15:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"4062:29:50"},"returnParameters":{"id":18942,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18941,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18961,"src":"4125:22:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18940,"nodeType":"UserDefinedTypeName","pathNode":{"id":18939,"name":"WitnetCBOR.CBOR","nameLocations":["4125:10:50","4136:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"4125:15:50"},"referencedDeclaration":18684,"src":"4125:15:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"4124:24:50"},"scope":20200,"src":"4049:345:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18984,"nodeType":"Block","src":"4498:110:50","statements":[{"condition":{"id":18973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4509:11:50","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":18970,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18964,"src":"4510:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18971,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4515:3:50","memberName":"eof","nodeType":"MemberAccess","referencedDeclaration":18800,"src":"4510:8:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_bool_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (bool)"}},"id":18972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4510:10:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":18982,"nodeType":"Block","src":"4575:28:50","statements":[{"expression":{"id":18980,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18964,"src":"4591:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"functionReturnParameters":18969,"id":18981,"nodeType":"Return","src":"4584:11:50"}]},"id":18983,"nodeType":"IfStatement","src":"4505:98:50","trueBody":{"id":18979,"nodeType":"Block","src":"4522:47:50","statements":[{"expression":{"arguments":[{"expression":{"id":18975,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18964,"src":"4549:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18976,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4554:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"4549:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":18974,"name":"fromBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18934,"src":"4538:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":18977,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4538:23:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"functionReturnParameters":18969,"id":18978,"nodeType":"Return","src":"4531:30:50"}]}}]},"id":18985,"implemented":true,"kind":"function","modifiers":[],"name":"settle","nameLocation":"4409:6:50","nodeType":"FunctionDefinition","parameters":{"id":18965,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18964,"mutability":"mutable","name":"self","nameLocation":"4428:4:50","nodeType":"VariableDeclaration","scope":18985,"src":"4416:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18963,"nodeType":"UserDefinedTypeName","pathNode":{"id":18962,"name":"CBOR","nameLocations":["4416:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"4416:4:50"},"referencedDeclaration":18684,"src":"4416:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"4415:18:50"},"returnParameters":{"id":18969,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18968,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18985,"src":"4471:22:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18967,"nodeType":"UserDefinedTypeName","pathNode":{"id":18966,"name":"WitnetCBOR.CBOR","nameLocations":["4471:10:50","4482:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"4471:15:50"},"referencedDeclaration":18684,"src":"4471:15:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"4470:24:50"},"scope":20200,"src":"4400:208:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19104,"nodeType":"Block","src":"4710:1039:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19018,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18997,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18994,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"4729:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18995,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4734:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"4729:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":18996,"name":"MAJOR_TYPE_INT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18687,"src":"4747:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4729:32:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18998,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"4774:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18999,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4779:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"4774:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19000,"name":"MAJOR_TYPE_NEGATIVE_INT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18690,"src":"4792:23:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4774:41:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4729:86:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19006,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19003,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"4841:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19004,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4846:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"4841:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19005,"name":"MAJOR_TYPE_CONTENT_FREE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18708,"src":"4859:23:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"4841:41:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19007,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"4900:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19008,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4905:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"4900:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3235","id":19009,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4930:2:50","typeDescriptions":{"typeIdentifier":"t_rational_25_by_1","typeString":"int_const 25"},"value":"25"},"src":"4900:32:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4841:91:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19015,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19012,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"4949:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19013,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4954:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"4949:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"3237","id":19014,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4979:2:50","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"4949:32:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4841:140:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":19017,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"4828:164:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4729:263:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19030,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5076:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19031,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5081:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"5076:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19032,"name":"MAJOR_TYPE_STRING","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18696,"src":"5094:17:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"5076:35:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19034,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5126:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19035,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5131:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"5126:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19036,"name":"MAJOR_TYPE_BYTES","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18693,"src":"5144:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"5126:34:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5076:84:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19057,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5301:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19058,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5306:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"5301:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19059,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18699,"src":"5319:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"5301:34:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19061,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5348:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19062,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5353:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"5348:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19063,"name":"MAJOR_TYPE_MAP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18702,"src":"5366:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"5348:32:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5301:79:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19078,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5493:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19079,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5498:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"5493:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":19080,"name":"MAJOR_TYPE_CONTENT_FREE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18708,"src":"5511:23:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"5493:41:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19090,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19082,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5560:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19083,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5565:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"5560:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"3230","id":19084,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5590:2:50","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"src":"5560:32:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19089,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19086,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5609:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19087,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5614:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"5609:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"3231","id":19088,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5639:2:50","typeDescriptions":{"typeIdentifier":"t_rational_21_by_1","typeString":"int_const 21"},"value":"21"},"src":"5609:32:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5560:81:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":19091,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5547:105:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"5493:159:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19098,"nodeType":"IfStatement","src":"5480:246:50","trueBody":{"id":19097,"nodeType":"Block","src":"5660:66:50","statements":[{"expression":{"arguments":[{"hexValue":"5769746e657443424f522e736b69703a20756e737570706f72746564206d616a6f722074797065","id":19094,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5676:41:50","typeDescriptions":{"typeIdentifier":"t_stringliteral_92a4e60c9c8a6bab113d51719bd32c972951c92a48fb0ef633db4f8d512f86fe","typeString":"literal_string \"WitnetCBOR.skip: unsupported major type\""},"value":"WitnetCBOR.skip: unsupported major type"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_92a4e60c9c8a6bab113d51719bd32c972951c92a48fb0ef633db4f8d512f86fe","typeString":"literal_string \"WitnetCBOR.skip: unsupported major type\""}],"id":19093,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"5669:6:50","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":19095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5669:49:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":19096,"nodeType":"ExpressionStatement","src":"5669:49:50"}]}},"id":19099,"nodeType":"IfStatement","src":"5289:437:50","trueBody":{"id":19077,"nodeType":"Block","src":"5388:86:50","statements":[{"expression":{"id":19075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":19066,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5398:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19068,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5403:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18681,"src":"5398:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":19070,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5420:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19071,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5425:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"5420:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19072,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5433:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19073,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5438:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"5433:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19069,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19463,"src":"5409:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19074,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5409:51:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"5398:62:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":19076,"nodeType":"ExpressionStatement","src":"5398:62:50"}]}},"id":19100,"nodeType":"IfStatement","src":"5062:664:50","trueBody":{"id":19056,"nodeType":"Block","src":"5168:115:50","statements":[{"assignments":[19040],"declarations":[{"constant":false,"id":19040,"mutability":"mutable","name":"len","nameLocation":"5184:3:50","nodeType":"VariableDeclaration","scope":19056,"src":"5177:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19039,"name":"uint64","nodeType":"ElementaryTypeName","src":"5177:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19047,"initialValue":{"arguments":[{"expression":{"id":19042,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5201:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19043,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5206:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"5201:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19044,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5214:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19045,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5219:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"5214:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19041,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19463,"src":"5190:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19046,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5190:51:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"5177:64:50"},{"expression":{"id":19054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"expression":{"id":19048,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5250:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19051,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5255:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"5250:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19052,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5262:6:50","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"5250:18:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":19053,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19040,"src":"5272:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"5250:25:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19055,"nodeType":"ExpressionStatement","src":"5250:25:50"}]}},"id":19101,"nodeType":"IfStatement","src":"4717:1009:50","trueBody":{"id":19029,"nodeType":"Block","src":"5000:56:50","statements":[{"expression":{"id":19027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"expression":{"id":19019,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5009:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19022,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5014:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"5009:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19023,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5021:6:50","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16789,"src":"5009:18:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19024,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5031:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19025,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5036:10:50","memberName":"peekLength","nodeType":"MemberAccess","referencedDeclaration":19145,"src":"5031:15:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_uint64_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64)"}},"id":19026,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5031:17:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"5009:39:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19028,"nodeType":"ExpressionStatement","src":"5009:39:50"}]}},{"expression":{"id":19102,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18988,"src":"5739:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"functionReturnParameters":18993,"id":19103,"nodeType":"Return","src":"5732:11:50"}]},"id":19105,"implemented":true,"kind":"function","modifiers":[],"name":"skip","nameLocation":"4623:4:50","nodeType":"FunctionDefinition","parameters":{"id":18989,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18988,"mutability":"mutable","name":"self","nameLocation":"4640:4:50","nodeType":"VariableDeclaration","scope":19105,"src":"4628:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18987,"nodeType":"UserDefinedTypeName","pathNode":{"id":18986,"name":"CBOR","nameLocations":["4628:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"4628:4:50"},"referencedDeclaration":18684,"src":"4628:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"4627:18:50"},"returnParameters":{"id":18993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18992,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19105,"src":"4683:22:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18991,"nodeType":"UserDefinedTypeName","pathNode":{"id":18990,"name":"WitnetCBOR.CBOR","nameLocations":["4683:10:50","4694:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"4683:15:50"},"referencedDeclaration":18684,"src":"4683:15:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"4682:24:50"},"scope":20200,"src":"4614:1135:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19144,"nodeType":"Block","src":"5837:266:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19116,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19113,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19108,"src":"5848:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19114,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5853:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"5848:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3234","id":19115,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5877:2:50","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},"src":"5848:31:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19123,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19120,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19108,"src":"5916:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19121,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5921:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"5916:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3238","id":19122,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5945:2:50","typeDescriptions":{"typeIdentifier":"t_rational_28_by_1","typeString":"int_const 28"},"value":"28"},"src":"5916:31:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19141,"nodeType":"Block","src":"6025:73:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":19137,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19108,"src":"6063:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19138,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6068:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"6063:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19136,"name":"InvalidLengthEncoding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18728,"src":"6041:21:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6041:49:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19140,"nodeType":"RevertStatement","src":"6034:56:50"}]},"id":19142,"nodeType":"IfStatement","src":"5912:186:50","trueBody":{"id":19135,"nodeType":"Block","src":"5949:70:50","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19132,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":19126,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5972:1:50","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19127,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19108,"src":"5978:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19128,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5983:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"5978:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3234","id":19129,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6007:2:50","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},"src":"5978:31:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19131,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5977:33:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"5972:38:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19125,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5965:6:50","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":19124,"name":"uint64","nodeType":"ElementaryTypeName","src":"5965:6:50","typeDescriptions":{}}},"id":19133,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5965:46:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":19112,"id":19134,"nodeType":"Return","src":"5958:53:50"}]}},"id":19143,"nodeType":"IfStatement","src":"5844:254:50","trueBody":{"id":19119,"nodeType":"Block","src":"5881:25:50","statements":[{"expression":{"hexValue":"30","id":19117,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5897:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":19112,"id":19118,"nodeType":"Return","src":"5890:8:50"}]}}]},"id":19145,"implemented":true,"kind":"function","modifiers":[],"name":"peekLength","nameLocation":"5764:10:50","nodeType":"FunctionDefinition","parameters":{"id":19109,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19108,"mutability":"mutable","name":"self","nameLocation":"5787:4:50","nodeType":"VariableDeclaration","scope":19145,"src":"5775:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19107,"nodeType":"UserDefinedTypeName","pathNode":{"id":19106,"name":"CBOR","nameLocations":["5775:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"5775:4:50"},"referencedDeclaration":18684,"src":"5775:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"5774:18:50"},"returnParameters":{"id":19112,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19111,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19145,"src":"5826:6:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19110,"name":"uint64","nodeType":"ElementaryTypeName","src":"5826:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"5825:8:50"},"scope":20200,"src":"5755:348:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19265,"nodeType":"Block","src":"6244:1096:50","statements":[{"assignments":[19160],"declarations":[{"constant":false,"id":19160,"mutability":"mutable","name":"len","nameLocation":"6343:3:50","nodeType":"VariableDeclaration","scope":19265,"src":"6336:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19159,"name":"uint64","nodeType":"ElementaryTypeName","src":"6336:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19167,"initialValue":{"arguments":[{"expression":{"id":19162,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19148,"src":"6360:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19163,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6365:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"6360:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19164,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19148,"src":"6373:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19165,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6378:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"6373:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19161,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19463,"src":"6349:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6349:51:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"6336:64:50"},{"expression":{"id":19177,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19168,"name":"items","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19157,"src":"6407:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19173,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19160,"src":"6426:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":19174,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6432:1:50","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6426:7:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19172,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"6415:10:50","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct WitnetCBOR.CBOR memory[] memory)"},"typeName":{"baseType":{"id":19170,"nodeType":"UserDefinedTypeName","pathNode":{"id":19169,"name":"CBOR","nameLocations":["6419:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"6419:4:50"},"referencedDeclaration":18684,"src":"6419:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":19171,"nodeType":"ArrayTypeName","src":"6419:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}}},"id":19176,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6415:19:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"src":"6407:27:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19178,"nodeType":"ExpressionStatement","src":"6407:27:50"},{"body":{"id":19257,"nodeType":"Block","src":"6476:704:50","statements":[{"expression":{"id":19193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19189,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19148,"src":"6529:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19190,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19148,"src":"6536:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19191,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6541:6:50","memberName":"settle","nodeType":"MemberAccess","referencedDeclaration":18985,"src":"6536:11:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_struct$_CBOR_$18684_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19192,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6536:13:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"6529:20:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19194,"nodeType":"ExpressionStatement","src":"6529:20:50"},{"expression":{"id":19201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":19195,"name":"items","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19157,"src":"6623:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19197,"indexExpression":{"id":19196,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19180,"src":"6629:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6623:9:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19198,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19148,"src":"6635:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19199,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6640:4:50","memberName":"fork","nodeType":"MemberAccess","referencedDeclaration":18961,"src":"6635:9:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_struct$_CBOR_$18684_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19200,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6635:11:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"6623:23:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19202,"nodeType":"ExpressionStatement","src":"6623:23:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19203,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19148,"src":"6659:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19204,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6664:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"6659:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19205,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18699,"src":"6677:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6659:34:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19226,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19148,"src":"6882:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19227,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6887:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"6882:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19228,"name":"MAJOR_TYPE_MAP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18702,"src":"6900:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6882:32:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19254,"nodeType":"Block","src":"7095:78:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19249,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19148,"src":"7152:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19251,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7157:4:50","memberName":"skip","nodeType":"MemberAccess","referencedDeclaration":19105,"src":"7152:9:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_struct$_CBOR_$18684_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19252,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7152:11:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19253,"nodeType":"ExpressionStatement","src":"7152:11:50"}]},"id":19255,"nodeType":"IfStatement","src":"6878:295:50","trueBody":{"id":19248,"nodeType":"Block","src":"6916:173:50","statements":[{"assignments":[19234],"declarations":[{"constant":false,"id":19234,"mutability":"mutable","name":"_subitems","nameLocation":"6941:9:50","nodeType":"VariableDeclaration","scope":19248,"src":"6927:23:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR[]"},"typeName":{"baseType":{"id":19232,"nodeType":"UserDefinedTypeName","pathNode":{"id":19231,"name":"CBOR","nameLocations":["6927:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"6927:4:50"},"referencedDeclaration":18684,"src":"6927:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":19233,"nodeType":"ArrayTypeName","src":"6927:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}},"visibility":"internal"}],"id":19238,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19235,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19148,"src":"6953:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19236,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6958:7:50","memberName":"readMap","nodeType":"MemberAccess","referencedDeclaration":19397,"src":"6953:12:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory[] memory)"}},"id":19237,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6953:14:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"6927:40:50"},{"expression":{"id":19246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19239,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19148,"src":"7041:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":19240,"name":"_subitems","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19234,"src":"7048:9:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19245,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19241,"name":"_subitems","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19234,"src":"7058:9:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7068:6:50","memberName":"length","nodeType":"MemberAccess","src":"7058:16:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":19243,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7077:1:50","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7058:20:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7048:31:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"7041:38:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19247,"nodeType":"ExpressionStatement","src":"7041:38:50"}]}},"id":19256,"nodeType":"IfStatement","src":"6655:518:50","trueBody":{"id":19225,"nodeType":"Block","src":"6695:177:50","statements":[{"assignments":[19211],"declarations":[{"constant":false,"id":19211,"mutability":"mutable","name":"_subitems","nameLocation":"6720:9:50","nodeType":"VariableDeclaration","scope":19225,"src":"6706:23:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR[]"},"typeName":{"baseType":{"id":19209,"nodeType":"UserDefinedTypeName","pathNode":{"id":19208,"name":"CBOR","nameLocations":["6706:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"6706:4:50"},"referencedDeclaration":18684,"src":"6706:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":19210,"nodeType":"ArrayTypeName","src":"6706:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}},"visibility":"internal"}],"id":19215,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19212,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19148,"src":"6732:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19213,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6737:9:50","memberName":"readArray","nodeType":"MemberAccess","referencedDeclaration":19266,"src":"6732:14:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory[] memory)"}},"id":19214,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6732:16:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"6706:42:50"},{"expression":{"id":19223,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19216,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19148,"src":"6824:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":19217,"name":"_subitems","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19211,"src":"6831:9:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19222,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19218,"name":"_subitems","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19211,"src":"6841:9:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19219,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6851:6:50","memberName":"length","nodeType":"MemberAccess","src":"6841:16:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":19220,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6860:1:50","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"6841:20:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6831:31:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"6824:38:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19224,"nodeType":"ExpressionStatement","src":"6824:38:50"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19183,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19180,"src":"6459:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19184,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19160,"src":"6464:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"6459:8:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19258,"initializationExpression":{"assignments":[19180],"declarations":[{"constant":false,"id":19180,"mutability":"mutable","name":"ix","nameLocation":"6451:2:50","nodeType":"VariableDeclaration","scope":19258,"src":"6446:7:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19179,"name":"uint","nodeType":"ElementaryTypeName","src":"6446:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19182,"initialValue":{"hexValue":"30","id":19181,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6456:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6446:11:50"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":19187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"6469:5:50","subExpression":{"id":19186,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19180,"src":"6469:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19188,"nodeType":"ExpressionStatement","src":"6469:5:50"},"nodeType":"ForStatement","src":"6441:739:50"},{"expression":{"id":19263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":19259,"name":"items","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19157,"src":"7317:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19261,"indexExpression":{"id":19260,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19160,"src":"7323:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7317:10:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":19262,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19148,"src":"7330:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"7317:17:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19264,"nodeType":"ExpressionStatement","src":"7317:17:50"}]},"id":19266,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19151,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19148,"src":"6182:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19152,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18699,"src":"6188:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19153,"kind":"modifierInvocation","modifierName":{"id":19150,"name":"isMajorType","nameLocations":["6170:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18763,"src":"6170:11:50"},"nodeType":"ModifierInvocation","src":"6170:35:50"}],"name":"readArray","nameLocation":"6118:9:50","nodeType":"FunctionDefinition","parameters":{"id":19149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19148,"mutability":"mutable","name":"self","nameLocation":"6140:4:50","nodeType":"VariableDeclaration","scope":19266,"src":"6128:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19147,"nodeType":"UserDefinedTypeName","pathNode":{"id":19146,"name":"CBOR","nameLocations":["6128:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"6128:4:50"},"referencedDeclaration":18684,"src":"6128:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"6127:18:50"},"returnParameters":{"id":19158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19157,"mutability":"mutable","name":"items","nameLocation":"6234:5:50","nodeType":"VariableDeclaration","scope":19266,"src":"6220:19:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR[]"},"typeName":{"baseType":{"id":19155,"nodeType":"UserDefinedTypeName","pathNode":{"id":19154,"name":"CBOR","nameLocations":["6220:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"6220:4:50"},"referencedDeclaration":18684,"src":"6220:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":19156,"nodeType":"ArrayTypeName","src":"6220:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}},"visibility":"internal"}],"src":"6219:21:50"},"scope":20200,"src":"6109:1231:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19396,"nodeType":"Block","src":"7477:1178:50","statements":[{"assignments":[19281],"declarations":[{"constant":false,"id":19281,"mutability":"mutable","name":"len","nameLocation":"7592:3:50","nodeType":"VariableDeclaration","scope":19396,"src":"7585:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19280,"name":"uint64","nodeType":"ElementaryTypeName","src":"7585:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19290,"initialValue":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":19283,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"7609:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19284,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7614:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"7609:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19285,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"7622:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19286,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7627:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"7622:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19282,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19463,"src":"7598:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19287,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7598:51:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"32","id":19288,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7652:1:50","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"7598:55:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"7585:68:50"},{"expression":{"id":19300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19291,"name":"items","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19278,"src":"7660:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19296,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19281,"src":"7679:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":19297,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7685:1:50","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"7679:7:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19295,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"7668:10:50","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct WitnetCBOR.CBOR memory[] memory)"},"typeName":{"baseType":{"id":19293,"nodeType":"UserDefinedTypeName","pathNode":{"id":19292,"name":"CBOR","nameLocations":["7672:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"7672:4:50"},"referencedDeclaration":18684,"src":"7672:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":19294,"nodeType":"ArrayTypeName","src":"7672:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}}},"id":19299,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7668:19:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"src":"7660:27:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19301,"nodeType":"ExpressionStatement","src":"7660:27:50"},{"body":{"id":19388,"nodeType":"Block","src":"7729:766:50","statements":[{"expression":{"id":19316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19312,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"7782:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19313,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"7789:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19314,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7794:6:50","memberName":"settle","nodeType":"MemberAccess","referencedDeclaration":18985,"src":"7789:11:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_struct$_CBOR_$18684_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19315,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7789:13:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"7782:20:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19317,"nodeType":"ExpressionStatement","src":"7782:20:50"},{"expression":{"id":19324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":19318,"name":"items","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19278,"src":"7876:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19320,"indexExpression":{"id":19319,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19303,"src":"7882:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7876:9:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19321,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"7888:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19322,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7893:4:50","memberName":"fork","nodeType":"MemberAccess","referencedDeclaration":18961,"src":"7888:9:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_struct$_CBOR_$18684_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19323,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7888:11:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"7876:23:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19325,"nodeType":"ExpressionStatement","src":"7876:23:50"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19330,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19326,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19303,"src":"7912:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"32","id":19327,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7917:1:50","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"7912:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":19329,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7922:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7912:11:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19331,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"7927:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19332,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7932:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"7927:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":19333,"name":"MAJOR_TYPE_STRING","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18696,"src":"7945:17:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"7927:35:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"7912:50:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19346,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19343,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"8056:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19344,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8061:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"8056:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19345,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18699,"src":"8074:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"8056:34:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19347,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"8094:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19348,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8099:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"8094:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19349,"name":"MAJOR_TYPE_MAP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18702,"src":"8112:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"8094:32:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"8056:70:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19385,"nodeType":"Block","src":"8410:78:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19380,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"8467:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19382,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8472:4:50","memberName":"skip","nodeType":"MemberAccess","referencedDeclaration":19105,"src":"8467:9:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_struct$_CBOR_$18684_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19383,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8467:11:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19384,"nodeType":"ExpressionStatement","src":"8467:11:50"}]},"id":19386,"nodeType":"IfStatement","src":"8052:436:50","trueBody":{"id":19379,"nodeType":"Block","src":"8128:276:50","statements":[{"assignments":[19356],"declarations":[{"constant":false,"id":19356,"mutability":"mutable","name":"_subitems","nameLocation":"8153:9:50","nodeType":"VariableDeclaration","scope":19379,"src":"8139:23:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR[]"},"typeName":{"baseType":{"id":19354,"nodeType":"UserDefinedTypeName","pathNode":{"id":19353,"name":"CBOR","nameLocations":["8139:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"8139:4:50"},"referencedDeclaration":18684,"src":"8139:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":19355,"nodeType":"ArrayTypeName","src":"8139:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}},"visibility":"internal"}],"id":19369,"initialValue":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19357,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"8166:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19358,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8171:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"8166:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19359,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18699,"src":"8184:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"8166:34:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19364,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"8248:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19365,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8253:7:50","memberName":"readMap","nodeType":"MemberAccess","referencedDeclaration":19397,"src":"8248:12:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory[] memory)"}},"id":19366,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8248:14:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"8166:96:50","trueExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19361,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"8216:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19362,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8221:9:50","memberName":"readArray","nodeType":"MemberAccess","referencedDeclaration":19266,"src":"8216:14:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory[] memory)"}},"id":19363,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8216:16:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}}],"id":19368,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8165:108:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"8139:134:50"},{"expression":{"id":19377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19370,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"8356:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":19371,"name":"_subitems","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19356,"src":"8363:9:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19376,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19372,"name":"_subitems","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19356,"src":"8373:9:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8383:6:50","memberName":"length","nodeType":"MemberAccess","src":"8373:16:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":19374,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8392:1:50","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"8373:20:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"8363:31:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"8356:38:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19378,"nodeType":"ExpressionStatement","src":"8356:38:50"}]}},"id":19387,"nodeType":"IfStatement","src":"7908:580:50","trueBody":{"id":19342,"nodeType":"Block","src":"7964:82:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":19337,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"8002:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19338,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8007:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"8002:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":19339,"name":"MAJOR_TYPE_STRING","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18696,"src":"8018:17:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19336,"name":"UnexpectedMajorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18734,"src":"7982:19:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":19340,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7982:54:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19341,"nodeType":"RevertStatement","src":"7975:61:50"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19306,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19303,"src":"7712:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19307,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19281,"src":"7717:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"7712:8:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19389,"initializationExpression":{"assignments":[19303],"declarations":[{"constant":false,"id":19303,"mutability":"mutable","name":"ix","nameLocation":"7704:2:50","nodeType":"VariableDeclaration","scope":19389,"src":"7699:7:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19302,"name":"uint","nodeType":"ElementaryTypeName","src":"7699:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19305,"initialValue":{"hexValue":"30","id":19304,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7709:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"7699:11:50"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":19310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"7722:5:50","subExpression":{"id":19309,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19303,"src":"7722:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19311,"nodeType":"ExpressionStatement","src":"7722:5:50"},"nodeType":"ForStatement","src":"7694:801:50"},{"expression":{"id":19394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":19390,"name":"items","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19278,"src":"8632:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19392,"indexExpression":{"id":19391,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19281,"src":"8638:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"8632:10:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":19393,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"8645:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"8632:17:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19395,"nodeType":"ExpressionStatement","src":"8632:17:50"}]},"id":19397,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19272,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19269,"src":"7417:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19273,"name":"MAJOR_TYPE_MAP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18702,"src":"7423:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19274,"kind":"modifierInvocation","modifierName":{"id":19271,"name":"isMajorType","nameLocations":["7405:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18763,"src":"7405:11:50"},"nodeType":"ModifierInvocation","src":"7405:33:50"}],"name":"readMap","nameLocation":"7355:7:50","nodeType":"FunctionDefinition","parameters":{"id":19270,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19269,"mutability":"mutable","name":"self","nameLocation":"7375:4:50","nodeType":"VariableDeclaration","scope":19397,"src":"7363:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19268,"nodeType":"UserDefinedTypeName","pathNode":{"id":19267,"name":"CBOR","nameLocations":["7363:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"7363:4:50"},"referencedDeclaration":18684,"src":"7363:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"7362:18:50"},"returnParameters":{"id":19279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19278,"mutability":"mutable","name":"items","nameLocation":"7467:5:50","nodeType":"VariableDeclaration","scope":19397,"src":"7453:19:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR[]"},"typeName":{"baseType":{"id":19276,"nodeType":"UserDefinedTypeName","pathNode":{"id":19275,"name":"CBOR","nameLocations":["7453:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"7453:4:50"},"referencedDeclaration":18684,"src":"7453:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":19277,"nodeType":"ArrayTypeName","src":"7453:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18684_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}},"visibility":"internal"}],"src":"7452:21:50"},"scope":20200,"src":"7346:1309:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19462,"nodeType":"Block","src":"8983:547:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19410,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19408,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19403,"src":"8994:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3234","id":19409,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9018:2:50","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},"src":"8994:26:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19414,"nodeType":"IfStatement","src":"8990:77:50","trueBody":{"id":19413,"nodeType":"Block","src":"9022:45:50","statements":[{"expression":{"id":19411,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19403,"src":"9038:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":19407,"id":19412,"nodeType":"Return","src":"9031:28:50"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19415,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19403,"src":"9077:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3234","id":19416,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9102:2:50","typeDescriptions":{"typeIdentifier":"t_rational_24_by_1","typeString":"int_const 24"},"value":"24"},"src":"9077:27:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19423,"nodeType":"IfStatement","src":"9073:75:50","trueBody":{"id":19422,"nodeType":"Block","src":"9106:42:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19418,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19401,"src":"9122:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19419,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9129:9:50","memberName":"readUint8","nodeType":"MemberAccess","referencedDeclaration":17727,"src":"9122:16:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint8_$attached_to$_t_struct$_Buffer_$16790_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":19420,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9122:18:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":19407,"id":19421,"nodeType":"Return","src":"9115:25:50"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19424,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19403,"src":"9158:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3235","id":19425,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9183:2:50","typeDescriptions":{"typeIdentifier":"t_rational_25_by_1","typeString":"int_const 25"},"value":"25"},"src":"9158:27:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19432,"nodeType":"IfStatement","src":"9154:76:50","trueBody":{"id":19431,"nodeType":"Block","src":"9187:43:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19427,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19401,"src":"9203:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19428,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9210:10:50","memberName":"readUint16","nodeType":"MemberAccess","referencedDeclaration":17763,"src":"9203:17:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint16_$attached_to$_t_struct$_Buffer_$16790_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint16)"}},"id":19429,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9203:19:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"functionReturnParameters":19407,"id":19430,"nodeType":"Return","src":"9196:26:50"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19435,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19433,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19403,"src":"9240:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3236","id":19434,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9265:2:50","typeDescriptions":{"typeIdentifier":"t_rational_26_by_1","typeString":"int_const 26"},"value":"26"},"src":"9240:27:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19441,"nodeType":"IfStatement","src":"9236:76:50","trueBody":{"id":19440,"nodeType":"Block","src":"9269:43:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19436,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19401,"src":"9285:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19437,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9292:10:50","memberName":"readUint32","nodeType":"MemberAccess","referencedDeclaration":17799,"src":"9285:17:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint32_$attached_to$_t_struct$_Buffer_$16790_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint32)"}},"id":19438,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9285:19:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":19407,"id":19439,"nodeType":"Return","src":"9278:26:50"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19444,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19442,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19403,"src":"9322:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3237","id":19443,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9347:2:50","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"9322:27:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19450,"nodeType":"IfStatement","src":"9318:76:50","trueBody":{"id":19449,"nodeType":"Block","src":"9351:43:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19445,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19401,"src":"9367:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19446,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9374:10:50","memberName":"readUint64","nodeType":"MemberAccess","referencedDeclaration":17835,"src":"9367:17:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint64_$attached_to$_t_struct$_Buffer_$16790_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint64)"}},"id":19447,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9367:19:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":19407,"id":19448,"nodeType":"Return","src":"9360:26:50"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19451,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19403,"src":"9404:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3331","id":19452,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9429:2:50","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"31"},"src":"9404:27:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19457,"nodeType":"IfStatement","src":"9400:67:50","trueBody":{"id":19456,"nodeType":"Block","src":"9433:34:50","statements":[{"expression":{"id":19454,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18722,"src":"9449:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":19407,"id":19455,"nodeType":"Return","src":"9442:17:50"}]}},{"errorCall":{"arguments":[{"id":19459,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19403,"src":"9502:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19458,"name":"InvalidLengthEncoding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18728,"src":"9480:21:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19460,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9480:44:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19461,"nodeType":"RevertStatement","src":"9473:51:50"}]},"documentation":{"id":19398,"nodeType":"StructuredDocumentation","src":"8661:168:50","text":"Reads the length of the settle CBOR item from a buffer, consuming a different number of bytes depending on the\n value of the `additionalInformation` argument."},"id":19463,"implemented":true,"kind":"function","modifiers":[],"name":"readLength","nameLocation":"8842:10:50","nodeType":"FunctionDefinition","parameters":{"id":19404,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19401,"mutability":"mutable","name":"buffer","nameLocation":"8888:6:50","nodeType":"VariableDeclaration","scope":19463,"src":"8861:33:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":19400,"nodeType":"UserDefinedTypeName","pathNode":{"id":19399,"name":"WitnetBuffer.Buffer","nameLocations":["8861:12:50","8874:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"8861:19:50"},"referencedDeclaration":16790,"src":"8861:19:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":19403,"mutability":"mutable","name":"additionalInformation","nameLocation":"8909:21:50","nodeType":"VariableDeclaration","scope":19463,"src":"8903:27:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":19402,"name":"uint8","nodeType":"ElementaryTypeName","src":"8903:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"8852:85:50"},"returnParameters":{"id":19407,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19406,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19463,"src":"8972:6:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19405,"name":"uint64","nodeType":"ElementaryTypeName","src":"8972:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8971:8:50"},"scope":20200,"src":"8833:697:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19498,"nodeType":"Block","src":"9841:229:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19476,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19467,"src":"9852:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19477,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9857:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"9852:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3230","id":19478,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9882:2:50","typeDescriptions":{"typeIdentifier":"t_rational_20_by_1","typeString":"int_const 20"},"value":"20"},"src":"9852:32:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19483,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19467,"src":"9925:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19484,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9930:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"9925:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3231","id":19485,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9955:2:50","typeDescriptions":{"typeIdentifier":"t_rational_21_by_1","typeString":"int_const 21"},"value":"21"},"src":"9925:32:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19495,"nodeType":"Block","src":"9993:72:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":19491,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19467,"src":"10030:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19492,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10035:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"10030:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19490,"name":"UnsupportedPrimitive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18738,"src":"10009:20:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10009:48:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19494,"nodeType":"RevertStatement","src":"10002:55:50"}]},"id":19496,"nodeType":"IfStatement","src":"9921:144:50","trueBody":{"id":19489,"nodeType":"Block","src":"9959:28:50","statements":[{"expression":{"hexValue":"74727565","id":19487,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9975:4:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":19475,"id":19488,"nodeType":"Return","src":"9968:11:50"}]}},"id":19497,"nodeType":"IfStatement","src":"9848:217:50","trueBody":{"id":19482,"nodeType":"Block","src":"9886:29:50","statements":[{"expression":{"hexValue":"66616c7365","id":19480,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9902:5:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"functionReturnParameters":19475,"id":19481,"nodeType":"Return","src":"9895:12:50"}]}}]},"documentation":{"id":19464,"nodeType":"StructuredDocumentation","src":"9536:175:50","text":"@notice Read a `CBOR` structure into a native `bool` value.\n @param cbor An instance of `CBOR`.\n @return The value represented by the input, as a `bool` value."},"id":19499,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19470,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19467,"src":"9787:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19471,"name":"MAJOR_TYPE_CONTENT_FREE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18708,"src":"9793:23:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19472,"kind":"modifierInvocation","modifierName":{"id":19469,"name":"isMajorType","nameLocations":["9775:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18763,"src":"9775:11:50"},"nodeType":"ModifierInvocation","src":"9775:42:50"}],"name":"readBool","nameLocation":"9724:8:50","nodeType":"FunctionDefinition","parameters":{"id":19468,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19467,"mutability":"mutable","name":"cbor","nameLocation":"9745:4:50","nodeType":"VariableDeclaration","scope":19499,"src":"9733:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19466,"nodeType":"UserDefinedTypeName","pathNode":{"id":19465,"name":"CBOR","nameLocations":["9733:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"9733:4:50"},"referencedDeclaration":18684,"src":"9733:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"9732:18:50"},"returnParameters":{"id":19475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19474,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19499,"src":"9832:4:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":19473,"name":"bool","nodeType":"ElementaryTypeName","src":"9832:4:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9831:6:50"},"scope":20200,"src":"9715:355:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19597,"nodeType":"Block","src":"10404:786:50","statements":[{"expression":{"id":19521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":19512,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19503,"src":"10411:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19514,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"10416:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18681,"src":"10411:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":19516,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19503,"src":"10441:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19517,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10446:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"10441:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19518,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19503,"src":"10461:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19519,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10466:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"10461:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19515,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19463,"src":"10422:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19520,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10422:72:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"10411:83:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":19522,"nodeType":"ExpressionStatement","src":"10411:83:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19526,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19523,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19503,"src":"10505:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19524,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10510:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18681,"src":"10505:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19525,"name":"UINT32_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18715,"src":"10517:10:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"10505:22:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19595,"nodeType":"Block","src":"11127:58:50","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":19590,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19503,"src":"11167:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19591,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11172:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18681,"src":"11167:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19589,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11160:6:50","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":19588,"name":"uint32","nodeType":"ElementaryTypeName","src":"11160:6:50","typeDescriptions":{}}},"id":19592,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11160:16:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"expression":{"id":19585,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19503,"src":"11143:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19586,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11148:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"11143:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19587,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11155:4:50","memberName":"read","nodeType":"MemberAccess","referencedDeclaration":17114,"src":"11143:16:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_Buffer_$16790_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256) pure returns (bytes memory)"}},"id":19593,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11143:34:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":19511,"id":19594,"nodeType":"Return","src":"11136:41:50"}]},"id":19596,"nodeType":"IfStatement","src":"10501:684:50","trueBody":{"id":19584,"nodeType":"Block","src":"10529:592:50","statements":[{"assignments":[19528],"declarations":[{"constant":false,"id":19528,"mutability":"mutable","name":"length","nameLocation":"10633:6:50","nodeType":"VariableDeclaration","scope":19584,"src":"10626:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":19527,"name":"uint32","nodeType":"ElementaryTypeName","src":"10626:6:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":19538,"initialValue":{"arguments":[{"arguments":[{"expression":{"id":19532,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19503,"src":"10687:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19533,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10692:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"10687:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19534,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19503,"src":"10709:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19535,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10714:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"10709:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19531,"name":"_readIndefiniteStringLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20199,"src":"10649:27:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19536,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10649:83:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19530,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10642:6:50","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":19529,"name":"uint32","nodeType":"ElementaryTypeName","src":"10642:6:50","typeDescriptions":{}}},"id":19537,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10642:91:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"10626:107:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":19541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19539,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19528,"src":"10746:6:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19540,"name":"UINT32_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18715,"src":"10755:10:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"10746:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19583,"nodeType":"IfStatement","src":"10742:372:50","trueBody":{"id":19582,"nodeType":"Block","src":"10767:347:50","statements":[{"expression":{"id":19551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19542,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19510,"src":"10778:6:50","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":19548,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19528,"src":"10821:6:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"expression":{"id":19545,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19503,"src":"10804:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19546,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10809:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"10804:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19547,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10816:4:50","memberName":"read","nodeType":"MemberAccess","referencedDeclaration":17114,"src":"10804:16:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_Buffer_$16790_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256) pure returns (bytes memory)"}},"id":19549,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10804:24:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":19543,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"10787:3:50","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":19544,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"10791:12:50","memberName":"encodePacked","nodeType":"MemberAccess","src":"10787:16:50","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":19550,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10787:42:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"10778:51:50","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":19552,"nodeType":"ExpressionStatement","src":"10778:51:50"},{"expression":{"id":19563,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19553,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19528,"src":"10840:6:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"expression":{"id":19557,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19503,"src":"10896:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19558,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10901:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"10896:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19559,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19503,"src":"10920:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19560,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10925:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"10920:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19556,"name":"_readIndefiniteStringLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20199,"src":"10856:27:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19561,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10856:89:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19555,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"10849:6:50","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":19554,"name":"uint32","nodeType":"ElementaryTypeName","src":"10849:6:50","typeDescriptions":{}}},"id":19562,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10849:97:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"10840:106:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":19564,"nodeType":"ExpressionStatement","src":"10840:106:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":19567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19565,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19528,"src":"10961:6:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19566,"name":"UINT32_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18715,"src":"10970:10:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"10961:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19581,"nodeType":"IfStatement","src":"10957:148:50","trueBody":{"id":19580,"nodeType":"Block","src":"10982:123:50","statements":[{"expression":{"id":19578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19568,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19510,"src":"10995:6:50","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":19571,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19510,"src":"11035:6:50","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"arguments":[{"id":19575,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19528,"src":"11073:6:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"expression":{"id":19572,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19503,"src":"11056:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19573,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11061:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"11056:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19574,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11068:4:50","memberName":"read","nodeType":"MemberAccess","referencedDeclaration":17114,"src":"11056:16:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_Buffer_$16790_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256) pure returns (bytes memory)"}},"id":19576,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11056:24:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":19569,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"11004:3:50","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":19570,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"11008:12:50","memberName":"encodePacked","nodeType":"MemberAccess","src":"11004:16:50","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":19577,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11004:89:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"src":"10995:98:50","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":19579,"nodeType":"ExpressionStatement","src":"10995:98:50"}]}}]}}]}}]},"documentation":{"id":19500,"nodeType":"StructuredDocumentation","src":"10076:189:50","text":"@notice Decode a `CBOR` structure into a native `bytes` value.\n @param cbor An instance of `CBOR`.\n @return output The value represented by the input, as a `bytes` value.   "},"id":19598,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19506,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19503,"src":"10342:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19507,"name":"MAJOR_TYPE_BYTES","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18693,"src":"10348:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19508,"kind":"modifierInvocation","modifierName":{"id":19505,"name":"isMajorType","nameLocations":["10330:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18763,"src":"10330:11:50"},"nodeType":"ModifierInvocation","src":"10330:35:50"}],"name":"readBytes","nameLocation":"10278:9:50","nodeType":"FunctionDefinition","parameters":{"id":19504,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19503,"mutability":"mutable","name":"cbor","nameLocation":"10300:4:50","nodeType":"VariableDeclaration","scope":19598,"src":"10288:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19502,"nodeType":"UserDefinedTypeName","pathNode":{"id":19501,"name":"CBOR","nameLocations":["10288:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"10288:4:50"},"referencedDeclaration":18684,"src":"10288:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"10287:18:50"},"returnParameters":{"id":19511,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19510,"mutability":"mutable","name":"output","nameLocation":"10393:6:50","nodeType":"VariableDeclaration","scope":19598,"src":"10380:19:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":19509,"name":"bytes","nodeType":"ElementaryTypeName","src":"10380:5:50","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"10379:21:50"},"scope":20200,"src":"10269:921:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19628,"nodeType":"Block","src":"11866:177:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19614,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19611,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19602,"src":"11877:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19612,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11882:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"11877:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3235","id":19613,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11907:2:50","typeDescriptions":{"typeIdentifier":"t_rational_25_by_1","typeString":"int_const 25"},"value":"25"},"src":"11877:32:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19626,"nodeType":"Block","src":"11966:72:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":19622,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19602,"src":"12003:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19623,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12008:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"12003:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19621,"name":"UnsupportedPrimitive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18738,"src":"11982:20:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19624,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11982:48:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19625,"nodeType":"RevertStatement","src":"11975:55:50"}]},"id":19627,"nodeType":"IfStatement","src":"11873:165:50","trueBody":{"id":19620,"nodeType":"Block","src":"11911:49:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":19615,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19602,"src":"11927:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19616,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11932:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"11927:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19617,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11939:11:50","memberName":"readFloat16","nodeType":"MemberAccess","referencedDeclaration":17265,"src":"11927:23:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_int32_$attached_to$_t_struct$_Buffer_$16790_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (int32)"}},"id":19618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11927:25:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"functionReturnParameters":19610,"id":19619,"nodeType":"Return","src":"11920:32:50"}]}}]},"documentation":{"id":19599,"nodeType":"StructuredDocumentation","src":"11196:536:50","text":"@notice Decode a `CBOR` structure into a `fixed16` value.\n @dev Due to the lack of support for floating or fixed point arithmetic in the EVM, this method offsets all values\n by 5 decimal orders so as to get a fixed precision of 5 decimal positions, which should be OK for most `fixed16`\n use cases. In other words, the output of this method is 10,000 times the actual value, encoded into an `int32`.\n @param cbor An instance of `CBOR`.\n @return The value represented by the input, as an `int128` value."},"id":19629,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19605,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19602,"src":"11811:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19606,"name":"MAJOR_TYPE_CONTENT_FREE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18708,"src":"11817:23:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19607,"kind":"modifierInvocation","modifierName":{"id":19604,"name":"isMajorType","nameLocations":["11799:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18763,"src":"11799:11:50"},"nodeType":"ModifierInvocation","src":"11799:42:50"}],"name":"readFloat16","nameLocation":"11745:11:50","nodeType":"FunctionDefinition","parameters":{"id":19603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19602,"mutability":"mutable","name":"cbor","nameLocation":"11769:4:50","nodeType":"VariableDeclaration","scope":19629,"src":"11757:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19601,"nodeType":"UserDefinedTypeName","pathNode":{"id":19600,"name":"CBOR","nameLocations":["11757:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"11757:4:50"},"referencedDeclaration":18684,"src":"11757:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"11756:18:50"},"returnParameters":{"id":19610,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19609,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19629,"src":"11856:5:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":19608,"name":"int32","nodeType":"ElementaryTypeName","src":"11856:5:50","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"src":"11855:7:50"},"scope":20200,"src":"11736:307:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19659,"nodeType":"Block","src":"12710:177:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19645,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19642,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"12721:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19643,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12726:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"12721:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3236","id":19644,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"12751:2:50","typeDescriptions":{"typeIdentifier":"t_rational_26_by_1","typeString":"int_const 26"},"value":"26"},"src":"12721:32:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19657,"nodeType":"Block","src":"12810:72:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":19653,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"12847:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19654,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12852:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"12847:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19652,"name":"UnsupportedPrimitive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18738,"src":"12826:20:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19655,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12826:48:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19656,"nodeType":"RevertStatement","src":"12819:55:50"}]},"id":19658,"nodeType":"IfStatement","src":"12717:165:50","trueBody":{"id":19651,"nodeType":"Block","src":"12755:49:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":19646,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"12771:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19647,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12776:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"12771:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19648,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12783:11:50","memberName":"readFloat32","nodeType":"MemberAccess","referencedDeclaration":17403,"src":"12771:23:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_int256_$attached_to$_t_struct$_Buffer_$16790_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (int256)"}},"id":19649,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12771:25:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":19641,"id":19650,"nodeType":"Return","src":"12764:32:50"}]}}]},"documentation":{"id":19630,"nodeType":"StructuredDocumentation","src":"12049:529:50","text":"@notice Decode a `CBOR` structure into a `fixed32` value.\n @dev Due to the lack of support for floating or fixed point arithmetic in the EVM, this method offsets all values\n by 9 decimal orders so as to get a fixed precision of 9 decimal positions, which should be OK for most `fixed64`\n use cases. In other words, the output of this method is 10^9 times the actual value, encoded into an `int`.\n @param cbor An instance of `CBOR`.\n @return The value represented by the input, as an `int` value."},"id":19660,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19636,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19633,"src":"12657:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19637,"name":"MAJOR_TYPE_CONTENT_FREE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18708,"src":"12663:23:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19638,"kind":"modifierInvocation","modifierName":{"id":19635,"name":"isMajorType","nameLocations":["12645:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18763,"src":"12645:11:50"},"nodeType":"ModifierInvocation","src":"12645:42:50"}],"name":"readFloat32","nameLocation":"12591:11:50","nodeType":"FunctionDefinition","parameters":{"id":19634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19633,"mutability":"mutable","name":"cbor","nameLocation":"12615:4:50","nodeType":"VariableDeclaration","scope":19660,"src":"12603:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19632,"nodeType":"UserDefinedTypeName","pathNode":{"id":19631,"name":"CBOR","nameLocations":["12603:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"12603:4:50"},"referencedDeclaration":18684,"src":"12603:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"12602:18:50"},"returnParameters":{"id":19641,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19640,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19660,"src":"12702:3:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":19639,"name":"int","nodeType":"ElementaryTypeName","src":"12702:3:50","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"12701:5:50"},"scope":20200,"src":"12582:305:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19690,"nodeType":"Block","src":"13557:177:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19673,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19664,"src":"13568:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19674,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13573:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"13568:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3237","id":19675,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"13598:2:50","typeDescriptions":{"typeIdentifier":"t_rational_27_by_1","typeString":"int_const 27"},"value":"27"},"src":"13568:32:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19688,"nodeType":"Block","src":"13657:72:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":19684,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19664,"src":"13694:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19685,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13699:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"13694:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19683,"name":"UnsupportedPrimitive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18738,"src":"13673:20:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19686,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13673:48:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19687,"nodeType":"RevertStatement","src":"13666:55:50"}]},"id":19689,"nodeType":"IfStatement","src":"13564:165:50","trueBody":{"id":19682,"nodeType":"Block","src":"13602:49:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":19677,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19664,"src":"13618:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19678,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13623:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"13618:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19679,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13630:11:50","memberName":"readFloat64","nodeType":"MemberAccess","referencedDeclaration":17541,"src":"13618:23:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_int256_$attached_to$_t_struct$_Buffer_$16790_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (int256)"}},"id":19680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13618:25:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":19672,"id":19681,"nodeType":"Return","src":"13611:32:50"}]}}]},"documentation":{"id":19661,"nodeType":"StructuredDocumentation","src":"12893:532:50","text":"@notice Decode a `CBOR` structure into a `fixed64` value.\n @dev Due to the lack of support for floating or fixed point arithmetic in the EVM, this method offsets all values\n by 15 decimal orders so as to get a fixed precision of 15 decimal positions, which should be OK for most `fixed64`\n use cases. In other words, the output of this method is 10^15 times the actual value, encoded into an `int`.\n @param cbor An instance of `CBOR`.\n @return The value represented by the input, as an `int` value."},"id":19691,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19667,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19664,"src":"13504:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19668,"name":"MAJOR_TYPE_CONTENT_FREE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18708,"src":"13510:23:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19669,"kind":"modifierInvocation","modifierName":{"id":19666,"name":"isMajorType","nameLocations":["13492:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18763,"src":"13492:11:50"},"nodeType":"ModifierInvocation","src":"13492:42:50"}],"name":"readFloat64","nameLocation":"13438:11:50","nodeType":"FunctionDefinition","parameters":{"id":19665,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19664,"mutability":"mutable","name":"cbor","nameLocation":"13462:4:50","nodeType":"VariableDeclaration","scope":19691,"src":"13450:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19663,"nodeType":"UserDefinedTypeName","pathNode":{"id":19662,"name":"CBOR","nameLocations":["13450:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"13450:4:50"},"referencedDeclaration":18684,"src":"13450:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"13449:18:50"},"returnParameters":{"id":19672,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19671,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19691,"src":"13549:3:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":19670,"name":"int","nodeType":"ElementaryTypeName","src":"13549:3:50","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"13548:5:50"},"scope":20200,"src":"13429:305:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19761,"nodeType":"Block","src":"14093:408:50","statements":[{"assignments":[19706],"declarations":[{"constant":false,"id":19706,"mutability":"mutable","name":"length","nameLocation":"14107:6:50","nodeType":"VariableDeclaration","scope":19761,"src":"14100:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19705,"name":"uint64","nodeType":"ElementaryTypeName","src":"14100:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19713,"initialValue":{"arguments":[{"expression":{"id":19708,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19695,"src":"14127:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19709,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14132:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"14127:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19710,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19695,"src":"14140:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19711,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14145:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"14140:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19707,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19463,"src":"14116:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19712,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14116:51:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"14100:67:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19714,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19706,"src":"14178:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19715,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18722,"src":"14187:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14178:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19759,"nodeType":"Block","src":"14443:53:50","statements":[{"errorCall":{"arguments":[{"id":19756,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19706,"src":"14481:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19755,"name":"InvalidLengthEncoding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18728,"src":"14459:21:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19757,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14459:29:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19758,"nodeType":"RevertStatement","src":"14452:36:50"}]},"id":19760,"nodeType":"IfStatement","src":"14174:322:50","trueBody":{"id":19754,"nodeType":"Block","src":"14199:238:50","statements":[{"expression":{"id":19723,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19717,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19703,"src":"14208:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_memory_ptr","typeString":"int32[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":19721,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19706,"src":"14229:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19720,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"14217:11:50","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_int32_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (int32[] memory)"},"typeName":{"baseType":{"id":19718,"name":"int32","nodeType":"ElementaryTypeName","src":"14221:5:50","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":19719,"nodeType":"ArrayTypeName","src":"14221:7:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_storage_ptr","typeString":"int32[]"}}},"id":19722,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14217:19:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_memory_ptr","typeString":"int32[] memory"}},"src":"14208:28:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_memory_ptr","typeString":"int32[] memory"}},"id":19724,"nodeType":"ExpressionStatement","src":"14208:28:50"},{"body":{"id":19752,"nodeType":"Block","src":"14278:152:50","statements":[{"assignments":[19734],"declarations":[{"constant":false,"id":19734,"mutability":"mutable","name":"item","nameLocation":"14301:4:50","nodeType":"VariableDeclaration","scope":19752,"src":"14289:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19733,"nodeType":"UserDefinedTypeName","pathNode":{"id":19732,"name":"CBOR","nameLocations":["14289:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"14289:4:50"},"referencedDeclaration":18684,"src":"14289:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"id":19739,"initialValue":{"arguments":[{"expression":{"id":19736,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19695,"src":"14319:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19737,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14324:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"14319:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":19735,"name":"fromBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18934,"src":"14308:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19738,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14308:23:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"VariableDeclarationStatement","src":"14289:42:50"},{"expression":{"id":19746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":19740,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19703,"src":"14342:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_memory_ptr","typeString":"int32[] memory"}},"id":19742,"indexExpression":{"id":19741,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19726,"src":"14349:1:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"14342:9:50","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":19744,"name":"item","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19734,"src":"14366:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}],"id":19743,"name":"readFloat16","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19629,"src":"14354:11:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_int32_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (int32)"}},"id":19745,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14354:17:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"src":"14342:29:50","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":19747,"nodeType":"ExpressionStatement","src":"14342:29:50"},{"id":19751,"nodeType":"UncheckedBlock","src":"14382:39:50","statements":[{"expression":{"id":19749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"14405:4:50","subExpression":{"id":19748,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19726,"src":"14405:1:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":19750,"nodeType":"ExpressionStatement","src":"14405:4:50"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19729,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19726,"src":"14264:1:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19730,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19706,"src":"14268:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14264:10:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19753,"initializationExpression":{"assignments":[19726],"declarations":[{"constant":false,"id":19726,"mutability":"mutable","name":"i","nameLocation":"14257:1:50","nodeType":"VariableDeclaration","scope":19753,"src":"14250:8:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19725,"name":"uint64","nodeType":"ElementaryTypeName","src":"14250:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19728,"initialValue":{"hexValue":"30","id":19727,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14261:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"14250:12:50"},"isSimpleCounterLoop":false,"nodeType":"ForStatement","src":"14245:185:50"}]}}]},"documentation":{"id":19692,"nodeType":"StructuredDocumentation","src":"13740:205:50","text":"@notice Decode a `CBOR` structure into a native `int128[]` value whose inner values follow the same convention \n @notice as explained in `decodeFixed16`.\n @param cbor An instance of `CBOR`."},"id":19762,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19698,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19695,"src":"14029:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19699,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18699,"src":"14035:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19700,"kind":"modifierInvocation","modifierName":{"id":19697,"name":"isMajorType","nameLocations":["14017:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18763,"src":"14017:11:50"},"nodeType":"ModifierInvocation","src":"14017:35:50"}],"name":"readFloat16Array","nameLocation":"13958:16:50","nodeType":"FunctionDefinition","parameters":{"id":19696,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19695,"mutability":"mutable","name":"cbor","nameLocation":"13987:4:50","nodeType":"VariableDeclaration","scope":19762,"src":"13975:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19694,"nodeType":"UserDefinedTypeName","pathNode":{"id":19693,"name":"CBOR","nameLocations":["13975:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"13975:4:50"},"referencedDeclaration":18684,"src":"13975:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"13974:18:50"},"returnParameters":{"id":19704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19703,"mutability":"mutable","name":"values","nameLocation":"14082:6:50","nodeType":"VariableDeclaration","scope":19762,"src":"14067:21:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_memory_ptr","typeString":"int32[]"},"typeName":{"baseType":{"id":19701,"name":"int32","nodeType":"ElementaryTypeName","src":"14067:5:50","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":19702,"nodeType":"ArrayTypeName","src":"14067:7:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_storage_ptr","typeString":"int32[]"}},"visibility":"internal"}],"src":"14066:23:50"},"scope":20200,"src":"13949:552:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19820,"nodeType":"Block","src":"14771:525:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19771,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19766,"src":"14782:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19772,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14787:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"14782:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":19773,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14800:1:50","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"14782:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19802,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19799,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19766,"src":"14973:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19800,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14978:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"14973:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":19801,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14991:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"14973:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19817,"nodeType":"Block","src":"15229:62:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":19812,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19766,"src":"15265:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19813,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15270:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"15265:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"hexValue":"31","id":19814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15281:1:50","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":19811,"name":"UnexpectedMajorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18734,"src":"15245:19:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":19815,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15245:38:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19816,"nodeType":"RevertStatement","src":"15238:45:50"}]},"id":19818,"nodeType":"IfStatement","src":"14969:322:50","trueBody":{"id":19810,"nodeType":"Block","src":"14994:224:50","statements":[{"expression":{"arguments":[{"arguments":[{"id":19806,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19766,"src":"15204:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}],"id":19805,"name":"readUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20069,"src":"15195:8:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_uint64_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64)"}},"id":19807,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15195:14:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19804,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"15189:5:50","typeDescriptions":{"typeIdentifier":"t_type$_t_int64_$","typeString":"type(int64)"},"typeName":{"id":19803,"name":"int64","nodeType":"ElementaryTypeName","src":"15189:5:50","typeDescriptions":{}}},"id":19808,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15189:21:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"functionReturnParameters":19770,"id":19809,"nodeType":"Return","src":"15182:28:50"}]}},"id":19819,"nodeType":"IfStatement","src":"14778:513:50","trueBody":{"id":19798,"nodeType":"Block","src":"14803:160:50","statements":[{"assignments":[19776],"declarations":[{"constant":false,"id":19776,"mutability":"mutable","name":"_value","nameLocation":"14819:6:50","nodeType":"VariableDeclaration","scope":19798,"src":"14812:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19775,"name":"uint64","nodeType":"ElementaryTypeName","src":"14812:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19783,"initialValue":{"arguments":[{"expression":{"id":19778,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19766,"src":"14849:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19779,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14854:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"14849:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19780,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19766,"src":"14871:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19781,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14876:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"14871:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19777,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19463,"src":"14828:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14828:78:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"14812:94:50"},{"expression":{"commonType":{"typeIdentifier":"t_int64","typeString":"int64"},"id":19796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":19787,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"14928:2:50","subExpression":{"hexValue":"31","id":19786,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"14929:1:50","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"typeDescriptions":{"typeIdentifier":"t_rational_minus_1_by_1","typeString":"int_const -1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_minus_1_by_1","typeString":"int_const -1"}],"id":19785,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14922:5:50","typeDescriptions":{"typeIdentifier":"t_type$_t_int64_$","typeString":"type(int64)"},"typeName":{"id":19784,"name":"int64","nodeType":"ElementaryTypeName","src":"14922:5:50","typeDescriptions":{}}},"id":19788,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14922:9:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"arguments":[{"id":19793,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19776,"src":"14947:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19792,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14940:6:50","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":19791,"name":"uint64","nodeType":"ElementaryTypeName","src":"14940:6:50","typeDescriptions":{}}},"id":19794,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14940:14:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19790,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14934:5:50","typeDescriptions":{"typeIdentifier":"t_type$_t_int64_$","typeString":"type(int64)"},"typeName":{"id":19789,"name":"int64","nodeType":"ElementaryTypeName","src":"14934:5:50","typeDescriptions":{}}},"id":19795,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14934:21:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"src":"14922:33:50","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"functionReturnParameters":19770,"id":19797,"nodeType":"Return","src":"14915:40:50"}]}}]},"documentation":{"id":19763,"nodeType":"StructuredDocumentation","src":"14507:182:50","text":"@notice Decode a `CBOR` structure into a native `int128` value.\n @param cbor An instance of `CBOR`.\n @return The value represented by the input, as an `int128` value."},"id":19821,"implemented":true,"kind":"function","modifiers":[],"name":"readInt","nameLocation":"14702:7:50","nodeType":"FunctionDefinition","parameters":{"id":19767,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19766,"mutability":"mutable","name":"cbor","nameLocation":"14722:4:50","nodeType":"VariableDeclaration","scope":19821,"src":"14710:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19765,"nodeType":"UserDefinedTypeName","pathNode":{"id":19764,"name":"CBOR","nameLocations":["14710:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"14710:4:50"},"referencedDeclaration":18684,"src":"14710:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"14709:18:50"},"returnParameters":{"id":19770,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19769,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19821,"src":"14761:5:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"},"typeName":{"id":19768,"name":"int64","nodeType":"ElementaryTypeName","src":"14761:5:50","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"visibility":"internal"}],"src":"14760:7:50"},"scope":20200,"src":"14693:603:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19891,"nodeType":"Block","src":"15628:400:50","statements":[{"assignments":[19836],"declarations":[{"constant":false,"id":19836,"mutability":"mutable","name":"length","nameLocation":"15642:6:50","nodeType":"VariableDeclaration","scope":19891,"src":"15635:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19835,"name":"uint64","nodeType":"ElementaryTypeName","src":"15635:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19843,"initialValue":{"arguments":[{"expression":{"id":19838,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19825,"src":"15662:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19839,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15667:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"15662:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19840,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19825,"src":"15675:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19841,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15680:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"15675:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19837,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19463,"src":"15651:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15651:51:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"15635:67:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19846,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19844,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"15713:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19845,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18722,"src":"15722:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"15713:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19889,"nodeType":"Block","src":"15970:53:50","statements":[{"errorCall":{"arguments":[{"id":19886,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"16008:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19885,"name":"InvalidLengthEncoding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18728,"src":"15986:21:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19887,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15986:29:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":19888,"nodeType":"RevertStatement","src":"15979:36:50"}]},"id":19890,"nodeType":"IfStatement","src":"15709:314:50","trueBody":{"id":19884,"nodeType":"Block","src":"15734:230:50","statements":[{"expression":{"id":19853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19847,"name":"array","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19833,"src":"15743:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_memory_ptr","typeString":"int64[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":19851,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"15763:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19850,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"15751:11:50","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_int64_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (int64[] memory)"},"typeName":{"baseType":{"id":19848,"name":"int64","nodeType":"ElementaryTypeName","src":"15755:5:50","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":19849,"nodeType":"ArrayTypeName","src":"15755:7:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_storage_ptr","typeString":"int64[]"}}},"id":19852,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15751:19:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_memory_ptr","typeString":"int64[] memory"}},"src":"15743:27:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_memory_ptr","typeString":"int64[] memory"}},"id":19854,"nodeType":"ExpressionStatement","src":"15743:27:50"},{"body":{"id":19882,"nodeType":"Block","src":"15810:147:50","statements":[{"assignments":[19864],"declarations":[{"constant":false,"id":19864,"mutability":"mutable","name":"item","nameLocation":"15833:4:50","nodeType":"VariableDeclaration","scope":19882,"src":"15821:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19863,"nodeType":"UserDefinedTypeName","pathNode":{"id":19862,"name":"CBOR","nameLocations":["15821:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"15821:4:50"},"referencedDeclaration":18684,"src":"15821:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"id":19869,"initialValue":{"arguments":[{"expression":{"id":19866,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19825,"src":"15851:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19867,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15856:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"15851:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":19865,"name":"fromBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18934,"src":"15840:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19868,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15840:23:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"VariableDeclarationStatement","src":"15821:42:50"},{"expression":{"id":19876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":19870,"name":"array","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19833,"src":"15874:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_memory_ptr","typeString":"int64[] memory"}},"id":19872,"indexExpression":{"id":19871,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19856,"src":"15880:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"15874:8:50","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":19874,"name":"item","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19864,"src":"15893:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}],"id":19873,"name":"readInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19821,"src":"15885:7:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_int64_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (int64)"}},"id":19875,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15885:13:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"src":"15874:24:50","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":19877,"nodeType":"ExpressionStatement","src":"15874:24:50"},{"id":19881,"nodeType":"UncheckedBlock","src":"15909:39:50","statements":[{"expression":{"id":19879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"15932:4:50","subExpression":{"id":19878,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19856,"src":"15932:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19880,"nodeType":"ExpressionStatement","src":"15932:4:50"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19859,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19856,"src":"15796:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19860,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19836,"src":"15800:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"15796:10:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19883,"initializationExpression":{"assignments":[19856],"declarations":[{"constant":false,"id":19856,"mutability":"mutable","name":"i","nameLocation":"15789:1:50","nodeType":"VariableDeclaration","scope":19883,"src":"15784:6:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19855,"name":"uint","nodeType":"ElementaryTypeName","src":"15784:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19858,"initialValue":{"hexValue":"30","id":19857,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"15793:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"15784:10:50"},"isSimpleCounterLoop":false,"nodeType":"ForStatement","src":"15779:178:50"}]}}]},"documentation":{"id":19822,"nodeType":"StructuredDocumentation","src":"15302:183:50","text":"@notice Decode a `CBOR` structure into a native `int[]` value.\n @param cbor instance of `CBOR`.\n @return array The value represented by the input, as an `int[]` value."},"id":19892,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19828,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19825,"src":"15565:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19829,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18699,"src":"15571:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19830,"kind":"modifierInvocation","modifierName":{"id":19827,"name":"isMajorType","nameLocations":["15553:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18763,"src":"15553:11:50"},"nodeType":"ModifierInvocation","src":"15553:35:50"}],"name":"readIntArray","nameLocation":"15498:12:50","nodeType":"FunctionDefinition","parameters":{"id":19826,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19825,"mutability":"mutable","name":"cbor","nameLocation":"15523:4:50","nodeType":"VariableDeclaration","scope":19892,"src":"15511:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19824,"nodeType":"UserDefinedTypeName","pathNode":{"id":19823,"name":"CBOR","nameLocations":["15511:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"15511:4:50"},"referencedDeclaration":18684,"src":"15511:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"15510:18:50"},"returnParameters":{"id":19834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19833,"mutability":"mutable","name":"array","nameLocation":"15618:5:50","nodeType":"VariableDeclaration","scope":19892,"src":"15603:20:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_memory_ptr","typeString":"int64[]"},"typeName":{"baseType":{"id":19831,"name":"int64","nodeType":"ElementaryTypeName","src":"15603:5:50","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":19832,"nodeType":"ArrayTypeName","src":"15603:7:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_storage_ptr","typeString":"int64[]"}},"visibility":"internal"}],"src":"15602:22:50"},"scope":20200,"src":"15489:539:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19976,"nodeType":"Block","src":"16360:566:50","statements":[{"expression":{"id":19914,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":19905,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"16367:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19907,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16372:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18681,"src":"16367:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":19909,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"16389:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19910,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16394:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"16389:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19911,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"16402:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19912,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16407:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"16402:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19908,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19463,"src":"16378:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19913,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16378:51:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"16367:62:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":19915,"nodeType":"ExpressionStatement","src":"16367:62:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19919,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19916,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"16440:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19917,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16445:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18681,"src":"16440:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19918,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18722,"src":"16452:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"16440:22:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19974,"nodeType":"Block","src":"16859:62:50","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":19969,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"16903:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19970,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16908:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18681,"src":"16903:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"expression":{"expression":{"id":19966,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"16882:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19967,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16887:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"16882:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19968,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16894:8:50","memberName":"readText","nodeType":"MemberAccess","referencedDeclaration":17694,"src":"16882:20:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint64_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_Buffer_$16790_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint64) pure returns (bytes memory)"}},"id":19971,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16882:30:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":19965,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16875:6:50","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":19964,"name":"string","nodeType":"ElementaryTypeName","src":"16875:6:50","typeDescriptions":{}}},"id":19972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16875:38:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":19904,"id":19973,"nodeType":"Return","src":"16868:45:50"}]},"id":19975,"nodeType":"IfStatement","src":"16436:485:50","trueBody":{"id":19963,"nodeType":"Block","src":"16464:389:50","statements":[{"assignments":[19921],"declarations":[{"constant":false,"id":19921,"mutability":"mutable","name":"_done","nameLocation":"16478:5:50","nodeType":"VariableDeclaration","scope":19963,"src":"16473:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":19920,"name":"bool","nodeType":"ElementaryTypeName","src":"16473:4:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":19922,"nodeType":"VariableDeclarationStatement","src":"16473:10:50"},{"body":{"id":19961,"nodeType":"Block","src":"16507:339:50","statements":[{"assignments":[19926],"declarations":[{"constant":false,"id":19926,"mutability":"mutable","name":"length","nameLocation":"16525:6:50","nodeType":"VariableDeclaration","scope":19961,"src":"16518:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19925,"name":"uint64","nodeType":"ElementaryTypeName","src":"16518:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19933,"initialValue":{"arguments":[{"expression":{"id":19928,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"16574:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19929,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16579:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"16574:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19930,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"16598:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19931,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16603:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18677,"src":"16598:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19927,"name":"_readIndefiniteStringLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20199,"src":"16534:27:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19932,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16534:89:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"16518:105:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19934,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19926,"src":"16638:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19935,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18722,"src":"16647:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"16638:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19959,"nodeType":"Block","src":"16800:37:50","statements":[{"expression":{"id":19957,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19955,"name":"_done","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19921,"src":"16813:5:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":19956,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16821:4:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"16813:12:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19958,"nodeType":"ExpressionStatement","src":"16813:12:50"}]},"id":19960,"nodeType":"IfStatement","src":"16634:203:50","trueBody":{"id":19954,"nodeType":"Block","src":"16659:135:50","statements":[{"expression":{"id":19952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19937,"name":"text","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19903,"src":"16672:4:50","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":19942,"name":"text","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19903,"src":"16717:4:50","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19948,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19946,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19926,"src":"16757:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"34","id":19947,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"16766:1:50","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"16757:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"expression":{"expression":{"id":19943,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"16736:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19944,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16741:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"16736:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19945,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16748:8:50","memberName":"readText","nodeType":"MemberAccess","referencedDeclaration":17694,"src":"16736:20:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint64_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_Buffer_$16790_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint64) pure returns (bytes memory)"}},"id":19949,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16736:32:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":19940,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"16686:3:50","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":19941,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"16690:12:50","memberName":"encodePacked","nodeType":"MemberAccess","src":"16686:16:50","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":19950,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16686:95:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":19939,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"16679:6:50","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":19938,"name":"string","nodeType":"ElementaryTypeName","src":"16679:6:50","typeDescriptions":{}}},"id":19951,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16679:103:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"16672:110:50","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":19953,"nodeType":"ExpressionStatement","src":"16672:110:50"}]}}]},"condition":{"id":19924,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16499:6:50","subExpression":{"id":19923,"name":"_done","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19921,"src":"16500:5:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19962,"nodeType":"WhileStatement","src":"16492:354:50"}]}}]},"documentation":{"id":19893,"nodeType":"StructuredDocumentation","src":"16034:186:50","text":"@notice Decode a `CBOR` structure into a native `string` value.\n @param cbor An instance of `CBOR`.\n @return text The value represented by the input, as a `string` value."},"id":19977,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19899,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19896,"src":"16298:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19900,"name":"MAJOR_TYPE_STRING","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18696,"src":"16304:17:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19901,"kind":"modifierInvocation","modifierName":{"id":19898,"name":"isMajorType","nameLocations":["16286:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18763,"src":"16286:11:50"},"nodeType":"ModifierInvocation","src":"16286:36:50"}],"name":"readString","nameLocation":"16233:10:50","nodeType":"FunctionDefinition","parameters":{"id":19897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19896,"mutability":"mutable","name":"cbor","nameLocation":"16256:4:50","nodeType":"VariableDeclaration","scope":19977,"src":"16244:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19895,"nodeType":"UserDefinedTypeName","pathNode":{"id":19894,"name":"CBOR","nameLocations":["16244:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"16244:4:50"},"referencedDeclaration":18684,"src":"16244:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"16243:18:50"},"returnParameters":{"id":19904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19903,"mutability":"mutable","name":"text","nameLocation":"16351:4:50","nodeType":"VariableDeclaration","scope":19977,"src":"16337:18:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":19902,"name":"string","nodeType":"ElementaryTypeName","src":"16337:6:50","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"16336:20:50"},"scope":20200,"src":"16224:702:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20047,"nodeType":"Block","src":"17275:406:50","statements":[{"assignments":[19992],"declarations":[{"constant":false,"id":19992,"mutability":"mutable","name":"length","nameLocation":"17287:6:50","nodeType":"VariableDeclaration","scope":20047,"src":"17282:11:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19991,"name":"uint","nodeType":"ElementaryTypeName","src":"17282:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19999,"initialValue":{"arguments":[{"expression":{"id":19994,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19981,"src":"17307:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19995,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17312:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"17307:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19996,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19981,"src":"17320:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19997,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17325:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"17320:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19993,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19463,"src":"17296:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19998,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17296:51:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"17282:65:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20000,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19992,"src":"17358:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":20001,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18722,"src":"17367:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"17358:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":20045,"nodeType":"Block","src":"17623:53:50","statements":[{"errorCall":{"arguments":[{"id":20042,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19992,"src":"17661:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20041,"name":"InvalidLengthEncoding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18728,"src":"17639:21:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":20043,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17639:29:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20044,"nodeType":"RevertStatement","src":"17632:36:50"}]},"id":20046,"nodeType":"IfStatement","src":"17354:322:50","trueBody":{"id":20040,"nodeType":"Block","src":"17379:238:50","statements":[{"expression":{"id":20009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20003,"name":"strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19989,"src":"17388:7:50","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20007,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19992,"src":"17411:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":20006,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"17398:12:50","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (string memory[] memory)"},"typeName":{"baseType":{"id":20004,"name":"string","nodeType":"ElementaryTypeName","src":"17402:6:50","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":20005,"nodeType":"ArrayTypeName","src":"17402:8:50","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}}},"id":20008,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17398:20:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"src":"17388:30:50","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":20010,"nodeType":"ExpressionStatement","src":"17388:30:50"},{"body":{"id":20038,"nodeType":"Block","src":"17458:152:50","statements":[{"assignments":[20020],"declarations":[{"constant":false,"id":20020,"mutability":"mutable","name":"item","nameLocation":"17481:4:50","nodeType":"VariableDeclaration","scope":20038,"src":"17469:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":20019,"nodeType":"UserDefinedTypeName","pathNode":{"id":20018,"name":"CBOR","nameLocations":["17469:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"17469:4:50"},"referencedDeclaration":18684,"src":"17469:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"id":20025,"initialValue":{"arguments":[{"expression":{"id":20022,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19981,"src":"17499:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":20023,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17504:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"17499:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":20021,"name":"fromBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18934,"src":"17488:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":20024,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17488:23:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"VariableDeclarationStatement","src":"17469:42:50"},{"expression":{"id":20032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":20026,"name":"strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19989,"src":"17522:7:50","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":20028,"indexExpression":{"id":20027,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20012,"src":"17530:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"17522:10:50","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20030,"name":"item","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20020,"src":"17546:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}],"id":20029,"name":"readString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19977,"src":"17535:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_string_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (string memory)"}},"id":20031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17535:16:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"17522:29:50","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":20033,"nodeType":"ExpressionStatement","src":"17522:29:50"},{"id":20037,"nodeType":"UncheckedBlock","src":"17562:39:50","statements":[{"expression":{"id":20035,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17585:4:50","subExpression":{"id":20034,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20012,"src":"17585:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20036,"nodeType":"ExpressionStatement","src":"17585:4:50"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20017,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20015,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20012,"src":"17444:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":20016,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19992,"src":"17448:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17444:10:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20039,"initializationExpression":{"assignments":[20012],"declarations":[{"constant":false,"id":20012,"mutability":"mutable","name":"i","nameLocation":"17437:1:50","nodeType":"VariableDeclaration","scope":20039,"src":"17432:6:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20011,"name":"uint","nodeType":"ElementaryTypeName","src":"17432:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":20014,"initialValue":{"hexValue":"30","id":20013,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17441:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17432:10:50"},"isSimpleCounterLoop":false,"nodeType":"ForStatement","src":"17427:183:50"}]}}]},"documentation":{"id":19978,"nodeType":"StructuredDocumentation","src":"16932:194:50","text":"@notice Decode a `CBOR` structure into a native `string[]` value.\n @param cbor An instance of `CBOR`.\n @return strings The value represented by the input, as an `string[]` value."},"id":20048,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19984,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19981,"src":"17209:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19985,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18699,"src":"17215:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19986,"kind":"modifierInvocation","modifierName":{"id":19983,"name":"isMajorType","nameLocations":["17197:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18763,"src":"17197:11:50"},"nodeType":"ModifierInvocation","src":"17197:35:50"}],"name":"readStringArray","nameLocation":"17139:15:50","nodeType":"FunctionDefinition","parameters":{"id":19982,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19981,"mutability":"mutable","name":"cbor","nameLocation":"17167:4:50","nodeType":"VariableDeclaration","scope":20048,"src":"17155:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19980,"nodeType":"UserDefinedTypeName","pathNode":{"id":19979,"name":"CBOR","nameLocations":["17155:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"17155:4:50"},"referencedDeclaration":18684,"src":"17155:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"17154:18:50"},"returnParameters":{"id":19990,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19989,"mutability":"mutable","name":"strings","nameLocation":"17263:7:50","nodeType":"VariableDeclaration","scope":20048,"src":"17247:23:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":19987,"name":"string","nodeType":"ElementaryTypeName","src":"17247:6:50","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":19988,"nodeType":"ArrayTypeName","src":"17247:8:50","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"src":"17246:25:50"},"scope":20200,"src":"17130:551:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20068,"nodeType":"Block","src":"17992:92:50","statements":[{"expression":{"arguments":[{"expression":{"id":20062,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20052,"src":"18025:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":20063,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18030:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"18025:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":20064,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20052,"src":"18045:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":20065,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18050:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"18045:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":20061,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19463,"src":"18006:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":20066,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18006:72:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":20060,"id":20067,"nodeType":"Return","src":"17999:79:50"}]},"documentation":{"id":20049,"nodeType":"StructuredDocumentation","src":"17687:182:50","text":"@notice Decode a `CBOR` structure into a native `uint64` value.\n @param cbor An instance of `CBOR`.\n @return The value represented by the input, as an `uint64` value."},"id":20069,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":20055,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20052,"src":"17945:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":20056,"name":"MAJOR_TYPE_INT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18687,"src":"17951:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":20057,"kind":"modifierInvocation","modifierName":{"id":20054,"name":"isMajorType","nameLocations":["17933:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18763,"src":"17933:11:50"},"nodeType":"ModifierInvocation","src":"17933:33:50"}],"name":"readUint","nameLocation":"17882:8:50","nodeType":"FunctionDefinition","parameters":{"id":20053,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20052,"mutability":"mutable","name":"cbor","nameLocation":"17903:4:50","nodeType":"VariableDeclaration","scope":20069,"src":"17891:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":20051,"nodeType":"UserDefinedTypeName","pathNode":{"id":20050,"name":"CBOR","nameLocations":["17891:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"17891:4:50"},"referencedDeclaration":18684,"src":"17891:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"17890:18:50"},"returnParameters":{"id":20060,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20059,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":20069,"src":"17981:6:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20058,"name":"uint64","nodeType":"ElementaryTypeName","src":"17981:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"17980:8:50"},"scope":20200,"src":"17873:211:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20139,"nodeType":"Block","src":"18429:408:50","statements":[{"assignments":[20084],"declarations":[{"constant":false,"id":20084,"mutability":"mutable","name":"length","nameLocation":"18443:6:50","nodeType":"VariableDeclaration","scope":20139,"src":"18436:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20083,"name":"uint64","nodeType":"ElementaryTypeName","src":"18436:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":20091,"initialValue":{"arguments":[{"expression":{"id":20086,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20073,"src":"18463:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":20087,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18468:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"18463:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":20088,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20073,"src":"18476:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":20089,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18481:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18679,"src":"18476:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":20085,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19463,"src":"18452:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":20090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18452:51:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"18436:67:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":20094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20092,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20084,"src":"18514:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":20093,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18722,"src":"18523:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"18514:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":20137,"nodeType":"Block","src":"18779:53:50","statements":[{"errorCall":{"arguments":[{"id":20134,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20084,"src":"18817:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20133,"name":"InvalidLengthEncoding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18728,"src":"18795:21:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":20135,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18795:29:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20136,"nodeType":"RevertStatement","src":"18788:36:50"}]},"id":20138,"nodeType":"IfStatement","src":"18510:322:50","trueBody":{"id":20132,"nodeType":"Block","src":"18535:238:50","statements":[{"expression":{"id":20101,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20095,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20081,"src":"18544:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20099,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20084,"src":"18566:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20098,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"18553:12:50","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":20096,"name":"uint64","nodeType":"ElementaryTypeName","src":"18557:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":20097,"nodeType":"ArrayTypeName","src":"18557:8:50","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_storage_ptr","typeString":"uint64[]"}}},"id":20100,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18553:20:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"src":"18544:29:50","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"id":20102,"nodeType":"ExpressionStatement","src":"18544:29:50"},{"body":{"id":20130,"nodeType":"Block","src":"18615:151:50","statements":[{"assignments":[20112],"declarations":[{"constant":false,"id":20112,"mutability":"mutable","name":"item","nameLocation":"18638:4:50","nodeType":"VariableDeclaration","scope":20130,"src":"18626:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":20111,"nodeType":"UserDefinedTypeName","pathNode":{"id":20110,"name":"CBOR","nameLocations":["18626:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"18626:4:50"},"referencedDeclaration":18684,"src":"18626:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"id":20117,"initialValue":{"arguments":[{"expression":{"id":20114,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20073,"src":"18656:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":20115,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18661:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18673,"src":"18656:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":20113,"name":"fromBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18934,"src":"18645:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_struct$_CBOR_$18684_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":20116,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18645:23:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"VariableDeclarationStatement","src":"18626:42:50"},{"expression":{"id":20124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":20118,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20081,"src":"18679:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"id":20120,"indexExpression":{"id":20119,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20104,"src":"18686:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"18679:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20122,"name":"item","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20112,"src":"18701:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}],"id":20121,"name":"readUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20069,"src":"18692:8:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18684_memory_ptr_$returns$_t_uint64_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64)"}},"id":20123,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18692:14:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"18679:27:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":20125,"nodeType":"ExpressionStatement","src":"18679:27:50"},{"id":20129,"nodeType":"UncheckedBlock","src":"18717:40:50","statements":[{"expression":{"id":20127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18740:5:50","subExpression":{"id":20126,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20104,"src":"18740:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":20128,"nodeType":"ExpressionStatement","src":"18740:5:50"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":20109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20107,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20104,"src":"18600:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":20108,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20084,"src":"18605:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"18600:11:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20131,"initializationExpression":{"assignments":[20104],"declarations":[{"constant":false,"id":20104,"mutability":"mutable","name":"ix","nameLocation":"18592:2:50","nodeType":"VariableDeclaration","scope":20131,"src":"18587:7:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":20103,"name":"uint","nodeType":"ElementaryTypeName","src":"18587:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":20106,"initialValue":{"hexValue":"30","id":20105,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"18597:1:50","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"18587:11:50"},"isSimpleCounterLoop":false,"nodeType":"ForStatement","src":"18582:184:50"}]}}]},"documentation":{"id":20070,"nodeType":"StructuredDocumentation","src":"18090:193:50","text":"@notice Decode a `CBOR` structure into a native `uint64[]` value.\n @param cbor An instance of `CBOR`.\n @return values The value represented by the input, as an `uint64[]` value."},"id":20140,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":20076,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20073,"src":"18364:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":20077,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18699,"src":"18370:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":20078,"kind":"modifierInvocation","modifierName":{"id":20075,"name":"isMajorType","nameLocations":["18352:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18763,"src":"18352:11:50"},"nodeType":"ModifierInvocation","src":"18352:35:50"}],"name":"readUintArray","nameLocation":"18296:13:50","nodeType":"FunctionDefinition","parameters":{"id":20074,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20073,"mutability":"mutable","name":"cbor","nameLocation":"18322:4:50","nodeType":"VariableDeclaration","scope":20140,"src":"18310:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":20072,"nodeType":"UserDefinedTypeName","pathNode":{"id":20071,"name":"CBOR","nameLocations":["18310:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18684,"src":"18310:4:50"},"referencedDeclaration":18684,"src":"18310:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18684_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"18309:18:50"},"returnParameters":{"id":20082,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20081,"mutability":"mutable","name":"values","nameLocation":"18418:6:50","nodeType":"VariableDeclaration","scope":20140,"src":"18402:22:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[]"},"typeName":{"baseType":{"id":20079,"name":"uint64","nodeType":"ElementaryTypeName","src":"18402:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":20080,"nodeType":"ArrayTypeName","src":"18402:8:50","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_storage_ptr","typeString":"uint64[]"}},"visibility":"internal"}],"src":"18401:24:50"},"scope":20200,"src":"18287:550:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20198,"nodeType":"Block","src":"19174:384:50","statements":[{"assignments":[20152],"declarations":[{"constant":false,"id":20152,"mutability":"mutable","name":"initialByte","nameLocation":"19187:11:50","nodeType":"VariableDeclaration","scope":20198,"src":"19181:17:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":20151,"name":"uint8","nodeType":"ElementaryTypeName","src":"19181:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":20156,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":20153,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20144,"src":"19201:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":20154,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19208:9:50","memberName":"readUint8","nodeType":"MemberAccess","referencedDeclaration":17727,"src":"19201:16:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$returns$_t_uint8_$attached_to$_t_struct$_Buffer_$16790_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":20155,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19201:18:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"19181:38:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":20159,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20157,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20152,"src":"19230:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30786666","id":20158,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19245:4:50","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"0xff"},"src":"19230:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20163,"nodeType":"IfStatement","src":"19226:59:50","trueBody":{"id":20162,"nodeType":"Block","src":"19251:34:50","statements":[{"expression":{"id":20160,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18722,"src":"19267:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":20150,"id":20161,"nodeType":"Return","src":"19260:17:50"}]}},{"expression":{"id":20171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20164,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20149,"src":"19291:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20166,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20144,"src":"19316:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":20169,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20167,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20152,"src":"19331:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783166","id":20168,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19345:4:50","typeDescriptions":{"typeIdentifier":"t_rational_31_by_1","typeString":"int_const 31"},"value":"0x1f"},"src":"19331:18:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":20165,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19463,"src":"19297:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16790_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":20170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19297:59:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"19291:65:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":20172,"nodeType":"ExpressionStatement","src":"19291:65:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":20175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20173,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20149,"src":"19367:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":20174,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18722,"src":"19374:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"19367:17:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":20186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20181,"name":"majorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20146,"src":"19446:9:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":20184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20182,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20152,"src":"19460:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"35","id":20183,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19475:1:50","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"19460:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":20185,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"19459:18:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"19446:31:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":20196,"nodeType":"IfStatement","src":"19442:111:50","trueBody":{"id":20195,"nodeType":"Block","src":"19479:74:50","statements":[{"errorCall":{"arguments":[{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":20190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20188,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20152,"src":"19516:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"35","id":20189,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19531:1:50","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"19516:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":20191,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"19515:18:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":20192,"name":"majorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20146,"src":"19535:9:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":20187,"name":"UnexpectedMajorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18734,"src":"19495:19:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$_t_uint256_$returns$_t_error_$","typeString":"function (uint256,uint256) pure returns (error)"}},"id":20193,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19495:50:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20194,"nodeType":"RevertStatement","src":"19488:57:50"}]}},"id":20197,"nodeType":"IfStatement","src":"19363:190:50","trueBody":{"id":20180,"nodeType":"Block","src":"19386:50:50","statements":[{"errorCall":{"arguments":[{"id":20177,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20149,"src":"19424:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20176,"name":"InvalidLengthEncoding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18728,"src":"19402:21:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":20178,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19402:26:50","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":20179,"nodeType":"RevertStatement","src":"19395:33:50"}]}}]},"documentation":{"id":20141,"nodeType":"StructuredDocumentation","src":"18845:168:50","text":"Read the length of a CBOR indifinite-length item (arrays, maps, byte strings and text) from a buffer, consuming\n as many bytes as specified by the first byte."},"id":20199,"implemented":true,"kind":"function","modifiers":[],"name":"_readIndefiniteStringLength","nameLocation":"19026:27:50","nodeType":"FunctionDefinition","parameters":{"id":20147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20144,"mutability":"mutable","name":"buffer","nameLocation":"19089:6:50","nodeType":"VariableDeclaration","scope":20199,"src":"19062:33:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":20143,"nodeType":"UserDefinedTypeName","pathNode":{"id":20142,"name":"WitnetBuffer.Buffer","nameLocations":["19062:12:50","19075:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":16790,"src":"19062:19:50"},"referencedDeclaration":16790,"src":"19062:19:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16790_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":20146,"mutability":"mutable","name":"majorType","nameLocation":"19110:9:50","nodeType":"VariableDeclaration","scope":20199,"src":"19104:15:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":20145,"name":"uint8","nodeType":"ElementaryTypeName","src":"19104:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"19053:73:50"},"returnParameters":{"id":20150,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20149,"mutability":"mutable","name":"len","nameLocation":"19166:3:50","nodeType":"VariableDeclaration","scope":20199,"src":"19159:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20148,"name":"uint64","nodeType":"ElementaryTypeName","src":"19159:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"19158:12:50"},"scope":20200,"src":"19017:541:50","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":20201,"src":"536:19028:50","usedErrors":[18724,18728,18734,18738,18742],"usedEvents":[]}],"src":"35:19529:50"},"id":50}},"contracts":{"@openzeppelin/community-contracts/contracts/interfaces/IERC7802.sol":{"IERC7802":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"CrosschainBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"CrosschainMint","type":"event"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"crosschainBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"crosschainMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"crosschainBurn(address,uint256)":"2b8c49e3","crosschainMint(address,uint256)":"18bf5077","supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"CrosschainBurn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"CrosschainMint\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"crosschainBurn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"crosschainMint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"CrosschainBurn(address,uint256,address)\":{\"params\":{\"amount\":\"Amount of tokens burned.\",\"from\":\"Address of the account tokens are being burned from.\",\"sender\":\"Address of the caller (msg.sender) who invoked crosschainBurn.\"}},\"CrosschainMint(address,uint256,address)\":{\"params\":{\"amount\":\"Amount of tokens minted.\",\"sender\":\"Address of the caller (msg.sender) who invoked crosschainMint.\",\"to\":\"Address of the account tokens are being minted for.\"}}},\"kind\":\"dev\",\"methods\":{\"crosschainBurn(address,uint256)\":{\"params\":{\"_amount\":\"Amount of tokens to burn.\",\"_from\":\"Address to burn tokens from.\"}},\"crosschainMint(address,uint256)\":{\"params\":{\"_amount\":\"Amount of tokens to mint.\",\"_to\":\"Address to mint tokens to.\"}},\"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[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"title\":\"IERC7802\",\"version\":1},\"userdoc\":{\"events\":{\"CrosschainBurn(address,uint256,address)\":{\"notice\":\"Emitted when a crosschain transfer burns tokens.\"},\"CrosschainMint(address,uint256,address)\":{\"notice\":\"Emitted when a crosschain transfer mints tokens.\"}},\"kind\":\"user\",\"methods\":{\"crosschainBurn(address,uint256)\":{\"notice\":\"Burn tokens through a crosschain transfer.\"},\"crosschainMint(address,uint256)\":{\"notice\":\"Mint tokens through a crosschain transfer.\"}},\"notice\":\"Defines the interface for crosschain ERC20 transfers.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/community-contracts/contracts/interfaces/IERC7802.sol\":\"IERC7802\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/community-contracts/contracts/interfaces/IERC7802.sol\":{\"keccak256\":\"0x47cd8978c9c554c4a6458bc131d7115867ce3e04153470dec1ef51015c98b40b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cee8847208b4b7358e0e21cd22518575a3d7a7425d9b7014e5a05402b671cbf3\",\"dweb:/ipfs/QmUJCnpBNvet1gaK3pLGyPxLFVe9J8pG7fasux1nDVrU3D\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}"}},"@openzeppelin/community-contracts/contracts/token/ERC20/extensions/ERC20Bridgeable.sol":{"ERC20Bridgeable":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"CrosschainBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"CrosschainMint","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":"value","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":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"crosschainBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"crosschainMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","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":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","crosschainBurn(address,uint256)":"2b8c49e3","crosschainMint(address,uint256)":"18bf5077","decimals()":"313ce567","name()":"06fdde03","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"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\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"CrosschainBurn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"CrosschainMint\",\"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\":\"value\",\"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\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"crosschainBurn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"crosschainMint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"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\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"ERC20 extension that implements the standard token interface according to https://eips.ethereum.org/EIPS/eip-7802[ERC-7802]. NOTE: To implement a crosschain gateway for a chain, consider using an implementation if {IERC7786} token bridge (e.g. {AxelarGatewaySource}, {AxelarGatewayDestination}).\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"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.\"},\"CrosschainBurn(address,uint256,address)\":{\"params\":{\"amount\":\"Amount of tokens burned.\",\"from\":\"Address of the account tokens are being burned from.\",\"sender\":\"Address of the caller (msg.sender) who invoked crosschainBurn.\"}},\"CrosschainMint(address,uint256,address)\":{\"params\":{\"amount\":\"Amount of tokens minted.\",\"sender\":\"Address of the caller (msg.sender) who invoked crosschainMint.\",\"to\":\"Address of the account tokens are being minted for.\"}},\"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\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"crosschainBurn(address,uint256)\":{\"details\":\"See {IERC7802-crosschainBurn}. Emits a {CrosschainBurn} event.\"},\"crosschainMint(address,uint256)\":{\"details\":\"See {IERC7802-crosschainMint}. Emits a {CrosschainMint} event.\"},\"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 default value returned by this function, unless it's 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}.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"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[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"events\":{\"CrosschainBurn(address,uint256,address)\":{\"notice\":\"Emitted when a crosschain transfer burns tokens.\"},\"CrosschainMint(address,uint256,address)\":{\"notice\":\"Emitted when a crosschain transfer mints tokens.\"}},\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/community-contracts/contracts/token/ERC20/extensions/ERC20Bridgeable.sol\":\"ERC20Bridgeable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/community-contracts/contracts/interfaces/IERC7802.sol\":{\"keccak256\":\"0x47cd8978c9c554c4a6458bc131d7115867ce3e04153470dec1ef51015c98b40b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cee8847208b4b7358e0e21cd22518575a3d7a7425d9b7014e5a05402b671cbf3\",\"dweb:/ipfs/QmUJCnpBNvet1gaK3pLGyPxLFVe9J8pG7fasux1nDVrU3D\"]},\"@openzeppelin/community-contracts/contracts/token/ERC20/extensions/ERC20Bridgeable.sol\":{\"keccak256\":\"0xcc72e5332718c1956b3ce120c55b1a4b874d8c88a1cf6cb43ef0dfba7dfb7570\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://41c00f6b4e03bd3073af9c7dc3c28b4b1bfa8bd5b60dd542f70a99a90207db3d\",\"dweb:/ipfs/QmY1GyFj6qmVP3xEjNMoG3hXxWuze9xX6R5BYXV3gSPvJR\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x19fdfb0f3b89a230e7dbd1cf416f1a6b531a3ee5db4da483f946320fc74afc0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3490d794728f5bfecb46820431adaff71ba374141545ec20b650bb60353fac23\",\"dweb:/ipfs/QmPsfxjVpMcZbpE7BH93DzTpEaktESigEw4SmDzkXuJ4WR\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x86b7b71a6aedefdad89b607378eeab1dcc5389b9ea7d17346d08af01d7190994\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1dc2db8d94a21eac8efe03adf574c419b08536409b416057a2b5b95cb772c43c\",\"dweb:/ipfs/QmZfqJCKVU1ScuX2A7s8WZdQEaikwJbDH5JBrBdKTUT4Gu\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0x2d9dc2fe26180f74c11c13663647d38e259e45f95eb88f57b61d2160b0109d3e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81233d1f98060113d9922180bb0f14f8335856fe9f339134b09335e9f678c377\",\"dweb:/ipfs/QmWh6R35SarhAn4z2wH8SU456jJSYL2FgucfTFgbHJJN4E\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}"}},"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol":{"Initializable":{"abi":[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"devdoc\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor constructor() {     _disableInitializers(); } ``` ====\",\"details\":\"This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. The initialization functions use a version number. Once a version number is used, it is consumed and cannot be reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in case an upgrade adds a module that needs to be initialized. For example: [.hljs-theme-light.nopadding] ```solidity contract MyToken is ERC20Upgradeable {     function initialize() initializer public {         __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\");     } } contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {     function initializeV2() reinitializer(2) public {         __ERC20Permit_init(\\\"MyToken\\\");     } } ``` TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. [CAUTION] ==== Avoid leaving a contract uninitialized. An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: [.hljs-theme-light.nopadding] ```\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":\"Initializable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]}},\"version\":1}"}},"@openzeppelin/contracts/access/Ownable.sol":{"Ownable":{"abi":[{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"owner","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"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"owner()":"8da5cb5b","renounceOwnership()":"715018a6","transferOwnership(address)":"f2fde38b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"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\":\"owner\",\"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\":{\"details\":\"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. The initial owner is set to the address provided by the deployer. This can later be changed with {transferOwnership}. 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.\",\"errors\":{\"OwnableInvalidOwner(address)\":[{\"details\":\"The owner is not a valid owner account. (eg. `address(0)`)\"}],\"OwnableUnauthorizedAccount(address)\":[{\"details\":\"The caller account is not authorized to perform an operation.\"}]},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the contract setting the address provided by the deployer as the initial owner.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6\",\"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}"}},"@openzeppelin/contracts/access/Ownable2Step.sol":{"Ownable2Step":{"abi":[{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"acceptOwnership","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"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"acceptOwnership()":"79ba5097","owner()":"8da5cb5b","pendingOwner()":"e30c3978","renounceOwnership()":"715018a6","transferOwnership(address)":"f2fde38b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"acceptOwnership\",\"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\":{\"details\":\"Contract module which provides access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. This extension of the {Ownable} contract includes a two-step mechanism to transfer ownership, where the new owner must call {acceptOwnership} in order to replace the old one. This can help prevent common mistakes, such as transfers of ownership to incorrect accounts, or to contracts that are unable to interact with the permission system. The initial owner is specified at deployment time in the constructor for `Ownable`. This can later be changed with {transferOwnership} and {acceptOwnership}. This module is used through inheritance. It will make available all functions from parent (Ownable).\",\"errors\":{\"OwnableInvalidOwner(address)\":[{\"details\":\"The owner is not a valid owner account. (eg. `address(0)`)\"}],\"OwnableUnauthorizedAccount(address)\":[{\"details\":\"The caller account is not authorized to perform an operation.\"}]},\"kind\":\"dev\",\"methods\":{\"acceptOwnership()\":{\"details\":\"The new owner accepts the ownership transfer.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"details\":\"Returns the address of the pending owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. Can only be called by the current owner. Setting `newOwner` to the zero address is allowed; this can be used to cancel an initiated ownership transfer.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/Ownable2Step.sol\":\"Ownable2Step\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6\",\"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a\"]},\"@openzeppelin/contracts/access/Ownable2Step.sol\":{\"keccak256\":\"0xdcad8898fda432696597752e8ec361b87d85c82cb258115427af006dacf7128c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e2c9d517f0c136d54bd00cd57959d25681d4d6273f5bbbc263afe228303772f0\",\"dweb:/ipfs/QmReNFjXBiufByiAAzfSQ2SM5r3qeUErn46BmN3yVRvrek\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}"}},"@openzeppelin/contracts/interfaces/IERC5267.sol":{"IERC5267":{"abi":[{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"eip712Domain()":"84b0196e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"}},\"kind\":\"dev\",\"methods\":{\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":\"IERC5267\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]}},\"version\":1}"}},"@openzeppelin/contracts/interfaces/draft-IERC6093.sol":{"IERC1155Errors":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC1155InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC1155InvalidApprover","type":"error"},{"inputs":[{"internalType":"uint256","name":"idsLength","type":"uint256"},{"internalType":"uint256","name":"valuesLength","type":"uint256"}],"name":"ERC1155InvalidArrayLength","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC1155InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC1155InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC1155InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC1155MissingApprovalForAll","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC1155InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"idsLength\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"valuesLength\",\"type\":\"uint256\"}],\"name\":\"ERC1155InvalidArrayLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC1155MissingApprovalForAll\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-1155 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.\",\"errors\":{\"ERC1155InsufficientBalance(address,uint256,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC1155InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC1155InvalidArrayLength(uint256,uint256)\":[{\"details\":\"Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. Used in batch transfers.\",\"params\":{\"idsLength\":\"Length of the array of token identifiers\",\"valuesLength\":\"Length of the array of token amounts\"}}],\"ERC1155InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC1155InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC1155InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC1155MissingApprovalForAll(address,address)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"owner\":\"Address of the current owner of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC1155Errors\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x19fdfb0f3b89a230e7dbd1cf416f1a6b531a3ee5db4da483f946320fc74afc0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3490d794728f5bfecb46820431adaff71ba374141545ec20b650bb60353fac23\",\"dweb:/ipfs/QmPsfxjVpMcZbpE7BH93DzTpEaktESigEw4SmDzkXuJ4WR\"]}},\"version\":1}"},"IERC20Errors":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-20 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC20Errors\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x19fdfb0f3b89a230e7dbd1cf416f1a6b531a3ee5db4da483f946320fc74afc0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3490d794728f5bfecb46820431adaff71ba374141545ec20b650bb60353fac23\",\"dweb:/ipfs/QmPsfxjVpMcZbpE7BH93DzTpEaktESigEw4SmDzkXuJ4WR\"]}},\"version\":1}"},"IERC721Errors":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721IncorrectOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721InsufficientApproval\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC721InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721NonexistentToken\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC-721 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.\",\"errors\":{\"ERC721IncorrectOwner(address,uint256,address)\":[{\"details\":\"Indicates an error related to the ownership over a particular token. Used in transfers.\",\"params\":{\"owner\":\"Address of the current owner of a token.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InsufficientApproval(address,uint256)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC721InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC721InvalidOwner(address)\":[{\"details\":\"Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. Used in balance queries.\",\"params\":{\"owner\":\"Address of the current owner of a token.\"}}],\"ERC721InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC721InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC721NonexistentToken(uint256)\":[{\"details\":\"Indicates a `tokenId` whose `owner` is the zero address.\",\"params\":{\"tokenId\":\"Identifier number of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC721Errors\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x19fdfb0f3b89a230e7dbd1cf416f1a6b531a3ee5db4da483f946320fc74afc0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3490d794728f5bfecb46820431adaff71ba374141545ec20b650bb60353fac23\",\"dweb:/ipfs/QmPsfxjVpMcZbpE7BH93DzTpEaktESigEw4SmDzkXuJ4WR\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"ERC20":{"abi":[{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"value","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","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":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"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.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"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\":\"value\",\"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\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"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\":\"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}. TIP: For a detailed writeup see our guide https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. The default value of {decimals} is 18. To change this, you should override this function so it returns a different value. 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 ERC-20 applications.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}]},\"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\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. Both 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 default value returned by this function, unless it's 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}.\"},\"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\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x19fdfb0f3b89a230e7dbd1cf416f1a6b531a3ee5db4da483f946320fc74afc0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3490d794728f5bfecb46820431adaff71ba374141545ec20b650bb60353fac23\",\"dweb:/ipfs/QmPsfxjVpMcZbpE7BH93DzTpEaktESigEw4SmDzkXuJ4WR\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x86b7b71a6aedefdad89b607378eeab1dcc5389b9ea7d17346d08af01d7190994\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1dc2db8d94a21eac8efe03adf574c419b08536409b416057a2b5b95cb772c43c\",\"dweb:/ipfs/QmZfqJCKVU1ScuX2A7s8WZdQEaikwJbDH5JBrBdKTUT4Gu\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"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":"value","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","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":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"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.28+commit.7893614a\"},\"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\":\"value\",\"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\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"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\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC-20 standard as defined in the ERC.\",\"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 a `value` amount of tokens 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 value of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` 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\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol":{"ERC20Permit":{"abi":[{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"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":[],"name":"EIP712DomainChanged","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":"value","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":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","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":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DOMAIN_SEPARATOR()":"3644e515","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","eip712Domain()":"84b0196e","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.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"ERC2612ExpiredSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC2612InvalidSigner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"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\":[],\"name\":\"EIP712DomainChanged\",\"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\":\"value\",\"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\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"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\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"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\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the ERC-20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[ERC-2612]. Adds the {permit} method, which can be used to change an account's ERC-20 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.\",\"errors\":{\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}],\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC2612ExpiredSignature(uint256)\":[{\"details\":\"Permit deadline has expired.\"}],\"ERC2612InvalidSigner(address,address)\":[{\"details\":\"Mismatched signature.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}]},\"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.\"},\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"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\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"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\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"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 ERC-20 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 default value returned by this function, unless it's 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}.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"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]. CAUTION: See Security Considerations above.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\":\"ERC20Permit\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x19fdfb0f3b89a230e7dbd1cf416f1a6b531a3ee5db4da483f946320fc74afc0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3490d794728f5bfecb46820431adaff71ba374141545ec20b650bb60353fac23\",\"dweb:/ipfs/QmPsfxjVpMcZbpE7BH93DzTpEaktESigEw4SmDzkXuJ4WR\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x86b7b71a6aedefdad89b607378eeab1dcc5389b9ea7d17346d08af01d7190994\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1dc2db8d94a21eac8efe03adf574c419b08536409b416057a2b5b95cb772c43c\",\"dweb:/ipfs/QmZfqJCKVU1ScuX2A7s8WZdQEaikwJbDH5JBrBdKTUT4Gu\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\":{\"keccak256\":\"0xecd08ad8132d88a5fcfd50f76a18583004fcdab4c33fb86343903ae420ca5a2b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://02422dce2e5305624e5cec644add1baa44bfa98ea131bf6030069089a2f56ca4\",\"dweb:/ipfs/QmcsSUkX7AYXNZE18LYE6JEmv8zZcCZvKfbUm9cSzNQyNo\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x2fa0657dd7b8bc75475a47f64bc04a9adb42236b15d65e6781594ea69a46c3e4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7496f42681aed94bf0142a077324e50b86046610c1724e7c12e96cf1c365914a\",\"dweb:/ipfs/QmZvhNdSAAbN4PKPdheAqwpXukUiXp3Q3TdQccDMg2NDTV\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0xad148d59f05165f9217d0a9e1ac8f772abb02ea6aaad8a756315c532bf79f9f4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://15e3599867c2182f5831e9268b274b2ef2047825837df6b4d81c9e89254b093e\",\"dweb:/ipfs/QmZbL7XAYr5RmaNaooPgZRmcDXaudfsYQfYD9y5iAECvpS\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x17fc4574e07105b0180ef61f1b3cacd1820a3d37f29a4af1018d0a253c6399b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be46b3e1362dbcadbbb45ec92cdea849dceccea3e2795237f00c123aeae44746\",\"dweb:/ipfs/QmSpyB8mud6xKiZaQnVtEPrxtTHGtyBgjs1PCYk4f2gesd\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"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":"value","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","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":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"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.28+commit.7893614a\"},\"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\":\"value\",\"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\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"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\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for the optional metadata functions from the ERC-20 standard.\",\"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 a `value` amount of tokens 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 value 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 value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism. `value` 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\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]}},\"version\":1}"}},"@openzeppelin/contracts/token/ERC20/extensions/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"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DOMAIN_SEPARATOR()":"3644e515","nonces(address)":"7ecebe00","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"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 ERC-20 Permit extension allowing approvals to be made via signatures, as defined in https://eips.ethereum.org/EIPS/eip-2612[ERC-2612]. Adds the {permit} method, which can be used to change an account's ERC-20 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. ==== Security Considerations There are two important considerations concerning the use of `permit`. The first is that a valid permit signature expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be considered as an intention to spend the allowance in any specific way. The second is that because permits have built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be generally recommended is: ```solidity function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}     doThing(..., value); } function doThing(..., uint256 value) public {     token.safeTransferFrom(msg.sender, address(this), value);     ... } ``` Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also {SafeERC20-safeTransferFrom}). Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so contracts should have entry points that don't rely on permit.\",\"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]. CAUTION: See Security Considerations above.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":\"IERC20Permit\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x2fa0657dd7b8bc75475a47f64bc04a9adb42236b15d65e6781594ea69a46c3e4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7496f42681aed94bf0142a077324e50b86046610c1724e7c12e96cf1c365914a\",\"dweb:/ipfs/QmZvhNdSAAbN4PKPdheAqwpXukUiXp3Q3TdQccDMg2NDTV\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Context.sol":{"Context":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"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\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Nonces.sol":{"Nonces":{"abi":[{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"nonces(address)":"7ecebe00"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Provides tracking nonces for addresses. Nonces will only increment.\",\"errors\":{\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}]},\"kind\":\"dev\",\"methods\":{\"nonces(address)\":{\"details\":\"Returns the next unused nonce for an address.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Nonces.sol\":\"Nonces\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Panic.sol":{"Panic":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220480443931a2b8e6d08b7f7f303a7c4e4fb18367fcb810a9dc62b284df191e4e064736f6c634300081c0033","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 BASEFEE DIV NUMBER SWAP4 BYTE 0x2B DUP15 PUSH14 0x8B7F7F303A7C4E4FB18367FCB81 EXP SWAP14 0xC6 0x2B 0x28 0x4D CALL SWAP2 0xE4 0xE0 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"657:1315:14:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;657:1315:14;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220480443931a2b8e6d08b7f7f303a7c4e4fb18367fcb810a9dc62b284df191e4e064736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 BASEFEE DIV NUMBER SWAP4 BYTE 0x2B DUP15 PUSH14 0x8B7F7F303A7C4E4FB18367FCB81 EXP SWAP14 0xC6 0x2B 0x28 0x4D CALL SWAP2 0xE4 0xE0 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"657:1315:14:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Helper library for emitting standardized panic codes. ```solidity contract Example {      using Panic for uint256;      // Use any of the declared internal constants      function foo() { Panic.GENERIC.panic(); }      // Alternatively      function foo() { Panic.panic(Panic.GENERIC); } } ``` Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil]. _Available since v5.1._\",\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"ARRAY_OUT_OF_BOUNDS\":{\"details\":\"array out of bounds access\"},\"ASSERT\":{\"details\":\"used by the assert() builtin\"},\"DIVISION_BY_ZERO\":{\"details\":\"division or modulo by zero\"},\"EMPTY_ARRAY_POP\":{\"details\":\"empty array pop\"},\"ENUM_CONVERSION_ERROR\":{\"details\":\"enum conversion error\"},\"GENERIC\":{\"details\":\"generic / unspecified error\"},\"INVALID_INTERNAL_FUNCTION\":{\"details\":\"calling invalid internal function\"},\"RESOURCE_ERROR\":{\"details\":\"resource error (too large allocation or too large array)\"},\"STORAGE_ENCODING_ERROR\":{\"details\":\"invalid encoding in storage\"},\"UNDER_OVERFLOW\":{\"details\":\"arithmetic underflow or overflow\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Panic.sol\":\"Panic\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/ShortStrings.sol":{"ShortStrings":{"abi":[{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220bb8c137c38c693f601d779da37a5cb9c8d9e95fdf8ca0785c2c04c7e34eb724764736f6c634300081c0033","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 0xBB DUP13 SGT PUSH29 0x38C693F601D779DA37A5CB9C8D9E95FDF8CA0785C2C04C7E34EB724764 PUSH20 0x6F6C634300081C00330000000000000000000000 ","sourceMap":"1255:3046:15:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;1255:3046:15;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220bb8c137c38c693f601d779da37a5cb9c8d9e95fdf8ca0785c2c04c7e34eb724764736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBB DUP13 SGT PUSH29 0x38C693F601D779DA37A5CB9C8D9E95FDF8CA0785C2C04C7E34EB724764 PUSH20 0x6F6C634300081C00330000000000000000000000 ","sourceMap":"1255:3046:15:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"This library provides functions to convert short memory strings into a `ShortString` type that can be used as an immutable variable. Strings of arbitrary length can be optimized using this library if they are short enough (up to 31 bytes) by packing them with their length (1 byte) in a single EVM word (32 bytes). Additionally, a fallback mechanism can be used for every other case. Usage example: ```solidity contract Named {     using ShortStrings for *;     ShortString private immutable _name;     string private _nameFallback;     constructor(string memory contractName) {         _name = contractName.toShortStringWithFallback(_nameFallback);     }     function name() external view returns (string memory) {         return _name.toStringWithFallback(_nameFallback);     } } ```\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/ShortStrings.sol\":\"ShortStrings\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/StorageSlot.sol":{"StorageSlot":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220fd02ad865f4d4d3506835bb24d0b42df1b76c7724b68b60d7e5678d28df83b7364736f6c634300081c0033","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 REVERT MUL 0xAD DUP7 PUSH0 0x4D 0x4D CALLDATALOAD MOD DUP4 JUMPDEST 0xB2 0x4D SIGNEXTEND TIMESTAMP 0xDF SHL PUSH23 0xC7724B68B60D7E5678D28DF83B7364736F6C634300081C STOP CALLER ","sourceMap":"1407:2774:16:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;1407:2774:16;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220fd02ad865f4d4d3506835bb24d0b42df1b76c7724b68b60d7e5678d28df83b7364736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 REVERT MUL 0xAD DUP7 PUSH0 0x4D 0x4D CALLDATALOAD MOD DUP4 JUMPDEST 0xB2 0x4D SIGNEXTEND TIMESTAMP 0xDF SHL PUSH23 0xC7724B68B60D7E5678D28DF83B7364736F6C634300081C STOP CALLER ","sourceMap":"1407:2774:16:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library for reading and writing primitive types to specific storage slots. Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. This library helps with reading and writing to such slots without the need for inline assembly. The functions in this library return Slot structs that contain a `value` member that can be used to read or write. Example usage to set ERC-1967 implementation slot: ```solidity contract ERC1967 {     // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;     function _getImplementation() internal view returns (address) {         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;     }     function _setImplementation(address newImplementation) internal {         require(newImplementation.code.length > 0);         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;     } } ``` TIP: Consider using this library along with {SlotDerivation}.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/StorageSlot.sol\":\"StorageSlot\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/Strings.sol":{"Strings":{"abi":[{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"length","type":"uint256"}],"name":"StringsInsufficientHexLength","type":"error"},{"inputs":[],"name":"StringsInvalidAddressFormat","type":"error"},{"inputs":[],"name":"StringsInvalidChar","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220d25119d96a0b6c751ed6c6aa81db3c845d0181659d29e3646b022356a5139e5364736f6c634300081c0033","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 0xD2 MLOAD NOT 0xD9 PUSH11 0xB6C751ED6C6AA81DB3C84 TSTORE ADD DUP2 PUSH6 0x9D29E3646B02 0x23 JUMP 0xA5 SGT SWAP15 MSTORE8 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"297:18982:17:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;297:18982:17;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220d25119d96a0b6c751ed6c6aa81db3c845d0181659d29e3646b022356a5139e5364736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD2 MLOAD NOT 0xD9 PUSH11 0xB6C751ED6C6AA81DB3C84 TSTORE ADD DUP2 PUSH6 0x9D29E3646B02 0x23 JUMP 0xA5 SGT SWAP15 MSTORE8 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"297:18982:17:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"StringsInsufficientHexLength\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"StringsInvalidAddressFormat\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"StringsInvalidChar\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"String operations.\",\"errors\":{\"StringsInsufficientHexLength(uint256,uint256)\":[{\"details\":\"The `value` string doesn't fit in the specified `length`.\"}],\"StringsInvalidAddressFormat()\":[{\"details\":\"The string being parsed is not a properly formatted address.\"}],\"StringsInvalidChar()\":[{\"details\":\"The string being parsed contains characters that are not in scope of the given base.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Strings.sol\":\"Strings\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0xad148d59f05165f9217d0a9e1ac8f772abb02ea6aaad8a756315c532bf79f9f4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://15e3599867c2182f5831e9268b274b2ef2047825837df6b4d81c9e89254b093e\",\"dweb:/ipfs/QmZbL7XAYr5RmaNaooPgZRmcDXaudfsYQfYD9y5iAECvpS\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/cryptography/ECDSA.sol":{"ECDSA":{"abi":[{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212203376831630f08b8d35435f8576945761134eb73cbed0d9c2ec5b64bf80d3094a64736f6c634300081c0033","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 CALLER PUSH23 0x831630F08B8D35435F8576945761134EB73CBED0D9C2EC JUMPDEST PUSH5 0xBF80D3094A PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"344:7470:18:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;344:7470:18;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212203376831630f08b8d35435f8576945761134eb73cbed0d9c2ec5b64bf80d3094a64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLER PUSH23 0x831630F08B8D35435F8576945761134EB73CBED0D9C2EC JUMPDEST PUSH5 0xBF80D3094A PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"344:7470:18:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"}],\"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.\",\"errors\":{\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":\"ECDSA\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/cryptography/EIP712.sol":{"EIP712":{"abi":[{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"eip712Domain()":"84b0196e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\",\"details\":\"https://eips.ethereum.org/EIPS/eip-712[EIP-712] is a standard for hashing and signing of typed structured data. The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose encoding is very generic and therefore its 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 order to produce the hash of their typed data 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]. NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the separator from the immutable values, which is cheaper than accessing a cached version in cold storage.\",\"events\":{\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"}},\"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].\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":\"EIP712\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0xad148d59f05165f9217d0a9e1ac8f772abb02ea6aaad8a756315c532bf79f9f4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://15e3599867c2182f5831e9268b274b2ef2047825837df6b4d81c9e89254b093e\",\"dweb:/ipfs/QmZbL7XAYr5RmaNaooPgZRmcDXaudfsYQfYD9y5iAECvpS\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x17fc4574e07105b0180ef61f1b3cacd1820a3d37f29a4af1018d0a253c6399b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be46b3e1362dbcadbbb45ec92cdea849dceccea3e2795237f00c123aeae44746\",\"dweb:/ipfs/QmSpyB8mud6xKiZaQnVtEPrxtTHGtyBgjs1PCYk4f2gesd\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"MessageHashUtils":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122016b302164886e4b1645be0931e2ac3e9b09a0072e13b81ff5268d6d70b906a6c64736f6c634300081c0033","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 AND 0xB3 MUL AND BASEFEE DUP7 0xE4 0xB1 PUSH5 0x5BE0931E2A 0xC3 0xE9 0xB0 SWAP11 STOP PUSH19 0xE13B81FF5268D6D70B906A6C64736F6C634300 ADDMOD SHR STOP CALLER ","sourceMap":"521:3729:20:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;521:3729:20;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122016b302164886e4b1645be0931e2ac3e9b09a0072e13b81ff5268d6d70b906a6c64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 AND 0xB3 MUL AND BASEFEE DUP7 0xE4 0xB1 PUSH5 0x5BE0931E2A 0xC3 0xE9 0xB0 SWAP11 STOP PUSH19 0xE13B81FF5268D6D70B906A6C64736F6C634300 ADDMOD SHR STOP CALLER ","sourceMap":"521:3729:20:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing. The library provides methods for generating a hash of a message that conforms to the https://eips.ethereum.org/EIPS/eip-191[ERC-191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712] specifications.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":\"MessageHashUtils\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0xad148d59f05165f9217d0a9e1ac8f772abb02ea6aaad8a756315c532bf79f9f4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://15e3599867c2182f5831e9268b274b2ef2047825837df6b4d81c9e89254b093e\",\"dweb:/ipfs/QmZbL7XAYr5RmaNaooPgZRmcDXaudfsYQfYD9y5iAECvpS\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/introspection/ERC165.sol":{"ERC165":{"abi":[{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"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\":\"Implementation of the {IERC165} interface. Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check for the additional interface id that will be supported. For example: ```solidity function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); } ```\",\"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[ERC 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/ERC165.sol\":\"ERC165\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0x2d9dc2fe26180f74c11c13663647d38e259e45f95eb88f57b61d2160b0109d3e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81233d1f98060113d9922180bb0f14f8335856fe9f339134b09335e9f678c377\",\"dweb:/ipfs/QmWh6R35SarhAn4z2wH8SU456jJSYL2FgucfTFgbHJJN4E\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"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"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"supportsInterface(bytes4)":"01ffc9a7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"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 ERC-165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[ERC]. 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[ERC 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\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/math/Math.sol":{"Math":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220e41425f41c1222419b5f7510ef4b5382051038809b54a2c00f0e2d3ac98d815264736f6c634300081c0033","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 0xE4 EQ 0x25 DELEGATECALL SHR SLT 0x22 COINBASE SWAP12 PUSH0 PUSH22 0x10EF4B5382051038809B54A2C00F0E2D3AC98D815264 PUSH20 0x6F6C634300081C00330000000000000000000000 ","sourceMap":"281:31863:23:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;281:31863:23;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220e41425f41c1222419b5f7510ef4b5382051038809b54a2c00f0e2d3ac98d815264736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE4 EQ 0x25 DELEGATECALL SHR SLT 0x22 COINBASE SWAP12 PUSH0 PUSH22 0x10EF4B5382051038809B54A2C00F0E2D3AC98D815264 PUSH20 0x6F6C634300081C00330000000000000000000000 ","sourceMap":"281:31863:23:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Standard math utilities missing in the Solidity language.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/Math.sol\":\"Math\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/math/SafeCast.sol":{"SafeCast":{"abi":[{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"int256","name":"value","type":"int256"}],"name":"SafeCastOverflowedIntDowncast","type":"error"},{"inputs":[{"internalType":"int256","name":"value","type":"int256"}],"name":"SafeCastOverflowedIntToUint","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintToInt","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220f339f8e25e68a389c2a927bb23c6cb93c79c9384ea0005062ee031ef0df1d28e64736f6c634300081c0033","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 RETURN CODECOPY 0xF8 0xE2 MCOPY PUSH9 0xA389C2A927BB23C6CB SWAP4 0xC7 SWAP13 SWAP4 DUP5 0xEA STOP SDIV MOD 0x2E 0xE0 BALANCE 0xEF 0xD CALL 0xD2 DUP15 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"769:34173:24:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;769:34173:24;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220f339f8e25e68a389c2a927bb23c6cb93c79c9384ea0005062ee031ef0df1d28e64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 RETURN CODECOPY 0xF8 0xE2 MCOPY PUSH9 0xA389C2A927BB23C6CB SWAP4 0xC7 SWAP13 SWAP4 DUP5 0xEA STOP SDIV MOD 0x2E 0xE0 BALANCE 0xEF 0xD CALL 0xD2 DUP15 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"769:34173:24:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"int256\",\"name\":\"value\",\"type\":\"int256\"}],\"name\":\"SafeCastOverflowedIntDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"int256\",\"name\":\"value\",\"type\":\"int256\"}],\"name\":\"SafeCastOverflowedIntToUint\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint8\",\"name\":\"bits\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintDowncast\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"SafeCastOverflowedUintToInt\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Wrappers over Solidity's uintXX/intXX/bool 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.\",\"errors\":{\"SafeCastOverflowedIntDowncast(uint8,int256)\":[{\"details\":\"Value doesn't fit in an int of `bits` size.\"}],\"SafeCastOverflowedIntToUint(int256)\":[{\"details\":\"An int value doesn't fit in an uint of `bits` size.\"}],\"SafeCastOverflowedUintDowncast(uint8,uint256)\":[{\"details\":\"Value doesn't fit in an uint of `bits` size.\"}],\"SafeCastOverflowedUintToInt(uint256)\":[{\"details\":\"An uint value doesn't fit in an int of `bits` size.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":\"SafeCast\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/math/SignedMath.sol":{"SignedMath":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220359be74cda55339d335080ca5f6a3089ca675c8b749bb38b7043fe3d3c5b95b164736f6c634300081c0033","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 CALLDATALOAD SWAP12 0xE7 0x4C 0xDA SSTORE CALLER SWAP14 CALLER POP DUP1 0xCA PUSH0 PUSH11 0x3089CA675C8B749BB38B70 NUMBER INVALID RETURNDATASIZE EXTCODECOPY JUMPDEST SWAP6 0xB1 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"258:2354:25:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;258:2354:25;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220359be74cda55339d335080ca5f6a3089ca675c8b749bb38b7043fe3d3c5b95b164736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLDATALOAD SWAP12 0xE7 0x4C 0xDA SSTORE CALLER SWAP14 CALLER POP DUP1 0xCA PUSH0 PUSH11 0x3089CA675C8B749BB38B70 NUMBER INVALID RETURNDATASIZE EXTCODECOPY JUMPDEST SWAP6 0xB1 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"258:2354:25:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Standard signed math utilities missing in the Solidity language.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/SignedMath.sol\":\"SignedMath\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]}},\"version\":1}"}},"contracts/Create3.sol":{"Create3":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220e1565f35a8400e2673a4896ca63ae7a48759d2cbe2a90335cefe8e8ba2d4c3dd64736f6c634300081c0033","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 0xE1 JUMP PUSH0 CALLDATALOAD 0xA8 BLOCKHASH 0xE 0x26 PUSH20 0xA4896CA63AE7A48759D2CBE2A90335CEFE8E8BA2 0xD4 0xC3 0xDD PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"354:5837:26:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;354:5837:26;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220e1565f35a8400e2673a4896ca63ae7a48759d2cbe2a90335cefe8e8ba2d4c3dd64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE1 JUMP PUSH0 CALLDATALOAD 0xA8 BLOCKHASH 0xE 0x26 PUSH20 0xA4896CA63AE7A48759D2CBE2A90335CEFE8E8BA2 0xD4 0xC3 0xDD PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"354:5837:26:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"author\":\"Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/CREATE3.sol)0xSequence (https://github.com/0xSequence/create3/blob/master/contracts/Create3.sol)\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"Deploy to deterministic addresses without an initcode factor.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/Create3.sol\":\"Create3\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/Create3.sol\":{\"keccak256\":\"0x84eff86643b11ff794e21360893fb774a30062307bc998333a9ad303bf17854f\",\"license\":\"AGPL-3.0-only\",\"urls\":[\"bzz-raw://0f8671195c6d456d4281dd92588357824e08b089baa52489917e0f7d4898bb57\",\"dweb:/ipfs/QmcnVbxbe6qzWEcrgC3ogGZFejAsttEewhWDMtjJSE6LTA\"]}},\"version\":1}"}},"contracts/IWrappedWIT.sol":{"IWrappedWIT":{"abi":[{"inputs":[],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"evmPrevCurator","type":"address"},{"indexed":true,"internalType":"address","name":"evmNewCurator","type":"address"}],"name":"CuratorshipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"witCustodianUnwrapper","type":"string"}],"name":"NewCustodianUnwrapper","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"Witnet.Timestamp","name":"timestamp","type":"uint64"},{"indexed":false,"internalType":"Witnet.TransactionHash","name":"witDrtHash","type":"bytes32"}],"name":"ReserveUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"evmSender","type":"address"},{"indexed":false,"internalType":"string","name":"witRecipient","type":"string"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"Unwrapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"witSender","type":"string"},{"indexed":false,"internalType":"address","name":"evmRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"Witnet.TransactionHash","name":"witVttHash","type":"bytes32"}],"name":"Wrapped","type":"event"},{"inputs":[],"name":"evmCurator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.TransactionHash","name":"","type":"bytes32"}],"name":"getWrapTransactionLastQueryId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.TransactionHash","name":"","type":"bytes32"}],"name":"getWrapTransactionStatus","outputs":[{"internalType":"enum IWrappedWIT.WrappingStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.TransactionHash[]","name":"","type":"bytes32[]"}],"name":"getWrapTransactionStatuses","outputs":[{"internalType":"enum IWrappedWIT.WrappingStatus[]","name":"","type":"uint8[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"settleWitCustodianUnwrapper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"","type":"string[]"}],"name":"settleWitOracleCrossChainRpcProviders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint16","name":"minWitnesses","type":"uint16"},{"internalType":"uint16","name":"baseFeeOverhead100","type":"uint16"},{"internalType":"uint64","name":"unitaryRewardNanowits","type":"uint64"},{"internalType":"uint24","name":"responseCallbackGasLimit","type":"uint24"}],"internalType":"struct IWrappedWIT.WitOracleSettings","name":"","type":"tuple"}],"name":"settleWitOracleSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalReserveSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalUnwraps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalWraps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"transferCuratorship","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"","type":"uint64"},{"internalType":"string","name":"","type":"string"}],"name":"unwrap","outputs":[{"internalType":"uint256","name":"evmUnwrapId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"witCustodianUnwrapper","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witCustodianWrapper","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witOracleCrossChainRpcProviders","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"witOracleEstimateWrappingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witOracleProofOfReserveLastUpdate","outputs":[{"internalType":"Witnet.Timestamp","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witOracleProofOfReserveRadonBytecode","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witOracleProofOfReserveRadonHash","outputs":[{"internalType":"Witnet.RadonHash","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witOracleQuerySettings","outputs":[{"components":[{"internalType":"uint16","name":"minWitnesses","type":"uint16"},{"internalType":"uint16","name":"baseFeeOverhead100","type":"uint16"},{"internalType":"uint64","name":"unitaryRewardNanowits","type":"uint64"},{"internalType":"uint24","name":"responseCallbackGasLimit","type":"uint24"}],"internalType":"struct IWrappedWIT.WitOracleSettings","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.TransactionHash","name":"witTxHash","type":"bytes32"}],"name":"wrap","outputs":[{"internalType":"uint256","name":"witOracleQueryId","type":"uint256"}],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"evmCurator()":"01367f73","getWrapTransactionLastQueryId(bytes32)":"77cc7a3a","getWrapTransactionStatus(bytes32)":"a53cb851","getWrapTransactionStatuses(bytes32[])":"aa22dc33","settleWitCustodianUnwrapper(string)":"c65a20f0","settleWitOracleCrossChainRpcProviders(string[])":"ea9e96a6","settleWitOracleSettings((uint16,uint16,uint64,uint24))":"6df0627e","totalReserveSupply()":"91f4f96c","totalUnwraps()":"520a5495","totalWraps()":"6aaa54cf","transferCuratorship(address)":"a41942a4","unwrap(uint64,string)":"8a510f27","witCustodianUnwrapper()":"147040de","witCustodianWrapper()":"b3f120a1","witOracleCrossChainRpcProviders()":"71d41eb3","witOracleEstimateWrappingFee(uint256)":"ddb2bf5c","witOracleProofOfReserveLastUpdate()":"30315dc4","witOracleProofOfReserveRadonBytecode()":"acb734bb","witOracleProofOfReserveRadonHash()":"fec53a14","witOracleQuerySettings()":"873234cf","wrap(bytes32)":"5f029ebe"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"Unauthorized\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"evmPrevCurator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"evmNewCurator\",\"type\":\"address\"}],\"name\":\"CuratorshipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"witCustodianUnwrapper\",\"type\":\"string\"}],\"name\":\"NewCustodianUnwrapper\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"Witnet.Timestamp\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"Witnet.TransactionHash\",\"name\":\"witDrtHash\",\"type\":\"bytes32\"}],\"name\":\"ReserveUpdate\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"evmSender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"witRecipient\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"}],\"name\":\"Unwrapped\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"witSender\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"evmRecipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"Witnet.TransactionHash\",\"name\":\"witVttHash\",\"type\":\"bytes32\"}],\"name\":\"Wrapped\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"evmCurator\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"getWrapTransactionLastQueryId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"getWrapTransactionStatus\",\"outputs\":[{\"internalType\":\"enum IWrappedWIT.WrappingStatus\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.TransactionHash[]\",\"name\":\"\",\"type\":\"bytes32[]\"}],\"name\":\"getWrapTransactionStatuses\",\"outputs\":[{\"internalType\":\"enum IWrappedWIT.WrappingStatus[]\",\"name\":\"\",\"type\":\"uint8[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"name\":\"settleWitCustodianUnwrapper\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string[]\",\"name\":\"\",\"type\":\"string[]\"}],\"name\":\"settleWitOracleCrossChainRpcProviders\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint16\",\"name\":\"minWitnesses\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"baseFeeOverhead100\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"unitaryRewardNanowits\",\"type\":\"uint64\"},{\"internalType\":\"uint24\",\"name\":\"responseCallbackGasLimit\",\"type\":\"uint24\"}],\"internalType\":\"struct IWrappedWIT.WitOracleSettings\",\"name\":\"\",\"type\":\"tuple\"}],\"name\":\"settleWitOracleSettings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalReserveSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalUnwraps\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalWraps\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"transferCuratorship\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"},{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"name\":\"unwrap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"evmUnwrapId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witCustodianUnwrapper\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witCustodianWrapper\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracleCrossChainRpcProviders\",\"outputs\":[{\"internalType\":\"string[]\",\"name\":\"\",\"type\":\"string[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"witOracleEstimateWrappingFee\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracleProofOfReserveLastUpdate\",\"outputs\":[{\"internalType\":\"Witnet.Timestamp\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracleProofOfReserveRadonBytecode\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracleProofOfReserveRadonHash\",\"outputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracleQuerySettings\",\"outputs\":[{\"components\":[{\"internalType\":\"uint16\",\"name\":\"minWitnesses\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"baseFeeOverhead100\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"unitaryRewardNanowits\",\"type\":\"uint64\"},{\"internalType\":\"uint24\",\"name\":\"responseCallbackGasLimit\",\"type\":\"uint24\"}],\"internalType\":\"struct IWrappedWIT.WitOracleSettings\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"witTxHash\",\"type\":\"bytes32\"}],\"name\":\"wrap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"witOracleQueryId\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"evmCurator()\":{\"notice\":\"--- Read-only methods -----------------------------------------------------------------------------------------\"},\"settleWitOracleCrossChainRpcProviders(string[])\":{\"notice\":\"--- Authoritative methods -------------------------------------------------------------------------------------\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/IWrappedWIT.sol\":\"IWrappedWIT\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/IWrappedWIT.sol\":{\"keccak256\":\"0x8ee19154169e6b17db3f453966a0a03f9e1080578af784f3fe4e60a0a37e7ea9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://47913180c69e02f9872887e3eede6d9491f3bf176add6fafe76dfa36f350448a\",\"dweb:/ipfs/Qmf7a61bdxVE9BnCAVBtNEYPsC88pnn9o3BSX2bTjGWNqq\"]},\"witnet-solidity-bridge/contracts/WitOracle.sol\":{\"keccak256\":\"0x7f20eab15140df459753dfa8e406b826918b56ebe2c46456f9d04345c02629d1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e0573ce3d48200c71d8235a1a8c055b706420b2037bd21336f3c61713c3b8349\",\"dweb:/ipfs/QmY7BnVaNXFtJs1BFdeaa7dQfvUVoZyfwtv9HuToCxUUHU\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol\":{\"keccak256\":\"0xd207ca54a1049445a3d99eea497d9b34c6dbdd44d771eee825e4c031bd2f447e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f81de32d868ff2881ed6fe97cc897e40b4b11d23cbe53a0e23cf3e68f9c0f0a3\",\"dweb:/ipfs/QmeeXmzmK5MAzt7Hf5DB2L81efKtTzZg9VbQ8sUiTqEk5c\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracle.sol\":{\"keccak256\":\"0xd9f1a62989dbd33e486beb27362340565f899b143d1c4a1b022c6116b0ec317b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://00fa3a545ba871732ce1bd13241dcd24ad8c31908e764bb7e8ac1d96cb534e7f\",\"dweb:/ipfs/QmQvGiyxaULT6wu3RfvpnRrKdP8X2mbCDgQYyW9CQkH73f\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol\":{\"keccak256\":\"0xcd8e57eca7f8042c85a83264e2ff6d1cd7a9f1521831736d7f57bcc7800642e6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5c639668e9439d60770b5df77436088ae7bd0aeb1d1be446552a98b6c29138f0\",\"dweb:/ipfs/QmbN3f5YuKMSd2j9tjay3VEkiYibGWpbfbwRNyrxA8k4o4\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriable.sol\":{\"keccak256\":\"0xd7075a3c4a6744989883a9a791d9068f84872a1b1f9600665f8bde4b43ed9b3b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6fdea2451c22af317b4a699928e76fdd66d1faee2a87df951ef4d669d6b3058f\",\"dweb:/ipfs/QmcrohJfHjigPV9sXxyCucDhqwK2wP84Sc2qc5hx7RFQ6i\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableEvents.sol\":{\"keccak256\":\"0x47c283e931006d35bd2599524f86724e45eae6fad2fdd9cdecd1c85a90ff3f8c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3ad0520f99ec9298536ae9434f58caeb470c10dd3eaab1e4c7ed4cae9a97e2a2\",\"dweb:/ipfs/QmSuYCsSPweZfQc5Fbf9jYDdx4u7gwYCUdjhpcrrxmWZy6\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistry.sol\":{\"keccak256\":\"0x437bbb89129311bd1cc8f6becd333df46109ec53b24d3159be942b225614071f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ef9bcdf4a73cb126885478c994821b7fe2b87d9221b767b4c9342b89b0d6550a\",\"dweb:/ipfs/QmXzZXPMxjSiFpcEnhg6CjLFNxGCpDZt22xpUh7VHxNTGd\"]},\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"contracts/WrappedWIT.sol":{"WrappedWIT":{"abi":[{"inputs":[{"internalType":"contract IWitOracleRadonRequestFactory","name":"_witOracleRadonRequestFactory","type":"address"},{"internalType":"string","name":"_witCustodianBech32","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"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":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"CrosschainBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"CrosschainMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"evmPrevCurator","type":"address"},{"indexed":true,"internalType":"address","name":"evmNewCurator","type":"address"}],"name":"CuratorshipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"witCustodianUnwrapper","type":"string"}],"name":"NewCustodianUnwrapper","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"Witnet.Timestamp","name":"timestamp","type":"uint64"},{"indexed":false,"internalType":"Witnet.TransactionHash","name":"witDrtHash","type":"bytes32"}],"name":"ReserveUpdate","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":false,"internalType":"address","name":"evmSender","type":"address"},{"indexed":false,"internalType":"string","name":"witRecipient","type":"string"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"Unwrapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"witSender","type":"string"},{"indexed":false,"internalType":"address","name":"evmRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"Witnet.TransactionHash","name":"witVttHash","type":"bytes32"}],"name":"Wrapped","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":"value","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":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"crosschainBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"crosschainMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"evmCurator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.TransactionHash","name":"_witnetValueTransferTransactionHash","type":"bytes32"}],"name":"getWrapTransactionLastQueryId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.TransactionHash","name":"_witnetValueTransferTransactionHash","type":"bytes32"}],"name":"getWrapTransactionStatus","outputs":[{"internalType":"enum IWrappedWIT.WrappingStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.TransactionHash[]","name":"_hashes","type":"bytes32[]"}],"name":"getWrapTransactionStatuses","outputs":[{"internalType":"enum IWrappedWIT.WrappingStatus[]","name":"_statuses","type":"uint8[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_evmCurator","type":"address"},{"internalType":"string","name":"_witCustodianUnwrapperBech32","type":"string"}],"name":"initialize","outputs":[],"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":[{"components":[{"internalType":"Witnet.TransactionHash","name":"witDrTxHash","type":"bytes32"},{"internalType":"Witnet.RadonHash","name":"queryRadHash","type":"bytes32"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"queryParams","type":"tuple"},{"internalType":"Witnet.Timestamp","name":"resultTimestamp","type":"uint64"},{"internalType":"bytes","name":"resultCborBytes","type":"bytes"}],"internalType":"struct Witnet.DataPushReport","name":"report","type":"tuple"},{"internalType":"bytes","name":"proof","type":"bytes"}],"name":"pushDataReport","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"queryId","type":"uint256"},{"internalType":"bytes","name":"queryResult","type":"bytes"}],"name":"reportWitOracleQueryResult","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"}],"name":"reportableFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_witCustodianUnwrapperBech32","type":"string"}],"name":"settleWitCustodianUnwrapper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"_witRpcProviders","type":"string[]"}],"name":"settleWitOracleCrossChainRpcProviders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint16","name":"minWitnesses","type":"uint16"},{"internalType":"uint16","name":"baseFeeOverhead100","type":"uint16"},{"internalType":"uint64","name":"unitaryRewardNanowits","type":"uint64"},{"internalType":"uint24","name":"responseCallbackGasLimit","type":"uint24"}],"internalType":"struct IWrappedWIT.WitOracleSettings","name":"_settings","type":"tuple"}],"name":"settleWitOracleSettings","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReserveSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalUnwraps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalWraps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newCurator","type":"address"}],"name":"transferCuratorship","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"value","type":"uint64"},{"internalType":"string","name":"witRecipientBech32","type":"string"}],"name":"unwrap","outputs":[{"internalType":"uint256","name":"evmUnwrapId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"witCustodianUnwrapper","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witCustodianWrapper","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witOracle","outputs":[{"internalType":"contract WitOracle","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witOracleCrossChainProofOfInclusionTemplate","outputs":[{"internalType":"contract IWitOracleRadonRequestModal","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witOracleCrossChainProofOfReserveTemplate","outputs":[{"internalType":"contract IWitOracleRadonRequestModal","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witOracleCrossChainRpcProviders","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"evmGasPrice","type":"uint256"}],"name":"witOracleEstimateWrappingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witOracleProofOfReserveLastUpdate","outputs":[{"internalType":"Witnet.Timestamp","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witOracleProofOfReserveRadonBytecode","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witOracleProofOfReserveRadonHash","outputs":[{"internalType":"Witnet.RadonHash","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witOracleQuerySettings","outputs":[{"components":[{"internalType":"uint16","name":"minWitnesses","type":"uint16"},{"internalType":"uint16","name":"baseFeeOverhead100","type":"uint16"},{"internalType":"uint64","name":"unitaryRewardNanowits","type":"uint64"},{"internalType":"uint24","name":"responseCallbackGasLimit","type":"uint24"}],"internalType":"struct IWrappedWIT.WitOracleSettings","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.TransactionHash","name":"_witnetValueTransferTransactionHash","type":"bytes32"}],"name":"wrap","outputs":[{"internalType":"uint256","name":"_witOracleQueryId","type":"uint256"}],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_1452":{"entryPoint":null,"id":1452,"parameterSlots":1,"returnSlots":0},"@_3957":{"entryPoint":null,"id":3957,"parameterSlots":2,"returnSlots":0},"@_8303":{"entryPoint":null,"id":8303,"parameterSlots":2,"returnSlots":0},"@_862":{"entryPoint":null,"id":862,"parameterSlots":2,"returnSlots":0},"@_buildDomainSeparator_4004":{"entryPoint":null,"id":4004,"parameterSlots":0,"returnSlots":1},"@_convertBits_12199":{"entryPoint":3301,"id":12199,"parameterSlots":4,"returnSlots":1},"@_requireHrpMatch_11196":{"entryPoint":2788,"id":11196,"parameterSlots":2,"returnSlots":0},"@convertBits_12042":{"entryPoint":2885,"id":12042,"parameterSlots":4,"returnSlots":1},"@decode_11569":{"entryPoint":1861,"id":11569,"parameterSlots":2,"returnSlots":2},"@fromBech32_11037":{"entryPoint":1730,"id":11037,"parameterSlots":2,"returnSlots":1},"@fromBech32_13909":{"entryPoint":1478,"id":13909,"parameterSlots":2,"returnSlots":1},"@getAddressFromBytes_11218":{"entryPoint":2908,"id":11218,"parameterSlots":1,"returnSlots":1},"@getStringSlot_2087":{"entryPoint":null,"id":2087,"parameterSlots":1,"returnSlots":1},"@hrpExpand_11636":{"entryPoint":3772,"id":11636,"parameterSlots":1,"returnSlots":1},"@polymod_11732":{"entryPoint":4029,"id":11732,"parameterSlots":1,"returnSlots":1},"@toShortStringWithFallback_1927":{"entryPoint":1427,"id":1927,"parameterSlots":2,"returnSlots":1},"@toShortString_1829":{"entryPoint":1668,"id":1829,"parameterSlots":1,"returnSlots":1},"@verifyChecksum_11963":{"entryPoint":2999,"id":11963,"parameterSlots":3,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IWitOracleRadonRequestFactory_$10711t_string_memory_ptr_fromMemory":{"entryPoint":4400,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IWitOracleRadonRequestModal_$10761_fromMemory":{"entryPoint":5429,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string":{"entryPoint":4965,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_struct_RadonReducer":{"entryPoint":5009,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_memory_ptr_t_bytes1__to_t_bytes_memory_ptr_t_bytes1__nonPadded_inplace_fromStack_reversed":{"entryPoint":5581,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":5520,"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__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":5465,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0d3bbdc5952ddfc25bafa340466db68d17d1faf42dd154469a20b429a3742415__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_53dc06d622ffc4876df233985214fd280a387287ffe9d0e519654cae6b62b983__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_6a2cf2966ea32b348a1a2f630ac8faca290d4a2ab07de89caf8dae5717c1d46d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_804d16c791056572535f8e2036ddf984da7d771fd478e9d9544d867a673dae25__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8925955b412698449f23fd1db0ca5278ae982350c0d6a43502b6059204e31edc__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c3d844aee3a847f0e164a11470dfaf03e0661e60bf8b0718b82a475dc4773582__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cc3b15adba6692e0236e3ef91314dd5f2f6b9fc7d497a8d9fca03d4d32ef0086__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e61d0d29c666259da088b9a4a3c73f42db070a7c6e4ed8d249944652ec7c2cf8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e94f6be74a97f1cb3bd761cbce886a47861edc099a5ca2546d140eebfb9c3780__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_fbafcdcf532b64f842ae9e16c3ebe22680908b0bd1d2499a181aa780163d1903__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_DataSourceRequest_$10667_memory_ptr_t_struct$_RadonReducer_$13779_memory_ptr__to_t_struct$_DataSourceRequest_$10667_memory_ptr_t_struct$_RadonReducer_$13779_memory_ptr__fromStack_reversed":{"entryPoint":5178,"id":null,"parameterSlots":3,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":5548,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":4652,"id":null,"parameterSlots":3,"returnSlots":0},"convert_bytes_to_fixedbytes_from_t_bytes_memory_ptr_to_t_bytes32":{"entryPoint":5484,"id":null,"parameterSlots":1,"returnSlots":1},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":4731,"id":null,"parameterSlots":2,"returnSlots":0},"copy_memory_to_memory_with_cleanup":{"entryPoint":4364,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":4600,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x21":{"entryPoint":4943,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":4921,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":4342,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_contract_IWitOracleRadonRequestFactory":{"entryPoint":4318,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:14066:51","nodeType":"YulBlock","src":"0:14066:51","statements":[{"nativeSrc":"6:3:51","nodeType":"YulBlock","src":"6:3:51","statements":[]},{"body":{"nativeSrc":"90:86:51","nodeType":"YulBlock","src":"90:86:51","statements":[{"body":{"nativeSrc":"154:16:51","nodeType":"YulBlock","src":"154:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"163:1:51","nodeType":"YulLiteral","src":"163:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"166:1:51","nodeType":"YulLiteral","src":"166:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"156:6:51","nodeType":"YulIdentifier","src":"156:6:51"},"nativeSrc":"156:12:51","nodeType":"YulFunctionCall","src":"156:12:51"},"nativeSrc":"156:12:51","nodeType":"YulExpressionStatement","src":"156:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"113:5:51","nodeType":"YulIdentifier","src":"113:5:51"},{"arguments":[{"name":"value","nativeSrc":"124:5:51","nodeType":"YulIdentifier","src":"124:5:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"139:3:51","nodeType":"YulLiteral","src":"139:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"144:1:51","nodeType":"YulLiteral","src":"144:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"135:3:51","nodeType":"YulIdentifier","src":"135:3:51"},"nativeSrc":"135:11:51","nodeType":"YulFunctionCall","src":"135:11:51"},{"kind":"number","nativeSrc":"148:1:51","nodeType":"YulLiteral","src":"148:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"131:3:51","nodeType":"YulIdentifier","src":"131:3:51"},"nativeSrc":"131:19:51","nodeType":"YulFunctionCall","src":"131:19:51"}],"functionName":{"name":"and","nativeSrc":"120:3:51","nodeType":"YulIdentifier","src":"120:3:51"},"nativeSrc":"120:31:51","nodeType":"YulFunctionCall","src":"120:31:51"}],"functionName":{"name":"eq","nativeSrc":"110:2:51","nodeType":"YulIdentifier","src":"110:2:51"},"nativeSrc":"110:42:51","nodeType":"YulFunctionCall","src":"110:42:51"}],"functionName":{"name":"iszero","nativeSrc":"103:6:51","nodeType":"YulIdentifier","src":"103:6:51"},"nativeSrc":"103:50:51","nodeType":"YulFunctionCall","src":"103:50:51"},"nativeSrc":"100:70:51","nodeType":"YulIf","src":"100:70:51"}]},"name":"validator_revert_contract_IWitOracleRadonRequestFactory","nativeSrc":"14:162:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"79:5:51","nodeType":"YulTypedName","src":"79:5:51","type":""}],"src":"14:162:51"},{"body":{"nativeSrc":"213:95:51","nodeType":"YulBlock","src":"213:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"230:1:51","nodeType":"YulLiteral","src":"230:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"237:3:51","nodeType":"YulLiteral","src":"237:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"242:10:51","nodeType":"YulLiteral","src":"242:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"233:3:51","nodeType":"YulIdentifier","src":"233:3:51"},"nativeSrc":"233:20:51","nodeType":"YulFunctionCall","src":"233:20:51"}],"functionName":{"name":"mstore","nativeSrc":"223:6:51","nodeType":"YulIdentifier","src":"223:6:51"},"nativeSrc":"223:31:51","nodeType":"YulFunctionCall","src":"223:31:51"},"nativeSrc":"223:31:51","nodeType":"YulExpressionStatement","src":"223:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"270:1:51","nodeType":"YulLiteral","src":"270:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"273:4:51","nodeType":"YulLiteral","src":"273:4:51","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"263:6:51","nodeType":"YulIdentifier","src":"263:6:51"},"nativeSrc":"263:15:51","nodeType":"YulFunctionCall","src":"263:15:51"},"nativeSrc":"263:15:51","nodeType":"YulExpressionStatement","src":"263:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"294:1:51","nodeType":"YulLiteral","src":"294:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"297:4:51","nodeType":"YulLiteral","src":"297:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"287:6:51","nodeType":"YulIdentifier","src":"287:6:51"},"nativeSrc":"287:15:51","nodeType":"YulFunctionCall","src":"287:15:51"},"nativeSrc":"287:15:51","nodeType":"YulExpressionStatement","src":"287:15:51"}]},"name":"panic_error_0x41","nativeSrc":"181:127:51","nodeType":"YulFunctionDefinition","src":"181:127:51"},{"body":{"nativeSrc":"379:184:51","nodeType":"YulBlock","src":"379:184:51","statements":[{"nativeSrc":"389:10:51","nodeType":"YulVariableDeclaration","src":"389:10:51","value":{"kind":"number","nativeSrc":"398:1:51","nodeType":"YulLiteral","src":"398:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"393:1:51","nodeType":"YulTypedName","src":"393:1:51","type":""}]},{"body":{"nativeSrc":"458:63:51","nodeType":"YulBlock","src":"458:63:51","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nativeSrc":"483:3:51","nodeType":"YulIdentifier","src":"483:3:51"},{"name":"i","nativeSrc":"488:1:51","nodeType":"YulIdentifier","src":"488:1:51"}],"functionName":{"name":"add","nativeSrc":"479:3:51","nodeType":"YulIdentifier","src":"479:3:51"},"nativeSrc":"479:11:51","nodeType":"YulFunctionCall","src":"479:11:51"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"502:3:51","nodeType":"YulIdentifier","src":"502:3:51"},{"name":"i","nativeSrc":"507:1:51","nodeType":"YulIdentifier","src":"507:1:51"}],"functionName":{"name":"add","nativeSrc":"498:3:51","nodeType":"YulIdentifier","src":"498:3:51"},"nativeSrc":"498:11:51","nodeType":"YulFunctionCall","src":"498:11:51"}],"functionName":{"name":"mload","nativeSrc":"492:5:51","nodeType":"YulIdentifier","src":"492:5:51"},"nativeSrc":"492:18:51","nodeType":"YulFunctionCall","src":"492:18:51"}],"functionName":{"name":"mstore","nativeSrc":"472:6:51","nodeType":"YulIdentifier","src":"472:6:51"},"nativeSrc":"472:39:51","nodeType":"YulFunctionCall","src":"472:39:51"},"nativeSrc":"472:39:51","nodeType":"YulExpressionStatement","src":"472:39:51"}]},"condition":{"arguments":[{"name":"i","nativeSrc":"419:1:51","nodeType":"YulIdentifier","src":"419:1:51"},{"name":"length","nativeSrc":"422:6:51","nodeType":"YulIdentifier","src":"422:6:51"}],"functionName":{"name":"lt","nativeSrc":"416:2:51","nodeType":"YulIdentifier","src":"416:2:51"},"nativeSrc":"416:13:51","nodeType":"YulFunctionCall","src":"416:13:51"},"nativeSrc":"408:113:51","nodeType":"YulForLoop","post":{"nativeSrc":"430:19:51","nodeType":"YulBlock","src":"430:19:51","statements":[{"nativeSrc":"432:15:51","nodeType":"YulAssignment","src":"432:15:51","value":{"arguments":[{"name":"i","nativeSrc":"441:1:51","nodeType":"YulIdentifier","src":"441:1:51"},{"kind":"number","nativeSrc":"444:2:51","nodeType":"YulLiteral","src":"444:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"437:3:51","nodeType":"YulIdentifier","src":"437:3:51"},"nativeSrc":"437:10:51","nodeType":"YulFunctionCall","src":"437:10:51"},"variableNames":[{"name":"i","nativeSrc":"432:1:51","nodeType":"YulIdentifier","src":"432:1:51"}]}]},"pre":{"nativeSrc":"412:3:51","nodeType":"YulBlock","src":"412:3:51","statements":[]},"src":"408:113:51"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nativeSrc":"541:3:51","nodeType":"YulIdentifier","src":"541:3:51"},{"name":"length","nativeSrc":"546:6:51","nodeType":"YulIdentifier","src":"546:6:51"}],"functionName":{"name":"add","nativeSrc":"537:3:51","nodeType":"YulIdentifier","src":"537:3:51"},"nativeSrc":"537:16:51","nodeType":"YulFunctionCall","src":"537:16:51"},{"kind":"number","nativeSrc":"555:1:51","nodeType":"YulLiteral","src":"555:1:51","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"530:6:51","nodeType":"YulIdentifier","src":"530:6:51"},"nativeSrc":"530:27:51","nodeType":"YulFunctionCall","src":"530:27:51"},"nativeSrc":"530:27:51","nodeType":"YulExpressionStatement","src":"530:27:51"}]},"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"313:250:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nativeSrc":"357:3:51","nodeType":"YulTypedName","src":"357:3:51","type":""},{"name":"dst","nativeSrc":"362:3:51","nodeType":"YulTypedName","src":"362:3:51","type":""},{"name":"length","nativeSrc":"367:6:51","nodeType":"YulTypedName","src":"367:6:51","type":""}],"src":"313:250:51"},{"body":{"nativeSrc":"715:967:51","nodeType":"YulBlock","src":"715:967:51","statements":[{"body":{"nativeSrc":"761:16:51","nodeType":"YulBlock","src":"761:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"770:1:51","nodeType":"YulLiteral","src":"770:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"773:1:51","nodeType":"YulLiteral","src":"773:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"763:6:51","nodeType":"YulIdentifier","src":"763:6:51"},"nativeSrc":"763:12:51","nodeType":"YulFunctionCall","src":"763:12:51"},"nativeSrc":"763:12:51","nodeType":"YulExpressionStatement","src":"763:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"736:7:51","nodeType":"YulIdentifier","src":"736:7:51"},{"name":"headStart","nativeSrc":"745:9:51","nodeType":"YulIdentifier","src":"745:9:51"}],"functionName":{"name":"sub","nativeSrc":"732:3:51","nodeType":"YulIdentifier","src":"732:3:51"},"nativeSrc":"732:23:51","nodeType":"YulFunctionCall","src":"732:23:51"},{"kind":"number","nativeSrc":"757:2:51","nodeType":"YulLiteral","src":"757:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"728:3:51","nodeType":"YulIdentifier","src":"728:3:51"},"nativeSrc":"728:32:51","nodeType":"YulFunctionCall","src":"728:32:51"},"nativeSrc":"725:52:51","nodeType":"YulIf","src":"725:52:51"},{"nativeSrc":"786:29:51","nodeType":"YulVariableDeclaration","src":"786:29:51","value":{"arguments":[{"name":"headStart","nativeSrc":"805:9:51","nodeType":"YulIdentifier","src":"805:9:51"}],"functionName":{"name":"mload","nativeSrc":"799:5:51","nodeType":"YulIdentifier","src":"799:5:51"},"nativeSrc":"799:16:51","nodeType":"YulFunctionCall","src":"799:16:51"},"variables":[{"name":"value","nativeSrc":"790:5:51","nodeType":"YulTypedName","src":"790:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"880:5:51","nodeType":"YulIdentifier","src":"880:5:51"}],"functionName":{"name":"validator_revert_contract_IWitOracleRadonRequestFactory","nativeSrc":"824:55:51","nodeType":"YulIdentifier","src":"824:55:51"},"nativeSrc":"824:62:51","nodeType":"YulFunctionCall","src":"824:62:51"},"nativeSrc":"824:62:51","nodeType":"YulExpressionStatement","src":"824:62:51"},{"nativeSrc":"895:15:51","nodeType":"YulAssignment","src":"895:15:51","value":{"name":"value","nativeSrc":"905:5:51","nodeType":"YulIdentifier","src":"905:5:51"},"variableNames":[{"name":"value0","nativeSrc":"895:6:51","nodeType":"YulIdentifier","src":"895:6:51"}]},{"nativeSrc":"919:39:51","nodeType":"YulVariableDeclaration","src":"919:39:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"943:9:51","nodeType":"YulIdentifier","src":"943:9:51"},{"kind":"number","nativeSrc":"954:2:51","nodeType":"YulLiteral","src":"954:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"939:3:51","nodeType":"YulIdentifier","src":"939:3:51"},"nativeSrc":"939:18:51","nodeType":"YulFunctionCall","src":"939:18:51"}],"functionName":{"name":"mload","nativeSrc":"933:5:51","nodeType":"YulIdentifier","src":"933:5:51"},"nativeSrc":"933:25:51","nodeType":"YulFunctionCall","src":"933:25:51"},"variables":[{"name":"offset","nativeSrc":"923:6:51","nodeType":"YulTypedName","src":"923:6:51","type":""}]},{"body":{"nativeSrc":"1001:16:51","nodeType":"YulBlock","src":"1001:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1010:1:51","nodeType":"YulLiteral","src":"1010:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1013:1:51","nodeType":"YulLiteral","src":"1013:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1003:6:51","nodeType":"YulIdentifier","src":"1003:6:51"},"nativeSrc":"1003:12:51","nodeType":"YulFunctionCall","src":"1003:12:51"},"nativeSrc":"1003:12:51","nodeType":"YulExpressionStatement","src":"1003:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"973:6:51","nodeType":"YulIdentifier","src":"973:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"989:2:51","nodeType":"YulLiteral","src":"989:2:51","type":"","value":"64"},{"kind":"number","nativeSrc":"993:1:51","nodeType":"YulLiteral","src":"993:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"985:3:51","nodeType":"YulIdentifier","src":"985:3:51"},"nativeSrc":"985:10:51","nodeType":"YulFunctionCall","src":"985:10:51"},{"kind":"number","nativeSrc":"997:1:51","nodeType":"YulLiteral","src":"997:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"981:3:51","nodeType":"YulIdentifier","src":"981:3:51"},"nativeSrc":"981:18:51","nodeType":"YulFunctionCall","src":"981:18:51"}],"functionName":{"name":"gt","nativeSrc":"970:2:51","nodeType":"YulIdentifier","src":"970:2:51"},"nativeSrc":"970:30:51","nodeType":"YulFunctionCall","src":"970:30:51"},"nativeSrc":"967:50:51","nodeType":"YulIf","src":"967:50:51"},{"nativeSrc":"1026:32:51","nodeType":"YulVariableDeclaration","src":"1026:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"1040:9:51","nodeType":"YulIdentifier","src":"1040:9:51"},{"name":"offset","nativeSrc":"1051:6:51","nodeType":"YulIdentifier","src":"1051:6:51"}],"functionName":{"name":"add","nativeSrc":"1036:3:51","nodeType":"YulIdentifier","src":"1036:3:51"},"nativeSrc":"1036:22:51","nodeType":"YulFunctionCall","src":"1036:22:51"},"variables":[{"name":"_1","nativeSrc":"1030:2:51","nodeType":"YulTypedName","src":"1030:2:51","type":""}]},{"body":{"nativeSrc":"1106:16:51","nodeType":"YulBlock","src":"1106:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1115:1:51","nodeType":"YulLiteral","src":"1115:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1118:1:51","nodeType":"YulLiteral","src":"1118:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1108:6:51","nodeType":"YulIdentifier","src":"1108:6:51"},"nativeSrc":"1108:12:51","nodeType":"YulFunctionCall","src":"1108:12:51"},"nativeSrc":"1108:12:51","nodeType":"YulExpressionStatement","src":"1108:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1085:2:51","nodeType":"YulIdentifier","src":"1085:2:51"},{"kind":"number","nativeSrc":"1089:4:51","nodeType":"YulLiteral","src":"1089:4:51","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1081:3:51","nodeType":"YulIdentifier","src":"1081:3:51"},"nativeSrc":"1081:13:51","nodeType":"YulFunctionCall","src":"1081:13:51"},{"name":"dataEnd","nativeSrc":"1096:7:51","nodeType":"YulIdentifier","src":"1096:7:51"}],"functionName":{"name":"slt","nativeSrc":"1077:3:51","nodeType":"YulIdentifier","src":"1077:3:51"},"nativeSrc":"1077:27:51","nodeType":"YulFunctionCall","src":"1077:27:51"}],"functionName":{"name":"iszero","nativeSrc":"1070:6:51","nodeType":"YulIdentifier","src":"1070:6:51"},"nativeSrc":"1070:35:51","nodeType":"YulFunctionCall","src":"1070:35:51"},"nativeSrc":"1067:55:51","nodeType":"YulIf","src":"1067:55:51"},{"nativeSrc":"1131:23:51","nodeType":"YulVariableDeclaration","src":"1131:23:51","value":{"arguments":[{"name":"_1","nativeSrc":"1151:2:51","nodeType":"YulIdentifier","src":"1151:2:51"}],"functionName":{"name":"mload","nativeSrc":"1145:5:51","nodeType":"YulIdentifier","src":"1145:5:51"},"nativeSrc":"1145:9:51","nodeType":"YulFunctionCall","src":"1145:9:51"},"variables":[{"name":"length","nativeSrc":"1135:6:51","nodeType":"YulTypedName","src":"1135:6:51","type":""}]},{"body":{"nativeSrc":"1197:22:51","nodeType":"YulBlock","src":"1197:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1199:16:51","nodeType":"YulIdentifier","src":"1199:16:51"},"nativeSrc":"1199:18:51","nodeType":"YulFunctionCall","src":"1199:18:51"},"nativeSrc":"1199:18:51","nodeType":"YulExpressionStatement","src":"1199:18:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1169:6:51","nodeType":"YulIdentifier","src":"1169:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1185:2:51","nodeType":"YulLiteral","src":"1185:2:51","type":"","value":"64"},{"kind":"number","nativeSrc":"1189:1:51","nodeType":"YulLiteral","src":"1189:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1181:3:51","nodeType":"YulIdentifier","src":"1181:3:51"},"nativeSrc":"1181:10:51","nodeType":"YulFunctionCall","src":"1181:10:51"},{"kind":"number","nativeSrc":"1193:1:51","nodeType":"YulLiteral","src":"1193:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1177:3:51","nodeType":"YulIdentifier","src":"1177:3:51"},"nativeSrc":"1177:18:51","nodeType":"YulFunctionCall","src":"1177:18:51"}],"functionName":{"name":"gt","nativeSrc":"1166:2:51","nodeType":"YulIdentifier","src":"1166:2:51"},"nativeSrc":"1166:30:51","nodeType":"YulFunctionCall","src":"1166:30:51"},"nativeSrc":"1163:56:51","nodeType":"YulIf","src":"1163:56:51"},{"nativeSrc":"1228:23:51","nodeType":"YulVariableDeclaration","src":"1228:23:51","value":{"arguments":[{"kind":"number","nativeSrc":"1248:2:51","nodeType":"YulLiteral","src":"1248:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1242:5:51","nodeType":"YulIdentifier","src":"1242:5:51"},"nativeSrc":"1242:9:51","nodeType":"YulFunctionCall","src":"1242:9:51"},"variables":[{"name":"memPtr","nativeSrc":"1232:6:51","nodeType":"YulTypedName","src":"1232:6:51","type":""}]},{"nativeSrc":"1260:85:51","nodeType":"YulVariableDeclaration","src":"1260:85:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"1282:6:51","nodeType":"YulIdentifier","src":"1282:6:51"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1306:6:51","nodeType":"YulIdentifier","src":"1306:6:51"},{"kind":"number","nativeSrc":"1314:4:51","nodeType":"YulLiteral","src":"1314:4:51","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1302:3:51","nodeType":"YulIdentifier","src":"1302:3:51"},"nativeSrc":"1302:17:51","nodeType":"YulFunctionCall","src":"1302:17:51"},{"arguments":[{"kind":"number","nativeSrc":"1325:2:51","nodeType":"YulLiteral","src":"1325:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1321:3:51","nodeType":"YulIdentifier","src":"1321:3:51"},"nativeSrc":"1321:7:51","nodeType":"YulFunctionCall","src":"1321:7:51"}],"functionName":{"name":"and","nativeSrc":"1298:3:51","nodeType":"YulIdentifier","src":"1298:3:51"},"nativeSrc":"1298:31:51","nodeType":"YulFunctionCall","src":"1298:31:51"},{"kind":"number","nativeSrc":"1331:2:51","nodeType":"YulLiteral","src":"1331:2:51","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"1294:3:51","nodeType":"YulIdentifier","src":"1294:3:51"},"nativeSrc":"1294:40:51","nodeType":"YulFunctionCall","src":"1294:40:51"},{"arguments":[{"kind":"number","nativeSrc":"1340:2:51","nodeType":"YulLiteral","src":"1340:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1336:3:51","nodeType":"YulIdentifier","src":"1336:3:51"},"nativeSrc":"1336:7:51","nodeType":"YulFunctionCall","src":"1336:7:51"}],"functionName":{"name":"and","nativeSrc":"1290:3:51","nodeType":"YulIdentifier","src":"1290:3:51"},"nativeSrc":"1290:54:51","nodeType":"YulFunctionCall","src":"1290:54:51"}],"functionName":{"name":"add","nativeSrc":"1278:3:51","nodeType":"YulIdentifier","src":"1278:3:51"},"nativeSrc":"1278:67:51","nodeType":"YulFunctionCall","src":"1278:67:51"},"variables":[{"name":"newFreePtr","nativeSrc":"1264:10:51","nodeType":"YulTypedName","src":"1264:10:51","type":""}]},{"body":{"nativeSrc":"1420:22:51","nodeType":"YulBlock","src":"1420:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1422:16:51","nodeType":"YulIdentifier","src":"1422:16:51"},"nativeSrc":"1422:18:51","nodeType":"YulFunctionCall","src":"1422:18:51"},"nativeSrc":"1422:18:51","nodeType":"YulExpressionStatement","src":"1422:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"1363:10:51","nodeType":"YulIdentifier","src":"1363:10:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1383:2:51","nodeType":"YulLiteral","src":"1383:2:51","type":"","value":"64"},{"kind":"number","nativeSrc":"1387:1:51","nodeType":"YulLiteral","src":"1387:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1379:3:51","nodeType":"YulIdentifier","src":"1379:3:51"},"nativeSrc":"1379:10:51","nodeType":"YulFunctionCall","src":"1379:10:51"},{"kind":"number","nativeSrc":"1391:1:51","nodeType":"YulLiteral","src":"1391:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1375:3:51","nodeType":"YulIdentifier","src":"1375:3:51"},"nativeSrc":"1375:18:51","nodeType":"YulFunctionCall","src":"1375:18:51"}],"functionName":{"name":"gt","nativeSrc":"1360:2:51","nodeType":"YulIdentifier","src":"1360:2:51"},"nativeSrc":"1360:34:51","nodeType":"YulFunctionCall","src":"1360:34:51"},{"arguments":[{"name":"newFreePtr","nativeSrc":"1399:10:51","nodeType":"YulIdentifier","src":"1399:10:51"},{"name":"memPtr","nativeSrc":"1411:6:51","nodeType":"YulIdentifier","src":"1411:6:51"}],"functionName":{"name":"lt","nativeSrc":"1396:2:51","nodeType":"YulIdentifier","src":"1396:2:51"},"nativeSrc":"1396:22:51","nodeType":"YulFunctionCall","src":"1396:22:51"}],"functionName":{"name":"or","nativeSrc":"1357:2:51","nodeType":"YulIdentifier","src":"1357:2:51"},"nativeSrc":"1357:62:51","nodeType":"YulFunctionCall","src":"1357:62:51"},"nativeSrc":"1354:88:51","nodeType":"YulIf","src":"1354:88:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1458:2:51","nodeType":"YulLiteral","src":"1458:2:51","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"1462:10:51","nodeType":"YulIdentifier","src":"1462:10:51"}],"functionName":{"name":"mstore","nativeSrc":"1451:6:51","nodeType":"YulIdentifier","src":"1451:6:51"},"nativeSrc":"1451:22:51","nodeType":"YulFunctionCall","src":"1451:22:51"},"nativeSrc":"1451:22:51","nodeType":"YulExpressionStatement","src":"1451:22:51"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"1489:6:51","nodeType":"YulIdentifier","src":"1489:6:51"},{"name":"length","nativeSrc":"1497:6:51","nodeType":"YulIdentifier","src":"1497:6:51"}],"functionName":{"name":"mstore","nativeSrc":"1482:6:51","nodeType":"YulIdentifier","src":"1482:6:51"},"nativeSrc":"1482:22:51","nodeType":"YulFunctionCall","src":"1482:22:51"},"nativeSrc":"1482:22:51","nodeType":"YulExpressionStatement","src":"1482:22:51"},{"body":{"nativeSrc":"1554:16:51","nodeType":"YulBlock","src":"1554:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1563:1:51","nodeType":"YulLiteral","src":"1563:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1566:1:51","nodeType":"YulLiteral","src":"1566:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1556:6:51","nodeType":"YulIdentifier","src":"1556:6:51"},"nativeSrc":"1556:12:51","nodeType":"YulFunctionCall","src":"1556:12:51"},"nativeSrc":"1556:12:51","nodeType":"YulExpressionStatement","src":"1556:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1527:2:51","nodeType":"YulIdentifier","src":"1527:2:51"},{"name":"length","nativeSrc":"1531:6:51","nodeType":"YulIdentifier","src":"1531:6:51"}],"functionName":{"name":"add","nativeSrc":"1523:3:51","nodeType":"YulIdentifier","src":"1523:3:51"},"nativeSrc":"1523:15:51","nodeType":"YulFunctionCall","src":"1523:15:51"},{"kind":"number","nativeSrc":"1540:2:51","nodeType":"YulLiteral","src":"1540:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1519:3:51","nodeType":"YulIdentifier","src":"1519:3:51"},"nativeSrc":"1519:24:51","nodeType":"YulFunctionCall","src":"1519:24:51"},{"name":"dataEnd","nativeSrc":"1545:7:51","nodeType":"YulIdentifier","src":"1545:7:51"}],"functionName":{"name":"gt","nativeSrc":"1516:2:51","nodeType":"YulIdentifier","src":"1516:2:51"},"nativeSrc":"1516:37:51","nodeType":"YulFunctionCall","src":"1516:37:51"},"nativeSrc":"1513:57:51","nodeType":"YulIf","src":"1513:57:51"},{"expression":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1618:2:51","nodeType":"YulIdentifier","src":"1618:2:51"},{"kind":"number","nativeSrc":"1622:2:51","nodeType":"YulLiteral","src":"1622:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1614:3:51","nodeType":"YulIdentifier","src":"1614:3:51"},"nativeSrc":"1614:11:51","nodeType":"YulFunctionCall","src":"1614:11:51"},{"arguments":[{"name":"memPtr","nativeSrc":"1631:6:51","nodeType":"YulIdentifier","src":"1631:6:51"},{"kind":"number","nativeSrc":"1639:2:51","nodeType":"YulLiteral","src":"1639:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1627:3:51","nodeType":"YulIdentifier","src":"1627:3:51"},"nativeSrc":"1627:15:51","nodeType":"YulFunctionCall","src":"1627:15:51"},{"name":"length","nativeSrc":"1644:6:51","nodeType":"YulIdentifier","src":"1644:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"1579:34:51","nodeType":"YulIdentifier","src":"1579:34:51"},"nativeSrc":"1579:72:51","nodeType":"YulFunctionCall","src":"1579:72:51"},"nativeSrc":"1579:72:51","nodeType":"YulExpressionStatement","src":"1579:72:51"},{"nativeSrc":"1660:16:51","nodeType":"YulAssignment","src":"1660:16:51","value":{"name":"memPtr","nativeSrc":"1670:6:51","nodeType":"YulIdentifier","src":"1670:6:51"},"variableNames":[{"name":"value1","nativeSrc":"1660:6:51","nodeType":"YulIdentifier","src":"1660:6:51"}]}]},"name":"abi_decode_tuple_t_contract$_IWitOracleRadonRequestFactory_$10711t_string_memory_ptr_fromMemory","nativeSrc":"568:1114:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"673:9:51","nodeType":"YulTypedName","src":"673:9:51","type":""},{"name":"dataEnd","nativeSrc":"684:7:51","nodeType":"YulTypedName","src":"684:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"696:6:51","nodeType":"YulTypedName","src":"696:6:51","type":""},{"name":"value1","nativeSrc":"704:6:51","nodeType":"YulTypedName","src":"704:6:51","type":""}],"src":"568:1114:51"},{"body":{"nativeSrc":"1742:325:51","nodeType":"YulBlock","src":"1742:325:51","statements":[{"nativeSrc":"1752:22:51","nodeType":"YulAssignment","src":"1752:22:51","value":{"arguments":[{"kind":"number","nativeSrc":"1766:1:51","nodeType":"YulLiteral","src":"1766:1:51","type":"","value":"1"},{"name":"data","nativeSrc":"1769:4:51","nodeType":"YulIdentifier","src":"1769:4:51"}],"functionName":{"name":"shr","nativeSrc":"1762:3:51","nodeType":"YulIdentifier","src":"1762:3:51"},"nativeSrc":"1762:12:51","nodeType":"YulFunctionCall","src":"1762:12:51"},"variableNames":[{"name":"length","nativeSrc":"1752:6:51","nodeType":"YulIdentifier","src":"1752:6:51"}]},{"nativeSrc":"1783:38:51","nodeType":"YulVariableDeclaration","src":"1783:38:51","value":{"arguments":[{"name":"data","nativeSrc":"1813:4:51","nodeType":"YulIdentifier","src":"1813:4:51"},{"kind":"number","nativeSrc":"1819:1:51","nodeType":"YulLiteral","src":"1819:1:51","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"1809:3:51","nodeType":"YulIdentifier","src":"1809:3:51"},"nativeSrc":"1809:12:51","nodeType":"YulFunctionCall","src":"1809:12:51"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"1787:18:51","nodeType":"YulTypedName","src":"1787:18:51","type":""}]},{"body":{"nativeSrc":"1860:31:51","nodeType":"YulBlock","src":"1860:31:51","statements":[{"nativeSrc":"1862:27:51","nodeType":"YulAssignment","src":"1862:27:51","value":{"arguments":[{"name":"length","nativeSrc":"1876:6:51","nodeType":"YulIdentifier","src":"1876:6:51"},{"kind":"number","nativeSrc":"1884:4:51","nodeType":"YulLiteral","src":"1884:4:51","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"1872:3:51","nodeType":"YulIdentifier","src":"1872:3:51"},"nativeSrc":"1872:17:51","nodeType":"YulFunctionCall","src":"1872:17:51"},"variableNames":[{"name":"length","nativeSrc":"1862:6:51","nodeType":"YulIdentifier","src":"1862:6:51"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1840:18:51","nodeType":"YulIdentifier","src":"1840:18:51"}],"functionName":{"name":"iszero","nativeSrc":"1833:6:51","nodeType":"YulIdentifier","src":"1833:6:51"},"nativeSrc":"1833:26:51","nodeType":"YulFunctionCall","src":"1833:26:51"},"nativeSrc":"1830:61:51","nodeType":"YulIf","src":"1830:61:51"},{"body":{"nativeSrc":"1950:111:51","nodeType":"YulBlock","src":"1950:111:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1971:1:51","nodeType":"YulLiteral","src":"1971:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1978:3:51","nodeType":"YulLiteral","src":"1978:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"1983:10:51","nodeType":"YulLiteral","src":"1983:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1974:3:51","nodeType":"YulIdentifier","src":"1974:3:51"},"nativeSrc":"1974:20:51","nodeType":"YulFunctionCall","src":"1974:20:51"}],"functionName":{"name":"mstore","nativeSrc":"1964:6:51","nodeType":"YulIdentifier","src":"1964:6:51"},"nativeSrc":"1964:31:51","nodeType":"YulFunctionCall","src":"1964:31:51"},"nativeSrc":"1964:31:51","nodeType":"YulExpressionStatement","src":"1964:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2015:1:51","nodeType":"YulLiteral","src":"2015:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"2018:4:51","nodeType":"YulLiteral","src":"2018:4:51","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"2008:6:51","nodeType":"YulIdentifier","src":"2008:6:51"},"nativeSrc":"2008:15:51","nodeType":"YulFunctionCall","src":"2008:15:51"},"nativeSrc":"2008:15:51","nodeType":"YulExpressionStatement","src":"2008:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2043:1:51","nodeType":"YulLiteral","src":"2043:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"2046:4:51","nodeType":"YulLiteral","src":"2046:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2036:6:51","nodeType":"YulIdentifier","src":"2036:6:51"},"nativeSrc":"2036:15:51","nodeType":"YulFunctionCall","src":"2036:15:51"},"nativeSrc":"2036:15:51","nodeType":"YulExpressionStatement","src":"2036:15:51"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"1906:18:51","nodeType":"YulIdentifier","src":"1906:18:51"},{"arguments":[{"name":"length","nativeSrc":"1929:6:51","nodeType":"YulIdentifier","src":"1929:6:51"},{"kind":"number","nativeSrc":"1937:2:51","nodeType":"YulLiteral","src":"1937:2:51","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"1926:2:51","nodeType":"YulIdentifier","src":"1926:2:51"},"nativeSrc":"1926:14:51","nodeType":"YulFunctionCall","src":"1926:14:51"}],"functionName":{"name":"eq","nativeSrc":"1903:2:51","nodeType":"YulIdentifier","src":"1903:2:51"},"nativeSrc":"1903:38:51","nodeType":"YulFunctionCall","src":"1903:38:51"},"nativeSrc":"1900:161:51","nodeType":"YulIf","src":"1900:161:51"}]},"name":"extract_byte_array_length","nativeSrc":"1687:380:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"1722:4:51","nodeType":"YulTypedName","src":"1722:4:51","type":""}],"returnVariables":[{"name":"length","nativeSrc":"1731:6:51","nodeType":"YulTypedName","src":"1731:6:51","type":""}],"src":"1687:380:51"},{"body":{"nativeSrc":"2128:65:51","nodeType":"YulBlock","src":"2128:65:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2145:1:51","nodeType":"YulLiteral","src":"2145:1:51","type":"","value":"0"},{"name":"ptr","nativeSrc":"2148:3:51","nodeType":"YulIdentifier","src":"2148:3:51"}],"functionName":{"name":"mstore","nativeSrc":"2138:6:51","nodeType":"YulIdentifier","src":"2138:6:51"},"nativeSrc":"2138:14:51","nodeType":"YulFunctionCall","src":"2138:14:51"},"nativeSrc":"2138:14:51","nodeType":"YulExpressionStatement","src":"2138:14:51"},{"nativeSrc":"2161:26:51","nodeType":"YulAssignment","src":"2161:26:51","value":{"arguments":[{"kind":"number","nativeSrc":"2179:1:51","nodeType":"YulLiteral","src":"2179:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"2182:4:51","nodeType":"YulLiteral","src":"2182:4:51","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2169:9:51","nodeType":"YulIdentifier","src":"2169:9:51"},"nativeSrc":"2169:18:51","nodeType":"YulFunctionCall","src":"2169:18:51"},"variableNames":[{"name":"data","nativeSrc":"2161:4:51","nodeType":"YulIdentifier","src":"2161:4:51"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"2072:121:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"2111:3:51","nodeType":"YulTypedName","src":"2111:3:51","type":""}],"returnVariables":[{"name":"data","nativeSrc":"2119:4:51","nodeType":"YulTypedName","src":"2119:4:51","type":""}],"src":"2072:121:51"},{"body":{"nativeSrc":"2279:437:51","nodeType":"YulBlock","src":"2279:437:51","statements":[{"body":{"nativeSrc":"2312:398:51","nodeType":"YulBlock","src":"2312:398:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2333:1:51","nodeType":"YulLiteral","src":"2333:1:51","type":"","value":"0"},{"name":"array","nativeSrc":"2336:5:51","nodeType":"YulIdentifier","src":"2336:5:51"}],"functionName":{"name":"mstore","nativeSrc":"2326:6:51","nodeType":"YulIdentifier","src":"2326:6:51"},"nativeSrc":"2326:16:51","nodeType":"YulFunctionCall","src":"2326:16:51"},"nativeSrc":"2326:16:51","nodeType":"YulExpressionStatement","src":"2326:16:51"},{"nativeSrc":"2355:30:51","nodeType":"YulVariableDeclaration","src":"2355:30:51","value":{"arguments":[{"kind":"number","nativeSrc":"2377:1:51","nodeType":"YulLiteral","src":"2377:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"2380:4:51","nodeType":"YulLiteral","src":"2380:4:51","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"2367:9:51","nodeType":"YulIdentifier","src":"2367:9:51"},"nativeSrc":"2367:18:51","nodeType":"YulFunctionCall","src":"2367:18:51"},"variables":[{"name":"data","nativeSrc":"2359:4:51","nodeType":"YulTypedName","src":"2359:4:51","type":""}]},{"nativeSrc":"2398:57:51","nodeType":"YulVariableDeclaration","src":"2398:57:51","value":{"arguments":[{"name":"data","nativeSrc":"2421:4:51","nodeType":"YulIdentifier","src":"2421:4:51"},{"arguments":[{"kind":"number","nativeSrc":"2431:1:51","nodeType":"YulLiteral","src":"2431:1:51","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"2438:10:51","nodeType":"YulIdentifier","src":"2438:10:51"},{"kind":"number","nativeSrc":"2450:2:51","nodeType":"YulLiteral","src":"2450:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2434:3:51","nodeType":"YulIdentifier","src":"2434:3:51"},"nativeSrc":"2434:19:51","nodeType":"YulFunctionCall","src":"2434:19:51"}],"functionName":{"name":"shr","nativeSrc":"2427:3:51","nodeType":"YulIdentifier","src":"2427:3:51"},"nativeSrc":"2427:27:51","nodeType":"YulFunctionCall","src":"2427:27:51"}],"functionName":{"name":"add","nativeSrc":"2417:3:51","nodeType":"YulIdentifier","src":"2417:3:51"},"nativeSrc":"2417:38:51","nodeType":"YulFunctionCall","src":"2417:38:51"},"variables":[{"name":"deleteStart","nativeSrc":"2402:11:51","nodeType":"YulTypedName","src":"2402:11:51","type":""}]},{"body":{"nativeSrc":"2492:23:51","nodeType":"YulBlock","src":"2492:23:51","statements":[{"nativeSrc":"2494:19:51","nodeType":"YulAssignment","src":"2494:19:51","value":{"name":"data","nativeSrc":"2509:4:51","nodeType":"YulIdentifier","src":"2509:4:51"},"variableNames":[{"name":"deleteStart","nativeSrc":"2494:11:51","nodeType":"YulIdentifier","src":"2494:11:51"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"2474:10:51","nodeType":"YulIdentifier","src":"2474:10:51"},{"kind":"number","nativeSrc":"2486:4:51","nodeType":"YulLiteral","src":"2486:4:51","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"2471:2:51","nodeType":"YulIdentifier","src":"2471:2:51"},"nativeSrc":"2471:20:51","nodeType":"YulFunctionCall","src":"2471:20:51"},"nativeSrc":"2468:47:51","nodeType":"YulIf","src":"2468:47:51"},{"nativeSrc":"2528:41:51","nodeType":"YulVariableDeclaration","src":"2528:41:51","value":{"arguments":[{"name":"data","nativeSrc":"2542:4:51","nodeType":"YulIdentifier","src":"2542:4:51"},{"arguments":[{"kind":"number","nativeSrc":"2552:1:51","nodeType":"YulLiteral","src":"2552:1:51","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"2559:3:51","nodeType":"YulIdentifier","src":"2559:3:51"},{"kind":"number","nativeSrc":"2564:2:51","nodeType":"YulLiteral","src":"2564:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2555:3:51","nodeType":"YulIdentifier","src":"2555:3:51"},"nativeSrc":"2555:12:51","nodeType":"YulFunctionCall","src":"2555:12:51"}],"functionName":{"name":"shr","nativeSrc":"2548:3:51","nodeType":"YulIdentifier","src":"2548:3:51"},"nativeSrc":"2548:20:51","nodeType":"YulFunctionCall","src":"2548:20:51"}],"functionName":{"name":"add","nativeSrc":"2538:3:51","nodeType":"YulIdentifier","src":"2538:3:51"},"nativeSrc":"2538:31:51","nodeType":"YulFunctionCall","src":"2538:31:51"},"variables":[{"name":"_1","nativeSrc":"2532:2:51","nodeType":"YulTypedName","src":"2532:2:51","type":""}]},{"nativeSrc":"2582:24:51","nodeType":"YulVariableDeclaration","src":"2582:24:51","value":{"name":"deleteStart","nativeSrc":"2595:11:51","nodeType":"YulIdentifier","src":"2595:11:51"},"variables":[{"name":"start","nativeSrc":"2586:5:51","nodeType":"YulTypedName","src":"2586:5:51","type":""}]},{"body":{"nativeSrc":"2680:20:51","nodeType":"YulBlock","src":"2680:20:51","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"2689:5:51","nodeType":"YulIdentifier","src":"2689:5:51"},{"kind":"number","nativeSrc":"2696:1:51","nodeType":"YulLiteral","src":"2696:1:51","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"2682:6:51","nodeType":"YulIdentifier","src":"2682:6:51"},"nativeSrc":"2682:16:51","nodeType":"YulFunctionCall","src":"2682:16:51"},"nativeSrc":"2682:16:51","nodeType":"YulExpressionStatement","src":"2682:16:51"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"2630:5:51","nodeType":"YulIdentifier","src":"2630:5:51"},{"name":"_1","nativeSrc":"2637:2:51","nodeType":"YulIdentifier","src":"2637:2:51"}],"functionName":{"name":"lt","nativeSrc":"2627:2:51","nodeType":"YulIdentifier","src":"2627:2:51"},"nativeSrc":"2627:13:51","nodeType":"YulFunctionCall","src":"2627:13:51"},"nativeSrc":"2619:81:51","nodeType":"YulForLoop","post":{"nativeSrc":"2641:26:51","nodeType":"YulBlock","src":"2641:26:51","statements":[{"nativeSrc":"2643:22:51","nodeType":"YulAssignment","src":"2643:22:51","value":{"arguments":[{"name":"start","nativeSrc":"2656:5:51","nodeType":"YulIdentifier","src":"2656:5:51"},{"kind":"number","nativeSrc":"2663:1:51","nodeType":"YulLiteral","src":"2663:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"2652:3:51","nodeType":"YulIdentifier","src":"2652:3:51"},"nativeSrc":"2652:13:51","nodeType":"YulFunctionCall","src":"2652:13:51"},"variableNames":[{"name":"start","nativeSrc":"2643:5:51","nodeType":"YulIdentifier","src":"2643:5:51"}]}]},"pre":{"nativeSrc":"2623:3:51","nodeType":"YulBlock","src":"2623:3:51","statements":[]},"src":"2619:81:51"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"2295:3:51","nodeType":"YulIdentifier","src":"2295:3:51"},{"kind":"number","nativeSrc":"2300:2:51","nodeType":"YulLiteral","src":"2300:2:51","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"2292:2:51","nodeType":"YulIdentifier","src":"2292:2:51"},"nativeSrc":"2292:11:51","nodeType":"YulFunctionCall","src":"2292:11:51"},"nativeSrc":"2289:421:51","nodeType":"YulIf","src":"2289:421:51"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"2198:518:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"2251:5:51","nodeType":"YulTypedName","src":"2251:5:51","type":""},{"name":"len","nativeSrc":"2258:3:51","nodeType":"YulTypedName","src":"2258:3:51","type":""},{"name":"startIndex","nativeSrc":"2263:10:51","nodeType":"YulTypedName","src":"2263:10:51","type":""}],"src":"2198:518:51"},{"body":{"nativeSrc":"2806:81:51","nodeType":"YulBlock","src":"2806:81:51","statements":[{"nativeSrc":"2816:65:51","nodeType":"YulAssignment","src":"2816:65:51","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"2831:4:51","nodeType":"YulIdentifier","src":"2831:4:51"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2849:1:51","nodeType":"YulLiteral","src":"2849:1:51","type":"","value":"3"},{"name":"len","nativeSrc":"2852:3:51","nodeType":"YulIdentifier","src":"2852:3:51"}],"functionName":{"name":"shl","nativeSrc":"2845:3:51","nodeType":"YulIdentifier","src":"2845:3:51"},"nativeSrc":"2845:11:51","nodeType":"YulFunctionCall","src":"2845:11:51"},{"arguments":[{"kind":"number","nativeSrc":"2862:1:51","nodeType":"YulLiteral","src":"2862:1:51","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2858:3:51","nodeType":"YulIdentifier","src":"2858:3:51"},"nativeSrc":"2858:6:51","nodeType":"YulFunctionCall","src":"2858:6:51"}],"functionName":{"name":"shr","nativeSrc":"2841:3:51","nodeType":"YulIdentifier","src":"2841:3:51"},"nativeSrc":"2841:24:51","nodeType":"YulFunctionCall","src":"2841:24:51"}],"functionName":{"name":"not","nativeSrc":"2837:3:51","nodeType":"YulIdentifier","src":"2837:3:51"},"nativeSrc":"2837:29:51","nodeType":"YulFunctionCall","src":"2837:29:51"}],"functionName":{"name":"and","nativeSrc":"2827:3:51","nodeType":"YulIdentifier","src":"2827:3:51"},"nativeSrc":"2827:40:51","nodeType":"YulFunctionCall","src":"2827:40:51"},{"arguments":[{"kind":"number","nativeSrc":"2873:1:51","nodeType":"YulLiteral","src":"2873:1:51","type":"","value":"1"},{"name":"len","nativeSrc":"2876:3:51","nodeType":"YulIdentifier","src":"2876:3:51"}],"functionName":{"name":"shl","nativeSrc":"2869:3:51","nodeType":"YulIdentifier","src":"2869:3:51"},"nativeSrc":"2869:11:51","nodeType":"YulFunctionCall","src":"2869:11:51"}],"functionName":{"name":"or","nativeSrc":"2824:2:51","nodeType":"YulIdentifier","src":"2824:2:51"},"nativeSrc":"2824:57:51","nodeType":"YulFunctionCall","src":"2824:57:51"},"variableNames":[{"name":"used","nativeSrc":"2816:4:51","nodeType":"YulIdentifier","src":"2816:4:51"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"2721:166:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"2783:4:51","nodeType":"YulTypedName","src":"2783:4:51","type":""},{"name":"len","nativeSrc":"2789:3:51","nodeType":"YulTypedName","src":"2789:3:51","type":""}],"returnVariables":[{"name":"used","nativeSrc":"2797:4:51","nodeType":"YulTypedName","src":"2797:4:51","type":""}],"src":"2721:166:51"},{"body":{"nativeSrc":"2988:1203:51","nodeType":"YulBlock","src":"2988:1203:51","statements":[{"nativeSrc":"2998:24:51","nodeType":"YulVariableDeclaration","src":"2998:24:51","value":{"arguments":[{"name":"src","nativeSrc":"3018:3:51","nodeType":"YulIdentifier","src":"3018:3:51"}],"functionName":{"name":"mload","nativeSrc":"3012:5:51","nodeType":"YulIdentifier","src":"3012:5:51"},"nativeSrc":"3012:10:51","nodeType":"YulFunctionCall","src":"3012:10:51"},"variables":[{"name":"newLen","nativeSrc":"3002:6:51","nodeType":"YulTypedName","src":"3002:6:51","type":""}]},{"body":{"nativeSrc":"3065:22:51","nodeType":"YulBlock","src":"3065:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3067:16:51","nodeType":"YulIdentifier","src":"3067:16:51"},"nativeSrc":"3067:18:51","nodeType":"YulFunctionCall","src":"3067:18:51"},"nativeSrc":"3067:18:51","nodeType":"YulExpressionStatement","src":"3067:18:51"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"3037:6:51","nodeType":"YulIdentifier","src":"3037:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3053:2:51","nodeType":"YulLiteral","src":"3053:2:51","type":"","value":"64"},{"kind":"number","nativeSrc":"3057:1:51","nodeType":"YulLiteral","src":"3057:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3049:3:51","nodeType":"YulIdentifier","src":"3049:3:51"},"nativeSrc":"3049:10:51","nodeType":"YulFunctionCall","src":"3049:10:51"},{"kind":"number","nativeSrc":"3061:1:51","nodeType":"YulLiteral","src":"3061:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3045:3:51","nodeType":"YulIdentifier","src":"3045:3:51"},"nativeSrc":"3045:18:51","nodeType":"YulFunctionCall","src":"3045:18:51"}],"functionName":{"name":"gt","nativeSrc":"3034:2:51","nodeType":"YulIdentifier","src":"3034:2:51"},"nativeSrc":"3034:30:51","nodeType":"YulFunctionCall","src":"3034:30:51"},"nativeSrc":"3031:56:51","nodeType":"YulIf","src":"3031:56:51"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3140:4:51","nodeType":"YulIdentifier","src":"3140:4:51"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"3178:4:51","nodeType":"YulIdentifier","src":"3178:4:51"}],"functionName":{"name":"sload","nativeSrc":"3172:5:51","nodeType":"YulIdentifier","src":"3172:5:51"},"nativeSrc":"3172:11:51","nodeType":"YulFunctionCall","src":"3172:11:51"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"3146:25:51","nodeType":"YulIdentifier","src":"3146:25:51"},"nativeSrc":"3146:38:51","nodeType":"YulFunctionCall","src":"3146:38:51"},{"name":"newLen","nativeSrc":"3186:6:51","nodeType":"YulIdentifier","src":"3186:6:51"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"3096:43:51","nodeType":"YulIdentifier","src":"3096:43:51"},"nativeSrc":"3096:97:51","nodeType":"YulFunctionCall","src":"3096:97:51"},"nativeSrc":"3096:97:51","nodeType":"YulExpressionStatement","src":"3096:97:51"},{"nativeSrc":"3202:18:51","nodeType":"YulVariableDeclaration","src":"3202:18:51","value":{"kind":"number","nativeSrc":"3219:1:51","nodeType":"YulLiteral","src":"3219:1:51","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"3206:9:51","nodeType":"YulTypedName","src":"3206:9:51","type":""}]},{"nativeSrc":"3229:17:51","nodeType":"YulAssignment","src":"3229:17:51","value":{"kind":"number","nativeSrc":"3242:4:51","nodeType":"YulLiteral","src":"3242:4:51","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"3229:9:51","nodeType":"YulIdentifier","src":"3229:9:51"}]},{"cases":[{"body":{"nativeSrc":"3292:642:51","nodeType":"YulBlock","src":"3292:642:51","statements":[{"nativeSrc":"3306:35:51","nodeType":"YulVariableDeclaration","src":"3306:35:51","value":{"arguments":[{"name":"newLen","nativeSrc":"3325:6:51","nodeType":"YulIdentifier","src":"3325:6:51"},{"arguments":[{"kind":"number","nativeSrc":"3337:2:51","nodeType":"YulLiteral","src":"3337:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"3333:3:51","nodeType":"YulIdentifier","src":"3333:3:51"},"nativeSrc":"3333:7:51","nodeType":"YulFunctionCall","src":"3333:7:51"}],"functionName":{"name":"and","nativeSrc":"3321:3:51","nodeType":"YulIdentifier","src":"3321:3:51"},"nativeSrc":"3321:20:51","nodeType":"YulFunctionCall","src":"3321:20:51"},"variables":[{"name":"loopEnd","nativeSrc":"3310:7:51","nodeType":"YulTypedName","src":"3310:7:51","type":""}]},{"nativeSrc":"3354:49:51","nodeType":"YulVariableDeclaration","src":"3354:49:51","value":{"arguments":[{"name":"slot","nativeSrc":"3398:4:51","nodeType":"YulIdentifier","src":"3398:4:51"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"3368:29:51","nodeType":"YulIdentifier","src":"3368:29:51"},"nativeSrc":"3368:35:51","nodeType":"YulFunctionCall","src":"3368:35:51"},"variables":[{"name":"dstPtr","nativeSrc":"3358:6:51","nodeType":"YulTypedName","src":"3358:6:51","type":""}]},{"nativeSrc":"3416:10:51","nodeType":"YulVariableDeclaration","src":"3416:10:51","value":{"kind":"number","nativeSrc":"3425:1:51","nodeType":"YulLiteral","src":"3425:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"3420:1:51","nodeType":"YulTypedName","src":"3420:1:51","type":""}]},{"body":{"nativeSrc":"3496:165:51","nodeType":"YulBlock","src":"3496:165:51","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3521:6:51","nodeType":"YulIdentifier","src":"3521:6:51"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3539:3:51","nodeType":"YulIdentifier","src":"3539:3:51"},{"name":"srcOffset","nativeSrc":"3544:9:51","nodeType":"YulIdentifier","src":"3544:9:51"}],"functionName":{"name":"add","nativeSrc":"3535:3:51","nodeType":"YulIdentifier","src":"3535:3:51"},"nativeSrc":"3535:19:51","nodeType":"YulFunctionCall","src":"3535:19:51"}],"functionName":{"name":"mload","nativeSrc":"3529:5:51","nodeType":"YulIdentifier","src":"3529:5:51"},"nativeSrc":"3529:26:51","nodeType":"YulFunctionCall","src":"3529:26:51"}],"functionName":{"name":"sstore","nativeSrc":"3514:6:51","nodeType":"YulIdentifier","src":"3514:6:51"},"nativeSrc":"3514:42:51","nodeType":"YulFunctionCall","src":"3514:42:51"},"nativeSrc":"3514:42:51","nodeType":"YulExpressionStatement","src":"3514:42:51"},{"nativeSrc":"3573:24:51","nodeType":"YulAssignment","src":"3573:24:51","value":{"arguments":[{"name":"dstPtr","nativeSrc":"3587:6:51","nodeType":"YulIdentifier","src":"3587:6:51"},{"kind":"number","nativeSrc":"3595:1:51","nodeType":"YulLiteral","src":"3595:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3583:3:51","nodeType":"YulIdentifier","src":"3583:3:51"},"nativeSrc":"3583:14:51","nodeType":"YulFunctionCall","src":"3583:14:51"},"variableNames":[{"name":"dstPtr","nativeSrc":"3573:6:51","nodeType":"YulIdentifier","src":"3573:6:51"}]},{"nativeSrc":"3614:33:51","nodeType":"YulAssignment","src":"3614:33:51","value":{"arguments":[{"name":"srcOffset","nativeSrc":"3631:9:51","nodeType":"YulIdentifier","src":"3631:9:51"},{"kind":"number","nativeSrc":"3642:4:51","nodeType":"YulLiteral","src":"3642:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3627:3:51","nodeType":"YulIdentifier","src":"3627:3:51"},"nativeSrc":"3627:20:51","nodeType":"YulFunctionCall","src":"3627:20:51"},"variableNames":[{"name":"srcOffset","nativeSrc":"3614:9:51","nodeType":"YulIdentifier","src":"3614:9:51"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"3450:1:51","nodeType":"YulIdentifier","src":"3450:1:51"},{"name":"loopEnd","nativeSrc":"3453:7:51","nodeType":"YulIdentifier","src":"3453:7:51"}],"functionName":{"name":"lt","nativeSrc":"3447:2:51","nodeType":"YulIdentifier","src":"3447:2:51"},"nativeSrc":"3447:14:51","nodeType":"YulFunctionCall","src":"3447:14:51"},"nativeSrc":"3439:222:51","nodeType":"YulForLoop","post":{"nativeSrc":"3462:21:51","nodeType":"YulBlock","src":"3462:21:51","statements":[{"nativeSrc":"3464:17:51","nodeType":"YulAssignment","src":"3464:17:51","value":{"arguments":[{"name":"i","nativeSrc":"3473:1:51","nodeType":"YulIdentifier","src":"3473:1:51"},{"kind":"number","nativeSrc":"3476:4:51","nodeType":"YulLiteral","src":"3476:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3469:3:51","nodeType":"YulIdentifier","src":"3469:3:51"},"nativeSrc":"3469:12:51","nodeType":"YulFunctionCall","src":"3469:12:51"},"variableNames":[{"name":"i","nativeSrc":"3464:1:51","nodeType":"YulIdentifier","src":"3464:1:51"}]}]},"pre":{"nativeSrc":"3443:3:51","nodeType":"YulBlock","src":"3443:3:51","statements":[]},"src":"3439:222:51"},{"body":{"nativeSrc":"3709:166:51","nodeType":"YulBlock","src":"3709:166:51","statements":[{"nativeSrc":"3727:43:51","nodeType":"YulVariableDeclaration","src":"3727:43:51","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3754:3:51","nodeType":"YulIdentifier","src":"3754:3:51"},{"name":"srcOffset","nativeSrc":"3759:9:51","nodeType":"YulIdentifier","src":"3759:9:51"}],"functionName":{"name":"add","nativeSrc":"3750:3:51","nodeType":"YulIdentifier","src":"3750:3:51"},"nativeSrc":"3750:19:51","nodeType":"YulFunctionCall","src":"3750:19:51"}],"functionName":{"name":"mload","nativeSrc":"3744:5:51","nodeType":"YulIdentifier","src":"3744:5:51"},"nativeSrc":"3744:26:51","nodeType":"YulFunctionCall","src":"3744:26:51"},"variables":[{"name":"lastValue","nativeSrc":"3731:9:51","nodeType":"YulTypedName","src":"3731:9:51","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"3794:6:51","nodeType":"YulIdentifier","src":"3794:6:51"},{"arguments":[{"name":"lastValue","nativeSrc":"3806:9:51","nodeType":"YulIdentifier","src":"3806:9:51"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3833:1:51","nodeType":"YulLiteral","src":"3833:1:51","type":"","value":"3"},{"name":"newLen","nativeSrc":"3836:6:51","nodeType":"YulIdentifier","src":"3836:6:51"}],"functionName":{"name":"shl","nativeSrc":"3829:3:51","nodeType":"YulIdentifier","src":"3829:3:51"},"nativeSrc":"3829:14:51","nodeType":"YulFunctionCall","src":"3829:14:51"},{"kind":"number","nativeSrc":"3845:3:51","nodeType":"YulLiteral","src":"3845:3:51","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"3825:3:51","nodeType":"YulIdentifier","src":"3825:3:51"},"nativeSrc":"3825:24:51","nodeType":"YulFunctionCall","src":"3825:24:51"},{"arguments":[{"kind":"number","nativeSrc":"3855:1:51","nodeType":"YulLiteral","src":"3855:1:51","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3851:3:51","nodeType":"YulIdentifier","src":"3851:3:51"},"nativeSrc":"3851:6:51","nodeType":"YulFunctionCall","src":"3851:6:51"}],"functionName":{"name":"shr","nativeSrc":"3821:3:51","nodeType":"YulIdentifier","src":"3821:3:51"},"nativeSrc":"3821:37:51","nodeType":"YulFunctionCall","src":"3821:37:51"}],"functionName":{"name":"not","nativeSrc":"3817:3:51","nodeType":"YulIdentifier","src":"3817:3:51"},"nativeSrc":"3817:42:51","nodeType":"YulFunctionCall","src":"3817:42:51"}],"functionName":{"name":"and","nativeSrc":"3802:3:51","nodeType":"YulIdentifier","src":"3802:3:51"},"nativeSrc":"3802:58:51","nodeType":"YulFunctionCall","src":"3802:58:51"}],"functionName":{"name":"sstore","nativeSrc":"3787:6:51","nodeType":"YulIdentifier","src":"3787:6:51"},"nativeSrc":"3787:74:51","nodeType":"YulFunctionCall","src":"3787:74:51"},"nativeSrc":"3787:74:51","nodeType":"YulExpressionStatement","src":"3787:74:51"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"3680:7:51","nodeType":"YulIdentifier","src":"3680:7:51"},{"name":"newLen","nativeSrc":"3689:6:51","nodeType":"YulIdentifier","src":"3689:6:51"}],"functionName":{"name":"lt","nativeSrc":"3677:2:51","nodeType":"YulIdentifier","src":"3677:2:51"},"nativeSrc":"3677:19:51","nodeType":"YulFunctionCall","src":"3677:19:51"},"nativeSrc":"3674:201:51","nodeType":"YulIf","src":"3674:201:51"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"3895:4:51","nodeType":"YulIdentifier","src":"3895:4:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3909:1:51","nodeType":"YulLiteral","src":"3909:1:51","type":"","value":"1"},{"name":"newLen","nativeSrc":"3912:6:51","nodeType":"YulIdentifier","src":"3912:6:51"}],"functionName":{"name":"shl","nativeSrc":"3905:3:51","nodeType":"YulIdentifier","src":"3905:3:51"},"nativeSrc":"3905:14:51","nodeType":"YulFunctionCall","src":"3905:14:51"},{"kind":"number","nativeSrc":"3921:1:51","nodeType":"YulLiteral","src":"3921:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3901:3:51","nodeType":"YulIdentifier","src":"3901:3:51"},"nativeSrc":"3901:22:51","nodeType":"YulFunctionCall","src":"3901:22:51"}],"functionName":{"name":"sstore","nativeSrc":"3888:6:51","nodeType":"YulIdentifier","src":"3888:6:51"},"nativeSrc":"3888:36:51","nodeType":"YulFunctionCall","src":"3888:36:51"},"nativeSrc":"3888:36:51","nodeType":"YulExpressionStatement","src":"3888:36:51"}]},"nativeSrc":"3285:649:51","nodeType":"YulCase","src":"3285:649:51","value":{"kind":"number","nativeSrc":"3290:1:51","nodeType":"YulLiteral","src":"3290:1:51","type":"","value":"1"}},{"body":{"nativeSrc":"3951:234:51","nodeType":"YulBlock","src":"3951:234:51","statements":[{"nativeSrc":"3965:14:51","nodeType":"YulVariableDeclaration","src":"3965:14:51","value":{"kind":"number","nativeSrc":"3978:1:51","nodeType":"YulLiteral","src":"3978:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"3969:5:51","nodeType":"YulTypedName","src":"3969:5:51","type":""}]},{"body":{"nativeSrc":"4014:67:51","nodeType":"YulBlock","src":"4014:67:51","statements":[{"nativeSrc":"4032:35:51","nodeType":"YulAssignment","src":"4032:35:51","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"4051:3:51","nodeType":"YulIdentifier","src":"4051:3:51"},{"name":"srcOffset","nativeSrc":"4056:9:51","nodeType":"YulIdentifier","src":"4056:9:51"}],"functionName":{"name":"add","nativeSrc":"4047:3:51","nodeType":"YulIdentifier","src":"4047:3:51"},"nativeSrc":"4047:19:51","nodeType":"YulFunctionCall","src":"4047:19:51"}],"functionName":{"name":"mload","nativeSrc":"4041:5:51","nodeType":"YulIdentifier","src":"4041:5:51"},"nativeSrc":"4041:26:51","nodeType":"YulFunctionCall","src":"4041:26:51"},"variableNames":[{"name":"value","nativeSrc":"4032:5:51","nodeType":"YulIdentifier","src":"4032:5:51"}]}]},"condition":{"name":"newLen","nativeSrc":"3995:6:51","nodeType":"YulIdentifier","src":"3995:6:51"},"nativeSrc":"3992:89:51","nodeType":"YulIf","src":"3992:89:51"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"4101:4:51","nodeType":"YulIdentifier","src":"4101:4:51"},{"arguments":[{"name":"value","nativeSrc":"4160:5:51","nodeType":"YulIdentifier","src":"4160:5:51"},{"name":"newLen","nativeSrc":"4167:6:51","nodeType":"YulIdentifier","src":"4167:6:51"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"4107:52:51","nodeType":"YulIdentifier","src":"4107:52:51"},"nativeSrc":"4107:67:51","nodeType":"YulFunctionCall","src":"4107:67:51"}],"functionName":{"name":"sstore","nativeSrc":"4094:6:51","nodeType":"YulIdentifier","src":"4094:6:51"},"nativeSrc":"4094:81:51","nodeType":"YulFunctionCall","src":"4094:81:51"},"nativeSrc":"4094:81:51","nodeType":"YulExpressionStatement","src":"4094:81:51"}]},"nativeSrc":"3943:242:51","nodeType":"YulCase","src":"3943:242:51","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"3265:6:51","nodeType":"YulIdentifier","src":"3265:6:51"},{"kind":"number","nativeSrc":"3273:2:51","nodeType":"YulLiteral","src":"3273:2:51","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"3262:2:51","nodeType":"YulIdentifier","src":"3262:2:51"},"nativeSrc":"3262:14:51","nodeType":"YulFunctionCall","src":"3262:14:51"},"nativeSrc":"3255:930:51","nodeType":"YulSwitch","src":"3255:930:51"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"2892:1299:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"2973:4:51","nodeType":"YulTypedName","src":"2973:4:51","type":""},{"name":"src","nativeSrc":"2979:3:51","nodeType":"YulTypedName","src":"2979:3:51","type":""}],"src":"2892:1299:51"},{"body":{"nativeSrc":"4228:95:51","nodeType":"YulBlock","src":"4228:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4245:1:51","nodeType":"YulLiteral","src":"4245:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4252:3:51","nodeType":"YulLiteral","src":"4252:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"4257:10:51","nodeType":"YulLiteral","src":"4257:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4248:3:51","nodeType":"YulIdentifier","src":"4248:3:51"},"nativeSrc":"4248:20:51","nodeType":"YulFunctionCall","src":"4248:20:51"}],"functionName":{"name":"mstore","nativeSrc":"4238:6:51","nodeType":"YulIdentifier","src":"4238:6:51"},"nativeSrc":"4238:31:51","nodeType":"YulFunctionCall","src":"4238:31:51"},"nativeSrc":"4238:31:51","nodeType":"YulExpressionStatement","src":"4238:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4285:1:51","nodeType":"YulLiteral","src":"4285:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"4288:4:51","nodeType":"YulLiteral","src":"4288:4:51","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"4278:6:51","nodeType":"YulIdentifier","src":"4278:6:51"},"nativeSrc":"4278:15:51","nodeType":"YulFunctionCall","src":"4278:15:51"},"nativeSrc":"4278:15:51","nodeType":"YulExpressionStatement","src":"4278:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4309:1:51","nodeType":"YulLiteral","src":"4309:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4312:4:51","nodeType":"YulLiteral","src":"4312:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4302:6:51","nodeType":"YulIdentifier","src":"4302:6:51"},"nativeSrc":"4302:15:51","nodeType":"YulFunctionCall","src":"4302:15:51"},"nativeSrc":"4302:15:51","nodeType":"YulExpressionStatement","src":"4302:15:51"}]},"name":"panic_error_0x32","nativeSrc":"4196:127:51","nodeType":"YulFunctionDefinition","src":"4196:127:51"},{"body":{"nativeSrc":"4360:95:51","nodeType":"YulBlock","src":"4360:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4377:1:51","nodeType":"YulLiteral","src":"4377:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"4384:3:51","nodeType":"YulLiteral","src":"4384:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"4389:10:51","nodeType":"YulLiteral","src":"4389:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"4380:3:51","nodeType":"YulIdentifier","src":"4380:3:51"},"nativeSrc":"4380:20:51","nodeType":"YulFunctionCall","src":"4380:20:51"}],"functionName":{"name":"mstore","nativeSrc":"4370:6:51","nodeType":"YulIdentifier","src":"4370:6:51"},"nativeSrc":"4370:31:51","nodeType":"YulFunctionCall","src":"4370:31:51"},"nativeSrc":"4370:31:51","nodeType":"YulExpressionStatement","src":"4370:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4417:1:51","nodeType":"YulLiteral","src":"4417:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"4420:4:51","nodeType":"YulLiteral","src":"4420:4:51","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"4410:6:51","nodeType":"YulIdentifier","src":"4410:6:51"},"nativeSrc":"4410:15:51","nodeType":"YulFunctionCall","src":"4410:15:51"},"nativeSrc":"4410:15:51","nodeType":"YulExpressionStatement","src":"4410:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4441:1:51","nodeType":"YulLiteral","src":"4441:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4444:4:51","nodeType":"YulLiteral","src":"4444:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"4434:6:51","nodeType":"YulIdentifier","src":"4434:6:51"},"nativeSrc":"4434:15:51","nodeType":"YulFunctionCall","src":"4434:15:51"},"nativeSrc":"4434:15:51","nodeType":"YulExpressionStatement","src":"4434:15:51"}]},"name":"panic_error_0x21","nativeSrc":"4328:127:51","nodeType":"YulFunctionDefinition","src":"4328:127:51"},{"body":{"nativeSrc":"4510:221:51","nodeType":"YulBlock","src":"4510:221:51","statements":[{"nativeSrc":"4520:26:51","nodeType":"YulVariableDeclaration","src":"4520:26:51","value":{"arguments":[{"name":"value","nativeSrc":"4540:5:51","nodeType":"YulIdentifier","src":"4540:5:51"}],"functionName":{"name":"mload","nativeSrc":"4534:5:51","nodeType":"YulIdentifier","src":"4534:5:51"},"nativeSrc":"4534:12:51","nodeType":"YulFunctionCall","src":"4534:12:51"},"variables":[{"name":"length","nativeSrc":"4524:6:51","nodeType":"YulTypedName","src":"4524:6:51","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"4562:3:51","nodeType":"YulIdentifier","src":"4562:3:51"},{"name":"length","nativeSrc":"4567:6:51","nodeType":"YulIdentifier","src":"4567:6:51"}],"functionName":{"name":"mstore","nativeSrc":"4555:6:51","nodeType":"YulIdentifier","src":"4555:6:51"},"nativeSrc":"4555:19:51","nodeType":"YulFunctionCall","src":"4555:19:51"},"nativeSrc":"4555:19:51","nodeType":"YulExpressionStatement","src":"4555:19:51"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4622:5:51","nodeType":"YulIdentifier","src":"4622:5:51"},{"kind":"number","nativeSrc":"4629:4:51","nodeType":"YulLiteral","src":"4629:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4618:3:51","nodeType":"YulIdentifier","src":"4618:3:51"},"nativeSrc":"4618:16:51","nodeType":"YulFunctionCall","src":"4618:16:51"},{"arguments":[{"name":"pos","nativeSrc":"4640:3:51","nodeType":"YulIdentifier","src":"4640:3:51"},{"kind":"number","nativeSrc":"4645:4:51","nodeType":"YulLiteral","src":"4645:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4636:3:51","nodeType":"YulIdentifier","src":"4636:3:51"},"nativeSrc":"4636:14:51","nodeType":"YulFunctionCall","src":"4636:14:51"},{"name":"length","nativeSrc":"4652:6:51","nodeType":"YulIdentifier","src":"4652:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"4583:34:51","nodeType":"YulIdentifier","src":"4583:34:51"},"nativeSrc":"4583:76:51","nodeType":"YulFunctionCall","src":"4583:76:51"},"nativeSrc":"4583:76:51","nodeType":"YulExpressionStatement","src":"4583:76:51"},{"nativeSrc":"4668:57:51","nodeType":"YulAssignment","src":"4668:57:51","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"4683:3:51","nodeType":"YulIdentifier","src":"4683:3:51"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"4696:6:51","nodeType":"YulIdentifier","src":"4696:6:51"},{"kind":"number","nativeSrc":"4704:2:51","nodeType":"YulLiteral","src":"4704:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"4692:3:51","nodeType":"YulIdentifier","src":"4692:3:51"},"nativeSrc":"4692:15:51","nodeType":"YulFunctionCall","src":"4692:15:51"},{"arguments":[{"kind":"number","nativeSrc":"4713:2:51","nodeType":"YulLiteral","src":"4713:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"4709:3:51","nodeType":"YulIdentifier","src":"4709:3:51"},"nativeSrc":"4709:7:51","nodeType":"YulFunctionCall","src":"4709:7:51"}],"functionName":{"name":"and","nativeSrc":"4688:3:51","nodeType":"YulIdentifier","src":"4688:3:51"},"nativeSrc":"4688:29:51","nodeType":"YulFunctionCall","src":"4688:29:51"}],"functionName":{"name":"add","nativeSrc":"4679:3:51","nodeType":"YulIdentifier","src":"4679:3:51"},"nativeSrc":"4679:39:51","nodeType":"YulFunctionCall","src":"4679:39:51"},{"kind":"number","nativeSrc":"4720:4:51","nodeType":"YulLiteral","src":"4720:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4675:3:51","nodeType":"YulIdentifier","src":"4675:3:51"},"nativeSrc":"4675:50:51","nodeType":"YulFunctionCall","src":"4675:50:51"},"variableNames":[{"name":"end","nativeSrc":"4668:3:51","nodeType":"YulIdentifier","src":"4668:3:51"}]}]},"name":"abi_encode_string","nativeSrc":"4460:271:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"4487:5:51","nodeType":"YulTypedName","src":"4487:5:51","type":""},{"name":"pos","nativeSrc":"4494:3:51","nodeType":"YulTypedName","src":"4494:3:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"4502:3:51","nodeType":"YulTypedName","src":"4502:3:51","type":""}],"src":"4460:271:51"},{"body":{"nativeSrc":"4799:1044:51","nodeType":"YulBlock","src":"4799:1044:51","statements":[{"nativeSrc":"4809:26:51","nodeType":"YulVariableDeclaration","src":"4809:26:51","value":{"arguments":[{"name":"pos","nativeSrc":"4825:3:51","nodeType":"YulIdentifier","src":"4825:3:51"},{"kind":"number","nativeSrc":"4830:4:51","nodeType":"YulLiteral","src":"4830:4:51","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"4821:3:51","nodeType":"YulIdentifier","src":"4821:3:51"},"nativeSrc":"4821:14:51","nodeType":"YulFunctionCall","src":"4821:14:51"},"variables":[{"name":"tail","nativeSrc":"4813:4:51","nodeType":"YulTypedName","src":"4813:4:51","type":""}]},{"nativeSrc":"4844:22:51","nodeType":"YulVariableDeclaration","src":"4844:22:51","value":{"arguments":[{"name":"value","nativeSrc":"4860:5:51","nodeType":"YulIdentifier","src":"4860:5:51"}],"functionName":{"name":"mload","nativeSrc":"4854:5:51","nodeType":"YulIdentifier","src":"4854:5:51"},"nativeSrc":"4854:12:51","nodeType":"YulFunctionCall","src":"4854:12:51"},"variables":[{"name":"_1","nativeSrc":"4848:2:51","nodeType":"YulTypedName","src":"4848:2:51","type":""}]},{"body":{"nativeSrc":"4897:22:51","nodeType":"YulBlock","src":"4897:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x21","nativeSrc":"4899:16:51","nodeType":"YulIdentifier","src":"4899:16:51"},"nativeSrc":"4899:18:51","nodeType":"YulFunctionCall","src":"4899:18:51"},"nativeSrc":"4899:18:51","nodeType":"YulExpressionStatement","src":"4899:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"4888:2:51","nodeType":"YulIdentifier","src":"4888:2:51"},{"kind":"number","nativeSrc":"4892:2:51","nodeType":"YulLiteral","src":"4892:2:51","type":"","value":"12"}],"functionName":{"name":"lt","nativeSrc":"4885:2:51","nodeType":"YulIdentifier","src":"4885:2:51"},"nativeSrc":"4885:10:51","nodeType":"YulFunctionCall","src":"4885:10:51"}],"functionName":{"name":"iszero","nativeSrc":"4878:6:51","nodeType":"YulIdentifier","src":"4878:6:51"},"nativeSrc":"4878:18:51","nodeType":"YulFunctionCall","src":"4878:18:51"},"nativeSrc":"4875:44:51","nodeType":"YulIf","src":"4875:44:51"},{"expression":{"arguments":[{"name":"pos","nativeSrc":"4935:3:51","nodeType":"YulIdentifier","src":"4935:3:51"},{"name":"_1","nativeSrc":"4940:2:51","nodeType":"YulIdentifier","src":"4940:2:51"}],"functionName":{"name":"mstore","nativeSrc":"4928:6:51","nodeType":"YulIdentifier","src":"4928:6:51"},"nativeSrc":"4928:15:51","nodeType":"YulFunctionCall","src":"4928:15:51"},"nativeSrc":"4928:15:51","nodeType":"YulExpressionStatement","src":"4928:15:51"},{"nativeSrc":"4952:43:51","nodeType":"YulVariableDeclaration","src":"4952:43:51","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4982:5:51","nodeType":"YulIdentifier","src":"4982:5:51"},{"kind":"number","nativeSrc":"4989:4:51","nodeType":"YulLiteral","src":"4989:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4978:3:51","nodeType":"YulIdentifier","src":"4978:3:51"},"nativeSrc":"4978:16:51","nodeType":"YulFunctionCall","src":"4978:16:51"}],"functionName":{"name":"mload","nativeSrc":"4972:5:51","nodeType":"YulIdentifier","src":"4972:5:51"},"nativeSrc":"4972:23:51","nodeType":"YulFunctionCall","src":"4972:23:51"},"variables":[{"name":"memberValue0","nativeSrc":"4956:12:51","nodeType":"YulTypedName","src":"4956:12:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"5015:3:51","nodeType":"YulIdentifier","src":"5015:3:51"},{"kind":"number","nativeSrc":"5020:4:51","nodeType":"YulLiteral","src":"5020:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5011:3:51","nodeType":"YulIdentifier","src":"5011:3:51"},"nativeSrc":"5011:14:51","nodeType":"YulFunctionCall","src":"5011:14:51"},{"kind":"number","nativeSrc":"5027:4:51","nodeType":"YulLiteral","src":"5027:4:51","type":"","value":"0x40"}],"functionName":{"name":"mstore","nativeSrc":"5004:6:51","nodeType":"YulIdentifier","src":"5004:6:51"},"nativeSrc":"5004:28:51","nodeType":"YulFunctionCall","src":"5004:28:51"},"nativeSrc":"5004:28:51","nodeType":"YulExpressionStatement","src":"5004:28:51"},{"nativeSrc":"5041:17:51","nodeType":"YulVariableDeclaration","src":"5041:17:51","value":{"name":"tail","nativeSrc":"5054:4:51","nodeType":"YulIdentifier","src":"5054:4:51"},"variables":[{"name":"pos_1","nativeSrc":"5045:5:51","nodeType":"YulTypedName","src":"5045:5:51","type":""}]},{"nativeSrc":"5067:33:51","nodeType":"YulVariableDeclaration","src":"5067:33:51","value":{"arguments":[{"name":"memberValue0","nativeSrc":"5087:12:51","nodeType":"YulIdentifier","src":"5087:12:51"}],"functionName":{"name":"mload","nativeSrc":"5081:5:51","nodeType":"YulIdentifier","src":"5081:5:51"},"nativeSrc":"5081:19:51","nodeType":"YulFunctionCall","src":"5081:19:51"},"variables":[{"name":"length","nativeSrc":"5071:6:51","nodeType":"YulTypedName","src":"5071:6:51","type":""}]},{"expression":{"arguments":[{"name":"tail","nativeSrc":"5116:4:51","nodeType":"YulIdentifier","src":"5116:4:51"},{"name":"length","nativeSrc":"5122:6:51","nodeType":"YulIdentifier","src":"5122:6:51"}],"functionName":{"name":"mstore","nativeSrc":"5109:6:51","nodeType":"YulIdentifier","src":"5109:6:51"},"nativeSrc":"5109:20:51","nodeType":"YulFunctionCall","src":"5109:20:51"},"nativeSrc":"5109:20:51","nodeType":"YulExpressionStatement","src":"5109:20:51"},{"nativeSrc":"5138:21:51","nodeType":"YulAssignment","src":"5138:21:51","value":{"arguments":[{"name":"pos","nativeSrc":"5151:3:51","nodeType":"YulIdentifier","src":"5151:3:51"},{"kind":"number","nativeSrc":"5156:2:51","nodeType":"YulLiteral","src":"5156:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5147:3:51","nodeType":"YulIdentifier","src":"5147:3:51"},"nativeSrc":"5147:12:51","nodeType":"YulFunctionCall","src":"5147:12:51"},"variableNames":[{"name":"pos_1","nativeSrc":"5138:5:51","nodeType":"YulIdentifier","src":"5138:5:51"}]},{"nativeSrc":"5168:47:51","nodeType":"YulVariableDeclaration","src":"5168:47:51","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"5190:3:51","nodeType":"YulIdentifier","src":"5190:3:51"},{"arguments":[{"kind":"number","nativeSrc":"5199:1:51","nodeType":"YulLiteral","src":"5199:1:51","type":"","value":"5"},{"name":"length","nativeSrc":"5202:6:51","nodeType":"YulIdentifier","src":"5202:6:51"}],"functionName":{"name":"shl","nativeSrc":"5195:3:51","nodeType":"YulIdentifier","src":"5195:3:51"},"nativeSrc":"5195:14:51","nodeType":"YulFunctionCall","src":"5195:14:51"}],"functionName":{"name":"add","nativeSrc":"5186:3:51","nodeType":"YulIdentifier","src":"5186:3:51"},"nativeSrc":"5186:24:51","nodeType":"YulFunctionCall","src":"5186:24:51"},{"kind":"number","nativeSrc":"5212:2:51","nodeType":"YulLiteral","src":"5212:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5182:3:51","nodeType":"YulIdentifier","src":"5182:3:51"},"nativeSrc":"5182:33:51","nodeType":"YulFunctionCall","src":"5182:33:51"},"variables":[{"name":"tail_1","nativeSrc":"5172:6:51","nodeType":"YulTypedName","src":"5172:6:51","type":""}]},{"nativeSrc":"5224:37:51","nodeType":"YulVariableDeclaration","src":"5224:37:51","value":{"arguments":[{"name":"memberValue0","nativeSrc":"5242:12:51","nodeType":"YulIdentifier","src":"5242:12:51"},{"kind":"number","nativeSrc":"5256:4:51","nodeType":"YulLiteral","src":"5256:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5238:3:51","nodeType":"YulIdentifier","src":"5238:3:51"},"nativeSrc":"5238:23:51","nodeType":"YulFunctionCall","src":"5238:23:51"},"variables":[{"name":"srcPtr","nativeSrc":"5228:6:51","nodeType":"YulTypedName","src":"5228:6:51","type":""}]},{"nativeSrc":"5270:10:51","nodeType":"YulVariableDeclaration","src":"5270:10:51","value":{"kind":"number","nativeSrc":"5279:1:51","nodeType":"YulLiteral","src":"5279:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"5274:1:51","nodeType":"YulTypedName","src":"5274:1:51","type":""}]},{"body":{"nativeSrc":"5338:477:51","nodeType":"YulBlock","src":"5338:477:51","statements":[{"expression":{"arguments":[{"name":"pos_1","nativeSrc":"5359:5:51","nodeType":"YulIdentifier","src":"5359:5:51"},{"arguments":[{"arguments":[{"name":"tail_1","nativeSrc":"5374:6:51","nodeType":"YulIdentifier","src":"5374:6:51"},{"name":"pos","nativeSrc":"5382:3:51","nodeType":"YulIdentifier","src":"5382:3:51"}],"functionName":{"name":"sub","nativeSrc":"5370:3:51","nodeType":"YulIdentifier","src":"5370:3:51"},"nativeSrc":"5370:16:51","nodeType":"YulFunctionCall","src":"5370:16:51"},{"arguments":[{"kind":"number","nativeSrc":"5392:2:51","nodeType":"YulLiteral","src":"5392:2:51","type":"","value":"95"}],"functionName":{"name":"not","nativeSrc":"5388:3:51","nodeType":"YulIdentifier","src":"5388:3:51"},"nativeSrc":"5388:7:51","nodeType":"YulFunctionCall","src":"5388:7:51"}],"functionName":{"name":"add","nativeSrc":"5366:3:51","nodeType":"YulIdentifier","src":"5366:3:51"},"nativeSrc":"5366:30:51","nodeType":"YulFunctionCall","src":"5366:30:51"}],"functionName":{"name":"mstore","nativeSrc":"5352:6:51","nodeType":"YulIdentifier","src":"5352:6:51"},"nativeSrc":"5352:45:51","nodeType":"YulFunctionCall","src":"5352:45:51"},"nativeSrc":"5352:45:51","nodeType":"YulExpressionStatement","src":"5352:45:51"},{"nativeSrc":"5410:23:51","nodeType":"YulVariableDeclaration","src":"5410:23:51","value":{"arguments":[{"name":"srcPtr","nativeSrc":"5426:6:51","nodeType":"YulIdentifier","src":"5426:6:51"}],"functionName":{"name":"mload","nativeSrc":"5420:5:51","nodeType":"YulIdentifier","src":"5420:5:51"},"nativeSrc":"5420:13:51","nodeType":"YulFunctionCall","src":"5420:13:51"},"variables":[{"name":"_2","nativeSrc":"5414:2:51","nodeType":"YulTypedName","src":"5414:2:51","type":""}]},{"nativeSrc":"5446:19:51","nodeType":"YulVariableDeclaration","src":"5446:19:51","value":{"arguments":[{"name":"_2","nativeSrc":"5462:2:51","nodeType":"YulIdentifier","src":"5462:2:51"}],"functionName":{"name":"mload","nativeSrc":"5456:5:51","nodeType":"YulIdentifier","src":"5456:5:51"},"nativeSrc":"5456:9:51","nodeType":"YulFunctionCall","src":"5456:9:51"},"variables":[{"name":"_3","nativeSrc":"5450:2:51","nodeType":"YulTypedName","src":"5450:2:51","type":""}]},{"body":{"nativeSrc":"5500:22:51","nodeType":"YulBlock","src":"5500:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x21","nativeSrc":"5502:16:51","nodeType":"YulIdentifier","src":"5502:16:51"},"nativeSrc":"5502:18:51","nodeType":"YulFunctionCall","src":"5502:18:51"},"nativeSrc":"5502:18:51","nodeType":"YulExpressionStatement","src":"5502:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"_3","nativeSrc":"5491:2:51","nodeType":"YulIdentifier","src":"5491:2:51"},{"kind":"number","nativeSrc":"5495:2:51","nodeType":"YulLiteral","src":"5495:2:51","type":"","value":"10"}],"functionName":{"name":"lt","nativeSrc":"5488:2:51","nodeType":"YulIdentifier","src":"5488:2:51"},"nativeSrc":"5488:10:51","nodeType":"YulFunctionCall","src":"5488:10:51"}],"functionName":{"name":"iszero","nativeSrc":"5481:6:51","nodeType":"YulIdentifier","src":"5481:6:51"},"nativeSrc":"5481:18:51","nodeType":"YulFunctionCall","src":"5481:18:51"},"nativeSrc":"5478:44:51","nodeType":"YulIf","src":"5478:44:51"},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"5542:6:51","nodeType":"YulIdentifier","src":"5542:6:51"},{"name":"_3","nativeSrc":"5550:2:51","nodeType":"YulIdentifier","src":"5550:2:51"}],"functionName":{"name":"mstore","nativeSrc":"5535:6:51","nodeType":"YulIdentifier","src":"5535:6:51"},"nativeSrc":"5535:18:51","nodeType":"YulFunctionCall","src":"5535:18:51"},"nativeSrc":"5535:18:51","nodeType":"YulExpressionStatement","src":"5535:18:51"},{"nativeSrc":"5566:42:51","nodeType":"YulVariableDeclaration","src":"5566:42:51","value":{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"5598:2:51","nodeType":"YulIdentifier","src":"5598:2:51"},{"kind":"number","nativeSrc":"5602:4:51","nodeType":"YulLiteral","src":"5602:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5594:3:51","nodeType":"YulIdentifier","src":"5594:3:51"},"nativeSrc":"5594:13:51","nodeType":"YulFunctionCall","src":"5594:13:51"}],"functionName":{"name":"mload","nativeSrc":"5588:5:51","nodeType":"YulIdentifier","src":"5588:5:51"},"nativeSrc":"5588:20:51","nodeType":"YulFunctionCall","src":"5588:20:51"},"variables":[{"name":"memberValue0_1","nativeSrc":"5570:14:51","nodeType":"YulTypedName","src":"5570:14:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"tail_1","nativeSrc":"5632:6:51","nodeType":"YulIdentifier","src":"5632:6:51"},{"kind":"number","nativeSrc":"5640:4:51","nodeType":"YulLiteral","src":"5640:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5628:3:51","nodeType":"YulIdentifier","src":"5628:3:51"},"nativeSrc":"5628:17:51","nodeType":"YulFunctionCall","src":"5628:17:51"},{"kind":"number","nativeSrc":"5647:4:51","nodeType":"YulLiteral","src":"5647:4:51","type":"","value":"0x40"}],"functionName":{"name":"mstore","nativeSrc":"5621:6:51","nodeType":"YulIdentifier","src":"5621:6:51"},"nativeSrc":"5621:31:51","nodeType":"YulFunctionCall","src":"5621:31:51"},"nativeSrc":"5621:31:51","nodeType":"YulExpressionStatement","src":"5621:31:51"},{"nativeSrc":"5665:62:51","nodeType":"YulAssignment","src":"5665:62:51","value":{"arguments":[{"name":"memberValue0_1","nativeSrc":"5693:14:51","nodeType":"YulIdentifier","src":"5693:14:51"},{"arguments":[{"name":"tail_1","nativeSrc":"5713:6:51","nodeType":"YulIdentifier","src":"5713:6:51"},{"kind":"number","nativeSrc":"5721:4:51","nodeType":"YulLiteral","src":"5721:4:51","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"5709:3:51","nodeType":"YulIdentifier","src":"5709:3:51"},"nativeSrc":"5709:17:51","nodeType":"YulFunctionCall","src":"5709:17:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"5675:17:51","nodeType":"YulIdentifier","src":"5675:17:51"},"nativeSrc":"5675:52:51","nodeType":"YulFunctionCall","src":"5675:52:51"},"variableNames":[{"name":"tail_1","nativeSrc":"5665:6:51","nodeType":"YulIdentifier","src":"5665:6:51"}]},{"nativeSrc":"5740:27:51","nodeType":"YulAssignment","src":"5740:27:51","value":{"arguments":[{"name":"srcPtr","nativeSrc":"5754:6:51","nodeType":"YulIdentifier","src":"5754:6:51"},{"kind":"number","nativeSrc":"5762:4:51","nodeType":"YulLiteral","src":"5762:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5750:3:51","nodeType":"YulIdentifier","src":"5750:3:51"},"nativeSrc":"5750:17:51","nodeType":"YulFunctionCall","src":"5750:17:51"},"variableNames":[{"name":"srcPtr","nativeSrc":"5740:6:51","nodeType":"YulIdentifier","src":"5740:6:51"}]},{"nativeSrc":"5780:25:51","nodeType":"YulAssignment","src":"5780:25:51","value":{"arguments":[{"name":"pos_1","nativeSrc":"5793:5:51","nodeType":"YulIdentifier","src":"5793:5:51"},{"kind":"number","nativeSrc":"5800:4:51","nodeType":"YulLiteral","src":"5800:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5789:3:51","nodeType":"YulIdentifier","src":"5789:3:51"},"nativeSrc":"5789:16:51","nodeType":"YulFunctionCall","src":"5789:16:51"},"variableNames":[{"name":"pos_1","nativeSrc":"5780:5:51","nodeType":"YulIdentifier","src":"5780:5:51"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"5300:1:51","nodeType":"YulIdentifier","src":"5300:1:51"},{"name":"length","nativeSrc":"5303:6:51","nodeType":"YulIdentifier","src":"5303:6:51"}],"functionName":{"name":"lt","nativeSrc":"5297:2:51","nodeType":"YulIdentifier","src":"5297:2:51"},"nativeSrc":"5297:13:51","nodeType":"YulFunctionCall","src":"5297:13:51"},"nativeSrc":"5289:526:51","nodeType":"YulForLoop","post":{"nativeSrc":"5311:18:51","nodeType":"YulBlock","src":"5311:18:51","statements":[{"nativeSrc":"5313:14:51","nodeType":"YulAssignment","src":"5313:14:51","value":{"arguments":[{"name":"i","nativeSrc":"5322:1:51","nodeType":"YulIdentifier","src":"5322:1:51"},{"kind":"number","nativeSrc":"5325:1:51","nodeType":"YulLiteral","src":"5325:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"5318:3:51","nodeType":"YulIdentifier","src":"5318:3:51"},"nativeSrc":"5318:9:51","nodeType":"YulFunctionCall","src":"5318:9:51"},"variableNames":[{"name":"i","nativeSrc":"5313:1:51","nodeType":"YulIdentifier","src":"5313:1:51"}]}]},"pre":{"nativeSrc":"5293:3:51","nodeType":"YulBlock","src":"5293:3:51","statements":[]},"src":"5289:526:51"},{"nativeSrc":"5824:13:51","nodeType":"YulAssignment","src":"5824:13:51","value":{"name":"tail_1","nativeSrc":"5831:6:51","nodeType":"YulIdentifier","src":"5831:6:51"},"variableNames":[{"name":"end","nativeSrc":"5824:3:51","nodeType":"YulIdentifier","src":"5824:3:51"}]}]},"name":"abi_encode_struct_RadonReducer","nativeSrc":"4736:1107:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"4776:5:51","nodeType":"YulTypedName","src":"4776:5:51","type":""},{"name":"pos","nativeSrc":"4783:3:51","nodeType":"YulTypedName","src":"4783:3:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"4791:3:51","nodeType":"YulTypedName","src":"4791:3:51","type":""}],"src":"4736:1107:51"},{"body":{"nativeSrc":"6111:1745:51","nodeType":"YulBlock","src":"6111:1745:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6128:9:51","nodeType":"YulIdentifier","src":"6128:9:51"},{"kind":"number","nativeSrc":"6139:2:51","nodeType":"YulLiteral","src":"6139:2:51","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"6121:6:51","nodeType":"YulIdentifier","src":"6121:6:51"},"nativeSrc":"6121:21:51","nodeType":"YulFunctionCall","src":"6121:21:51"},"nativeSrc":"6121:21:51","nodeType":"YulExpressionStatement","src":"6121:21:51"},{"nativeSrc":"6151:23:51","nodeType":"YulVariableDeclaration","src":"6151:23:51","value":{"arguments":[{"name":"value0","nativeSrc":"6167:6:51","nodeType":"YulIdentifier","src":"6167:6:51"}],"functionName":{"name":"mload","nativeSrc":"6161:5:51","nodeType":"YulIdentifier","src":"6161:5:51"},"nativeSrc":"6161:13:51","nodeType":"YulFunctionCall","src":"6161:13:51"},"variables":[{"name":"_1","nativeSrc":"6155:2:51","nodeType":"YulTypedName","src":"6155:2:51","type":""}]},{"body":{"nativeSrc":"6204:22:51","nodeType":"YulBlock","src":"6204:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x21","nativeSrc":"6206:16:51","nodeType":"YulIdentifier","src":"6206:16:51"},"nativeSrc":"6206:18:51","nodeType":"YulFunctionCall","src":"6206:18:51"},"nativeSrc":"6206:18:51","nodeType":"YulExpressionStatement","src":"6206:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"6196:2:51","nodeType":"YulIdentifier","src":"6196:2:51"},{"kind":"number","nativeSrc":"6200:1:51","nodeType":"YulLiteral","src":"6200:1:51","type":"","value":"5"}],"functionName":{"name":"lt","nativeSrc":"6193:2:51","nodeType":"YulIdentifier","src":"6193:2:51"},"nativeSrc":"6193:9:51","nodeType":"YulFunctionCall","src":"6193:9:51"}],"functionName":{"name":"iszero","nativeSrc":"6186:6:51","nodeType":"YulIdentifier","src":"6186:6:51"},"nativeSrc":"6186:17:51","nodeType":"YulFunctionCall","src":"6186:17:51"},"nativeSrc":"6183:43:51","nodeType":"YulIf","src":"6183:43:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6246:9:51","nodeType":"YulIdentifier","src":"6246:9:51"},{"kind":"number","nativeSrc":"6257:2:51","nodeType":"YulLiteral","src":"6257:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6242:3:51","nodeType":"YulIdentifier","src":"6242:3:51"},"nativeSrc":"6242:18:51","nodeType":"YulFunctionCall","src":"6242:18:51"},{"name":"_1","nativeSrc":"6262:2:51","nodeType":"YulIdentifier","src":"6262:2:51"}],"functionName":{"name":"mstore","nativeSrc":"6235:6:51","nodeType":"YulIdentifier","src":"6235:6:51"},"nativeSrc":"6235:30:51","nodeType":"YulFunctionCall","src":"6235:30:51"},"nativeSrc":"6235:30:51","nodeType":"YulExpressionStatement","src":"6235:30:51"},{"nativeSrc":"6274:44:51","nodeType":"YulVariableDeclaration","src":"6274:44:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"6304:6:51","nodeType":"YulIdentifier","src":"6304:6:51"},{"kind":"number","nativeSrc":"6312:4:51","nodeType":"YulLiteral","src":"6312:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6300:3:51","nodeType":"YulIdentifier","src":"6300:3:51"},"nativeSrc":"6300:17:51","nodeType":"YulFunctionCall","src":"6300:17:51"}],"functionName":{"name":"mload","nativeSrc":"6294:5:51","nodeType":"YulIdentifier","src":"6294:5:51"},"nativeSrc":"6294:24:51","nodeType":"YulFunctionCall","src":"6294:24:51"},"variables":[{"name":"memberValue0","nativeSrc":"6278:12:51","nodeType":"YulTypedName","src":"6278:12:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6338:9:51","nodeType":"YulIdentifier","src":"6338:9:51"},{"kind":"number","nativeSrc":"6349:2:51","nodeType":"YulLiteral","src":"6349:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"6334:3:51","nodeType":"YulIdentifier","src":"6334:3:51"},"nativeSrc":"6334:18:51","nodeType":"YulFunctionCall","src":"6334:18:51"},{"kind":"number","nativeSrc":"6354:4:51","nodeType":"YulLiteral","src":"6354:4:51","type":"","value":"0x80"}],"functionName":{"name":"mstore","nativeSrc":"6327:6:51","nodeType":"YulIdentifier","src":"6327:6:51"},"nativeSrc":"6327:32:51","nodeType":"YulFunctionCall","src":"6327:32:51"},"nativeSrc":"6327:32:51","nodeType":"YulExpressionStatement","src":"6327:32:51"},{"nativeSrc":"6368:66:51","nodeType":"YulVariableDeclaration","src":"6368:66:51","value":{"arguments":[{"name":"memberValue0","nativeSrc":"6400:12:51","nodeType":"YulIdentifier","src":"6400:12:51"},{"arguments":[{"name":"headStart","nativeSrc":"6418:9:51","nodeType":"YulIdentifier","src":"6418:9:51"},{"kind":"number","nativeSrc":"6429:3:51","nodeType":"YulLiteral","src":"6429:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"6414:3:51","nodeType":"YulIdentifier","src":"6414:3:51"},"nativeSrc":"6414:19:51","nodeType":"YulFunctionCall","src":"6414:19:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"6382:17:51","nodeType":"YulIdentifier","src":"6382:17:51"},"nativeSrc":"6382:52:51","nodeType":"YulFunctionCall","src":"6382:52:51"},"variables":[{"name":"tail_1","nativeSrc":"6372:6:51","nodeType":"YulTypedName","src":"6372:6:51","type":""}]},{"nativeSrc":"6443:44:51","nodeType":"YulVariableDeclaration","src":"6443:44:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"6475:6:51","nodeType":"YulIdentifier","src":"6475:6:51"},{"kind":"number","nativeSrc":"6483:2:51","nodeType":"YulLiteral","src":"6483:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6471:3:51","nodeType":"YulIdentifier","src":"6471:3:51"},"nativeSrc":"6471:15:51","nodeType":"YulFunctionCall","src":"6471:15:51"}],"functionName":{"name":"mload","nativeSrc":"6465:5:51","nodeType":"YulIdentifier","src":"6465:5:51"},"nativeSrc":"6465:22:51","nodeType":"YulFunctionCall","src":"6465:22:51"},"variables":[{"name":"memberValue0_1","nativeSrc":"6447:14:51","nodeType":"YulTypedName","src":"6447:14:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6507:9:51","nodeType":"YulIdentifier","src":"6507:9:51"},{"kind":"number","nativeSrc":"6518:4:51","nodeType":"YulLiteral","src":"6518:4:51","type":"","value":"0x80"}],"functionName":{"name":"add","nativeSrc":"6503:3:51","nodeType":"YulIdentifier","src":"6503:3:51"},"nativeSrc":"6503:20:51","nodeType":"YulFunctionCall","src":"6503:20:51"},{"arguments":[{"arguments":[{"name":"tail_1","nativeSrc":"6533:6:51","nodeType":"YulIdentifier","src":"6533:6:51"},{"name":"headStart","nativeSrc":"6541:9:51","nodeType":"YulIdentifier","src":"6541:9:51"}],"functionName":{"name":"sub","nativeSrc":"6529:3:51","nodeType":"YulIdentifier","src":"6529:3:51"},"nativeSrc":"6529:22:51","nodeType":"YulFunctionCall","src":"6529:22:51"},{"arguments":[{"kind":"number","nativeSrc":"6557:2:51","nodeType":"YulLiteral","src":"6557:2:51","type":"","value":"63"}],"functionName":{"name":"not","nativeSrc":"6553:3:51","nodeType":"YulIdentifier","src":"6553:3:51"},"nativeSrc":"6553:7:51","nodeType":"YulFunctionCall","src":"6553:7:51"}],"functionName":{"name":"add","nativeSrc":"6525:3:51","nodeType":"YulIdentifier","src":"6525:3:51"},"nativeSrc":"6525:36:51","nodeType":"YulFunctionCall","src":"6525:36:51"}],"functionName":{"name":"mstore","nativeSrc":"6496:6:51","nodeType":"YulIdentifier","src":"6496:6:51"},"nativeSrc":"6496:66:51","nodeType":"YulFunctionCall","src":"6496:66:51"},"nativeSrc":"6496:66:51","nodeType":"YulExpressionStatement","src":"6496:66:51"},{"nativeSrc":"6571:17:51","nodeType":"YulVariableDeclaration","src":"6571:17:51","value":{"name":"tail_1","nativeSrc":"6582:6:51","nodeType":"YulIdentifier","src":"6582:6:51"},"variables":[{"name":"pos","nativeSrc":"6575:3:51","nodeType":"YulTypedName","src":"6575:3:51","type":""}]},{"nativeSrc":"6597:35:51","nodeType":"YulVariableDeclaration","src":"6597:35:51","value":{"arguments":[{"name":"memberValue0_1","nativeSrc":"6617:14:51","nodeType":"YulIdentifier","src":"6617:14:51"}],"functionName":{"name":"mload","nativeSrc":"6611:5:51","nodeType":"YulIdentifier","src":"6611:5:51"},"nativeSrc":"6611:21:51","nodeType":"YulFunctionCall","src":"6611:21:51"},"variables":[{"name":"length","nativeSrc":"6601:6:51","nodeType":"YulTypedName","src":"6601:6:51","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"6648:6:51","nodeType":"YulIdentifier","src":"6648:6:51"},{"name":"length","nativeSrc":"6656:6:51","nodeType":"YulIdentifier","src":"6656:6:51"}],"functionName":{"name":"mstore","nativeSrc":"6641:6:51","nodeType":"YulIdentifier","src":"6641:6:51"},"nativeSrc":"6641:22:51","nodeType":"YulFunctionCall","src":"6641:22:51"},"nativeSrc":"6641:22:51","nodeType":"YulExpressionStatement","src":"6641:22:51"},{"nativeSrc":"6672:24:51","nodeType":"YulAssignment","src":"6672:24:51","value":{"arguments":[{"name":"tail_1","nativeSrc":"6683:6:51","nodeType":"YulIdentifier","src":"6683:6:51"},{"kind":"number","nativeSrc":"6691:4:51","nodeType":"YulLiteral","src":"6691:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6679:3:51","nodeType":"YulIdentifier","src":"6679:3:51"},"nativeSrc":"6679:17:51","nodeType":"YulFunctionCall","src":"6679:17:51"},"variableNames":[{"name":"pos","nativeSrc":"6672:3:51","nodeType":"YulIdentifier","src":"6672:3:51"}]},{"nativeSrc":"6705:52:51","nodeType":"YulVariableDeclaration","src":"6705:52:51","value":{"arguments":[{"arguments":[{"name":"tail_1","nativeSrc":"6727:6:51","nodeType":"YulIdentifier","src":"6727:6:51"},{"arguments":[{"kind":"number","nativeSrc":"6739:1:51","nodeType":"YulLiteral","src":"6739:1:51","type":"","value":"5"},{"name":"length","nativeSrc":"6742:6:51","nodeType":"YulIdentifier","src":"6742:6:51"}],"functionName":{"name":"shl","nativeSrc":"6735:3:51","nodeType":"YulIdentifier","src":"6735:3:51"},"nativeSrc":"6735:14:51","nodeType":"YulFunctionCall","src":"6735:14:51"}],"functionName":{"name":"add","nativeSrc":"6723:3:51","nodeType":"YulIdentifier","src":"6723:3:51"},"nativeSrc":"6723:27:51","nodeType":"YulFunctionCall","src":"6723:27:51"},{"kind":"number","nativeSrc":"6752:4:51","nodeType":"YulLiteral","src":"6752:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6719:3:51","nodeType":"YulIdentifier","src":"6719:3:51"},"nativeSrc":"6719:38:51","nodeType":"YulFunctionCall","src":"6719:38:51"},"variables":[{"name":"tail_2","nativeSrc":"6709:6:51","nodeType":"YulTypedName","src":"6709:6:51","type":""}]},{"nativeSrc":"6766:39:51","nodeType":"YulVariableDeclaration","src":"6766:39:51","value":{"arguments":[{"name":"memberValue0_1","nativeSrc":"6784:14:51","nodeType":"YulIdentifier","src":"6784:14:51"},{"kind":"number","nativeSrc":"6800:4:51","nodeType":"YulLiteral","src":"6800:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6780:3:51","nodeType":"YulIdentifier","src":"6780:3:51"},"nativeSrc":"6780:25:51","nodeType":"YulFunctionCall","src":"6780:25:51"},"variables":[{"name":"srcPtr","nativeSrc":"6770:6:51","nodeType":"YulTypedName","src":"6770:6:51","type":""}]},{"nativeSrc":"6814:10:51","nodeType":"YulVariableDeclaration","src":"6814:10:51","value":{"kind":"number","nativeSrc":"6823:1:51","nodeType":"YulLiteral","src":"6823:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"6818:1:51","nodeType":"YulTypedName","src":"6818:1:51","type":""}]},{"body":{"nativeSrc":"6882:662:51","nodeType":"YulBlock","src":"6882:662:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"6903:3:51","nodeType":"YulIdentifier","src":"6903:3:51"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"6916:6:51","nodeType":"YulIdentifier","src":"6916:6:51"},{"name":"tail_1","nativeSrc":"6924:6:51","nodeType":"YulIdentifier","src":"6924:6:51"}],"functionName":{"name":"sub","nativeSrc":"6912:3:51","nodeType":"YulIdentifier","src":"6912:3:51"},"nativeSrc":"6912:19:51","nodeType":"YulFunctionCall","src":"6912:19:51"},{"arguments":[{"kind":"number","nativeSrc":"6937:2:51","nodeType":"YulLiteral","src":"6937:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"6933:3:51","nodeType":"YulIdentifier","src":"6933:3:51"},"nativeSrc":"6933:7:51","nodeType":"YulFunctionCall","src":"6933:7:51"}],"functionName":{"name":"add","nativeSrc":"6908:3:51","nodeType":"YulIdentifier","src":"6908:3:51"},"nativeSrc":"6908:33:51","nodeType":"YulFunctionCall","src":"6908:33:51"}],"functionName":{"name":"mstore","nativeSrc":"6896:6:51","nodeType":"YulIdentifier","src":"6896:6:51"},"nativeSrc":"6896:46:51","nodeType":"YulFunctionCall","src":"6896:46:51"},"nativeSrc":"6896:46:51","nodeType":"YulExpressionStatement","src":"6896:46:51"},{"nativeSrc":"6955:23:51","nodeType":"YulVariableDeclaration","src":"6955:23:51","value":{"arguments":[{"name":"srcPtr","nativeSrc":"6971:6:51","nodeType":"YulIdentifier","src":"6971:6:51"}],"functionName":{"name":"mload","nativeSrc":"6965:5:51","nodeType":"YulIdentifier","src":"6965:5:51"},"nativeSrc":"6965:13:51","nodeType":"YulFunctionCall","src":"6965:13:51"},"variables":[{"name":"_2","nativeSrc":"6959:2:51","nodeType":"YulTypedName","src":"6959:2:51","type":""}]},{"nativeSrc":"6991:19:51","nodeType":"YulVariableDeclaration","src":"6991:19:51","value":{"name":"tail_2","nativeSrc":"7004:6:51","nodeType":"YulIdentifier","src":"7004:6:51"},"variables":[{"name":"pos_1","nativeSrc":"6995:5:51","nodeType":"YulTypedName","src":"6995:5:51","type":""}]},{"nativeSrc":"7023:15:51","nodeType":"YulAssignment","src":"7023:15:51","value":{"name":"tail_2","nativeSrc":"7032:6:51","nodeType":"YulIdentifier","src":"7032:6:51"},"variableNames":[{"name":"pos_1","nativeSrc":"7023:5:51","nodeType":"YulIdentifier","src":"7023:5:51"}]},{"nativeSrc":"7051:29:51","nodeType":"YulVariableDeclaration","src":"7051:29:51","value":{"arguments":[{"name":"tail_2","nativeSrc":"7069:6:51","nodeType":"YulIdentifier","src":"7069:6:51"},{"kind":"number","nativeSrc":"7077:2:51","nodeType":"YulLiteral","src":"7077:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7065:3:51","nodeType":"YulIdentifier","src":"7065:3:51"},"nativeSrc":"7065:15:51","nodeType":"YulFunctionCall","src":"7065:15:51"},"variables":[{"name":"tail_3","nativeSrc":"7055:6:51","nodeType":"YulTypedName","src":"7055:6:51","type":""}]},{"nativeSrc":"7093:18:51","nodeType":"YulVariableDeclaration","src":"7093:18:51","value":{"name":"_2","nativeSrc":"7109:2:51","nodeType":"YulIdentifier","src":"7109:2:51"},"variables":[{"name":"srcPtr_1","nativeSrc":"7097:8:51","nodeType":"YulTypedName","src":"7097:8:51","type":""}]},{"nativeSrc":"7124:12:51","nodeType":"YulVariableDeclaration","src":"7124:12:51","value":{"kind":"number","nativeSrc":"7135:1:51","nodeType":"YulLiteral","src":"7135:1:51","type":"","value":"0"},"variables":[{"name":"i_1","nativeSrc":"7128:3:51","nodeType":"YulTypedName","src":"7128:3:51","type":""}]},{"body":{"nativeSrc":"7206:225:51","nodeType":"YulBlock","src":"7206:225:51","statements":[{"expression":{"arguments":[{"name":"pos_1","nativeSrc":"7231:5:51","nodeType":"YulIdentifier","src":"7231:5:51"},{"arguments":[{"name":"tail_3","nativeSrc":"7242:6:51","nodeType":"YulIdentifier","src":"7242:6:51"},{"name":"tail_2","nativeSrc":"7250:6:51","nodeType":"YulIdentifier","src":"7250:6:51"}],"functionName":{"name":"sub","nativeSrc":"7238:3:51","nodeType":"YulIdentifier","src":"7238:3:51"},"nativeSrc":"7238:19:51","nodeType":"YulFunctionCall","src":"7238:19:51"}],"functionName":{"name":"mstore","nativeSrc":"7224:6:51","nodeType":"YulIdentifier","src":"7224:6:51"},"nativeSrc":"7224:34:51","nodeType":"YulFunctionCall","src":"7224:34:51"},"nativeSrc":"7224:34:51","nodeType":"YulExpressionStatement","src":"7224:34:51"},{"nativeSrc":"7275:52:51","nodeType":"YulAssignment","src":"7275:52:51","value":{"arguments":[{"arguments":[{"name":"srcPtr_1","nativeSrc":"7309:8:51","nodeType":"YulIdentifier","src":"7309:8:51"}],"functionName":{"name":"mload","nativeSrc":"7303:5:51","nodeType":"YulIdentifier","src":"7303:5:51"},"nativeSrc":"7303:15:51","nodeType":"YulFunctionCall","src":"7303:15:51"},{"name":"tail_3","nativeSrc":"7320:6:51","nodeType":"YulIdentifier","src":"7320:6:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"7285:17:51","nodeType":"YulIdentifier","src":"7285:17:51"},"nativeSrc":"7285:42:51","nodeType":"YulFunctionCall","src":"7285:42:51"},"variableNames":[{"name":"tail_3","nativeSrc":"7275:6:51","nodeType":"YulIdentifier","src":"7275:6:51"}]},{"nativeSrc":"7344:31:51","nodeType":"YulAssignment","src":"7344:31:51","value":{"arguments":[{"name":"srcPtr_1","nativeSrc":"7360:8:51","nodeType":"YulIdentifier","src":"7360:8:51"},{"kind":"number","nativeSrc":"7370:4:51","nodeType":"YulLiteral","src":"7370:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7356:3:51","nodeType":"YulIdentifier","src":"7356:3:51"},"nativeSrc":"7356:19:51","nodeType":"YulFunctionCall","src":"7356:19:51"},"variableNames":[{"name":"srcPtr_1","nativeSrc":"7344:8:51","nodeType":"YulIdentifier","src":"7344:8:51"}]},{"nativeSrc":"7392:25:51","nodeType":"YulAssignment","src":"7392:25:51","value":{"arguments":[{"name":"pos_1","nativeSrc":"7405:5:51","nodeType":"YulIdentifier","src":"7405:5:51"},{"kind":"number","nativeSrc":"7412:4:51","nodeType":"YulLiteral","src":"7412:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7401:3:51","nodeType":"YulIdentifier","src":"7401:3:51"},"nativeSrc":"7401:16:51","nodeType":"YulFunctionCall","src":"7401:16:51"},"variableNames":[{"name":"pos_1","nativeSrc":"7392:5:51","nodeType":"YulIdentifier","src":"7392:5:51"}]}]},"condition":{"arguments":[{"name":"i_1","nativeSrc":"7160:3:51","nodeType":"YulIdentifier","src":"7160:3:51"},{"kind":"number","nativeSrc":"7165:4:51","nodeType":"YulLiteral","src":"7165:4:51","type":"","value":"0x02"}],"functionName":{"name":"lt","nativeSrc":"7157:2:51","nodeType":"YulIdentifier","src":"7157:2:51"},"nativeSrc":"7157:13:51","nodeType":"YulFunctionCall","src":"7157:13:51"},"nativeSrc":"7149:282:51","nodeType":"YulForLoop","post":{"nativeSrc":"7171:22:51","nodeType":"YulBlock","src":"7171:22:51","statements":[{"nativeSrc":"7173:18:51","nodeType":"YulAssignment","src":"7173:18:51","value":{"arguments":[{"name":"i_1","nativeSrc":"7184:3:51","nodeType":"YulIdentifier","src":"7184:3:51"},{"kind":"number","nativeSrc":"7189:1:51","nodeType":"YulLiteral","src":"7189:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"7180:3:51","nodeType":"YulIdentifier","src":"7180:3:51"},"nativeSrc":"7180:11:51","nodeType":"YulFunctionCall","src":"7180:11:51"},"variableNames":[{"name":"i_1","nativeSrc":"7173:3:51","nodeType":"YulIdentifier","src":"7173:3:51"}]}]},"pre":{"nativeSrc":"7153:3:51","nodeType":"YulBlock","src":"7153:3:51","statements":[]},"src":"7149:282:51"},{"nativeSrc":"7444:16:51","nodeType":"YulAssignment","src":"7444:16:51","value":{"name":"tail_3","nativeSrc":"7454:6:51","nodeType":"YulIdentifier","src":"7454:6:51"},"variableNames":[{"name":"tail_2","nativeSrc":"7444:6:51","nodeType":"YulIdentifier","src":"7444:6:51"}]},{"nativeSrc":"7473:27:51","nodeType":"YulAssignment","src":"7473:27:51","value":{"arguments":[{"name":"srcPtr","nativeSrc":"7487:6:51","nodeType":"YulIdentifier","src":"7487:6:51"},{"kind":"number","nativeSrc":"7495:4:51","nodeType":"YulLiteral","src":"7495:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7483:3:51","nodeType":"YulIdentifier","src":"7483:3:51"},"nativeSrc":"7483:17:51","nodeType":"YulFunctionCall","src":"7483:17:51"},"variableNames":[{"name":"srcPtr","nativeSrc":"7473:6:51","nodeType":"YulIdentifier","src":"7473:6:51"}]},{"nativeSrc":"7513:21:51","nodeType":"YulAssignment","src":"7513:21:51","value":{"arguments":[{"name":"pos","nativeSrc":"7524:3:51","nodeType":"YulIdentifier","src":"7524:3:51"},{"kind":"number","nativeSrc":"7529:4:51","nodeType":"YulLiteral","src":"7529:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7520:3:51","nodeType":"YulIdentifier","src":"7520:3:51"},"nativeSrc":"7520:14:51","nodeType":"YulFunctionCall","src":"7520:14:51"},"variableNames":[{"name":"pos","nativeSrc":"7513:3:51","nodeType":"YulIdentifier","src":"7513:3:51"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"6844:1:51","nodeType":"YulIdentifier","src":"6844:1:51"},{"name":"length","nativeSrc":"6847:6:51","nodeType":"YulIdentifier","src":"6847:6:51"}],"functionName":{"name":"lt","nativeSrc":"6841:2:51","nodeType":"YulIdentifier","src":"6841:2:51"},"nativeSrc":"6841:13:51","nodeType":"YulFunctionCall","src":"6841:13:51"},"nativeSrc":"6833:711:51","nodeType":"YulForLoop","post":{"nativeSrc":"6855:18:51","nodeType":"YulBlock","src":"6855:18:51","statements":[{"nativeSrc":"6857:14:51","nodeType":"YulAssignment","src":"6857:14:51","value":{"arguments":[{"name":"i","nativeSrc":"6866:1:51","nodeType":"YulIdentifier","src":"6866:1:51"},{"kind":"number","nativeSrc":"6869:1:51","nodeType":"YulLiteral","src":"6869:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"6862:3:51","nodeType":"YulIdentifier","src":"6862:3:51"},"nativeSrc":"6862:9:51","nodeType":"YulFunctionCall","src":"6862:9:51"},"variableNames":[{"name":"i","nativeSrc":"6857:1:51","nodeType":"YulIdentifier","src":"6857:1:51"}]}]},"pre":{"nativeSrc":"6837:3:51","nodeType":"YulBlock","src":"6837:3:51","statements":[]},"src":"6833:711:51"},{"nativeSrc":"7553:44:51","nodeType":"YulVariableDeclaration","src":"7553:44:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"7585:6:51","nodeType":"YulIdentifier","src":"7585:6:51"},{"kind":"number","nativeSrc":"7593:2:51","nodeType":"YulLiteral","src":"7593:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"7581:3:51","nodeType":"YulIdentifier","src":"7581:3:51"},"nativeSrc":"7581:15:51","nodeType":"YulFunctionCall","src":"7581:15:51"}],"functionName":{"name":"mload","nativeSrc":"7575:5:51","nodeType":"YulIdentifier","src":"7575:5:51"},"nativeSrc":"7575:22:51","nodeType":"YulFunctionCall","src":"7575:22:51"},"variables":[{"name":"memberValue0_2","nativeSrc":"7557:14:51","nodeType":"YulTypedName","src":"7557:14:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7617:9:51","nodeType":"YulIdentifier","src":"7617:9:51"},{"kind":"number","nativeSrc":"7628:3:51","nodeType":"YulLiteral","src":"7628:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"7613:3:51","nodeType":"YulIdentifier","src":"7613:3:51"},"nativeSrc":"7613:19:51","nodeType":"YulFunctionCall","src":"7613:19:51"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"7642:6:51","nodeType":"YulIdentifier","src":"7642:6:51"},{"name":"headStart","nativeSrc":"7650:9:51","nodeType":"YulIdentifier","src":"7650:9:51"}],"functionName":{"name":"sub","nativeSrc":"7638:3:51","nodeType":"YulIdentifier","src":"7638:3:51"},"nativeSrc":"7638:22:51","nodeType":"YulFunctionCall","src":"7638:22:51"},{"arguments":[{"kind":"number","nativeSrc":"7666:2:51","nodeType":"YulLiteral","src":"7666:2:51","type":"","value":"63"}],"functionName":{"name":"not","nativeSrc":"7662:3:51","nodeType":"YulIdentifier","src":"7662:3:51"},"nativeSrc":"7662:7:51","nodeType":"YulFunctionCall","src":"7662:7:51"}],"functionName":{"name":"add","nativeSrc":"7634:3:51","nodeType":"YulIdentifier","src":"7634:3:51"},"nativeSrc":"7634:36:51","nodeType":"YulFunctionCall","src":"7634:36:51"}],"functionName":{"name":"mstore","nativeSrc":"7606:6:51","nodeType":"YulIdentifier","src":"7606:6:51"},"nativeSrc":"7606:65:51","nodeType":"YulFunctionCall","src":"7606:65:51"},"nativeSrc":"7606:65:51","nodeType":"YulExpressionStatement","src":"7606:65:51"},{"nativeSrc":"7680:52:51","nodeType":"YulVariableDeclaration","src":"7680:52:51","value":{"arguments":[{"name":"memberValue0_2","nativeSrc":"7709:14:51","nodeType":"YulIdentifier","src":"7709:14:51"},{"name":"tail_2","nativeSrc":"7725:6:51","nodeType":"YulIdentifier","src":"7725:6:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"7691:17:51","nodeType":"YulIdentifier","src":"7691:17:51"},"nativeSrc":"7691:41:51","nodeType":"YulFunctionCall","src":"7691:41:51"},"variables":[{"name":"end","nativeSrc":"7684:3:51","nodeType":"YulTypedName","src":"7684:3:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7752:9:51","nodeType":"YulIdentifier","src":"7752:9:51"},{"kind":"number","nativeSrc":"7763:4:51","nodeType":"YulLiteral","src":"7763:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7748:3:51","nodeType":"YulIdentifier","src":"7748:3:51"},"nativeSrc":"7748:20:51","nodeType":"YulFunctionCall","src":"7748:20:51"},{"arguments":[{"name":"end","nativeSrc":"7774:3:51","nodeType":"YulIdentifier","src":"7774:3:51"},{"name":"headStart","nativeSrc":"7779:9:51","nodeType":"YulIdentifier","src":"7779:9:51"}],"functionName":{"name":"sub","nativeSrc":"7770:3:51","nodeType":"YulIdentifier","src":"7770:3:51"},"nativeSrc":"7770:19:51","nodeType":"YulFunctionCall","src":"7770:19:51"}],"functionName":{"name":"mstore","nativeSrc":"7741:6:51","nodeType":"YulIdentifier","src":"7741:6:51"},"nativeSrc":"7741:49:51","nodeType":"YulFunctionCall","src":"7741:49:51"},"nativeSrc":"7741:49:51","nodeType":"YulExpressionStatement","src":"7741:49:51"},{"nativeSrc":"7799:51:51","nodeType":"YulAssignment","src":"7799:51:51","value":{"arguments":[{"name":"value1","nativeSrc":"7838:6:51","nodeType":"YulIdentifier","src":"7838:6:51"},{"name":"end","nativeSrc":"7846:3:51","nodeType":"YulIdentifier","src":"7846:3:51"}],"functionName":{"name":"abi_encode_struct_RadonReducer","nativeSrc":"7807:30:51","nodeType":"YulIdentifier","src":"7807:30:51"},"nativeSrc":"7807:43:51","nodeType":"YulFunctionCall","src":"7807:43:51"},"variableNames":[{"name":"tail","nativeSrc":"7799:4:51","nodeType":"YulIdentifier","src":"7799:4:51"}]}]},"name":"abi_encode_tuple_t_struct$_DataSourceRequest_$10667_memory_ptr_t_struct$_RadonReducer_$13779_memory_ptr__to_t_struct$_DataSourceRequest_$10667_memory_ptr_t_struct$_RadonReducer_$13779_memory_ptr__fromStack_reversed","nativeSrc":"5848:2008:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6072:9:51","nodeType":"YulTypedName","src":"6072:9:51","type":""},{"name":"value1","nativeSrc":"6083:6:51","nodeType":"YulTypedName","src":"6083:6:51","type":""},{"name":"value0","nativeSrc":"6091:6:51","nodeType":"YulTypedName","src":"6091:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6102:4:51","nodeType":"YulTypedName","src":"6102:4:51","type":""}],"src":"5848:2008:51"},{"body":{"nativeSrc":"7979:201:51","nodeType":"YulBlock","src":"7979:201:51","statements":[{"body":{"nativeSrc":"8025:16:51","nodeType":"YulBlock","src":"8025:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8034:1:51","nodeType":"YulLiteral","src":"8034:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"8037:1:51","nodeType":"YulLiteral","src":"8037:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8027:6:51","nodeType":"YulIdentifier","src":"8027:6:51"},"nativeSrc":"8027:12:51","nodeType":"YulFunctionCall","src":"8027:12:51"},"nativeSrc":"8027:12:51","nodeType":"YulExpressionStatement","src":"8027:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8000:7:51","nodeType":"YulIdentifier","src":"8000:7:51"},{"name":"headStart","nativeSrc":"8009:9:51","nodeType":"YulIdentifier","src":"8009:9:51"}],"functionName":{"name":"sub","nativeSrc":"7996:3:51","nodeType":"YulIdentifier","src":"7996:3:51"},"nativeSrc":"7996:23:51","nodeType":"YulFunctionCall","src":"7996:23:51"},{"kind":"number","nativeSrc":"8021:2:51","nodeType":"YulLiteral","src":"8021:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"7992:3:51","nodeType":"YulIdentifier","src":"7992:3:51"},"nativeSrc":"7992:32:51","nodeType":"YulFunctionCall","src":"7992:32:51"},"nativeSrc":"7989:52:51","nodeType":"YulIf","src":"7989:52:51"},{"nativeSrc":"8050:29:51","nodeType":"YulVariableDeclaration","src":"8050:29:51","value":{"arguments":[{"name":"headStart","nativeSrc":"8069:9:51","nodeType":"YulIdentifier","src":"8069:9:51"}],"functionName":{"name":"mload","nativeSrc":"8063:5:51","nodeType":"YulIdentifier","src":"8063:5:51"},"nativeSrc":"8063:16:51","nodeType":"YulFunctionCall","src":"8063:16:51"},"variables":[{"name":"value","nativeSrc":"8054:5:51","nodeType":"YulTypedName","src":"8054:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8144:5:51","nodeType":"YulIdentifier","src":"8144:5:51"}],"functionName":{"name":"validator_revert_contract_IWitOracleRadonRequestFactory","nativeSrc":"8088:55:51","nodeType":"YulIdentifier","src":"8088:55:51"},"nativeSrc":"8088:62:51","nodeType":"YulFunctionCall","src":"8088:62:51"},"nativeSrc":"8088:62:51","nodeType":"YulExpressionStatement","src":"8088:62:51"},{"nativeSrc":"8159:15:51","nodeType":"YulAssignment","src":"8159:15:51","value":{"name":"value","nativeSrc":"8169:5:51","nodeType":"YulIdentifier","src":"8169:5:51"},"variableNames":[{"name":"value0","nativeSrc":"8159:6:51","nodeType":"YulIdentifier","src":"8159:6:51"}]}]},"name":"abi_decode_tuple_t_contract$_IWitOracleRadonRequestModal_$10761_fromMemory","nativeSrc":"7861:319:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7945:9:51","nodeType":"YulTypedName","src":"7945:9:51","type":""},{"name":"dataEnd","nativeSrc":"7956:7:51","nodeType":"YulTypedName","src":"7956:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7968:6:51","nodeType":"YulTypedName","src":"7968:6:51","type":""}],"src":"7861:319:51"},{"body":{"nativeSrc":"8266:201:51","nodeType":"YulBlock","src":"8266:201:51","statements":[{"body":{"nativeSrc":"8312:16:51","nodeType":"YulBlock","src":"8312:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8321:1:51","nodeType":"YulLiteral","src":"8321:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"8324:1:51","nodeType":"YulLiteral","src":"8324:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8314:6:51","nodeType":"YulIdentifier","src":"8314:6:51"},"nativeSrc":"8314:12:51","nodeType":"YulFunctionCall","src":"8314:12:51"},"nativeSrc":"8314:12:51","nodeType":"YulExpressionStatement","src":"8314:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8287:7:51","nodeType":"YulIdentifier","src":"8287:7:51"},{"name":"headStart","nativeSrc":"8296:9:51","nodeType":"YulIdentifier","src":"8296:9:51"}],"functionName":{"name":"sub","nativeSrc":"8283:3:51","nodeType":"YulIdentifier","src":"8283:3:51"},"nativeSrc":"8283:23:51","nodeType":"YulFunctionCall","src":"8283:23:51"},{"kind":"number","nativeSrc":"8308:2:51","nodeType":"YulLiteral","src":"8308:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"8279:3:51","nodeType":"YulIdentifier","src":"8279:3:51"},"nativeSrc":"8279:32:51","nodeType":"YulFunctionCall","src":"8279:32:51"},"nativeSrc":"8276:52:51","nodeType":"YulIf","src":"8276:52:51"},{"nativeSrc":"8337:29:51","nodeType":"YulVariableDeclaration","src":"8337:29:51","value":{"arguments":[{"name":"headStart","nativeSrc":"8356:9:51","nodeType":"YulIdentifier","src":"8356:9:51"}],"functionName":{"name":"mload","nativeSrc":"8350:5:51","nodeType":"YulIdentifier","src":"8350:5:51"},"nativeSrc":"8350:16:51","nodeType":"YulFunctionCall","src":"8350:16:51"},"variables":[{"name":"value","nativeSrc":"8341:5:51","nodeType":"YulTypedName","src":"8341:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8431:5:51","nodeType":"YulIdentifier","src":"8431:5:51"}],"functionName":{"name":"validator_revert_contract_IWitOracleRadonRequestFactory","nativeSrc":"8375:55:51","nodeType":"YulIdentifier","src":"8375:55:51"},"nativeSrc":"8375:62:51","nodeType":"YulFunctionCall","src":"8375:62:51"},"nativeSrc":"8375:62:51","nodeType":"YulExpressionStatement","src":"8375:62:51"},{"nativeSrc":"8446:15:51","nodeType":"YulAssignment","src":"8446:15:51","value":{"name":"value","nativeSrc":"8456:5:51","nodeType":"YulIdentifier","src":"8456:5:51"},"variableNames":[{"name":"value0","nativeSrc":"8446:6:51","nodeType":"YulIdentifier","src":"8446:6:51"}]}]},"name":"abi_decode_tuple_t_address_fromMemory","nativeSrc":"8185:282:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8232:9:51","nodeType":"YulTypedName","src":"8232:9:51","type":""},{"name":"dataEnd","nativeSrc":"8243:7:51","nodeType":"YulTypedName","src":"8243:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8255:6:51","nodeType":"YulTypedName","src":"8255:6:51","type":""}],"src":"8185:282:51"},{"body":{"nativeSrc":"8685:276:51","nodeType":"YulBlock","src":"8685:276:51","statements":[{"nativeSrc":"8695:27:51","nodeType":"YulAssignment","src":"8695:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"8707:9:51","nodeType":"YulIdentifier","src":"8707:9:51"},{"kind":"number","nativeSrc":"8718:3:51","nodeType":"YulLiteral","src":"8718:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"8703:3:51","nodeType":"YulIdentifier","src":"8703:3:51"},"nativeSrc":"8703:19:51","nodeType":"YulFunctionCall","src":"8703:19:51"},"variableNames":[{"name":"tail","nativeSrc":"8695:4:51","nodeType":"YulIdentifier","src":"8695:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8738:9:51","nodeType":"YulIdentifier","src":"8738:9:51"},{"name":"value0","nativeSrc":"8749:6:51","nodeType":"YulIdentifier","src":"8749:6:51"}],"functionName":{"name":"mstore","nativeSrc":"8731:6:51","nodeType":"YulIdentifier","src":"8731:6:51"},"nativeSrc":"8731:25:51","nodeType":"YulFunctionCall","src":"8731:25:51"},"nativeSrc":"8731:25:51","nodeType":"YulExpressionStatement","src":"8731:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8776:9:51","nodeType":"YulIdentifier","src":"8776:9:51"},{"kind":"number","nativeSrc":"8787:2:51","nodeType":"YulLiteral","src":"8787:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8772:3:51","nodeType":"YulIdentifier","src":"8772:3:51"},"nativeSrc":"8772:18:51","nodeType":"YulFunctionCall","src":"8772:18:51"},{"name":"value1","nativeSrc":"8792:6:51","nodeType":"YulIdentifier","src":"8792:6:51"}],"functionName":{"name":"mstore","nativeSrc":"8765:6:51","nodeType":"YulIdentifier","src":"8765:6:51"},"nativeSrc":"8765:34:51","nodeType":"YulFunctionCall","src":"8765:34:51"},"nativeSrc":"8765:34:51","nodeType":"YulExpressionStatement","src":"8765:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8819:9:51","nodeType":"YulIdentifier","src":"8819:9:51"},{"kind":"number","nativeSrc":"8830:2:51","nodeType":"YulLiteral","src":"8830:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8815:3:51","nodeType":"YulIdentifier","src":"8815:3:51"},"nativeSrc":"8815:18:51","nodeType":"YulFunctionCall","src":"8815:18:51"},{"name":"value2","nativeSrc":"8835:6:51","nodeType":"YulIdentifier","src":"8835:6:51"}],"functionName":{"name":"mstore","nativeSrc":"8808:6:51","nodeType":"YulIdentifier","src":"8808:6:51"},"nativeSrc":"8808:34:51","nodeType":"YulFunctionCall","src":"8808:34:51"},"nativeSrc":"8808:34:51","nodeType":"YulExpressionStatement","src":"8808:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8862:9:51","nodeType":"YulIdentifier","src":"8862:9:51"},{"kind":"number","nativeSrc":"8873:2:51","nodeType":"YulLiteral","src":"8873:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8858:3:51","nodeType":"YulIdentifier","src":"8858:3:51"},"nativeSrc":"8858:18:51","nodeType":"YulFunctionCall","src":"8858:18:51"},{"name":"value3","nativeSrc":"8878:6:51","nodeType":"YulIdentifier","src":"8878:6:51"}],"functionName":{"name":"mstore","nativeSrc":"8851:6:51","nodeType":"YulIdentifier","src":"8851:6:51"},"nativeSrc":"8851:34:51","nodeType":"YulFunctionCall","src":"8851:34:51"},"nativeSrc":"8851:34:51","nodeType":"YulExpressionStatement","src":"8851:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8905:9:51","nodeType":"YulIdentifier","src":"8905:9:51"},{"kind":"number","nativeSrc":"8916:3:51","nodeType":"YulLiteral","src":"8916:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"8901:3:51","nodeType":"YulIdentifier","src":"8901:3:51"},"nativeSrc":"8901:19:51","nodeType":"YulFunctionCall","src":"8901:19:51"},{"arguments":[{"name":"value4","nativeSrc":"8926:6:51","nodeType":"YulIdentifier","src":"8926:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"8942:3:51","nodeType":"YulLiteral","src":"8942:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"8947:1:51","nodeType":"YulLiteral","src":"8947:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"8938:3:51","nodeType":"YulIdentifier","src":"8938:3:51"},"nativeSrc":"8938:11:51","nodeType":"YulFunctionCall","src":"8938:11:51"},{"kind":"number","nativeSrc":"8951:1:51","nodeType":"YulLiteral","src":"8951:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"8934:3:51","nodeType":"YulIdentifier","src":"8934:3:51"},"nativeSrc":"8934:19:51","nodeType":"YulFunctionCall","src":"8934:19:51"}],"functionName":{"name":"and","nativeSrc":"8922:3:51","nodeType":"YulIdentifier","src":"8922:3:51"},"nativeSrc":"8922:32:51","nodeType":"YulFunctionCall","src":"8922:32:51"}],"functionName":{"name":"mstore","nativeSrc":"8894:6:51","nodeType":"YulIdentifier","src":"8894:6:51"},"nativeSrc":"8894:61:51","nodeType":"YulFunctionCall","src":"8894:61:51"},"nativeSrc":"8894:61:51","nodeType":"YulExpressionStatement","src":"8894:61:51"}]},"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","nativeSrc":"8472:489:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8622:9:51","nodeType":"YulTypedName","src":"8622:9:51","type":""},{"name":"value4","nativeSrc":"8633:6:51","nodeType":"YulTypedName","src":"8633:6:51","type":""},{"name":"value3","nativeSrc":"8641:6:51","nodeType":"YulTypedName","src":"8641:6:51","type":""},{"name":"value2","nativeSrc":"8649:6:51","nodeType":"YulTypedName","src":"8649:6:51","type":""},{"name":"value1","nativeSrc":"8657:6:51","nodeType":"YulTypedName","src":"8657:6:51","type":""},{"name":"value0","nativeSrc":"8665:6:51","nodeType":"YulTypedName","src":"8665:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8676:4:51","nodeType":"YulTypedName","src":"8676:4:51","type":""}],"src":"8472:489:51"},{"body":{"nativeSrc":"9140:172:51","nodeType":"YulBlock","src":"9140:172:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9157:9:51","nodeType":"YulIdentifier","src":"9157:9:51"},{"kind":"number","nativeSrc":"9168:2:51","nodeType":"YulLiteral","src":"9168:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"9150:6:51","nodeType":"YulIdentifier","src":"9150:6:51"},"nativeSrc":"9150:21:51","nodeType":"YulFunctionCall","src":"9150:21:51"},"nativeSrc":"9150:21:51","nodeType":"YulExpressionStatement","src":"9150:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9191:9:51","nodeType":"YulIdentifier","src":"9191:9:51"},{"kind":"number","nativeSrc":"9202:2:51","nodeType":"YulLiteral","src":"9202:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9187:3:51","nodeType":"YulIdentifier","src":"9187:3:51"},"nativeSrc":"9187:18:51","nodeType":"YulFunctionCall","src":"9187:18:51"},{"kind":"number","nativeSrc":"9207:2:51","nodeType":"YulLiteral","src":"9207:2:51","type":"","value":"22"}],"functionName":{"name":"mstore","nativeSrc":"9180:6:51","nodeType":"YulIdentifier","src":"9180:6:51"},"nativeSrc":"9180:30:51","nodeType":"YulFunctionCall","src":"9180:30:51"},"nativeSrc":"9180:30:51","nodeType":"YulExpressionStatement","src":"9180:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9230:9:51","nodeType":"YulIdentifier","src":"9230:9:51"},{"kind":"number","nativeSrc":"9241:2:51","nodeType":"YulLiteral","src":"9241:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9226:3:51","nodeType":"YulIdentifier","src":"9226:3:51"},"nativeSrc":"9226:18:51","nodeType":"YulFunctionCall","src":"9226:18:51"},{"hexValue":"4265636833323a20696e76616c6964206c656e677468","kind":"string","nativeSrc":"9246:24:51","nodeType":"YulLiteral","src":"9246:24:51","type":"","value":"Bech32: invalid length"}],"functionName":{"name":"mstore","nativeSrc":"9219:6:51","nodeType":"YulIdentifier","src":"9219:6:51"},"nativeSrc":"9219:52:51","nodeType":"YulFunctionCall","src":"9219:52:51"},"nativeSrc":"9219:52:51","nodeType":"YulExpressionStatement","src":"9219:52:51"},{"nativeSrc":"9280:26:51","nodeType":"YulAssignment","src":"9280:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"9292:9:51","nodeType":"YulIdentifier","src":"9292:9:51"},{"kind":"number","nativeSrc":"9303:2:51","nodeType":"YulLiteral","src":"9303:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9288:3:51","nodeType":"YulIdentifier","src":"9288:3:51"},"nativeSrc":"9288:18:51","nodeType":"YulFunctionCall","src":"9288:18:51"},"variableNames":[{"name":"tail","nativeSrc":"9280:4:51","nodeType":"YulIdentifier","src":"9280:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_804d16c791056572535f8e2036ddf984da7d771fd478e9d9544d867a673dae25__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"8966:346:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9117:9:51","nodeType":"YulTypedName","src":"9117:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9131:4:51","nodeType":"YulTypedName","src":"9131:4:51","type":""}],"src":"8966:346:51"},{"body":{"nativeSrc":"9438:99:51","nodeType":"YulBlock","src":"9438:99:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9455:9:51","nodeType":"YulIdentifier","src":"9455:9:51"},{"kind":"number","nativeSrc":"9466:2:51","nodeType":"YulLiteral","src":"9466:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"9448:6:51","nodeType":"YulIdentifier","src":"9448:6:51"},"nativeSrc":"9448:21:51","nodeType":"YulFunctionCall","src":"9448:21:51"},"nativeSrc":"9448:21:51","nodeType":"YulExpressionStatement","src":"9448:21:51"},{"nativeSrc":"9478:53:51","nodeType":"YulAssignment","src":"9478:53:51","value":{"arguments":[{"name":"value0","nativeSrc":"9504:6:51","nodeType":"YulIdentifier","src":"9504:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"9516:9:51","nodeType":"YulIdentifier","src":"9516:9:51"},{"kind":"number","nativeSrc":"9527:2:51","nodeType":"YulLiteral","src":"9527:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9512:3:51","nodeType":"YulIdentifier","src":"9512:3:51"},"nativeSrc":"9512:18:51","nodeType":"YulFunctionCall","src":"9512:18:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"9486:17:51","nodeType":"YulIdentifier","src":"9486:17:51"},"nativeSrc":"9486:45:51","nodeType":"YulFunctionCall","src":"9486:45:51"},"variableNames":[{"name":"tail","nativeSrc":"9478:4:51","nodeType":"YulIdentifier","src":"9478:4:51"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"9317:220:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9407:9:51","nodeType":"YulTypedName","src":"9407:9:51","type":""},{"name":"value0","nativeSrc":"9418:6:51","nodeType":"YulTypedName","src":"9418:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9429:4:51","nodeType":"YulTypedName","src":"9429:4:51","type":""}],"src":"9317:220:51"},{"body":{"nativeSrc":"9636:203:51","nodeType":"YulBlock","src":"9636:203:51","statements":[{"nativeSrc":"9646:26:51","nodeType":"YulVariableDeclaration","src":"9646:26:51","value":{"arguments":[{"name":"array","nativeSrc":"9666:5:51","nodeType":"YulIdentifier","src":"9666:5:51"}],"functionName":{"name":"mload","nativeSrc":"9660:5:51","nodeType":"YulIdentifier","src":"9660:5:51"},"nativeSrc":"9660:12:51","nodeType":"YulFunctionCall","src":"9660:12:51"},"variables":[{"name":"length","nativeSrc":"9650:6:51","nodeType":"YulTypedName","src":"9650:6:51","type":""}]},{"nativeSrc":"9681:32:51","nodeType":"YulAssignment","src":"9681:32:51","value":{"arguments":[{"arguments":[{"name":"array","nativeSrc":"9700:5:51","nodeType":"YulIdentifier","src":"9700:5:51"},{"kind":"number","nativeSrc":"9707:4:51","nodeType":"YulLiteral","src":"9707:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"9696:3:51","nodeType":"YulIdentifier","src":"9696:3:51"},"nativeSrc":"9696:16:51","nodeType":"YulFunctionCall","src":"9696:16:51"}],"functionName":{"name":"mload","nativeSrc":"9690:5:51","nodeType":"YulIdentifier","src":"9690:5:51"},"nativeSrc":"9690:23:51","nodeType":"YulFunctionCall","src":"9690:23:51"},"variableNames":[{"name":"value","nativeSrc":"9681:5:51","nodeType":"YulIdentifier","src":"9681:5:51"}]},{"body":{"nativeSrc":"9750:83:51","nodeType":"YulBlock","src":"9750:83:51","statements":[{"nativeSrc":"9764:59:51","nodeType":"YulAssignment","src":"9764:59:51","value":{"arguments":[{"name":"value","nativeSrc":"9777:5:51","nodeType":"YulIdentifier","src":"9777:5:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9792:1:51","nodeType":"YulLiteral","src":"9792:1:51","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"9799:4:51","nodeType":"YulLiteral","src":"9799:4:51","type":"","value":"0x20"},{"name":"length","nativeSrc":"9805:6:51","nodeType":"YulIdentifier","src":"9805:6:51"}],"functionName":{"name":"sub","nativeSrc":"9795:3:51","nodeType":"YulIdentifier","src":"9795:3:51"},"nativeSrc":"9795:17:51","nodeType":"YulFunctionCall","src":"9795:17:51"}],"functionName":{"name":"shl","nativeSrc":"9788:3:51","nodeType":"YulIdentifier","src":"9788:3:51"},"nativeSrc":"9788:25:51","nodeType":"YulFunctionCall","src":"9788:25:51"},{"arguments":[{"kind":"number","nativeSrc":"9819:1:51","nodeType":"YulLiteral","src":"9819:1:51","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"9815:3:51","nodeType":"YulIdentifier","src":"9815:3:51"},"nativeSrc":"9815:6:51","nodeType":"YulFunctionCall","src":"9815:6:51"}],"functionName":{"name":"shl","nativeSrc":"9784:3:51","nodeType":"YulIdentifier","src":"9784:3:51"},"nativeSrc":"9784:38:51","nodeType":"YulFunctionCall","src":"9784:38:51"}],"functionName":{"name":"and","nativeSrc":"9773:3:51","nodeType":"YulIdentifier","src":"9773:3:51"},"nativeSrc":"9773:50:51","nodeType":"YulFunctionCall","src":"9773:50:51"},"variableNames":[{"name":"value","nativeSrc":"9764:5:51","nodeType":"YulIdentifier","src":"9764:5:51"}]}]},"condition":{"arguments":[{"name":"length","nativeSrc":"9728:6:51","nodeType":"YulIdentifier","src":"9728:6:51"},{"kind":"number","nativeSrc":"9736:4:51","nodeType":"YulLiteral","src":"9736:4:51","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"9725:2:51","nodeType":"YulIdentifier","src":"9725:2:51"},"nativeSrc":"9725:16:51","nodeType":"YulFunctionCall","src":"9725:16:51"},"nativeSrc":"9722:111:51","nodeType":"YulIf","src":"9722:111:51"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_memory_ptr_to_t_bytes32","nativeSrc":"9542:297:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"9616:5:51","nodeType":"YulTypedName","src":"9616:5:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"9626:5:51","nodeType":"YulTypedName","src":"9626:5:51","type":""}],"src":"9542:297:51"},{"body":{"nativeSrc":"9983:150:51","nodeType":"YulBlock","src":"9983:150:51","statements":[{"nativeSrc":"9993:27:51","nodeType":"YulVariableDeclaration","src":"9993:27:51","value":{"arguments":[{"name":"value0","nativeSrc":"10013:6:51","nodeType":"YulIdentifier","src":"10013:6:51"}],"functionName":{"name":"mload","nativeSrc":"10007:5:51","nodeType":"YulIdentifier","src":"10007:5:51"},"nativeSrc":"10007:13:51","nodeType":"YulFunctionCall","src":"10007:13:51"},"variables":[{"name":"length","nativeSrc":"9997:6:51","nodeType":"YulTypedName","src":"9997:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"10068:6:51","nodeType":"YulIdentifier","src":"10068:6:51"},{"kind":"number","nativeSrc":"10076:4:51","nodeType":"YulLiteral","src":"10076:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"10064:3:51","nodeType":"YulIdentifier","src":"10064:3:51"},"nativeSrc":"10064:17:51","nodeType":"YulFunctionCall","src":"10064:17:51"},{"name":"pos","nativeSrc":"10083:3:51","nodeType":"YulIdentifier","src":"10083:3:51"},{"name":"length","nativeSrc":"10088:6:51","nodeType":"YulIdentifier","src":"10088:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"10029:34:51","nodeType":"YulIdentifier","src":"10029:34:51"},"nativeSrc":"10029:66:51","nodeType":"YulFunctionCall","src":"10029:66:51"},"nativeSrc":"10029:66:51","nodeType":"YulExpressionStatement","src":"10029:66:51"},{"nativeSrc":"10104:23:51","nodeType":"YulAssignment","src":"10104:23:51","value":{"arguments":[{"name":"pos","nativeSrc":"10115:3:51","nodeType":"YulIdentifier","src":"10115:3:51"},{"name":"length","nativeSrc":"10120:6:51","nodeType":"YulIdentifier","src":"10120:6:51"}],"functionName":{"name":"add","nativeSrc":"10111:3:51","nodeType":"YulIdentifier","src":"10111:3:51"},"nativeSrc":"10111:16:51","nodeType":"YulFunctionCall","src":"10111:16:51"},"variableNames":[{"name":"end","nativeSrc":"10104:3:51","nodeType":"YulIdentifier","src":"10104:3:51"}]}]},"name":"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"9844:289:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"9959:3:51","nodeType":"YulTypedName","src":"9959:3:51","type":""},{"name":"value0","nativeSrc":"9964:6:51","nodeType":"YulTypedName","src":"9964:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"9975:3:51","nodeType":"YulTypedName","src":"9975:3:51","type":""}],"src":"9844:289:51"},{"body":{"nativeSrc":"10312:179:51","nodeType":"YulBlock","src":"10312:179:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10329:9:51","nodeType":"YulIdentifier","src":"10329:9:51"},{"kind":"number","nativeSrc":"10340:2:51","nodeType":"YulLiteral","src":"10340:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"10322:6:51","nodeType":"YulIdentifier","src":"10322:6:51"},"nativeSrc":"10322:21:51","nodeType":"YulFunctionCall","src":"10322:21:51"},"nativeSrc":"10322:21:51","nodeType":"YulExpressionStatement","src":"10322:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10363:9:51","nodeType":"YulIdentifier","src":"10363:9:51"},{"kind":"number","nativeSrc":"10374:2:51","nodeType":"YulLiteral","src":"10374:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10359:3:51","nodeType":"YulIdentifier","src":"10359:3:51"},"nativeSrc":"10359:18:51","nodeType":"YulFunctionCall","src":"10359:18:51"},{"kind":"number","nativeSrc":"10379:2:51","nodeType":"YulLiteral","src":"10379:2:51","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"10352:6:51","nodeType":"YulIdentifier","src":"10352:6:51"},"nativeSrc":"10352:30:51","nodeType":"YulFunctionCall","src":"10352:30:51"},"nativeSrc":"10352:30:51","nodeType":"YulExpressionStatement","src":"10352:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10402:9:51","nodeType":"YulIdentifier","src":"10402:9:51"},{"kind":"number","nativeSrc":"10413:2:51","nodeType":"YulLiteral","src":"10413:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10398:3:51","nodeType":"YulIdentifier","src":"10398:3:51"},"nativeSrc":"10398:18:51","nodeType":"YulFunctionCall","src":"10398:18:51"},{"hexValue":"4265636833323a20696e76616c696420737472696e67206c656e677468","kind":"string","nativeSrc":"10418:31:51","nodeType":"YulLiteral","src":"10418:31:51","type":"","value":"Bech32: invalid string length"}],"functionName":{"name":"mstore","nativeSrc":"10391:6:51","nodeType":"YulIdentifier","src":"10391:6:51"},"nativeSrc":"10391:59:51","nodeType":"YulFunctionCall","src":"10391:59:51"},"nativeSrc":"10391:59:51","nodeType":"YulExpressionStatement","src":"10391:59:51"},{"nativeSrc":"10459:26:51","nodeType":"YulAssignment","src":"10459:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"10471:9:51","nodeType":"YulIdentifier","src":"10471:9:51"},{"kind":"number","nativeSrc":"10482:2:51","nodeType":"YulLiteral","src":"10482:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"10467:3:51","nodeType":"YulIdentifier","src":"10467:3:51"},"nativeSrc":"10467:18:51","nodeType":"YulFunctionCall","src":"10467:18:51"},"variableNames":[{"name":"tail","nativeSrc":"10459:4:51","nodeType":"YulIdentifier","src":"10459:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_fbafcdcf532b64f842ae9e16c3ebe22680908b0bd1d2499a181aa780163d1903__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"10138:353:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10289:9:51","nodeType":"YulTypedName","src":"10289:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10303:4:51","nodeType":"YulTypedName","src":"10303:4:51","type":""}],"src":"10138:353:51"},{"body":{"nativeSrc":"10670:168:51","nodeType":"YulBlock","src":"10670:168:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10687:9:51","nodeType":"YulIdentifier","src":"10687:9:51"},{"kind":"number","nativeSrc":"10698:2:51","nodeType":"YulLiteral","src":"10698:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"10680:6:51","nodeType":"YulIdentifier","src":"10680:6:51"},"nativeSrc":"10680:21:51","nodeType":"YulFunctionCall","src":"10680:21:51"},"nativeSrc":"10680:21:51","nodeType":"YulExpressionStatement","src":"10680:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10721:9:51","nodeType":"YulIdentifier","src":"10721:9:51"},{"kind":"number","nativeSrc":"10732:2:51","nodeType":"YulLiteral","src":"10732:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10717:3:51","nodeType":"YulIdentifier","src":"10717:3:51"},"nativeSrc":"10717:18:51","nodeType":"YulFunctionCall","src":"10717:18:51"},{"kind":"number","nativeSrc":"10737:2:51","nodeType":"YulLiteral","src":"10737:2:51","type":"","value":"18"}],"functionName":{"name":"mstore","nativeSrc":"10710:6:51","nodeType":"YulIdentifier","src":"10710:6:51"},"nativeSrc":"10710:30:51","nodeType":"YulFunctionCall","src":"10710:30:51"},"nativeSrc":"10710:30:51","nodeType":"YulExpressionStatement","src":"10710:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10760:9:51","nodeType":"YulIdentifier","src":"10760:9:51"},{"kind":"number","nativeSrc":"10771:2:51","nodeType":"YulLiteral","src":"10771:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10756:3:51","nodeType":"YulIdentifier","src":"10756:3:51"},"nativeSrc":"10756:18:51","nodeType":"YulFunctionCall","src":"10756:18:51"},{"hexValue":"4265636833323a2077726f6e672063686172","kind":"string","nativeSrc":"10776:20:51","nodeType":"YulLiteral","src":"10776:20:51","type":"","value":"Bech32: wrong char"}],"functionName":{"name":"mstore","nativeSrc":"10749:6:51","nodeType":"YulIdentifier","src":"10749:6:51"},"nativeSrc":"10749:48:51","nodeType":"YulFunctionCall","src":"10749:48:51"},"nativeSrc":"10749:48:51","nodeType":"YulExpressionStatement","src":"10749:48:51"},{"nativeSrc":"10806:26:51","nodeType":"YulAssignment","src":"10806:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"10818:9:51","nodeType":"YulIdentifier","src":"10818:9:51"},{"kind":"number","nativeSrc":"10829:2:51","nodeType":"YulLiteral","src":"10829:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"10814:3:51","nodeType":"YulIdentifier","src":"10814:3:51"},"nativeSrc":"10814:18:51","nodeType":"YulFunctionCall","src":"10814:18:51"},"variableNames":[{"name":"tail","nativeSrc":"10806:4:51","nodeType":"YulIdentifier","src":"10806:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_53dc06d622ffc4876df233985214fd280a387287ffe9d0e519654cae6b62b983__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"10496:342:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10647:9:51","nodeType":"YulTypedName","src":"10647:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10661:4:51","nodeType":"YulTypedName","src":"10661:4:51","type":""}],"src":"10496:342:51"},{"body":{"nativeSrc":"11017:172:51","nodeType":"YulBlock","src":"11017:172:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11034:9:51","nodeType":"YulIdentifier","src":"11034:9:51"},{"kind":"number","nativeSrc":"11045:2:51","nodeType":"YulLiteral","src":"11045:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"11027:6:51","nodeType":"YulIdentifier","src":"11027:6:51"},"nativeSrc":"11027:21:51","nodeType":"YulFunctionCall","src":"11027:21:51"},"nativeSrc":"11027:21:51","nodeType":"YulExpressionStatement","src":"11027:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11068:9:51","nodeType":"YulIdentifier","src":"11068:9:51"},{"kind":"number","nativeSrc":"11079:2:51","nodeType":"YulLiteral","src":"11079:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11064:3:51","nodeType":"YulIdentifier","src":"11064:3:51"},"nativeSrc":"11064:18:51","nodeType":"YulFunctionCall","src":"11064:18:51"},{"kind":"number","nativeSrc":"11084:2:51","nodeType":"YulLiteral","src":"11084:2:51","type":"","value":"22"}],"functionName":{"name":"mstore","nativeSrc":"11057:6:51","nodeType":"YulIdentifier","src":"11057:6:51"},"nativeSrc":"11057:30:51","nodeType":"YulFunctionCall","src":"11057:30:51"},"nativeSrc":"11057:30:51","nodeType":"YulExpressionStatement","src":"11057:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11107:9:51","nodeType":"YulIdentifier","src":"11107:9:51"},{"kind":"number","nativeSrc":"11118:2:51","nodeType":"YulLiteral","src":"11118:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11103:3:51","nodeType":"YulIdentifier","src":"11103:3:51"},"nativeSrc":"11103:18:51","nodeType":"YulFunctionCall","src":"11103:18:51"},{"hexValue":"4265636833323a2077726f6e6720706f73206f662031","kind":"string","nativeSrc":"11123:24:51","nodeType":"YulLiteral","src":"11123:24:51","type":"","value":"Bech32: wrong pos of 1"}],"functionName":{"name":"mstore","nativeSrc":"11096:6:51","nodeType":"YulIdentifier","src":"11096:6:51"},"nativeSrc":"11096:52:51","nodeType":"YulFunctionCall","src":"11096:52:51"},"nativeSrc":"11096:52:51","nodeType":"YulExpressionStatement","src":"11096:52:51"},{"nativeSrc":"11157:26:51","nodeType":"YulAssignment","src":"11157:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"11169:9:51","nodeType":"YulIdentifier","src":"11169:9:51"},{"kind":"number","nativeSrc":"11180:2:51","nodeType":"YulLiteral","src":"11180:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11165:3:51","nodeType":"YulIdentifier","src":"11165:3:51"},"nativeSrc":"11165:18:51","nodeType":"YulFunctionCall","src":"11165:18:51"},"variableNames":[{"name":"tail","nativeSrc":"11157:4:51","nodeType":"YulIdentifier","src":"11157:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_0d3bbdc5952ddfc25bafa340466db68d17d1faf42dd154469a20b429a3742415__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"10843:346:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10994:9:51","nodeType":"YulTypedName","src":"10994:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11008:4:51","nodeType":"YulTypedName","src":"11008:4:51","type":""}],"src":"10843:346:51"},{"body":{"nativeSrc":"11368:178:51","nodeType":"YulBlock","src":"11368:178:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11385:9:51","nodeType":"YulIdentifier","src":"11385:9:51"},{"kind":"number","nativeSrc":"11396:2:51","nodeType":"YulLiteral","src":"11396:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"11378:6:51","nodeType":"YulIdentifier","src":"11378:6:51"},"nativeSrc":"11378:21:51","nodeType":"YulFunctionCall","src":"11378:21:51"},"nativeSrc":"11378:21:51","nodeType":"YulExpressionStatement","src":"11378:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11419:9:51","nodeType":"YulIdentifier","src":"11419:9:51"},{"kind":"number","nativeSrc":"11430:2:51","nodeType":"YulLiteral","src":"11430:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11415:3:51","nodeType":"YulIdentifier","src":"11415:3:51"},"nativeSrc":"11415:18:51","nodeType":"YulFunctionCall","src":"11415:18:51"},{"kind":"number","nativeSrc":"11435:2:51","nodeType":"YulLiteral","src":"11435:2:51","type":"","value":"28"}],"functionName":{"name":"mstore","nativeSrc":"11408:6:51","nodeType":"YulIdentifier","src":"11408:6:51"},"nativeSrc":"11408:30:51","nodeType":"YulFunctionCall","src":"11408:30:51"},"nativeSrc":"11408:30:51","nodeType":"YulExpressionStatement","src":"11408:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11458:9:51","nodeType":"YulIdentifier","src":"11458:9:51"},{"kind":"number","nativeSrc":"11469:2:51","nodeType":"YulLiteral","src":"11469:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11454:3:51","nodeType":"YulIdentifier","src":"11454:3:51"},"nativeSrc":"11454:18:51","nodeType":"YulFunctionCall","src":"11454:18:51"},{"hexValue":"4265636833323a2062797465206e6f7420696e20616c706861626574","kind":"string","nativeSrc":"11474:30:51","nodeType":"YulLiteral","src":"11474:30:51","type":"","value":"Bech32: byte not in alphabet"}],"functionName":{"name":"mstore","nativeSrc":"11447:6:51","nodeType":"YulIdentifier","src":"11447:6:51"},"nativeSrc":"11447:58:51","nodeType":"YulFunctionCall","src":"11447:58:51"},"nativeSrc":"11447:58:51","nodeType":"YulExpressionStatement","src":"11447:58:51"},{"nativeSrc":"11514:26:51","nodeType":"YulAssignment","src":"11514:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"11526:9:51","nodeType":"YulIdentifier","src":"11526:9:51"},{"kind":"number","nativeSrc":"11537:2:51","nodeType":"YulLiteral","src":"11537:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11522:3:51","nodeType":"YulIdentifier","src":"11522:3:51"},"nativeSrc":"11522:18:51","nodeType":"YulFunctionCall","src":"11522:18:51"},"variableNames":[{"name":"tail","nativeSrc":"11514:4:51","nodeType":"YulIdentifier","src":"11514:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_6a2cf2966ea32b348a1a2f630ac8faca290d4a2ab07de89caf8dae5717c1d46d__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"11194:352:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11345:9:51","nodeType":"YulTypedName","src":"11345:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11359:4:51","nodeType":"YulTypedName","src":"11359:4:51","type":""}],"src":"11194:352:51"},{"body":{"nativeSrc":"11725:172:51","nodeType":"YulBlock","src":"11725:172:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11742:9:51","nodeType":"YulIdentifier","src":"11742:9:51"},{"kind":"number","nativeSrc":"11753:2:51","nodeType":"YulLiteral","src":"11753:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"11735:6:51","nodeType":"YulIdentifier","src":"11735:6:51"},"nativeSrc":"11735:21:51","nodeType":"YulFunctionCall","src":"11735:21:51"},"nativeSrc":"11735:21:51","nodeType":"YulExpressionStatement","src":"11735:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11776:9:51","nodeType":"YulIdentifier","src":"11776:9:51"},{"kind":"number","nativeSrc":"11787:2:51","nodeType":"YulLiteral","src":"11787:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11772:3:51","nodeType":"YulIdentifier","src":"11772:3:51"},"nativeSrc":"11772:18:51","nodeType":"YulFunctionCall","src":"11772:18:51"},{"kind":"number","nativeSrc":"11792:2:51","nodeType":"YulLiteral","src":"11792:2:51","type":"","value":"22"}],"functionName":{"name":"mstore","nativeSrc":"11765:6:51","nodeType":"YulIdentifier","src":"11765:6:51"},"nativeSrc":"11765:30:51","nodeType":"YulFunctionCall","src":"11765:30:51"},"nativeSrc":"11765:30:51","nodeType":"YulExpressionStatement","src":"11765:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11815:9:51","nodeType":"YulIdentifier","src":"11815:9:51"},{"kind":"number","nativeSrc":"11826:2:51","nodeType":"YulLiteral","src":"11826:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11811:3:51","nodeType":"YulIdentifier","src":"11811:3:51"},"nativeSrc":"11811:18:51","nodeType":"YulFunctionCall","src":"11811:18:51"},{"hexValue":"4265636833323a2077726f6e6720636865636b73756d","kind":"string","nativeSrc":"11831:24:51","nodeType":"YulLiteral","src":"11831:24:51","type":"","value":"Bech32: wrong checksum"}],"functionName":{"name":"mstore","nativeSrc":"11804:6:51","nodeType":"YulIdentifier","src":"11804:6:51"},"nativeSrc":"11804:52:51","nodeType":"YulFunctionCall","src":"11804:52:51"},"nativeSrc":"11804:52:51","nodeType":"YulExpressionStatement","src":"11804:52:51"},{"nativeSrc":"11865:26:51","nodeType":"YulAssignment","src":"11865:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"11877:9:51","nodeType":"YulIdentifier","src":"11877:9:51"},{"kind":"number","nativeSrc":"11888:2:51","nodeType":"YulLiteral","src":"11888:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11873:3:51","nodeType":"YulIdentifier","src":"11873:3:51"},"nativeSrc":"11873:18:51","nodeType":"YulFunctionCall","src":"11873:18:51"},"variableNames":[{"name":"tail","nativeSrc":"11865:4:51","nodeType":"YulIdentifier","src":"11865:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_8925955b412698449f23fd1db0ca5278ae982350c0d6a43502b6059204e31edc__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"11551:346:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11702:9:51","nodeType":"YulTypedName","src":"11702:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11716:4:51","nodeType":"YulTypedName","src":"11716:4:51","type":""}],"src":"11551:346:51"},{"body":{"nativeSrc":"12076:170:51","nodeType":"YulBlock","src":"12076:170:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12093:9:51","nodeType":"YulIdentifier","src":"12093:9:51"},{"kind":"number","nativeSrc":"12104:2:51","nodeType":"YulLiteral","src":"12104:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"12086:6:51","nodeType":"YulIdentifier","src":"12086:6:51"},"nativeSrc":"12086:21:51","nodeType":"YulFunctionCall","src":"12086:21:51"},"nativeSrc":"12086:21:51","nodeType":"YulExpressionStatement","src":"12086:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12127:9:51","nodeType":"YulIdentifier","src":"12127:9:51"},{"kind":"number","nativeSrc":"12138:2:51","nodeType":"YulLiteral","src":"12138:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12123:3:51","nodeType":"YulIdentifier","src":"12123:3:51"},"nativeSrc":"12123:18:51","nodeType":"YulFunctionCall","src":"12123:18:51"},{"kind":"number","nativeSrc":"12143:2:51","nodeType":"YulLiteral","src":"12143:2:51","type":"","value":"20"}],"functionName":{"name":"mstore","nativeSrc":"12116:6:51","nodeType":"YulIdentifier","src":"12116:6:51"},"nativeSrc":"12116:30:51","nodeType":"YulFunctionCall","src":"12116:30:51"},"nativeSrc":"12116:30:51","nodeType":"YulExpressionStatement","src":"12116:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12166:9:51","nodeType":"YulIdentifier","src":"12166:9:51"},{"kind":"number","nativeSrc":"12177:2:51","nodeType":"YulLiteral","src":"12177:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12162:3:51","nodeType":"YulIdentifier","src":"12162:3:51"},"nativeSrc":"12162:18:51","nodeType":"YulFunctionCall","src":"12162:18:51"},{"hexValue":"4265636833323a20687270206d69736d61746368","kind":"string","nativeSrc":"12182:22:51","nodeType":"YulLiteral","src":"12182:22:51","type":"","value":"Bech32: hrp mismatch"}],"functionName":{"name":"mstore","nativeSrc":"12155:6:51","nodeType":"YulIdentifier","src":"12155:6:51"},"nativeSrc":"12155:50:51","nodeType":"YulFunctionCall","src":"12155:50:51"},"nativeSrc":"12155:50:51","nodeType":"YulExpressionStatement","src":"12155:50:51"},{"nativeSrc":"12214:26:51","nodeType":"YulAssignment","src":"12214:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"12226:9:51","nodeType":"YulIdentifier","src":"12226:9:51"},{"kind":"number","nativeSrc":"12237:2:51","nodeType":"YulLiteral","src":"12237:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12222:3:51","nodeType":"YulIdentifier","src":"12222:3:51"},"nativeSrc":"12222:18:51","nodeType":"YulFunctionCall","src":"12222:18:51"},"variableNames":[{"name":"tail","nativeSrc":"12214:4:51","nodeType":"YulIdentifier","src":"12214:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_cc3b15adba6692e0236e3ef91314dd5f2f6b9fc7d497a8d9fca03d4d32ef0086__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"11902:344:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12053:9:51","nodeType":"YulTypedName","src":"12053:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12067:4:51","nodeType":"YulTypedName","src":"12067:4:51","type":""}],"src":"11902:344:51"},{"body":{"nativeSrc":"12425:177:51","nodeType":"YulBlock","src":"12425:177:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12442:9:51","nodeType":"YulIdentifier","src":"12442:9:51"},{"kind":"number","nativeSrc":"12453:2:51","nodeType":"YulLiteral","src":"12453:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"12435:6:51","nodeType":"YulIdentifier","src":"12435:6:51"},"nativeSrc":"12435:21:51","nodeType":"YulFunctionCall","src":"12435:21:51"},"nativeSrc":"12435:21:51","nodeType":"YulExpressionStatement","src":"12435:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12476:9:51","nodeType":"YulIdentifier","src":"12476:9:51"},{"kind":"number","nativeSrc":"12487:2:51","nodeType":"YulLiteral","src":"12487:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12472:3:51","nodeType":"YulIdentifier","src":"12472:3:51"},"nativeSrc":"12472:18:51","nodeType":"YulFunctionCall","src":"12472:18:51"},{"kind":"number","nativeSrc":"12492:2:51","nodeType":"YulLiteral","src":"12492:2:51","type":"","value":"27"}],"functionName":{"name":"mstore","nativeSrc":"12465:6:51","nodeType":"YulIdentifier","src":"12465:6:51"},"nativeSrc":"12465:30:51","nodeType":"YulFunctionCall","src":"12465:30:51"},"nativeSrc":"12465:30:51","nodeType":"YulExpressionStatement","src":"12465:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12515:9:51","nodeType":"YulIdentifier","src":"12515:9:51"},{"kind":"number","nativeSrc":"12526:2:51","nodeType":"YulLiteral","src":"12526:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12511:3:51","nodeType":"YulIdentifier","src":"12511:3:51"},"nativeSrc":"12511:18:51","nodeType":"YulFunctionCall","src":"12511:18:51"},{"hexValue":"4265636833323a20696e76616c69642064617461206c656e677468","kind":"string","nativeSrc":"12531:29:51","nodeType":"YulLiteral","src":"12531:29:51","type":"","value":"Bech32: invalid data length"}],"functionName":{"name":"mstore","nativeSrc":"12504:6:51","nodeType":"YulIdentifier","src":"12504:6:51"},"nativeSrc":"12504:57:51","nodeType":"YulFunctionCall","src":"12504:57:51"},"nativeSrc":"12504:57:51","nodeType":"YulExpressionStatement","src":"12504:57:51"},{"nativeSrc":"12570:26:51","nodeType":"YulAssignment","src":"12570:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"12582:9:51","nodeType":"YulIdentifier","src":"12582:9:51"},{"kind":"number","nativeSrc":"12593:2:51","nodeType":"YulLiteral","src":"12593:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12578:3:51","nodeType":"YulIdentifier","src":"12578:3:51"},"nativeSrc":"12578:18:51","nodeType":"YulFunctionCall","src":"12578:18:51"},"variableNames":[{"name":"tail","nativeSrc":"12570:4:51","nodeType":"YulIdentifier","src":"12570:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_e61d0d29c666259da088b9a4a3c73f42db070a7c6e4ed8d249944652ec7c2cf8__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"12251:351:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12402:9:51","nodeType":"YulTypedName","src":"12402:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12416:4:51","nodeType":"YulTypedName","src":"12416:4:51","type":""}],"src":"12251:351:51"},{"body":{"nativeSrc":"12656:176:51","nodeType":"YulBlock","src":"12656:176:51","statements":[{"nativeSrc":"12666:17:51","nodeType":"YulAssignment","src":"12666:17:51","value":{"arguments":[{"name":"x","nativeSrc":"12678:1:51","nodeType":"YulIdentifier","src":"12678:1:51"},{"name":"y","nativeSrc":"12681:1:51","nodeType":"YulIdentifier","src":"12681:1:51"}],"functionName":{"name":"sub","nativeSrc":"12674:3:51","nodeType":"YulIdentifier","src":"12674:3:51"},"nativeSrc":"12674:9:51","nodeType":"YulFunctionCall","src":"12674:9:51"},"variableNames":[{"name":"diff","nativeSrc":"12666:4:51","nodeType":"YulIdentifier","src":"12666:4:51"}]},{"body":{"nativeSrc":"12715:111:51","nodeType":"YulBlock","src":"12715:111:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12736:1:51","nodeType":"YulLiteral","src":"12736:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"12743:3:51","nodeType":"YulLiteral","src":"12743:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"12748:10:51","nodeType":"YulLiteral","src":"12748:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"12739:3:51","nodeType":"YulIdentifier","src":"12739:3:51"},"nativeSrc":"12739:20:51","nodeType":"YulFunctionCall","src":"12739:20:51"}],"functionName":{"name":"mstore","nativeSrc":"12729:6:51","nodeType":"YulIdentifier","src":"12729:6:51"},"nativeSrc":"12729:31:51","nodeType":"YulFunctionCall","src":"12729:31:51"},"nativeSrc":"12729:31:51","nodeType":"YulExpressionStatement","src":"12729:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12780:1:51","nodeType":"YulLiteral","src":"12780:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"12783:4:51","nodeType":"YulLiteral","src":"12783:4:51","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"12773:6:51","nodeType":"YulIdentifier","src":"12773:6:51"},"nativeSrc":"12773:15:51","nodeType":"YulFunctionCall","src":"12773:15:51"},"nativeSrc":"12773:15:51","nodeType":"YulExpressionStatement","src":"12773:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12808:1:51","nodeType":"YulLiteral","src":"12808:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"12811:4:51","nodeType":"YulLiteral","src":"12811:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"12801:6:51","nodeType":"YulIdentifier","src":"12801:6:51"},"nativeSrc":"12801:15:51","nodeType":"YulFunctionCall","src":"12801:15:51"},"nativeSrc":"12801:15:51","nodeType":"YulExpressionStatement","src":"12801:15:51"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"12698:4:51","nodeType":"YulIdentifier","src":"12698:4:51"},{"name":"x","nativeSrc":"12704:1:51","nodeType":"YulIdentifier","src":"12704:1:51"}],"functionName":{"name":"gt","nativeSrc":"12695:2:51","nodeType":"YulIdentifier","src":"12695:2:51"},"nativeSrc":"12695:11:51","nodeType":"YulFunctionCall","src":"12695:11:51"},"nativeSrc":"12692:134:51","nodeType":"YulIf","src":"12692:134:51"}]},"name":"checked_sub_t_uint256","nativeSrc":"12607:225:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"12638:1:51","nodeType":"YulTypedName","src":"12638:1:51","type":""},{"name":"y","nativeSrc":"12641:1:51","nodeType":"YulTypedName","src":"12641:1:51","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"12647:4:51","nodeType":"YulTypedName","src":"12647:4:51","type":""}],"src":"12607:225:51"},{"body":{"nativeSrc":"13011:244:51","nodeType":"YulBlock","src":"13011:244:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13028:9:51","nodeType":"YulIdentifier","src":"13028:9:51"},{"kind":"number","nativeSrc":"13039:2:51","nodeType":"YulLiteral","src":"13039:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13021:6:51","nodeType":"YulIdentifier","src":"13021:6:51"},"nativeSrc":"13021:21:51","nodeType":"YulFunctionCall","src":"13021:21:51"},"nativeSrc":"13021:21:51","nodeType":"YulExpressionStatement","src":"13021:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13062:9:51","nodeType":"YulIdentifier","src":"13062:9:51"},{"kind":"number","nativeSrc":"13073:2:51","nodeType":"YulLiteral","src":"13073:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13058:3:51","nodeType":"YulIdentifier","src":"13058:3:51"},"nativeSrc":"13058:18:51","nodeType":"YulFunctionCall","src":"13058:18:51"},{"kind":"number","nativeSrc":"13078:2:51","nodeType":"YulLiteral","src":"13078:2:51","type":"","value":"54"}],"functionName":{"name":"mstore","nativeSrc":"13051:6:51","nodeType":"YulIdentifier","src":"13051:6:51"},"nativeSrc":"13051:30:51","nodeType":"YulFunctionCall","src":"13051:30:51"},"nativeSrc":"13051:30:51","nodeType":"YulExpressionStatement","src":"13051:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13101:9:51","nodeType":"YulIdentifier","src":"13101:9:51"},{"kind":"number","nativeSrc":"13112:2:51","nodeType":"YulLiteral","src":"13112:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13097:3:51","nodeType":"YulIdentifier","src":"13097:3:51"},"nativeSrc":"13097:18:51","nodeType":"YulFunctionCall","src":"13097:18:51"},{"hexValue":"4265636833323a2076616c7565206d757374206265206e6f6e2d6e6567617469","kind":"string","nativeSrc":"13117:34:51","nodeType":"YulLiteral","src":"13117:34:51","type":"","value":"Bech32: value must be non-negati"}],"functionName":{"name":"mstore","nativeSrc":"13090:6:51","nodeType":"YulIdentifier","src":"13090:6:51"},"nativeSrc":"13090:62:51","nodeType":"YulFunctionCall","src":"13090:62:51"},"nativeSrc":"13090:62:51","nodeType":"YulExpressionStatement","src":"13090:62:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13172:9:51","nodeType":"YulIdentifier","src":"13172:9:51"},{"kind":"number","nativeSrc":"13183:2:51","nodeType":"YulLiteral","src":"13183:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13168:3:51","nodeType":"YulIdentifier","src":"13168:3:51"},"nativeSrc":"13168:18:51","nodeType":"YulFunctionCall","src":"13168:18:51"},{"hexValue":"766520616e642066697420696e2066726f6d62697473","kind":"string","nativeSrc":"13188:24:51","nodeType":"YulLiteral","src":"13188:24:51","type":"","value":"ve and fit in frombits"}],"functionName":{"name":"mstore","nativeSrc":"13161:6:51","nodeType":"YulIdentifier","src":"13161:6:51"},"nativeSrc":"13161:52:51","nodeType":"YulFunctionCall","src":"13161:52:51"},"nativeSrc":"13161:52:51","nodeType":"YulExpressionStatement","src":"13161:52:51"},{"nativeSrc":"13222:27:51","nodeType":"YulAssignment","src":"13222:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"13234:9:51","nodeType":"YulIdentifier","src":"13234:9:51"},{"kind":"number","nativeSrc":"13245:3:51","nodeType":"YulLiteral","src":"13245:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"13230:3:51","nodeType":"YulIdentifier","src":"13230:3:51"},"nativeSrc":"13230:19:51","nodeType":"YulFunctionCall","src":"13230:19:51"},"variableNames":[{"name":"tail","nativeSrc":"13222:4:51","nodeType":"YulIdentifier","src":"13222:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_c3d844aee3a847f0e164a11470dfaf03e0661e60bf8b0718b82a475dc4773582__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"12837:418:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12988:9:51","nodeType":"YulTypedName","src":"12988:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13002:4:51","nodeType":"YulTypedName","src":"13002:4:51","type":""}],"src":"12837:418:51"},{"body":{"nativeSrc":"13423:235:51","nodeType":"YulBlock","src":"13423:235:51","statements":[{"nativeSrc":"13433:27:51","nodeType":"YulVariableDeclaration","src":"13433:27:51","value":{"arguments":[{"name":"value0","nativeSrc":"13453:6:51","nodeType":"YulIdentifier","src":"13453:6:51"}],"functionName":{"name":"mload","nativeSrc":"13447:5:51","nodeType":"YulIdentifier","src":"13447:5:51"},"nativeSrc":"13447:13:51","nodeType":"YulFunctionCall","src":"13447:13:51"},"variables":[{"name":"length","nativeSrc":"13437:6:51","nodeType":"YulTypedName","src":"13437:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"13508:6:51","nodeType":"YulIdentifier","src":"13508:6:51"},{"kind":"number","nativeSrc":"13516:4:51","nodeType":"YulLiteral","src":"13516:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"13504:3:51","nodeType":"YulIdentifier","src":"13504:3:51"},"nativeSrc":"13504:17:51","nodeType":"YulFunctionCall","src":"13504:17:51"},{"name":"pos","nativeSrc":"13523:3:51","nodeType":"YulIdentifier","src":"13523:3:51"},{"name":"length","nativeSrc":"13528:6:51","nodeType":"YulIdentifier","src":"13528:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"13469:34:51","nodeType":"YulIdentifier","src":"13469:34:51"},"nativeSrc":"13469:66:51","nodeType":"YulFunctionCall","src":"13469:66:51"},"nativeSrc":"13469:66:51","nodeType":"YulExpressionStatement","src":"13469:66:51"},{"nativeSrc":"13544:29:51","nodeType":"YulVariableDeclaration","src":"13544:29:51","value":{"arguments":[{"name":"pos","nativeSrc":"13561:3:51","nodeType":"YulIdentifier","src":"13561:3:51"},{"name":"length","nativeSrc":"13566:6:51","nodeType":"YulIdentifier","src":"13566:6:51"}],"functionName":{"name":"add","nativeSrc":"13557:3:51","nodeType":"YulIdentifier","src":"13557:3:51"},"nativeSrc":"13557:16:51","nodeType":"YulFunctionCall","src":"13557:16:51"},"variables":[{"name":"end_1","nativeSrc":"13548:5:51","nodeType":"YulTypedName","src":"13548:5:51","type":""}]},{"expression":{"arguments":[{"name":"end_1","nativeSrc":"13589:5:51","nodeType":"YulIdentifier","src":"13589:5:51"},{"arguments":[{"name":"value1","nativeSrc":"13600:6:51","nodeType":"YulIdentifier","src":"13600:6:51"},{"arguments":[{"kind":"number","nativeSrc":"13612:3:51","nodeType":"YulLiteral","src":"13612:3:51","type":"","value":"248"},{"kind":"number","nativeSrc":"13617:3:51","nodeType":"YulLiteral","src":"13617:3:51","type":"","value":"255"}],"functionName":{"name":"shl","nativeSrc":"13608:3:51","nodeType":"YulIdentifier","src":"13608:3:51"},"nativeSrc":"13608:13:51","nodeType":"YulFunctionCall","src":"13608:13:51"}],"functionName":{"name":"and","nativeSrc":"13596:3:51","nodeType":"YulIdentifier","src":"13596:3:51"},"nativeSrc":"13596:26:51","nodeType":"YulFunctionCall","src":"13596:26:51"}],"functionName":{"name":"mstore","nativeSrc":"13582:6:51","nodeType":"YulIdentifier","src":"13582:6:51"},"nativeSrc":"13582:41:51","nodeType":"YulFunctionCall","src":"13582:41:51"},"nativeSrc":"13582:41:51","nodeType":"YulExpressionStatement","src":"13582:41:51"},{"nativeSrc":"13632:20:51","nodeType":"YulAssignment","src":"13632:20:51","value":{"arguments":[{"name":"end_1","nativeSrc":"13643:5:51","nodeType":"YulIdentifier","src":"13643:5:51"},{"kind":"number","nativeSrc":"13650:1:51","nodeType":"YulLiteral","src":"13650:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"13639:3:51","nodeType":"YulIdentifier","src":"13639:3:51"},"nativeSrc":"13639:13:51","nodeType":"YulFunctionCall","src":"13639:13:51"},"variableNames":[{"name":"end","nativeSrc":"13632:3:51","nodeType":"YulIdentifier","src":"13632:3:51"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr_t_bytes1__to_t_bytes_memory_ptr_t_bytes1__nonPadded_inplace_fromStack_reversed","nativeSrc":"13260:398:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"13391:3:51","nodeType":"YulTypedName","src":"13391:3:51","type":""},{"name":"value1","nativeSrc":"13396:6:51","nodeType":"YulTypedName","src":"13396:6:51","type":""},{"name":"value0","nativeSrc":"13404:6:51","nodeType":"YulTypedName","src":"13404:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"13415:3:51","nodeType":"YulTypedName","src":"13415:3:51","type":""}],"src":"13260:398:51"},{"body":{"nativeSrc":"13837:227:51","nodeType":"YulBlock","src":"13837:227:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13854:9:51","nodeType":"YulIdentifier","src":"13854:9:51"},{"kind":"number","nativeSrc":"13865:2:51","nodeType":"YulLiteral","src":"13865:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13847:6:51","nodeType":"YulIdentifier","src":"13847:6:51"},"nativeSrc":"13847:21:51","nodeType":"YulFunctionCall","src":"13847:21:51"},"nativeSrc":"13847:21:51","nodeType":"YulExpressionStatement","src":"13847:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13888:9:51","nodeType":"YulIdentifier","src":"13888:9:51"},{"kind":"number","nativeSrc":"13899:2:51","nodeType":"YulLiteral","src":"13899:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13884:3:51","nodeType":"YulIdentifier","src":"13884:3:51"},"nativeSrc":"13884:18:51","nodeType":"YulFunctionCall","src":"13884:18:51"},{"kind":"number","nativeSrc":"13904:2:51","nodeType":"YulLiteral","src":"13904:2:51","type":"","value":"37"}],"functionName":{"name":"mstore","nativeSrc":"13877:6:51","nodeType":"YulIdentifier","src":"13877:6:51"},"nativeSrc":"13877:30:51","nodeType":"YulFunctionCall","src":"13877:30:51"},"nativeSrc":"13877:30:51","nodeType":"YulExpressionStatement","src":"13877:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13927:9:51","nodeType":"YulIdentifier","src":"13927:9:51"},{"kind":"number","nativeSrc":"13938:2:51","nodeType":"YulLiteral","src":"13938:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13923:3:51","nodeType":"YulIdentifier","src":"13923:3:51"},"nativeSrc":"13923:18:51","nodeType":"YulFunctionCall","src":"13923:18:51"},{"hexValue":"4265636833323a20696e76616c69642070616464696e67206f722076616c7565","kind":"string","nativeSrc":"13943:34:51","nodeType":"YulLiteral","src":"13943:34:51","type":"","value":"Bech32: invalid padding or value"}],"functionName":{"name":"mstore","nativeSrc":"13916:6:51","nodeType":"YulIdentifier","src":"13916:6:51"},"nativeSrc":"13916:62:51","nodeType":"YulFunctionCall","src":"13916:62:51"},"nativeSrc":"13916:62:51","nodeType":"YulExpressionStatement","src":"13916:62:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13998:9:51","nodeType":"YulIdentifier","src":"13998:9:51"},{"kind":"number","nativeSrc":"14009:2:51","nodeType":"YulLiteral","src":"14009:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13994:3:51","nodeType":"YulIdentifier","src":"13994:3:51"},"nativeSrc":"13994:18:51","nodeType":"YulFunctionCall","src":"13994:18:51"},{"hexValue":"2073697a65","kind":"string","nativeSrc":"14014:7:51","nodeType":"YulLiteral","src":"14014:7:51","type":"","value":" size"}],"functionName":{"name":"mstore","nativeSrc":"13987:6:51","nodeType":"YulIdentifier","src":"13987:6:51"},"nativeSrc":"13987:35:51","nodeType":"YulFunctionCall","src":"13987:35:51"},"nativeSrc":"13987:35:51","nodeType":"YulExpressionStatement","src":"13987:35:51"},{"nativeSrc":"14031:27:51","nodeType":"YulAssignment","src":"14031:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"14043:9:51","nodeType":"YulIdentifier","src":"14043:9:51"},{"kind":"number","nativeSrc":"14054:3:51","nodeType":"YulLiteral","src":"14054:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"14039:3:51","nodeType":"YulIdentifier","src":"14039:3:51"},"nativeSrc":"14039:19:51","nodeType":"YulFunctionCall","src":"14039:19:51"},"variableNames":[{"name":"tail","nativeSrc":"14031:4:51","nodeType":"YulIdentifier","src":"14031:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_e94f6be74a97f1cb3bd761cbce886a47861edc099a5ca2546d140eebfb9c3780__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13663:401:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13814:9:51","nodeType":"YulTypedName","src":"13814:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13828:4:51","nodeType":"YulTypedName","src":"13828:4:51","type":""}],"src":"13663:401:51"}]},"contents":"{\n    { }\n    function validator_revert_contract_IWitOracleRadonRequestFactory(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function copy_memory_to_memory_with_cleanup(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        mstore(add(dst, length), 0)\n    }\n    function abi_decode_tuple_t_contract$_IWitOracleRadonRequestFactory_$10711t_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IWitOracleRadonRequestFactory(value)\n        value0 := value\n        let offset := mload(add(headStart, 32))\n        if gt(offset, sub(shl(64, 1), 1)) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := mload(_1)\n        if gt(length, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(length, 0x1f), not(31)), 63), not(31)))\n        if or(gt(newFreePtr, sub(shl(64, 1), 1)), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, length)\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        copy_memory_to_memory_with_cleanup(add(_1, 32), add(memPtr, 32), length)\n        value1 := memPtr\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 array_dataslot_string_storage(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\n    }\n    function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n    {\n        if gt(len, 31)\n        {\n            mstore(0, array)\n            let data := keccak256(0, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _1 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _1) { start := add(start, 1) }\n            { sstore(start, 0) }\n        }\n    }\n    function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n    {\n        used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n    }\n    function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n    {\n        let newLen := mload(src)\n        if gt(newLen, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n        let srcOffset := 0\n        srcOffset := 0x20\n        switch gt(newLen, 31)\n        case 1 {\n            let loopEnd := and(newLen, not(31))\n            let dstPtr := array_dataslot_string_storage(slot)\n            let i := 0\n            for { } lt(i, loopEnd) { i := add(i, 0x20) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, newLen)\n            {\n                let lastValue := mload(add(src, srcOffset))\n                sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, newLen), 1))\n        }\n        default {\n            let value := 0\n            if newLen\n            {\n                value := mload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\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_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory_with_cleanup(add(value, 0x20), add(pos, 0x20), length)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_struct_RadonReducer(value, pos) -> end\n    {\n        let tail := add(pos, 0x40)\n        let _1 := mload(value)\n        if iszero(lt(_1, 12)) { panic_error_0x21() }\n        mstore(pos, _1)\n        let memberValue0 := mload(add(value, 0x20))\n        mstore(add(pos, 0x20), 0x40)\n        let pos_1 := tail\n        let length := mload(memberValue0)\n        mstore(tail, length)\n        pos_1 := add(pos, 96)\n        let tail_1 := add(add(pos, shl(5, length)), 96)\n        let srcPtr := add(memberValue0, 0x20)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos_1, add(sub(tail_1, pos), not(95)))\n            let _2 := mload(srcPtr)\n            let _3 := mload(_2)\n            if iszero(lt(_3, 10)) { panic_error_0x21() }\n            mstore(tail_1, _3)\n            let memberValue0_1 := mload(add(_2, 0x20))\n            mstore(add(tail_1, 0x20), 0x40)\n            tail_1 := abi_encode_string(memberValue0_1, add(tail_1, 0x40))\n            srcPtr := add(srcPtr, 0x20)\n            pos_1 := add(pos_1, 0x20)\n        }\n        end := tail_1\n    }\n    function abi_encode_tuple_t_struct$_DataSourceRequest_$10667_memory_ptr_t_struct$_RadonReducer_$13779_memory_ptr__to_t_struct$_DataSourceRequest_$10667_memory_ptr_t_struct$_RadonReducer_$13779_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let _1 := mload(value0)\n        if iszero(lt(_1, 5)) { panic_error_0x21() }\n        mstore(add(headStart, 64), _1)\n        let memberValue0 := mload(add(value0, 0x20))\n        mstore(add(headStart, 96), 0x80)\n        let tail_1 := abi_encode_string(memberValue0, add(headStart, 192))\n        let memberValue0_1 := mload(add(value0, 64))\n        mstore(add(headStart, 0x80), add(sub(tail_1, headStart), not(63)))\n        let pos := tail_1\n        let length := mload(memberValue0_1)\n        mstore(tail_1, length)\n        pos := add(tail_1, 0x20)\n        let tail_2 := add(add(tail_1, shl(5, length)), 0x20)\n        let srcPtr := add(memberValue0_1, 0x20)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, tail_1), not(31)))\n            let _2 := mload(srcPtr)\n            let pos_1 := tail_2\n            pos_1 := tail_2\n            let tail_3 := add(tail_2, 64)\n            let srcPtr_1 := _2\n            let i_1 := 0\n            for { } lt(i_1, 0x02) { i_1 := add(i_1, 1) }\n            {\n                mstore(pos_1, sub(tail_3, tail_2))\n                tail_3 := abi_encode_string(mload(srcPtr_1), tail_3)\n                srcPtr_1 := add(srcPtr_1, 0x20)\n                pos_1 := add(pos_1, 0x20)\n            }\n            tail_2 := tail_3\n            srcPtr := add(srcPtr, 0x20)\n            pos := add(pos, 0x20)\n        }\n        let memberValue0_2 := mload(add(value0, 96))\n        mstore(add(headStart, 160), add(sub(tail_2, headStart), not(63)))\n        let end := abi_encode_string(memberValue0_2, tail_2)\n        mstore(add(headStart, 0x20), sub(end, headStart))\n        tail := abi_encode_struct_RadonReducer(value1, end)\n    }\n    function abi_decode_tuple_t_contract$_IWitOracleRadonRequestModal_$10761_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IWitOracleRadonRequestFactory(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_contract_IWitOracleRadonRequestFactory(value)\n        value0 := value\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_stringliteral_804d16c791056572535f8e2036ddf984da7d771fd478e9d9544d867a673dae25__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), \"Bech32: invalid length\")\n        tail := add(headStart, 96)\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 convert_bytes_to_fixedbytes_from_t_bytes_memory_ptr_to_t_bytes32(array) -> value\n    {\n        let length := mload(array)\n        value := mload(add(array, 0x20))\n        if lt(length, 0x20)\n        {\n            value := and(value, shl(shl(3, sub(0x20, length)), not(0)))\n        }\n    }\n    function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory_with_cleanup(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_stringliteral_fbafcdcf532b64f842ae9e16c3ebe22680908b0bd1d2499a181aa780163d1903__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), \"Bech32: invalid string length\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_53dc06d622ffc4876df233985214fd280a387287ffe9d0e519654cae6b62b983__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), \"Bech32: wrong char\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_0d3bbdc5952ddfc25bafa340466db68d17d1faf42dd154469a20b429a3742415__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), \"Bech32: wrong pos of 1\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6a2cf2966ea32b348a1a2f630ac8faca290d4a2ab07de89caf8dae5717c1d46d__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), \"Bech32: byte not in alphabet\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8925955b412698449f23fd1db0ca5278ae982350c0d6a43502b6059204e31edc__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), \"Bech32: wrong checksum\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_cc3b15adba6692e0236e3ef91314dd5f2f6b9fc7d497a8d9fca03d4d32ef0086__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), \"Bech32: hrp mismatch\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e61d0d29c666259da088b9a4a3c73f42db070a7c6e4ed8d249944652ec7c2cf8__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), \"Bech32: invalid data length\")\n        tail := add(headStart, 96)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n    }\n    function abi_encode_tuple_t_stringliteral_c3d844aee3a847f0e164a11470dfaf03e0661e60bf8b0718b82a475dc4773582__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), \"Bech32: value must be non-negati\")\n        mstore(add(headStart, 96), \"ve and fit in frombits\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr_t_bytes1__to_t_bytes_memory_ptr_t_bytes1__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory_with_cleanup(add(value0, 0x20), pos, length)\n        let end_1 := add(pos, length)\n        mstore(end_1, and(value1, shl(248, 255)))\n        end := add(end_1, 1)\n    }\n    function abi_encode_tuple_t_stringliteral_e94f6be74a97f1cb3bd761cbce886a47861edc099a5ca2546d140eebfb9c3780__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), \"Bech32: invalid padding or value\")\n        mstore(add(headStart, 96), \" size\")\n        tail := add(headStart, 128)\n    }\n}","id":51,"language":"Yul","name":"#utility.yul"}],"linkReferences":{"contracts/WrappedWITLib.sol":{"WrappedWITLib":[{"length":20,"start":8768},{"length":20,"start":9315},{"length":20,"start":12576}]}},"object":"61020060405234801561001157600080fd5b5060405161697f38038061697f83398101604081905261003091611130565b6040518060400160405280600b81526020016a15dc985c1c19590bd5d25560aa1b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600b81526020016a15dc985c1c19590815d25560aa1b8152506040518060400160405280600381526020016215d25560ea1b81525081600390816100be919061127b565b5060046100cb828261127b565b506100db91508390506005610593565b610120526100ea816006610593565b61014052815160208084019190912060e052815190820120610100524660a05261017760e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60805250503060c0525061018e81466001146105c6565b6001600160601b0319166101c052805160208201206101e052604080516001808252818301909252600091816020015b6101c66110b7565b8152602001906001900390816101be57905050905060405180604001604052806040518060400160405280600c81526020016b436f6e74656e742d5479706560a01b81525081526020016040518060400160405280601e81526020017f6170706c69636174696f6e2f6a736f6e3b636861727365743d5554462d3800008152508152508160008151811061025c5761025c611339565b6020026020010181905250826001600160a01b031663c96e201f6040518060800160405280600360048111156102945761029461134f565b81526020016040518060800160405280604a8152602001616935604a913981526020018481526020016040518060400160405280600f81526020016e83187782186666726573756c74186960881b81525081525060405180604001604052806002600b8111156103065761030661134f565b8152602001600060405190808252806020026020018201604052801561035357816020015b60408051808201909152600081526060602082015281526020019060019003908161032b5790505b508152506040518363ffffffff1660e01b815260040161037492919061143a565b6020604051808303816000875af1158015610393573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b79190611535565b6001600160a01b039081166101805260408051608081019091529084169063c96e201f9080600381526020016040518060a00160405280606b81526020016167ca606b913981526020018481526020016040518060400160405280600f81526020016e83187782186666726573756c74186960881b81525081525060405180604001604052806002600b8111156104505761045061134f565b8152602001600060405190808252806020026020018201604052801561049d57816020015b6040805180820190915260008152606060208201528152602001906001900390816104755790505b508152506040518363ffffffff1660e01b81526004016104be92919061143a565b6020604051808303816000875af11580156104dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105019190611535565b6001600160a01b03166101a0816001600160a01b031681525050826001600160a01b0316631014d3756040518163ffffffff1660e01b8152600401602060405180830381865afa158015610559573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057d9190611535565b6001600160a01b031661016052506115fc915050565b60006020835110156105af576105a883610684565b90506105c0565b816105ba848261127b565b5060ff90505b92915050565b6000816105d457602b6105d7565b602a5b60ff1683511461062e5760405162461bcd60e51b815260206004820152601660248201527f4265636833323a20696e76616c6964206c656e6774680000000000000000000060448201526064015b60405180910390fd5b61067a838361065957604051806040016040528060048152602001631d1dda5d60e21b8152506106c2565b604051806040016040528060038152602001621dda5d60ea1b8152506106c2565b60601b9392505050565b600080829050601f815111156106af578260405163305a27a960e01b81526004016106259190611559565b80516106ba8261156c565b179392505050565b60008060006106f2856040516020016106db9190611590565b60408051601f198184030181529190526001610745565b915091506107208460405160200161070a9190611590565b60408051601f1981840301815291905283610ae4565b6000610730826005600884610b45565b905061073b81610b5c565b9695505050505050565b6060806000605a8551111561079c5760405162461bcd60e51b815260206004820152601d60248201527f4265636833323a20696e76616c696420737472696e67206c656e6774680000006044820152606401610625565b60005b85518110156108a05760008682815181106107bc576107bc611339565b016020015160f81c9050602181108015906107db5750607e8160ff1611155b61081c5760405162461bcd60e51b81526020600482015260126024820152712132b1b419991d103bb937b7339031b430b960711b6044820152606401610625565b60301960ff8216016108975782158015610837575060018210155b8015610847575086518260070111155b6108935760405162461bcd60e51b815260206004820152601660248201527f4265636833323a2077726f6e6720706f73206f662031000000000000000000006044820152606401610625565b8192505b5060010161079f565b50806001600160401b038111156108b9576108b96110f6565b6040519080825280601f01601f1916602001820160405280156108e3576020820181803683370190505b50925060005b8181101561093f5785818151811061090357610903611339565b602001015160f81c60f81b84828151811061092057610920611339565b60200101906001600160f81b031916908160001a9053506001016108e9565b50600181865103036001600160401b0381111561095e5761095e6110f6565b604051908082528060200260200182016040528015610987578160200160208202803683370190505b50915060005b8251811015610a7a5760006040518061012001604052806101008152602001616835610100913987848401600101815181106109cb576109cb611339565b0160200151815160f89190911c9081106109e7576109e7611339565b01602001516001600160f81b03199081169150819003610a495760405162461bcd60e51b815260206004820152601c60248201527f4265636833323a2062797465206e6f7420696e20616c706861626574000000006044820152606401610625565b8060f81c848381518110610a5f57610a5f611339565b60ff909216602092830291909101909101525060010161098d565b50610a86838386610bb7565b610ad25760405162461bcd60e51b815260206004820152601660248201527f4265636833323a2077726f6e6720636865636b73756d000000000000000000006044820152606401610625565b50805160051901815290939092509050565b8080519060200120828051906020012014610b415760405162461bcd60e51b815260206004820152601460248201527f4265636833323a20687270206d69736d617463680000000000000000000000006044820152606401610625565b5050565b6060610b5385858585610ce5565b95945050505050565b60008151601414610baf5760405162461bcd60e51b815260206004820152601b60248201527f4265636833323a20696e76616c69642064617461206c656e67746800000000006044820152606401610625565b506014015190565b600080610bc385610ebc565b9050600084518251016001600160401b03811115610be357610be36110f6565b604051908082528060200260200182016040528015610c0c578160200160208202803683370190505b50905060005b8251811015610c6757828181518110610c2d57610c2d611339565b602002602001015160ff16828281518110610c4a57610c4a611339565b63ffffffff90921660209283029190910190910152600101610c12565b5060005b8551811015610cc357858181518110610c8657610c86611339565b602002602001015160ff16828451830181518110610ca657610ca6611339565b63ffffffff90921660209283029190910190910152600101610c6b565b5063ffffffff8416610cd482610fbd565b63ffffffff16149695505050505050565b606060008080610cf8600180881b6115ac565b905060005b8851811015610df5576000898281518110610d1a57610d1a611339565b6020908102919091010151905060ff8082168a1c1615610da25760405162461bcd60e51b815260206004820152603660248201527f4265636833323a2076616c7565206d757374206265206e6f6e2d6e656761746960448201527f766520616e642066697420696e2066726f6d62697473000000000000000000006064820152608401610625565b93881b60ff85161793928801925b878410610dec576040519388900393610dd690879087871c861660f81b906020016115cd565b6040516020818303038152906040529550610db0565b50600101610cfd565b508415610e3d578115610e38578381610e0e84896115ac565b85901b1660f81b604051602001610e269291906115cd565b60405160208183030381529060405293505b610eb1565b86821080610e57575080610e5183886115ac565b84901b16155b610eb15760405162461bcd60e51b815260206004820152602560248201527f4265636833323a20696e76616c69642070616464696e67206f722076616c75656044820152642073697a6560d81b6064820152608401610625565b505050949350505050565b606081518251016001016001600160401b03811115610edd57610edd6110f6565b604051908082528060200260200182016040528015610f06578160200160208202803683370190505b50905060005b8251811015610fb7576005838281518110610f2957610f29611339565b602001015160f81c60f81b60f81c60ff16901c828281518110610f4e57610f4e611339565b602002602001019060ff16908160ff1681525050828181518110610f7457610f74611339565b602001015160f81c60f81b60f81c601f16828451830160010181518110610f9d57610f9d611339565b60ff90921660209283029190910190910152600101610f0c565b50919050565b6040805160a081018252633b6a57b281526326508e6d6020820152631ea119fa91810191909152633d4233dd6060820152632a1462b36080820152600090600190825b84518163ffffffff1610156110ae57600060198463ffffffff16901c9050858263ffffffff168151811061103657611036611339565b60200260200101516005856301ffffff1663ffffffff16901b18935060005b60058163ffffffff1610156110a457600163ffffffff8381169083161c8116900361109c57838163ffffffff166005811061109257611092611339565b6020020151851894505b600101611055565b5050600101611000565b50909392505050565b60405180604001604052806002905b60608152602001906001900390816110c65790505090565b6001600160a01b03811681146110f357600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b60005b8381101561112757818101518382015260200161110f565b50506000910152565b6000806040838503121561114357600080fd5b825161114e816110de565b60208401519092506001600160401b0381111561116a57600080fd5b8301601f8101851361117b57600080fd5b80516001600160401b03811115611194576111946110f6565b604051601f8201601f19908116603f011681016001600160401b03811182821017156111c2576111c26110f6565b6040528181528282016020018710156111da57600080fd5b6111eb82602083016020860161110c565b8093505050509250929050565b600181811c9082168061120c57607f821691505b602082108103610fb757634e487b7160e01b600052602260045260246000fd5b601f82111561127657806000526020600020601f840160051c810160208510156112535750805b601f840160051c820191505b81811015611273576000815560010161125f565b50505b505050565b81516001600160401b03811115611294576112946110f6565b6112a8816112a284546111f8565b8461122c565b6020601f8211600181146112dc57600083156112c45750848201515b600019600385901b1c1916600184901b178455611273565b600084815260208120601f198516915b8281101561130c57878501518255602094850194600190920191016112ec565b508482101561132a5786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b6000815180845261137d81602086016020860161110c565b601f01601f19169290920160200192915050565b6000604083018251600c81106113a9576113a961134f565b84526020838101516040828701528051928390526060600584901b8701810193919092019186019060005b8181101561142e57878503605f1901835283518051600a81106113f9576113f961134f565b8087525060208101519050604060208701526114186040870182611365565b95505060209384019392909201916001016113d4565b50929695505050505050565b6040815260008351600581106114525761145261134f565b604083015260208401516080606084015261147060c0840182611365565b6040860151848203603f19016080860152805180835291925060209081019181840191600582901b85010160005b828110156114ff57858203601f190184528451826040810160005b60028110156114e75785820383526114d2828551611365565b602094850194939093019291506001016114b9565b5060209788019796909601959350505060010161149e565b506060890151878203603f190160a0890152945061151d8186611365565b9450505050508281036020840152610b538185611391565b60006020828403121561154757600080fd5b8151611552816110de565b9392505050565b6020815260006115526020830184611365565b80516020808301519190811015610fb75760001960209190910360031b1b16919050565b600082516115a281846020870161110c565b9190910192915050565b818103818111156105c057634e487b7160e01b600052601160045260246000fd5b600083516115df81846020880161110c565b6001600160f81b0319939093169190920190815260010192915050565b60805160a05160c05160e05161010051610120516101405161016051610180516101a0516101c0516101e0516150f06116da60003960008181611b23015261247d0152600081816112ef01526117fd01526000818161087f0152610b350152600081816103cc01526127de0152600081816103220152818161048901528181610b0d01528181610cf70152818161157c015281816116f0015281816119e10152611bdb015260006123a301526000612376015260006122a40152600061227c015260006121d7015260006122010152600061222b01526150f06000f3fe6080604052600436106102675760003560e01c806377cc7a3a11610144578063acb734bb116100b6578063dd62ed3e1161007a578063dd62ed3e146107c7578063ddb2bf5c1461080d578063ea9e96a61461082d578063f399e22e1461084d578063f69a00b61461086d578063fec53a14146108a157600080fd5b8063acb734bb1461073d578063b3f120a114610752578063c65a20f014610767578063d505accf14610787578063d6f29e81146107a757600080fd5b806391f4f96c1161010857806391f4f96c1461067957806395d89b411461068e578063a41942a4146106a3578063a53cb851146106c3578063a9059cbb146106f0578063aa22dc331461071057600080fd5b806377cc7a3a1461058e5780637ecebe00146105ae57806384b0196e146105ce578063873234cf146105f65780638a510f271461065957600080fd5b806330315dc4116101dd5780635f029ebe116101a15780635f029ebe146104ce5780636aaa54cf146104e15780636d0d6a7e146104f65780636df0627e1461051657806370a082311461053657806371d41eb31461056c57600080fd5b806330315dc41461040e578063313ce5671461043b5780633644e5151461045757806347a10e561461046c578063520a5495146104b957600080fd5b8063147040de1161022f578063147040de1461034457806318160ddd1461035957806318bf50771461037857806323b872dd1461039a57806327ae6883146103ba5780632b8c49e3146103ee57600080fd5b806301367f731461026c57806301ffc9a71461029e57806306fdde03146102ce578063095ea7b3146102f05780631014d37514610310575b600080fd5b34801561027857600080fd5b506102816108b6565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156102aa57600080fd5b506102be6102b9366004613d2a565b6108cf565b6040519015158152602001610295565b3480156102da57600080fd5b506102e3610906565b6040516102959190613da4565b3480156102fc57600080fd5b506102be61030b366004613dcc565b610998565b34801561031c57600080fd5b506102817f000000000000000000000000000000000000000000000000000000000000000081565b34801561035057600080fd5b506102e36109b0565b34801561036557600080fd5b506002545b604051908152602001610295565b34801561038457600080fd5b50610398610393366004613dcc565b6109dd565b005b3480156103a657600080fd5b506102be6103b5366004613df8565b610a35565b3480156103c657600080fd5b506102817f000000000000000000000000000000000000000000000000000000000000000081565b3480156103fa57600080fd5b50610398610409366004613dcc565b610a59565b34801561041a57600080fd5b50610423610aa9565b6040516001600160401b039091168152602001610295565b34801561044757600080fd5b5060405160098152602001610295565b34801561046357600080fd5b5061036a610ac9565b34801561047857600080fd5b506102be610487366004613e39565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b3480156104c557600080fd5b5061036a610ad3565b61036a6104dc366004613e56565b610af6565b3480156104ed57600080fd5b5061036a610c12565b34801561050257600080fd5b50610398610511366004613eb7565b610c35565b34801561052257600080fd5b50610398610531366004613f28565b610f15565b34801561054257600080fd5b5061036a610551366004613e39565b6001600160a01b031660009081526020819052604090205490565b34801561057857600080fd5b50610581610ff5565b6040516102959190613f93565b34801561059a57600080fd5b5061036a6105a9366004613e56565b6110d7565b3480156105ba57600080fd5b5061036a6105c9366004613e39565b6110f5565b3480156105da57600080fd5b506105e3611113565b6040516102959796959493929190613fa6565b34801561060257600080fd5b5061060b611159565b6040516102959190600060808201905061ffff835116825261ffff60208401511660208301526001600160401b03604084015116604083015262ffffff606084015116606083015292915050565b34801561066557600080fd5b5061036a61067436600461405e565b6111d8565b34801561068557600080fd5b5061036a611436565b34801561069a57600080fd5b506102e3611452565b3480156106af57600080fd5b506103986106be366004613e39565b611461565b3480156106cf57600080fd5b506106e36106de366004613e56565b611522565b60405161029591906140a8565b3480156106fc57600080fd5b506102be61070b366004613dcc565b61161c565b34801561071c57600080fd5b5061073061072b3660046140b6565b61162a565b604051610295919061412b565b34801561074957600080fd5b506102e36116ec565b34801561075e57600080fd5b506102e36117ed565b34801561077357600080fd5b50610398610782366004614176565b611826565b34801561079357600080fd5b506103986107a23660046141c6565b6118a2565b3480156107b357600080fd5b506103986107c2366004614237565b6119dc565b3480156107d357600080fd5b5061036a6107e2366004614269565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561081957600080fd5b5061036a610828366004613e56565b611bd4565b34801561083957600080fd5b5061039861084836600461436e565b611c00565b34801561085957600080fd5b5061039861086836600461448b565b611c85565b34801561087957600080fd5b506102817f000000000000000000000000000000000000000000000000000000000000000081565b3480156108ad57600080fd5b5061036a611fc2565b60006108c0611fd5565b546001600160a01b0316919050565b60006001600160e01b03198216630cccc66560e21b148061090057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610915906144ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610941906144ab565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b5050505050905090565b6000336109a6818585611ff9565b5060019392505050565b60606109d8600146146109c1611fd5565b6002015460601b6001600160601b03191690612006565b905090565b6109e633612057565b6109f08282612086565b60405181815233906001600160a01b038416907fde22baff038e3a3e08407cbdf617deed74e869a7ba517df611e33131c6e6ea04906020015b60405180910390a35050565b600033610a438582856120bc565b610a4e858585612135565b506001949350505050565b610a6233612057565b610a6c8282612194565b60405181815233906001600160a01b038416907fb90795a66650155983e242cac3e1ac1a4dc26f8ed2987f3ce416a34e00111fd490602001610a29565b6000610ab3611fd5565b54600160c01b90046001600160401b0316919050565b60006109d86121ca565b6000610add611fd5565b60010154600160401b90046001600160401b0316919050565b604051633752120b60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301527f00000000000000000000000000000000000000000000000000000000000000001660248201526044810182905260009073__$928ef700fe09700756683be525388ce8a3$__90633752120b90606401602060405180830381865af4158015610ba0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc491906144df565b90506000198103610c0d5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b60448201526064015b60405180910390fd5b919050565b6000610c1c611fd5565b60010154600160801b90046001600160401b0316919050565b610c92610c40611fd5565b6003015461ffff16610c586080860160608701614508565b61ffff16101560405180604001604052806016815260200175696e73756666696369656e74207769746e657373657360501b8152506122f8565b610cdd610cad610ca0611fd5565b6005015460208601351490565b604051806040016040528060128152602001710d2dcecc2d8d2c840e4c2c8dedc40d0c2e6d60731b8152506122f8565b604051633686b53f60e11b81526000906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636d0d6a7e90610d3090879087908790600401614593565b6000604051808303816000875af1158015610d4f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d7791908101906147aa565b6040516367c4440f60e01b815290915073__$928ef700fe09700756683be525388ce8a3$__906367c4440f90610db1908490600401614861565b602060405180830381865af4925050508015610dea575060408051601f3d908101601f19168201909252610de79181019061494e565b60015b610e5e57610df661496b565b806308c379a003610e245750610e0a614986565b80610e155750610e26565b610e1e81612302565b50610f0f565b505b3d808015610e50576040519150601f19603f3d011682016040523d82523d6000602084013e610e55565b606091505b50610e1e612339565b60608083015160408085015181516001600160401b0380871682529093166020840152908201527f8a01b18bdca3d556adc5e6a85f562b83d2c1933f166e93421ff507cfccb09a07910160405180910390a180610eb9611fd5565b600101805467ffffffffffffffff19166001600160401b03929092169190911790556060820151610ee8611fd5565b80546001600160401b0392909216600160c01b026001600160c01b03909216919091179055505b50505050565b610f1d611fd5565b546001600160a01b0316336001600160a01b031614610f4e576040516282b42960e81b815260040160405180910390fd5b6003610f5d6020830183614508565b61ffff1610158015610f8357506032610f7c6040830160208401614508565b61ffff1611155b8015610fab5750630bebc200610f9f6060830160408401614a09565b6001600160401b031610155b8015610fce575062033450610fc66080830160608401614a37565b62ffffff1610155b610fda57610fda614a54565b80610fe3611fd5565b600301610ff08282614a6a565b505050565b6060610fff611fd5565b600401805480602002602001604051908101604052809291908181526020016000905b828210156110ce578382906000526020600020018054611041906144ab565b80601f016020809104026020016040519081016040528092919081815260200182805461106d906144ab565b80156110ba5780601f1061108f576101008083540402835291602001916110ba565b820191906000526020600020905b81548152906001019060200180831161109d57829003601f168201915b505050505081526020019060010190611022565b50505050905090565b60006110e1611fd5565b600092835260060160205250604090205490565b6001600160a01b038116600090815260076020526040812054610900565b60006060806000806000606061112761236f565b61112f61239c565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b604080516080810182526000808252602082018190529181018290526060810191909152611185611fd5565b604080516080810182526003929092015461ffff808216845262010000820416602084015264010000000081046001600160401b031691830191909152600160601b900462ffffff166060820152919050565b60006001600160401b0384166111ed33610551565b10156112305760405162461bcd60e51b81526020600482015260126024820152716e6f7420656e6f7567682062616c616e636560701b6044820152606401610c04565b600061123a611fd5565b600101546001600160401b039081169150851681101561129c5760405162461bcd60e51b815260206004820152601760248201527f63616e6e6f7420756e777261702074686174206d7563680000000000000000006044820152606401610c04565b60006112e285858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250504660011491506123c99050565b90506001600160601b03197f00000000000000000000000000000000000000000000000000000000000000008116908216036113545760405162461bcd60e51b81526020600482015260116024820152701a5b9d985b1a59081c9958da5c1a595b9d607a1b6044820152606401610c04565b61135e8683614b32565b611366611fd5565b600101805467ffffffffffffffff19166001600160401b039283161790556113919033908816612194565b611399611fd5565b60010180546008906113ba90600160401b90046001600160401b0316614b51565b91906101000a8154816001600160401b0302191690836001600160401b0316021790556001600160401b031692507f0ac1547df8510f30b54430e0e4e1e93ce326490aec9cebf0f78b8faa55dc1ded6114103390565b86868987604051611425959493929190614b7c565b60405180910390a150509392505050565b6000611440611fd5565b600101546001600160401b0316919050565b606060048054610915906144ab565b611469611fd5565b546001600160a01b0316336001600160a01b03161461149a576040516282b42960e81b815260040160405180910390fd5b6001600160a01b0381166114b0576114b0614a54565b806001600160a01b03166114c2611fd5565b546040516001600160a01b03909116907fc63757acc12b39558fe5b88c5393e4b0353ffddaae3a2d07e121a8fc62d39c3790600090a380611501611fd5565b80546001600160a01b0319166001600160a01b039290921691909117905550565b60008061152d611fd5565b6000848152600691909101602052604081205491508190036115525750600092915050565b60001981036115645750600392915050565b6001604051631bc1eaf360e21b8152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690636f07abcc90602401602060405180830381865afa1580156115cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ef9190614bbe565b60068111156116005761160061407e565b1461160c57600261160f565b60015b9392505050565b50919050565b6000336109a6818585612135565b6060816001600160401b03811115611644576116446142a2565b60405190808252806020026020018201604052801561166d578160200160208202803683370190505b50905060005b828110156116e55761169c84848381811061169057611690614bdf565b90506020020135611522565b8282815181106116ae576116ae614bdf565b602002602001019060038111156116c7576116c761407e565b908160038111156116da576116da61407e565b905250600101611673565b5092915050565b60607f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316637b1039996040518163ffffffff1660e01b8152600401602060405180830381865afa15801561174c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117709190614bf5565b6001600160a01b0316638a227764611786611fd5565b600501546040518263ffffffff1660e01b81526004016117a891815260200190565b600060405180830381865afa1580156117c5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109d89190810190614c12565b60606109d86001600160601b03197f00000000000000000000000000000000000000000000000000000000000000001646600114612006565b61182e611fd5565b546001600160a01b0316336001600160a01b03161461185f576040516282b42960e81b815260040160405180910390fd5b61189e82828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061247b92505050565b5050565b834211156118c65760405163313c898160e11b815260048101859052602401610c04565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886119138c6001600160a01b0316600090815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061196e82612635565b9050600061197e82878787612662565b9050896001600160a01b0316816001600160a01b0316146119c5576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401610c04565b6119d08a8a8a611ff9565b50505050505050505050565b611a377f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146040518060400160405280600e81526020016d696e76616c6964206f7261636c6560901b8152506122f8565b604051635d933eb760e01b815273__$928ef700fe09700756683be525388ce8a3$__90635d933eb790611a7290869086908690600401614c4e565b600060405180830381865af4925050508015611ab057506040513d6000823e601f3d908101601f19168201604052611aad9190810190614c68565b60015b611b1e57611abc61496b565b806308c379a003611ae45750611ad0614986565b80611adb5750611ae6565b610f0f81612302565b505b3d808015611b10576040519150601f19603f3d011682016040523d82523d6000602084013e611b15565b606091505b50610f0f612339565b611b7a7f00000000000000000000000000000000000000000000000000000000000000008580519060200120146040518060400160405280601181526020017034b73b30b634b21031bab9ba37b234b0b760791b8152506122f8565b611b8d82826001600160401b0316612086565b7fbae099c209765c02c309f0fac06aec3ac516a3cc60d09f1a3da4b52d673d28a383838388604051611bc29493929190614d02565b60405180910390a15050505050505050565b60006109007f000000000000000000000000000000000000000000000000000000000000000083612690565b611c08611fd5565b546001600160a01b0316336001600160a01b031614611c39576040516282b42960e81b815260040160405180910390fd5b6000815111611c4a57611c4a614a54565b80611c53611fd5565b6004019080519060200190611c69929190613c6d565b50611c8281611c7d600146146109c1611fd5565b612753565b50565b6000611c8f612869565b805490915060ff600160401b82041615906001600160401b0316600081158015611cb65750825b90506000826001600160401b03166001148015611cd25750303b155b905081158015611ce0575080155b15611cfe5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611d2857845460ff60401b1916600160401b1785555b87611d31611fd5565b80546001600160a01b0319166001600160a01b03928316179055604051908916906000907fc63757acc12b39558fe5b88c5393e4b0353ffddaae3a2d07e121a8fc62d39c37908290a3604051806080016040528060014614611d94576003611d97565b600c5b61ffff168152602001611dac600a6032614d59565b61ffff168152630bebc200602082015262033450604090910152611dce611fd5565b8151600391909101805460208085015160408087015160609097015162ffffff16600160601b0262ffffff60601b196001600160401b0390981664010000000002979097166effffffffffffffffffffff000000001961ffff938416620100000263ffffffff19909616939097169290921793909317949094169390931793909317905581516001808252818401909352600092909182015b6060815260200190600190039081611e6757905050905060014614611ec1576040518060400160405280601d81526020017f68747470733a2f2f7270632d746573746e65742e7769746e65742e696f000000815250611ef8565b6040518060400160405280601881526020017f68747470733a2f2f7270632d30312e7769746e65742e696f00000000000000008152505b81600081518110611f0b57611f0b614bdf565b602002602001018190525080611f1f611fd5565b6004019080519060200190611f35929190613c6d565b50611f7588888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061247b92505050565b508315611fb857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611bc2565b5050505050505050565b6000611fcc611fd5565b60050154905090565b7f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58f990565b610ff08383836001612892565b606061160f8360601c8361203657604051806040016040528060048152602001631d1dda5d60e21b815250612967565b604051806040016040528060038152602001621dda5d60ea1b815250612967565b6001600160a01b0381166028602160991b0114611c82576040516282b42960e81b815260040160405180910390fd5b6001600160a01b0382166120b05760405163ec442f0560e01b815260006004820152602401610c04565b61189e6000838361299b565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811015610f0f578181101561212657604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610c04565b610f0f84848484036000612892565b6001600160a01b03831661215f57604051634b637e8f60e11b815260006004820152602401610c04565b6001600160a01b0382166121895760405163ec442f0560e01b815260006004820152602401610c04565b610ff083838361299b565b6001600160a01b0382166121be57604051634b637e8f60e11b815260006004820152602401610c04565b61189e8260008361299b565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561222357507f000000000000000000000000000000000000000000000000000000000000000046145b1561224d57507f000000000000000000000000000000000000000000000000000000000000000090565b6109d8604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b90565b8161189e5761189e815b806040516020016123139190614d7d565b60408051601f198184030181529082905262461bcd60e51b8252610c0491600401613da4565b61236d604051806040016040528060138152602001723ab73430b7323632b21032bc31b2b83a34b7b760691b815250612302565b565b60606109d87f00000000000000000000000000000000000000000000000000000000000000006005612ac5565b60606109d87f00000000000000000000000000000000000000000000000000000000000000006006612ac5565b6000816123d757602b6123da565b602a5b60ff168351146124255760405162461bcd60e51b8152602060048201526016602482015275084cac6d066647440d2dcecc2d8d2c840d8cadccee8d60531b6044820152606401610c04565b612471838361245057604051806040016040528060048152602001631d1dda5d60e21b815250612b70565b604051806040016040528060038152602001621dda5d60ea1b815250612b70565b60601b9392505050565b7f00000000000000000000000000000000000000000000000000000000000000008180519060200120036124ea5760405162461bcd60e51b81526020600482015260166024820152753ab730b1b1b2b83a30b13632903ab73bb930b83832b960511b6044820152606401610c04565b7faf2313438cf7747b4740d0822c1e7683638361ace0daa8f1c4d5a15d57f4ef04816040516125199190613da4565b60405180910390a161252e81600146146123c9565b612536611fd5565b60020180546001600160a01b03191660609290921c919091179055611c8261255c611fd5565b600401805480602002602001604051908101604052809291908181526020016000905b8282101561262b57838290600052602060002001805461259e906144ab565b80601f01602080910402602001604051908101604052809291908181526020018280546125ca906144ab565b80156126175780601f106125ec57610100808354040283529160200191612617565b820191906000526020600020905b8154815290600101906020018083116125fa57829003601f168201915b50505050508152602001906001019061257f565b5050505082612753565b60006109006126426121ca565b8360405161190160f01b8152600281019290925260228201526042902090565b60008060008061267488888888612bf2565b9250925092506126848282612cc1565b50909695505050505050565b6040516305e742ef60e01b81526004810182905262035b6060248201526000906064906001600160a01b038516906305e742ef90604401602060405180830381865afa1580156126e4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270891906144df565b7f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58fc5461273f9062010000900461ffff166064614db1565b6127499190614dc4565b61160f9190614ddb565b60408051600280825260608201909252600091816020015b606081526020019060019003908161276b57905050905061278a6117ed565b8160008151811061279d5761279d614bdf565b602002602001018190525081816001815181106127bc576127bc614bdf565b6020908102919091010152604051633c389c6f60e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063f0e271bc906128159084908790600401614def565b6020604051808303816000875af1158015612834573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061285891906144df565b612860611fd5565b60050155505050565b6000807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610900565b6001600160a01b0384166128bc5760405163e602df0560e01b815260006004820152602401610c04565b6001600160a01b0383166128e657604051634a1406b160e11b815260006004820152602401610c04565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610f0f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161295991815260200190565b60405180910390a350505050565b604051606083811b6001600160601b03191660208301529061160f9060340160405160208183030381529060405283612d7a565b6001600160a01b0383166129c65780600260008282546129bb9190614db1565b90915550612a389050565b6001600160a01b03831660009081526020819052604090205481811015612a195760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610c04565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216612a5457600280548290039055612a73565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612ab891815260200190565b60405180910390a3505050565b606060ff8314612adf57612ad883612dc8565b9050610900565b818054612aeb906144ab565b80601f0160208091040260200160405190810160405280929190818152602001828054612b17906144ab565b8015612b645780601f10612b3957610100808354040283529160200191612b64565b820191906000526020600020905b815481529060010190602001808311612b4757829003601f168201915b50505050509050610900565b6000806000612b9f85604051602001612b899190614e14565b6040516020818303038152906040526001612e07565b91509150612bcc84604051602001612bb79190614e14565b60405160208183030381529060405283613198565b6000612bdd826005600860006131ec565b9050612be8816131fa565b9695505050505050565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115612c2d5750600091506003905082612cb7565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015612c81573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612cad57506000925060019150829050612cb7565b9250600091508190505b9450945094915050565b6000826003811115612cd557612cd561407e565b03612cde575050565b6001826003811115612cf257612cf261407e565b03612d105760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115612d2457612d2461407e565b03612d455760405163fce698f760e01b815260048101829052602401610c04565b6003826003811115612d5957612d5961407e565b0361189e576040516335e2f38360e21b815260048101829052602401610c04565b6060600082604051602001612d8f9190614e14565b60405160208183030381529060405290506000612db185600860056001613255565b9050612dbf8282600161331d565b95945050505050565b60606000612dd5836135ae565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6060806000605a85511115612e5e5760405162461bcd60e51b815260206004820152601d60248201527f4265636833323a20696e76616c696420737472696e67206c656e6774680000006044820152606401610c04565b60005b8551811015612f5b576000868281518110612e7e57612e7e614bdf565b016020015160f81c905060218110801590612e9d5750607e8160ff1611155b612ede5760405162461bcd60e51b81526020600482015260126024820152712132b1b419991d103bb937b7339031b430b960711b6044820152606401610c04565b60301960ff821601612f525782158015612ef9575060018210155b8015612f09575086518260070111155b612f4e5760405162461bcd60e51b81526020600482015260166024820152754265636833323a2077726f6e6720706f73206f66203160501b6044820152606401610c04565b8192505b50600101612e61565b50806001600160401b03811115612f7457612f746142a2565b6040519080825280601f01601f191660200182016040528015612f9e576020820181803683370190505b50925060005b81811015612ffa57858181518110612fbe57612fbe614bdf565b602001015160f81c60f81b848281518110612fdb57612fdb614bdf565b60200101906001600160f81b031916908160001a905350600101612fa4565b50600181865103036001600160401b03811115613019576130196142a2565b604051908082528060200260200182016040528015613042578160200160208202803683370190505b50915060005b82518110156131355760006040518061012001604052806101008152602001614f9b6101009139878484016001018151811061308657613086614bdf565b0160200151815160f89190911c9081106130a2576130a2614bdf565b01602001516001600160f81b031990811691508190036131045760405162461bcd60e51b815260206004820152601c60248201527f4265636833323a2062797465206e6f7420696e20616c706861626574000000006044820152606401610c04565b8060f81c84838151811061311a5761311a614bdf565b60ff9092166020928302919091019091015250600101613048565b506131418383866135d6565b6131865760405162461bcd60e51b81526020600482015260166024820152754265636833323a2077726f6e6720636865636b73756d60501b6044820152606401610c04565b50805160051901815290939092509050565b808051906020012082805190602001201461189e5760405162461bcd60e51b8152602060048201526014602482015273084cac6d066647440d0e4e040dad2e6dac2e8c6d60631b6044820152606401610c04565b6060612dbf85858585613704565b6000815160141461324d5760405162461bcd60e51b815260206004820152601b60248201527f4265636833323a20696e76616c69642064617461206c656e67746800000000006044820152606401610c04565b506014015190565b6060600085516001600160401b03811115613272576132726142a2565b60405190808252806020026020018201604052801561329b578160200160208202803683370190505b50905060005b81518163ffffffff16101561331057868163ffffffff16815181106132c8576132c8614bdf565b602001015160f81c60f81b60f81c828263ffffffff16815181106132ee576132ee614bdf565b60ff9092166020928302919091019091015261330981614e30565b90506132a1565b50612be881868686613704565b6060600061332c8585856138d4565b9050600081518551875101016001016001600160401b03811115613352576133526142a2565b6040519080825280601f01601f19166020018201604052801561337c576020820181803683370190505b50905060005b86518110156133d95786818151811061339d5761339d614bdf565b602001015160f81c60f81b8282815181106133ba576133ba614bdf565b60200101906001600160f81b031916908160001a905350600101613382565b50603160f81b818751815181106133f2576133f2614bdf565b60200101906001600160f81b031916908160001a905350855160010160005b86518110156134d957600087828151811061342e5761342e614bdf565b016020908101516040805180820190915282815260008051602061509b8339815191529083015260f81c91508110156134d05760405180604001604052806020815260200160008051602061509b8339815191528152508160ff168151811061349957613499614bdf565b602001015160f81c60f81b84848401815181106134b8576134b8614bdf565b60200101906001600160f81b031916908160001a9053505b50600101613411565b5085510160005b83518110156126845760008482815181106134fd576134fd614bdf565b6020026020010151905060405180604001604052806020815260200160008051602061509b833981519152815250518160ff1610156135a55760405180604001604052806020815260200160008051602061509b8339815191528152508160ff168151811061356e5761356e614bdf565b602001015160f81c60f81b848484018151811061358d5761358d614bdf565b60200101906001600160f81b031916908160001a9053505b506001016134e0565b600060ff8216601f81111561090057604051632cd44ac360e21b815260040160405180910390fd5b6000806135e285613a78565b9050600084518251016001600160401b03811115613602576136026142a2565b60405190808252806020026020018201604052801561362b578160200160208202803683370190505b50905060005b82518110156136865782818151811061364c5761364c614bdf565b602002602001015160ff1682828151811061366957613669614bdf565b63ffffffff90921660209283029190910190910152600101613631565b5060005b85518110156136e2578581815181106136a5576136a5614bdf565b602002602001015160ff168284518301815181106136c5576136c5614bdf565b63ffffffff9092166020928302919091019091015260010161368a565b508363ffffffff166136f382613b73565b63ffffffff16149695505050505050565b606060008080613717600180881b614e4c565b905060005b885181101561380d57600089828151811061373957613739614bdf565b6020908102919091010151905060ff8082168a1c16156137ba5760405162461bcd60e51b815260206004820152603660248201527f4265636833323a2076616c7565206d757374206265206e6f6e2d6e6567617469604482015275766520616e642066697420696e2066726f6d6269747360501b6064820152608401610c04565b93881b60ff85161793928801925b8784106138045760405193889003936137ee90879087871c861660f81b90602001614e5f565b60405160208183030381529060405295506137c8565b5060010161371c565b5084156138555781156138505783816138268489614e4c565b85901b1660f81b60405160200161383e929190614e5f565b60405160208183030381529060405293505b6138c9565b8682108061386f5750806138698388614e4c565b84901b16155b6138c95760405162461bcd60e51b815260206004820152602560248201527f4265636833323a20696e76616c69642070616464696e67206f722076616c75656044820152642073697a6560d81b6064820152608401610c04565b505050949350505050565b606060006138e185613a78565b9050600084518251016006016001600160401b03811115613904576139046142a2565b60405190808252806020026020018201604052801561392d578160200160208202803683370190505b50905060005b85518351018110156139f15782518110156139965782818151811061395a5761395a614bdf565b602002602001015160ff1682828151811061397757613977614bdf565b602002602001019063ffffffff16908163ffffffff16815250506139e9565b8583518203815181106139ab576139ab614bdf565b602001015160f81c60f81b60f81c60ff168282815181106139ce576139ce614bdf565b602002602001019063ffffffff16908163ffffffff16815250505b600101613933565b5060408051600680825260e08201909252906020820160c080368337019050509250600084613a1f83613b73565b18905060005b6006811015613a6d57806005036005028263ffffffff16901c601f16858281518110613a5357613a53614bdf565b60ff90921660209283029190910190910152600101613a25565b505050509392505050565b606081518251016001016001600160401b03811115613a9957613a996142a2565b604051908082528060200260200182016040528015613ac2578160200160208202803683370190505b50905060005b8251811015611616576005838281518110613ae557613ae5614bdf565b602001015160f81c60f81b60f81c60ff16901c828281518110613b0a57613b0a614bdf565b602002602001019060ff16908160ff1681525050828181518110613b3057613b30614bdf565b602001015160f81c60f81b60f81c601f16828451830160010181518110613b5957613b59614bdf565b60ff90921660209283029190910190910152600101613ac8565b6040805160a081018252633b6a57b281526326508e6d6020820152631ea119fa91810191909152633d4233dd6060820152632a1462b36080820152600090600190825b84518163ffffffff161015613c6457600060198463ffffffff16901c9050858263ffffffff1681518110613bec57613bec614bdf565b60200260200101516005856301ffffff1663ffffffff16901b18935060005b60058163ffffffff161015613c5a57600163ffffffff8381169083161c81169003613c5257838163ffffffff1660058110613c4857613c48614bdf565b6020020151851894505b600101613c0b565b5050600101613bb6565b50909392505050565b828054828255906000526020600020908101928215613cb3579160200282015b82811115613cb35782518290613ca39082614edc565b5091602001919060010190613c8d565b50613cbf929150613cc3565b5090565b80821115613cbf576000613cd78282613ce0565b50600101613cc3565b508054613cec906144ab565b6000825580601f10613cfc575050565b601f016020900490600052602060002090810190611c8291905b80821115613cbf5760008155600101613d16565b600060208284031215613d3c57600080fd5b81356001600160e01b03198116811461160f57600080fd5b60005b83811015613d6f578181015183820152602001613d57565b50506000910152565b60008151808452613d90816020860160208601613d54565b601f01601f19169290920160200192915050565b60208152600061160f6020830184613d78565b6001600160a01b0381168114611c8257600080fd5b60008060408385031215613ddf57600080fd5b8235613dea81613db7565b946020939093013593505050565b600080600060608486031215613e0d57600080fd5b8335613e1881613db7565b92506020840135613e2881613db7565b929592945050506040919091013590565b600060208284031215613e4b57600080fd5b813561160f81613db7565b600060208284031215613e6857600080fd5b5035919050565b60008083601f840112613e8157600080fd5b5081356001600160401b03811115613e9857600080fd5b602083019150836020828501011115613eb057600080fd5b9250929050565b600080600060408486031215613ecc57600080fd5b83356001600160401b03811115613ee257600080fd5b840160e08187031215613ef457600080fd5b925060208401356001600160401b03811115613f0f57600080fd5b613f1b86828701613e6f565b9497909650939450505050565b60006080828403128015613f3b57600080fd5b509092915050565b600082825180855260208501945060208160051b8301016020850160005b8381101561268457601f19858403018852613f7d838351613d78565b6020988901989093509190910190600101613f61565b60208152600061160f6020830184613f43565b60ff60f81b8816815260e060208201526000613fc560e0830189613d78565b8281036040840152613fd78189613d78565b606084018890526001600160a01b038716608085015260a0840186905283810360c08501528451808252602080870193509091019060005b8181101561402d57835183526020938401939092019160010161400f565b50909b9a5050505050505050505050565b6001600160401b0381168114611c8257600080fd5b8035610c0d8161403e565b60008060006040848603121561407357600080fd5b8335613ef48161403e565b634e487b7160e01b600052602160045260246000fd5b600481106140a4576140a461407e565b9052565b602081016109008284614094565b600080602083850312156140c957600080fd5b82356001600160401b038111156140df57600080fd5b8301601f810185136140f057600080fd5b80356001600160401b0381111561410657600080fd5b8560208260051b840101111561411b57600080fd5b6020919091019590945092505050565b602080825282518282018190526000918401906040840190835b8181101561416b57614158838551614094565b6020938401939290920191600101614145565b509095945050505050565b6000806020838503121561418957600080fd5b82356001600160401b0381111561419f57600080fd5b6141ab85828601613e6f565b90969095509350505050565b60ff81168114611c8257600080fd5b600080600080600080600060e0888a0312156141e157600080fd5b87356141ec81613db7565b965060208801356141fc81613db7565b95506040880135945060608801359350608088013561421a816141b7565b9699959850939692959460a0840135945060c09093013592915050565b60008060006040848603121561424c57600080fd5b8335925060208401356001600160401b03811115613f0f57600080fd5b6000806040838503121561427c57600080fd5b823561428781613db7565b9150602083013561429781613db7565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60c081018181106001600160401b03821117156142d7576142d76142a2565b60405250565b604081018181106001600160401b03821117156142d7576142d76142a2565b60a081018181106001600160401b03821117156142d7576142d76142a2565b601f8201601f191681016001600160401b0381118282101715614340576143406142a2565b6040525050565b60006001600160401b03821115614360576143606142a2565b50601f01601f191660200190565b60006020828403121561438057600080fd5b81356001600160401b0381111561439657600080fd5b8201601f810184136143a757600080fd5b80356001600160401b038111156143c0576143c06142a2565b8060051b6040516143d4602083018261431b565b9182526020818401810192908101878411156143ef57600080fd5b6020850192505b838310156144805782356001600160401b0381111561441457600080fd5b8501603f8101891361442557600080fd5b602081013561443381614347565b604051614440828261431b565b8281526040848401018c101561445557600080fd5b82604085016020830137600060208483010152808552505050506020810190506020830192506143f6565b509695505050505050565b6000806000604084860312156144a057600080fd5b8335613ef481613db7565b600181811c908216806144bf57607f821691505b60208210810361161657634e487b7160e01b600052602260045260246000fd5b6000602082840312156144f157600080fd5b5051919050565b61ffff81168114611c8257600080fd5b60006020828403121561451a57600080fd5b813561160f816144f8565b6000808335601e1984360301811261453c57600080fd5b83016020810192503590506001600160401b0381111561455b57600080fd5b803603821315613eb057600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6040808252843582820152602085013560608301526000908501356145b7816144f8565b61ffff16608083015260608501356145ce816144f8565b61ffff1660a083015260808501356145e58161403e565b6001600160401b031660c08301526145ff60a08601614053565b6001600160401b031660e083015261461a60c0860186614525565b60e06101008501526146316101208501828461456a565b9150508281036020840152612be881858761456a565b805160148110610c0d57600080fd5b8051610c0d8161403e565b600082601f83011261467257600080fd5b815160208301600061468383614347565b604051614690828261431b565b8092508481528785850111156146a557600080fd5b6146b3856020830186613d54565b979650505050505050565b8051610c0d816141b7565b600060c082840312156146db57600080fd5b6040516146e7816142b8565b80915082516001600160401b0381111561470057600080fd5b83016040818603121561471257600080fd5b60405161471e816142dd565b81516001600160401b0381111561473457600080fd5b61474087828501614661565b82525060209182015182820152825261475a9084016146be565b602082015261476b604084016146be565b604082015261477c606084016146be565b606082015261478d60808401614656565b608082015261479e60a08401614656565b60a08201525092915050565b6000602082840312156147bc57600080fd5b81516001600160401b038111156147d257600080fd5b820160a081850312156147e457600080fd5b6040516147f0816142fc565b8151610100811061480057600080fd5b815261480e60208301614647565b60208201526040828101519082015261482960608301614656565b606082015260808201516001600160401b0381111561484757600080fd5b614853868285016146c9565b608083015250949350505050565b6020815260008251610100811061487a5761487a61407e565b806020840152506020830151601481106148965761489661407e565b80604084015250604083015160608301526001600160401b036060840151166080830152608083015160a080840152805160c080850152805160406101808601526148e56101c0860182613d78565b6020928301516101a08701529183015160ff1660e08601525060408201519061491461010086018360ff169052565b606083015160ff1661012086015260808301516001600160401b0380821661014088015260a0909401519384166101608701529150612dbf565b60006020828403121561496057600080fd5b815161160f8161403e565b600060033d11156122f55760046000803e5060005160e01c90565b600060443d10156149945790565b6040513d600319016004823e80513d60248201116001600160401b03821117156149bd57505090565b80820180516001600160401b038111156149d8575050505090565b3d84016003190182820160200111156149f2575050505090565b614a016020828501018561431b565b509392505050565b600060208284031215614a1b57600080fd5b813561160f8161403e565b62ffffff81168114611c8257600080fd5b600060208284031215614a4957600080fd5b813561160f81614a26565b634e487b7160e01b600052600160045260246000fd5b8135614a75816144f8565b61ffff8116905081548161ffff1982161783556020840135614a96816144f8565b63ffff00008160101b169050808363ffffffff198416171784556040850135614abe8161403e565b6bffffffffffffffff000000008160201b16846bffffffffffffffffffffffff1985161783171785555050505060006060830135614afb81614a26565b825462ffffff60601b191660609190911b62ffffff60601b16179091555050565b634e487b7160e01b600052601160045260246000fd5b6001600160401b03828116828216039081111561090057610900614b1c565b60006001600160401b0382166001600160401b038103614b7357614b73614b1c565b60010192915050565b6001600160a01b0386168152608060208201819052600090614ba1908301868861456a565b6001600160401b0394909416604083015250606001529392505050565b600060208284031215614bd057600080fd5b81516007811061160f57600080fd5b634e487b7160e01b600052603260045260246000fd5b600060208284031215614c0757600080fd5b815161160f81613db7565b600060208284031215614c2457600080fd5b81516001600160401b03811115614c3a57600080fd5b614c4684828501614661565b949350505050565b838152604060208201526000612dbf60408301848661456a565b600080600080600060a08688031215614c8057600080fd5b855160208701519095506001600160401b03811115614c9e57600080fd5b614caa88828901614661565b94505060408601516001600160401b03811115614cc657600080fd5b614cd288828901614661565b9350506060860151614ce381613db7565b6080870151909250614cf48161403e565b809150509295509295909350565b608081526000614d156080830187613d78565b6001600160a01b03959095166020830152506001600160401b03929092166040830152606090910152919050565b634e487b7160e01b600052601260045260246000fd5b600061ffff831680614d6d57614d6d614d43565b8061ffff84160491505092915050565b6b02bb930b83832b22ba4aa1d160a51b815260008251614da481600c850160208701613d54565b91909101600c0192915050565b8082018082111561090057610900614b1c565b808202811582820484141761090057610900614b1c565b600082614dea57614dea614d43565b500490565b604081526000614e026040830185613f43565b8281036020840152612dbf8185613f43565b60008251614e26818460208701613d54565b9190910192915050565b600063ffffffff821663ffffffff8103614b7357614b73614b1c565b8181038181111561090057610900614b1c565b60008351614e71818460208801613d54565b6001600160f81b0319939093169190920190815260010192915050565b601f821115610ff057806000526020600020601f840160051c81016020851015614eb55750805b601f840160051c820191505b81811015614ed55760008155600101614ec1565b5050505050565b81516001600160401b03811115614ef557614ef56142a2565b614f0981614f0384546144ab565b84614e8e565b6020601f821160018114614f3d5760008315614f255750848201515b600019600385901b1c1916600184901b178455614ed5565b600084815260208120601f198516915b82811015614f6d5787850151825560209485019460019092019101614f4d565b5084821015614f8b5786840151600019600387901b60f8161c191681555b50505050600190811b0190555056feffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0fff0a1115141a1e0705ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff71707a7279397838676632747664773073336a6e35346b686365366d7561376ca2646970667358221220367cced7546fb312124bdfd5dd418957aa88c6e8dabdf6a7bc72411f0c421df564736f6c634300081c00337b226a736f6e727063223a22322e30222c226d6574686f64223a2267657456616c75655472616e73666572222c22706172616d73223a7b2268617368223a225c315c222c226d6f6465223a22657468657265616c222c22666f726365223a747275657d2c226964223a317dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0fff0a1115141a1e0705ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7b226a736f6e727063223a22322e30222c226d6574686f64223a2267657442616c616e636532222c22706172616d73223a7b22706b68223a225c315c3b5c325c227d2c226964223a317d","opcodes":"PUSH2 0x200 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x697F CODESIZE SUB DUP1 PUSH2 0x697F DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x30 SWAP2 PUSH2 0x1130 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xB DUP2 MSTORE PUSH1 0x20 ADD PUSH11 0x15DC985C1C19590BD5D255 PUSH1 0xAA SHL 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 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xB DUP2 MSTORE PUSH1 0x20 ADD PUSH11 0x15DC985C1C19590815D255 PUSH1 0xAA SHL DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x15D255 PUSH1 0xEA SHL DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH2 0xBE SWAP2 SWAP1 PUSH2 0x127B JUMP JUMPDEST POP PUSH1 0x4 PUSH2 0xCB DUP3 DUP3 PUSH2 0x127B JUMP JUMPDEST POP PUSH2 0xDB SWAP2 POP DUP4 SWAP1 POP PUSH1 0x5 PUSH2 0x593 JUMP JUMPDEST PUSH2 0x120 MSTORE PUSH2 0xEA DUP2 PUSH1 0x6 PUSH2 0x593 JUMP JUMPDEST PUSH2 0x140 MSTORE DUP2 MLOAD PUSH1 0x20 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 KECCAK256 PUSH1 0xE0 MSTORE DUP2 MLOAD SWAP1 DUP3 ADD KECCAK256 PUSH2 0x100 MSTORE CHAINID PUSH1 0xA0 MSTORE PUSH2 0x177 PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 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 SWAP1 JUMP JUMPDEST PUSH1 0x80 MSTORE POP POP ADDRESS PUSH1 0xC0 MSTORE POP PUSH2 0x18E DUP2 CHAINID PUSH1 0x1 EQ PUSH2 0x5C6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND PUSH2 0x1C0 MSTORE DUP1 MLOAD PUSH1 0x20 DUP3 ADD KECCAK256 PUSH2 0x1E0 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x1C6 PUSH2 0x10B7 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x1BE JUMPI SWAP1 POP POP SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xC DUP2 MSTORE PUSH1 0x20 ADD PUSH12 0x436F6E74656E742D54797065 PUSH1 0xA0 SHL DUP2 MSTORE POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1E DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x6170706C69636174696F6E2F6A736F6E3B636861727365743D5554462D380000 DUP2 MSTORE POP DUP2 MSTORE POP DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x25C JUMPI PUSH2 0x25C PUSH2 0x1339 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xC96E201F PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 PUSH1 0x4 DUP2 GT ISZERO PUSH2 0x294 JUMPI PUSH2 0x294 PUSH2 0x134F JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4A DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x6935 PUSH1 0x4A SWAP2 CODECOPY DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xF DUP2 MSTORE PUSH1 0x20 ADD PUSH15 0x83187782186666726573756C741869 PUSH1 0x88 SHL DUP2 MSTORE POP DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 PUSH1 0xB DUP2 GT ISZERO PUSH2 0x306 JUMPI PUSH2 0x306 PUSH2 0x134F JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x353 JUMPI 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 0x32B JUMPI SWAP1 POP JUMPDEST POP DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x374 SWAP3 SWAP2 SWAP1 PUSH2 0x143A JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x393 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 0x3B7 SWAP2 SWAP1 PUSH2 0x1535 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH2 0x180 MSTORE PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD SWAP1 SWAP2 MSTORE SWAP1 DUP5 AND SWAP1 PUSH4 0xC96E201F SWAP1 DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6B DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x67CA PUSH1 0x6B SWAP2 CODECOPY DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xF DUP2 MSTORE PUSH1 0x20 ADD PUSH15 0x83187782186666726573756C741869 PUSH1 0x88 SHL DUP2 MSTORE POP DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 PUSH1 0xB DUP2 GT ISZERO PUSH2 0x450 JUMPI PUSH2 0x450 PUSH2 0x134F JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x49D JUMPI 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 0x475 JUMPI SWAP1 POP JUMPDEST POP DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4BE SWAP3 SWAP2 SWAP1 PUSH2 0x143A JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4DD 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 0x501 SWAP2 SWAP1 PUSH2 0x1535 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1A0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x1014D375 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 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x559 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 0x57D SWAP2 SWAP1 PUSH2 0x1535 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x160 MSTORE POP PUSH2 0x15FC SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP4 MLOAD LT ISZERO PUSH2 0x5AF JUMPI PUSH2 0x5A8 DUP4 PUSH2 0x684 JUMP JUMPDEST SWAP1 POP PUSH2 0x5C0 JUMP JUMPDEST DUP2 PUSH2 0x5BA DUP5 DUP3 PUSH2 0x127B JUMP JUMPDEST POP PUSH1 0xFF SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x5D4 JUMPI PUSH1 0x2B PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x2A JUMPDEST PUSH1 0xFF AND DUP4 MLOAD EQ PUSH2 0x62E 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 0x4265636833323A20696E76616C6964206C656E67746800000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x67A DUP4 DUP4 PUSH2 0x659 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH4 0x1D1DDA5D PUSH1 0xE2 SHL DUP2 MSTORE POP PUSH2 0x6C2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x1DDA5D PUSH1 0xEA SHL DUP2 MSTORE POP PUSH2 0x6C2 JUMP JUMPDEST PUSH1 0x60 SHL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 SWAP1 POP PUSH1 0x1F DUP2 MLOAD GT ISZERO PUSH2 0x6AF JUMPI DUP3 PUSH1 0x40 MLOAD PUSH4 0x305A27A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x625 SWAP2 SWAP1 PUSH2 0x1559 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x6BA DUP3 PUSH2 0x156C JUMP JUMPDEST OR SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x6F2 DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x6DB SWAP2 SWAP1 PUSH2 0x1590 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x1 PUSH2 0x745 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x720 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x70A SWAP2 SWAP1 PUSH2 0x1590 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE DUP4 PUSH2 0xAE4 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x730 DUP3 PUSH1 0x5 PUSH1 0x8 DUP5 PUSH2 0xB45 JUMP JUMPDEST SWAP1 POP PUSH2 0x73B DUP2 PUSH2 0xB5C JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 PUSH1 0x5A DUP6 MLOAD GT ISZERO PUSH2 0x79C 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 0x4265636833323A20696E76616C696420737472696E67206C656E677468000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x625 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP6 MLOAD DUP2 LT ISZERO PUSH2 0x8A0 JUMPI PUSH1 0x0 DUP7 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x7BC JUMPI PUSH2 0x7BC PUSH2 0x1339 JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD PUSH1 0xF8 SHR SWAP1 POP PUSH1 0x21 DUP2 LT DUP1 ISZERO SWAP1 PUSH2 0x7DB JUMPI POP PUSH1 0x7E DUP2 PUSH1 0xFF AND GT ISZERO JUMPDEST PUSH2 0x81C 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 PUSH18 0x2132B1B419991D103BB937B7339031B430B9 PUSH1 0x71 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x625 JUMP JUMPDEST PUSH1 0x30 NOT PUSH1 0xFF DUP3 AND ADD PUSH2 0x897 JUMPI DUP3 ISZERO DUP1 ISZERO PUSH2 0x837 JUMPI POP PUSH1 0x1 DUP3 LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x847 JUMPI POP DUP7 MLOAD DUP3 PUSH1 0x7 ADD GT ISZERO JUMPDEST PUSH2 0x893 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 0x4265636833323A2077726F6E6720706F73206F66203100000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x625 JUMP JUMPDEST DUP2 SWAP3 POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x79F JUMP JUMPDEST POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x8B9 JUMPI PUSH2 0x8B9 PUSH2 0x10F6 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x8E3 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP3 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x93F JUMPI DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x903 JUMPI PUSH2 0x903 PUSH2 0x1339 JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x920 JUMPI PUSH2 0x920 PUSH2 0x1339 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x1 ADD PUSH2 0x8E9 JUMP JUMPDEST POP PUSH1 0x1 DUP2 DUP7 MLOAD SUB SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x95E JUMPI PUSH2 0x95E PUSH2 0x10F6 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x987 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP2 POP PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0xA7A JUMPI PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH2 0x120 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x100 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x6835 PUSH2 0x100 SWAP2 CODECOPY DUP8 DUP5 DUP5 ADD PUSH1 0x1 ADD DUP2 MLOAD DUP2 LT PUSH2 0x9CB JUMPI PUSH2 0x9CB PUSH2 0x1339 JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD DUP2 MLOAD PUSH1 0xF8 SWAP2 SWAP1 SWAP2 SHR SWAP1 DUP2 LT PUSH2 0x9E7 JUMPI PUSH2 0x9E7 PUSH2 0x1339 JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT SWAP1 DUP2 AND SWAP2 POP DUP2 SWAP1 SUB PUSH2 0xA49 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 0x4265636833323A2062797465206E6F7420696E20616C70686162657400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x625 JUMP JUMPDEST DUP1 PUSH1 0xF8 SHR DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xA5F JUMPI PUSH2 0xA5F PUSH2 0x1339 JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE POP PUSH1 0x1 ADD PUSH2 0x98D JUMP JUMPDEST POP PUSH2 0xA86 DUP4 DUP4 DUP7 PUSH2 0xBB7 JUMP JUMPDEST PUSH2 0xAD2 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 0x4265636833323A2077726F6E6720636865636B73756D00000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x625 JUMP JUMPDEST POP DUP1 MLOAD PUSH1 0x5 NOT ADD DUP2 MSTORE SWAP1 SWAP4 SWAP1 SWAP3 POP SWAP1 POP JUMP JUMPDEST DUP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 DUP3 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 EQ PUSH2 0xB41 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 0x4265636833323A20687270206D69736D61746368000000000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x625 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xB53 DUP6 DUP6 DUP6 DUP6 PUSH2 0xCE5 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD PUSH1 0x14 EQ PUSH2 0xBAF 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 0x4265636833323A20696E76616C69642064617461206C656E6774680000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x625 JUMP JUMPDEST POP PUSH1 0x14 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xBC3 DUP6 PUSH2 0xEBC JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 MLOAD DUP3 MLOAD ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xBE3 JUMPI PUSH2 0xBE3 PUSH2 0x10F6 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xC0C JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0xC67 JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0xC2D JUMPI PUSH2 0xC2D PUSH2 0x1339 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xC4A JUMPI PUSH2 0xC4A PUSH2 0x1339 JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0xC12 JUMP JUMPDEST POP PUSH1 0x0 JUMPDEST DUP6 MLOAD DUP2 LT ISZERO PUSH2 0xCC3 JUMPI DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0xC86 JUMPI PUSH2 0xC86 PUSH2 0x1339 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP5 MLOAD DUP4 ADD DUP2 MLOAD DUP2 LT PUSH2 0xCA6 JUMPI PUSH2 0xCA6 PUSH2 0x1339 JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0xC6B JUMP JUMPDEST POP PUSH4 0xFFFFFFFF DUP5 AND PUSH2 0xCD4 DUP3 PUSH2 0xFBD JUMP JUMPDEST PUSH4 0xFFFFFFFF AND EQ SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 DUP1 PUSH2 0xCF8 PUSH1 0x1 DUP1 DUP9 SHL PUSH2 0x15AC JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP9 MLOAD DUP2 LT ISZERO PUSH2 0xDF5 JUMPI PUSH1 0x0 DUP10 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xD1A JUMPI PUSH2 0xD1A PUSH2 0x1339 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MLOAD SWAP1 POP PUSH1 0xFF DUP1 DUP3 AND DUP11 SHR AND ISZERO PUSH2 0xDA2 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 0x4265636833323A2076616C7565206D757374206265206E6F6E2D6E6567617469 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x766520616E642066697420696E2066726F6D6269747300000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x625 JUMP JUMPDEST SWAP4 DUP9 SHL PUSH1 0xFF DUP6 AND OR SWAP4 SWAP3 DUP9 ADD SWAP3 JUMPDEST DUP8 DUP5 LT PUSH2 0xDEC JUMPI PUSH1 0x40 MLOAD SWAP4 DUP9 SWAP1 SUB SWAP4 PUSH2 0xDD6 SWAP1 DUP8 SWAP1 DUP8 DUP8 SHR DUP7 AND PUSH1 0xF8 SHL SWAP1 PUSH1 0x20 ADD PUSH2 0x15CD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP6 POP PUSH2 0xDB0 JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0xCFD JUMP JUMPDEST POP DUP5 ISZERO PUSH2 0xE3D JUMPI DUP2 ISZERO PUSH2 0xE38 JUMPI DUP4 DUP2 PUSH2 0xE0E DUP5 DUP10 PUSH2 0x15AC JUMP JUMPDEST DUP6 SWAP1 SHL AND PUSH1 0xF8 SHL PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xE26 SWAP3 SWAP2 SWAP1 PUSH2 0x15CD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP JUMPDEST PUSH2 0xEB1 JUMP JUMPDEST DUP7 DUP3 LT DUP1 PUSH2 0xE57 JUMPI POP DUP1 PUSH2 0xE51 DUP4 DUP9 PUSH2 0x15AC JUMP JUMPDEST DUP5 SWAP1 SHL AND ISZERO JUMPDEST PUSH2 0xEB1 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 0x4265636833323A20696E76616C69642070616464696E67206F722076616C7565 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x2073697A65 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x625 JUMP JUMPDEST POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MLOAD DUP3 MLOAD ADD PUSH1 0x1 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xEDD JUMPI PUSH2 0xEDD PUSH2 0x10F6 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xF06 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0xFB7 JUMPI PUSH1 0x5 DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xF29 JUMPI PUSH2 0xF29 PUSH2 0x1339 JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH1 0xF8 SHR PUSH1 0xFF AND SWAP1 SHR DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xF4E JUMPI PUSH2 0xF4E PUSH2 0x1339 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH1 0xFF AND SWAP1 DUP2 PUSH1 0xFF AND DUP2 MSTORE POP POP DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0xF74 JUMPI PUSH2 0xF74 PUSH2 0x1339 JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH1 0xF8 SHR PUSH1 0x1F AND DUP3 DUP5 MLOAD DUP4 ADD PUSH1 0x1 ADD DUP2 MLOAD DUP2 LT PUSH2 0xF9D JUMPI PUSH2 0xF9D PUSH2 0x1339 JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0xF0C JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH4 0x3B6A57B2 DUP2 MSTORE PUSH4 0x26508E6D PUSH1 0x20 DUP3 ADD MSTORE PUSH4 0x1EA119FA SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH4 0x3D4233DD PUSH1 0x60 DUP3 ADD MSTORE PUSH4 0x2A1462B3 PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 SWAP1 DUP3 JUMPDEST DUP5 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x10AE JUMPI PUSH1 0x0 PUSH1 0x19 DUP5 PUSH4 0xFFFFFFFF AND SWAP1 SHR SWAP1 POP DUP6 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x1036 JUMPI PUSH2 0x1036 PUSH2 0x1339 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x5 DUP6 PUSH4 0x1FFFFFF AND PUSH4 0xFFFFFFFF AND SWAP1 SHL XOR SWAP4 POP PUSH1 0x0 JUMPDEST PUSH1 0x5 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x10A4 JUMPI PUSH1 0x1 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND SHR DUP2 AND SWAP1 SUB PUSH2 0x109C JUMPI DUP4 DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0x5 DUP2 LT PUSH2 0x1092 JUMPI PUSH2 0x1092 PUSH2 0x1339 JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD DUP6 XOR SWAP5 POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x1055 JUMP JUMPDEST POP POP PUSH1 0x1 ADD PUSH2 0x1000 JUMP JUMPDEST POP SWAP1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 SWAP1 JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x10C6 JUMPI SWAP1 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x10F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1127 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x110F JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1143 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x114E DUP2 PUSH2 0x10DE JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x116A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x117B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1194 JUMPI PUSH2 0x1194 PUSH2 0x10F6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x11C2 JUMPI PUSH2 0x11C2 PUSH2 0x10F6 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP3 DUP3 ADD PUSH1 0x20 ADD DUP8 LT ISZERO PUSH2 0x11DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x11EB DUP3 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x110C JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x120C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xFB7 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x1276 JUMPI DUP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x1253 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1273 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x125F JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1294 JUMPI PUSH2 0x1294 PUSH2 0x10F6 JUMP JUMPDEST PUSH2 0x12A8 DUP2 PUSH2 0x12A2 DUP5 SLOAD PUSH2 0x11F8 JUMP JUMPDEST DUP5 PUSH2 0x122C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x12DC JUMPI PUSH1 0x0 DUP4 ISZERO PUSH2 0x12C4 JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x1273 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x130C JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x12EC JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x132A JUMPI DUP7 DUP5 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE 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 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x137D DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x110C JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP4 ADD DUP3 MLOAD PUSH1 0xC DUP2 LT PUSH2 0x13A9 JUMPI PUSH2 0x13A9 PUSH2 0x134F JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP4 DUP2 ADD MLOAD PUSH1 0x40 DUP3 DUP8 ADD MSTORE DUP1 MLOAD SWAP3 DUP4 SWAP1 MSTORE PUSH1 0x60 PUSH1 0x5 DUP5 SWAP1 SHL DUP8 ADD DUP2 ADD SWAP4 SWAP2 SWAP1 SWAP3 ADD SWAP2 DUP7 ADD SWAP1 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x142E JUMPI DUP8 DUP6 SUB PUSH1 0x5F NOT ADD DUP4 MSTORE DUP4 MLOAD DUP1 MLOAD PUSH1 0xA DUP2 LT PUSH2 0x13F9 JUMPI PUSH2 0x13F9 PUSH2 0x134F JUMP JUMPDEST DUP1 DUP8 MSTORE POP PUSH1 0x20 DUP2 ADD MLOAD SWAP1 POP PUSH1 0x40 PUSH1 0x20 DUP8 ADD MSTORE PUSH2 0x1418 PUSH1 0x40 DUP8 ADD DUP3 PUSH2 0x1365 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x13D4 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 DUP4 MLOAD PUSH1 0x5 DUP2 LT PUSH2 0x1452 JUMPI PUSH2 0x1452 PUSH2 0x134F JUMP JUMPDEST PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x80 PUSH1 0x60 DUP5 ADD MSTORE PUSH2 0x1470 PUSH1 0xC0 DUP5 ADD DUP3 PUSH2 0x1365 JUMP JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x3F NOT ADD PUSH1 0x80 DUP7 ADD MSTORE DUP1 MLOAD DUP1 DUP4 MSTORE SWAP2 SWAP3 POP PUSH1 0x20 SWAP1 DUP2 ADD SWAP2 DUP2 DUP5 ADD SWAP2 PUSH1 0x5 DUP3 SWAP1 SHL DUP6 ADD ADD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x14FF JUMPI DUP6 DUP3 SUB PUSH1 0x1F NOT ADD DUP5 MSTORE DUP5 MLOAD DUP3 PUSH1 0x40 DUP2 ADD PUSH1 0x0 JUMPDEST PUSH1 0x2 DUP2 LT ISZERO PUSH2 0x14E7 JUMPI DUP6 DUP3 SUB DUP4 MSTORE PUSH2 0x14D2 DUP3 DUP6 MLOAD PUSH2 0x1365 JUMP JUMPDEST PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 SWAP4 SWAP1 SWAP4 ADD SWAP3 SWAP2 POP PUSH1 0x1 ADD PUSH2 0x14B9 JUMP JUMPDEST POP PUSH1 0x20 SWAP8 DUP9 ADD SWAP8 SWAP7 SWAP1 SWAP7 ADD SWAP6 SWAP4 POP POP POP PUSH1 0x1 ADD PUSH2 0x149E JUMP JUMPDEST POP PUSH1 0x60 DUP10 ADD MLOAD DUP8 DUP3 SUB PUSH1 0x3F NOT ADD PUSH1 0xA0 DUP10 ADD MSTORE SWAP5 POP PUSH2 0x151D DUP2 DUP7 PUSH2 0x1365 JUMP JUMPDEST SWAP5 POP POP POP POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0xB53 DUP2 DUP6 PUSH2 0x1391 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1547 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x1552 DUP2 PUSH2 0x10DE JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x1552 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1365 JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP1 DUP4 ADD MLOAD SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0xFB7 JUMPI PUSH1 0x0 NOT PUSH1 0x20 SWAP2 SWAP1 SWAP2 SUB PUSH1 0x3 SHL SHL AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x15A2 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x110C JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x5C0 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x15DF DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x110C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT SWAP4 SWAP1 SWAP4 AND SWAP2 SWAP1 SWAP3 ADD SWAP1 DUP2 MSTORE PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x140 MLOAD PUSH2 0x160 MLOAD PUSH2 0x180 MLOAD PUSH2 0x1A0 MLOAD PUSH2 0x1C0 MLOAD PUSH2 0x1E0 MLOAD PUSH2 0x50F0 PUSH2 0x16DA PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x1B23 ADD MSTORE PUSH2 0x247D ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x12EF ADD MSTORE PUSH2 0x17FD ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x87F ADD MSTORE PUSH2 0xB35 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x3CC ADD MSTORE PUSH2 0x27DE ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x322 ADD MSTORE DUP2 DUP2 PUSH2 0x489 ADD MSTORE DUP2 DUP2 PUSH2 0xB0D ADD MSTORE DUP2 DUP2 PUSH2 0xCF7 ADD MSTORE DUP2 DUP2 PUSH2 0x157C ADD MSTORE DUP2 DUP2 PUSH2 0x16F0 ADD MSTORE DUP2 DUP2 PUSH2 0x19E1 ADD MSTORE PUSH2 0x1BDB ADD MSTORE PUSH1 0x0 PUSH2 0x23A3 ADD MSTORE PUSH1 0x0 PUSH2 0x2376 ADD MSTORE PUSH1 0x0 PUSH2 0x22A4 ADD MSTORE PUSH1 0x0 PUSH2 0x227C ADD MSTORE PUSH1 0x0 PUSH2 0x21D7 ADD MSTORE PUSH1 0x0 PUSH2 0x2201 ADD MSTORE PUSH1 0x0 PUSH2 0x222B ADD MSTORE PUSH2 0x50F0 PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x267 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x77CC7A3A GT PUSH2 0x144 JUMPI DUP1 PUSH4 0xACB734BB GT PUSH2 0xB6 JUMPI DUP1 PUSH4 0xDD62ED3E GT PUSH2 0x7A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x7C7 JUMPI DUP1 PUSH4 0xDDB2BF5C EQ PUSH2 0x80D JUMPI DUP1 PUSH4 0xEA9E96A6 EQ PUSH2 0x82D JUMPI DUP1 PUSH4 0xF399E22E EQ PUSH2 0x84D JUMPI DUP1 PUSH4 0xF69A00B6 EQ PUSH2 0x86D JUMPI DUP1 PUSH4 0xFEC53A14 EQ PUSH2 0x8A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xACB734BB EQ PUSH2 0x73D JUMPI DUP1 PUSH4 0xB3F120A1 EQ PUSH2 0x752 JUMPI DUP1 PUSH4 0xC65A20F0 EQ PUSH2 0x767 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x787 JUMPI DUP1 PUSH4 0xD6F29E81 EQ PUSH2 0x7A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x91F4F96C GT PUSH2 0x108 JUMPI DUP1 PUSH4 0x91F4F96C EQ PUSH2 0x679 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x68E JUMPI DUP1 PUSH4 0xA41942A4 EQ PUSH2 0x6A3 JUMPI DUP1 PUSH4 0xA53CB851 EQ PUSH2 0x6C3 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x6F0 JUMPI DUP1 PUSH4 0xAA22DC33 EQ PUSH2 0x710 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x77CC7A3A EQ PUSH2 0x58E JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x5AE JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x5CE JUMPI DUP1 PUSH4 0x873234CF EQ PUSH2 0x5F6 JUMPI DUP1 PUSH4 0x8A510F27 EQ PUSH2 0x659 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x30315DC4 GT PUSH2 0x1DD JUMPI DUP1 PUSH4 0x5F029EBE GT PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x5F029EBE EQ PUSH2 0x4CE JUMPI DUP1 PUSH4 0x6AAA54CF EQ PUSH2 0x4E1 JUMPI DUP1 PUSH4 0x6D0D6A7E EQ PUSH2 0x4F6 JUMPI DUP1 PUSH4 0x6DF0627E EQ PUSH2 0x516 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x536 JUMPI DUP1 PUSH4 0x71D41EB3 EQ PUSH2 0x56C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x30315DC4 EQ PUSH2 0x40E JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x43B JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x457 JUMPI DUP1 PUSH4 0x47A10E56 EQ PUSH2 0x46C JUMPI DUP1 PUSH4 0x520A5495 EQ PUSH2 0x4B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x147040DE GT PUSH2 0x22F JUMPI DUP1 PUSH4 0x147040DE EQ PUSH2 0x344 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x359 JUMPI DUP1 PUSH4 0x18BF5077 EQ PUSH2 0x378 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x39A JUMPI DUP1 PUSH4 0x27AE6883 EQ PUSH2 0x3BA JUMPI DUP1 PUSH4 0x2B8C49E3 EQ PUSH2 0x3EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1367F73 EQ PUSH2 0x26C JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x29E JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x2CE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2F0 JUMPI DUP1 PUSH4 0x1014D375 EQ PUSH2 0x310 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x278 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x281 PUSH2 0x8B6 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 CALLVALUE DUP1 ISZERO PUSH2 0x2AA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2BE PUSH2 0x2B9 CALLDATASIZE PUSH1 0x4 PUSH2 0x3D2A JUMP JUMPDEST PUSH2 0x8CF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x295 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E3 PUSH2 0x906 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x295 SWAP2 SWAP1 PUSH2 0x3DA4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2BE PUSH2 0x30B CALLDATASIZE PUSH1 0x4 PUSH2 0x3DCC JUMP JUMPDEST PUSH2 0x998 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x31C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x281 PUSH32 0x0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x350 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E3 PUSH2 0x9B0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x365 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x295 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x384 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x393 CALLDATASIZE PUSH1 0x4 PUSH2 0x3DCC JUMP JUMPDEST PUSH2 0x9DD JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2BE PUSH2 0x3B5 CALLDATASIZE PUSH1 0x4 PUSH2 0x3DF8 JUMP JUMPDEST PUSH2 0xA35 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x281 PUSH32 0x0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3FA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x409 CALLDATASIZE PUSH1 0x4 PUSH2 0x3DCC JUMP JUMPDEST PUSH2 0xA59 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x41A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x423 PUSH2 0xAA9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x295 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x447 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x9 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x295 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x463 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0xAC9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x478 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2BE PUSH2 0x487 CALLDATASIZE PUSH1 0x4 PUSH2 0x3E39 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 AND EQ SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0xAD3 JUMP JUMPDEST PUSH2 0x36A PUSH2 0x4DC CALLDATASIZE PUSH1 0x4 PUSH2 0x3E56 JUMP JUMPDEST PUSH2 0xAF6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4ED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0xC12 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x502 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x511 CALLDATASIZE PUSH1 0x4 PUSH2 0x3EB7 JUMP JUMPDEST PUSH2 0xC35 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x522 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x531 CALLDATASIZE PUSH1 0x4 PUSH2 0x3F28 JUMP JUMPDEST PUSH2 0xF15 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x542 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x551 CALLDATASIZE PUSH1 0x4 PUSH2 0x3E39 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 CALLVALUE DUP1 ISZERO PUSH2 0x578 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x581 PUSH2 0xFF5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x295 SWAP2 SWAP1 PUSH2 0x3F93 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x59A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x5A9 CALLDATASIZE PUSH1 0x4 PUSH2 0x3E56 JUMP JUMPDEST PUSH2 0x10D7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x5C9 CALLDATASIZE PUSH1 0x4 PUSH2 0x3E39 JUMP JUMPDEST PUSH2 0x10F5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5E3 PUSH2 0x1113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x295 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3FA6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x602 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x60B PUSH2 0x1159 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x295 SWAP2 SWAP1 PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0xFFFF DUP4 MLOAD AND DUP3 MSTORE PUSH2 0xFFFF PUSH1 0x20 DUP5 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x40 DUP5 ADD MLOAD AND PUSH1 0x40 DUP4 ADD MSTORE PUSH3 0xFFFFFF PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x60 DUP4 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x665 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x674 CALLDATASIZE PUSH1 0x4 PUSH2 0x405E JUMP JUMPDEST PUSH2 0x11D8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x685 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x1436 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x69A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E3 PUSH2 0x1452 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x6BE CALLDATASIZE PUSH1 0x4 PUSH2 0x3E39 JUMP JUMPDEST PUSH2 0x1461 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6E3 PUSH2 0x6DE CALLDATASIZE PUSH1 0x4 PUSH2 0x3E56 JUMP JUMPDEST PUSH2 0x1522 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x295 SWAP2 SWAP1 PUSH2 0x40A8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2BE PUSH2 0x70B CALLDATASIZE PUSH1 0x4 PUSH2 0x3DCC JUMP JUMPDEST PUSH2 0x161C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x71C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x730 PUSH2 0x72B CALLDATASIZE PUSH1 0x4 PUSH2 0x40B6 JUMP JUMPDEST PUSH2 0x162A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x295 SWAP2 SWAP1 PUSH2 0x412B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x749 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E3 PUSH2 0x16EC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x75E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E3 PUSH2 0x17ED JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x773 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x782 CALLDATASIZE PUSH1 0x4 PUSH2 0x4176 JUMP JUMPDEST PUSH2 0x1826 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x793 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x7A2 CALLDATASIZE PUSH1 0x4 PUSH2 0x41C6 JUMP JUMPDEST PUSH2 0x18A2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x7C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x4237 JUMP JUMPDEST PUSH2 0x19DC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7D3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x7E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x4269 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 CALLVALUE DUP1 ISZERO PUSH2 0x819 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x828 CALLDATASIZE PUSH1 0x4 PUSH2 0x3E56 JUMP JUMPDEST PUSH2 0x1BD4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x839 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x848 CALLDATASIZE PUSH1 0x4 PUSH2 0x436E JUMP JUMPDEST PUSH2 0x1C00 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x859 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x868 CALLDATASIZE PUSH1 0x4 PUSH2 0x448B JUMP JUMPDEST PUSH2 0x1C85 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x879 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x281 PUSH32 0x0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x1FC2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C0 PUSH2 0x1FD5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xCCCC665 PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x900 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x915 SWAP1 PUSH2 0x44AB 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 0x941 SWAP1 PUSH2 0x44AB JUMP JUMPDEST DUP1 ISZERO PUSH2 0x98E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x963 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x98E 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 0x971 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x9A6 DUP2 DUP6 DUP6 PUSH2 0x1FF9 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x9D8 PUSH1 0x1 CHAINID EQ PUSH2 0x9C1 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x2 ADD SLOAD PUSH1 0x60 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND SWAP1 PUSH2 0x2006 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x9E6 CALLER PUSH2 0x2057 JUMP JUMPDEST PUSH2 0x9F0 DUP3 DUP3 PUSH2 0x2086 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0xDE22BAFF038E3A3E08407CBDF617DEED74E869A7BA517DF611E33131C6E6EA04 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xA43 DUP6 DUP3 DUP6 PUSH2 0x20BC JUMP JUMPDEST PUSH2 0xA4E DUP6 DUP6 DUP6 PUSH2 0x2135 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0xA62 CALLER PUSH2 0x2057 JUMP JUMPDEST PUSH2 0xA6C DUP3 DUP3 PUSH2 0x2194 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0xB90795A66650155983E242CAC3E1AC1A4DC26F8ED2987F3CE416A34E00111FD4 SWAP1 PUSH1 0x20 ADD PUSH2 0xA29 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAB3 PUSH2 0x1FD5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9D8 PUSH2 0x21CA JUMP JUMPDEST PUSH1 0x0 PUSH2 0xADD PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3752120B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH32 0x0 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH20 0x0 SWAP1 PUSH4 0x3752120B SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS DELEGATECALL ISZERO DUP1 ISZERO PUSH2 0xBA0 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 0xBC4 SWAP2 SWAP1 PUSH2 0x44DF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 NOT DUP2 SUB PUSH2 0xC0D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x185B1C9958591E481B5A5B9D1959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC1C PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC92 PUSH2 0xC40 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x3 ADD SLOAD PUSH2 0xFFFF AND PUSH2 0xC58 PUSH1 0x80 DUP7 ADD PUSH1 0x60 DUP8 ADD PUSH2 0x4508 JUMP JUMPDEST PUSH2 0xFFFF AND LT ISZERO PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x16 DUP2 MSTORE PUSH1 0x20 ADD PUSH22 0x696E73756666696369656E74207769746E6573736573 PUSH1 0x50 SHL DUP2 MSTORE POP PUSH2 0x22F8 JUMP JUMPDEST PUSH2 0xCDD PUSH2 0xCAD PUSH2 0xCA0 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x5 ADD SLOAD PUSH1 0x20 DUP7 ADD CALLDATALOAD EQ SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH18 0xD2DCECC2D8D2C840E4C2C8DEDC40D0C2E6D PUSH1 0x73 SHL DUP2 MSTORE POP PUSH2 0x22F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3686B53F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6D0D6A7E SWAP1 PUSH2 0xD30 SWAP1 DUP8 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x4593 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xD4F 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 0xD77 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x47AA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x67C4440F PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP2 POP PUSH20 0x0 SWAP1 PUSH4 0x67C4440F SWAP1 PUSH2 0xDB1 SWAP1 DUP5 SWAP1 PUSH1 0x4 ADD PUSH2 0x4861 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS DELEGATECALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xDEA JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xDE7 SWAP2 DUP2 ADD SWAP1 PUSH2 0x494E JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xE5E JUMPI PUSH2 0xDF6 PUSH2 0x496B JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 SUB PUSH2 0xE24 JUMPI POP PUSH2 0xE0A PUSH2 0x4986 JUMP JUMPDEST DUP1 PUSH2 0xE15 JUMPI POP PUSH2 0xE26 JUMP JUMPDEST PUSH2 0xE1E DUP2 PUSH2 0x2302 JUMP JUMPDEST POP PUSH2 0xF0F JUMP JUMPDEST POP JUMPDEST RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0xE50 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 0xE55 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH2 0xE1E PUSH2 0x2339 JUMP JUMPDEST PUSH1 0x60 DUP1 DUP4 ADD MLOAD PUSH1 0x40 DUP1 DUP6 ADD MLOAD DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP8 AND DUP3 MSTORE SWAP1 SWAP4 AND PUSH1 0x20 DUP5 ADD MSTORE SWAP1 DUP3 ADD MSTORE PUSH32 0x8A01B18BDCA3D556ADC5E6A85F562B83D2C1933F166E93421FF507CFCCB09A07 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 PUSH2 0xEB9 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x1 ADD DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0xEE8 PUSH2 0x1FD5 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xC0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xC0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xF1D PUSH2 0x1FD5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF4E JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH2 0xF5D PUSH1 0x20 DUP4 ADD DUP4 PUSH2 0x4508 JUMP JUMPDEST PUSH2 0xFFFF AND LT ISZERO DUP1 ISZERO PUSH2 0xF83 JUMPI POP PUSH1 0x32 PUSH2 0xF7C PUSH1 0x40 DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0x4508 JUMP JUMPDEST PUSH2 0xFFFF AND GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0xFAB JUMPI POP PUSH4 0xBEBC200 PUSH2 0xF9F PUSH1 0x60 DUP4 ADD PUSH1 0x40 DUP5 ADD PUSH2 0x4A09 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0xFCE JUMPI POP PUSH3 0x33450 PUSH2 0xFC6 PUSH1 0x80 DUP4 ADD PUSH1 0x60 DUP5 ADD PUSH2 0x4A37 JUMP JUMPDEST PUSH3 0xFFFFFF AND LT ISZERO JUMPDEST PUSH2 0xFDA JUMPI PUSH2 0xFDA PUSH2 0x4A54 JUMP JUMPDEST DUP1 PUSH2 0xFE3 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x3 ADD PUSH2 0xFF0 DUP3 DUP3 PUSH2 0x4A6A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xFFF PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x4 ADD 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 0x10CE JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x1041 SWAP1 PUSH2 0x44AB 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 0x106D SWAP1 PUSH2 0x44AB JUMP JUMPDEST DUP1 ISZERO PUSH2 0x10BA JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x108F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x10BA 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 0x109D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x1022 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10E1 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x6 ADD PUSH1 0x20 MSTORE POP PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x900 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 PUSH2 0x1127 PUSH2 0x236F JUMP JUMPDEST PUSH2 0x112F PUSH2 0x239C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0xF PUSH1 0xF8 SHL SWAP12 SWAP4 SWAP11 POP SWAP2 SWAP9 POP CHAINID SWAP8 POP ADDRESS SWAP7 POP SWAP5 POP SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 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 SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x1185 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH1 0x3 SWAP3 SWAP1 SWAP3 ADD SLOAD PUSH2 0xFFFF DUP1 DUP3 AND DUP5 MSTORE PUSH3 0x10000 DUP3 DIV AND PUSH1 0x20 DUP5 ADD MSTORE PUSH5 0x100000000 DUP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x60 SHL SWAP1 DIV PUSH3 0xFFFFFF AND PUSH1 0x60 DUP3 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH2 0x11ED CALLER PUSH2 0x551 JUMP JUMPDEST LT ISZERO PUSH2 0x1230 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 PUSH18 0x6E6F7420656E6F7567682062616C616E6365 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x123A PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND SWAP2 POP DUP6 AND DUP2 LT ISZERO PUSH2 0x129C 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 0x63616E6E6F7420756E777261702074686174206D756368000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12E2 DUP6 DUP6 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 POP CHAINID PUSH1 0x1 EQ SWAP2 POP PUSH2 0x23C9 SWAP1 POP JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH32 0x0 DUP2 AND SWAP1 DUP3 AND SUB PUSH2 0x1354 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x1A5B9D985B1A59081C9958DA5C1A595B9D PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH2 0x135E DUP7 DUP4 PUSH2 0x4B32 JUMP JUMPDEST PUSH2 0x1366 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x1 ADD DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP3 DUP4 AND OR SWAP1 SSTORE PUSH2 0x1391 SWAP1 CALLER SWAP1 DUP9 AND PUSH2 0x2194 JUMP JUMPDEST PUSH2 0x1399 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x1 ADD DUP1 SLOAD PUSH1 0x8 SWAP1 PUSH2 0x13BA SWAP1 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH2 0x4B51 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND MUL OR SWAP1 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP3 POP PUSH32 0xAC1547DF8510F30B54430E0E4E1E93CE326490AEC9CEBF0F78B8FAA55DC1DED PUSH2 0x1410 CALLER SWAP1 JUMP JUMPDEST DUP7 DUP7 DUP10 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1425 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4B7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1440 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x915 SWAP1 PUSH2 0x44AB JUMP JUMPDEST PUSH2 0x1469 PUSH2 0x1FD5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x149A JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x14B0 JUMPI PUSH2 0x14B0 PUSH2 0x4A54 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x14C2 PUSH2 0x1FD5 JUMP JUMPDEST SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH32 0xC63757ACC12B39558FE5B88C5393E4B0353FFDDAAE3A2D07E121A8FC62D39C37 SWAP1 PUSH1 0x0 SWAP1 LOG3 DUP1 PUSH2 0x1501 PUSH2 0x1FD5 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x152D PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x6 SWAP2 SWAP1 SWAP2 ADD PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 POP DUP2 SWAP1 SUB PUSH2 0x1552 JUMPI POP PUSH1 0x0 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 NOT DUP2 SUB PUSH2 0x1564 JUMPI POP PUSH1 0x3 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD PUSH4 0x1BC1EAF3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x6F07ABCC SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x15CB 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 0x15EF SWAP2 SWAP1 PUSH2 0x4BBE JUMP JUMPDEST PUSH1 0x6 DUP2 GT ISZERO PUSH2 0x1600 JUMPI PUSH2 0x1600 PUSH2 0x407E JUMP JUMPDEST EQ PUSH2 0x160C JUMPI PUSH1 0x2 PUSH2 0x160F JUMP JUMPDEST PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x9A6 DUP2 DUP6 DUP6 PUSH2 0x2135 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1644 JUMPI PUSH2 0x1644 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x166D JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x16E5 JUMPI PUSH2 0x169C DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x1690 JUMPI PUSH2 0x1690 PUSH2 0x4BDF JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH2 0x1522 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x16AE JUMPI PUSH2 0x16AE PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x16C7 JUMPI PUSH2 0x16C7 PUSH2 0x407E JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x16DA JUMPI PUSH2 0x16DA PUSH2 0x407E JUMP JUMPDEST SWAP1 MSTORE POP PUSH1 0x1 ADD PUSH2 0x1673 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x7B103999 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 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x174C 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 0x1770 SWAP2 SWAP1 PUSH2 0x4BF5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x8A227764 PUSH2 0x1786 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x5 ADD SLOAD PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17A8 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x17C5 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 0x9D8 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x4C12 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x9D8 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH32 0x0 AND CHAINID PUSH1 0x1 EQ PUSH2 0x2006 JUMP JUMPDEST PUSH2 0x182E PUSH2 0x1FD5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x185F JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x189E DUP3 DUP3 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 0x247B SWAP3 POP POP POP JUMP JUMPDEST POP POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x18C6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x313C8981 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x1913 DUP13 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE SWAP1 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 0x196E DUP3 PUSH2 0x2635 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x197E DUP3 DUP8 DUP8 DUP8 PUSH2 0x2662 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 0x19C5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x25C00723 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x4 DUP4 ADD MSTORE DUP12 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH2 0x19D0 DUP11 DUP11 DUP11 PUSH2 0x1FF9 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1A37 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xE DUP2 MSTORE PUSH1 0x20 ADD PUSH14 0x696E76616C6964206F7261636C65 PUSH1 0x90 SHL DUP2 MSTORE POP PUSH2 0x22F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D933EB7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH20 0x0 SWAP1 PUSH4 0x5D933EB7 SWAP1 PUSH2 0x1A72 SWAP1 DUP7 SWAP1 DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x4C4E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS DELEGATECALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1AB0 JUMPI 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 0x1AAD SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x4C68 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1B1E JUMPI PUSH2 0x1ABC PUSH2 0x496B JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 SUB PUSH2 0x1AE4 JUMPI POP PUSH2 0x1AD0 PUSH2 0x4986 JUMP JUMPDEST DUP1 PUSH2 0x1ADB JUMPI POP PUSH2 0x1AE6 JUMP JUMPDEST PUSH2 0xF0F DUP2 PUSH2 0x2302 JUMP JUMPDEST POP JUMPDEST RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1B10 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 0x1B15 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH2 0xF0F PUSH2 0x2339 JUMP JUMPDEST PUSH2 0x1B7A PUSH32 0x0 DUP6 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 EQ PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x11 DUP2 MSTORE PUSH1 0x20 ADD PUSH17 0x34B73B30B634B21031BAB9BA37B234B0B7 PUSH1 0x79 SHL DUP2 MSTORE POP PUSH2 0x22F8 JUMP JUMPDEST PUSH2 0x1B8D DUP3 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH2 0x2086 JUMP JUMPDEST PUSH32 0xBAE099C209765C02C309F0FAC06AEC3AC516A3CC60D09F1A3DA4B52D673D28A3 DUP4 DUP4 DUP4 DUP9 PUSH1 0x40 MLOAD PUSH2 0x1BC2 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4D02 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x900 PUSH32 0x0 DUP4 PUSH2 0x2690 JUMP JUMPDEST PUSH2 0x1C08 PUSH2 0x1FD5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1C39 JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x1C4A JUMPI PUSH2 0x1C4A PUSH2 0x4A54 JUMP JUMPDEST DUP1 PUSH2 0x1C53 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x4 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1C69 SWAP3 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST POP PUSH2 0x1C82 DUP2 PUSH2 0x1C7D PUSH1 0x1 CHAINID EQ PUSH2 0x9C1 PUSH2 0x1FD5 JUMP JUMPDEST PUSH2 0x2753 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C8F PUSH2 0x2869 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x1CB6 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH1 0x0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x1CD2 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x1CE0 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x1CFE JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x1D28 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST DUP8 PUSH2 0x1D31 PUSH2 0x1FD5 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND OR SWAP1 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP10 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xC63757ACC12B39558FE5B88C5393E4B0353FFDDAAE3A2D07E121A8FC62D39C37 SWAP1 DUP3 SWAP1 LOG3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 CHAINID EQ PUSH2 0x1D94 JUMPI PUSH1 0x3 PUSH2 0x1D97 JUMP JUMPDEST PUSH1 0xC JUMPDEST PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1DAC PUSH1 0xA PUSH1 0x32 PUSH2 0x4D59 JUMP JUMPDEST PUSH2 0xFFFF AND DUP2 MSTORE PUSH4 0xBEBC200 PUSH1 0x20 DUP3 ADD MSTORE PUSH3 0x33450 PUSH1 0x40 SWAP1 SWAP2 ADD MSTORE PUSH2 0x1DCE PUSH2 0x1FD5 JUMP JUMPDEST DUP2 MLOAD PUSH1 0x3 SWAP2 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH1 0x40 DUP1 DUP8 ADD MLOAD PUSH1 0x60 SWAP1 SWAP8 ADD MLOAD PUSH3 0xFFFFFF AND PUSH1 0x1 PUSH1 0x60 SHL MUL PUSH3 0xFFFFFF PUSH1 0x60 SHL NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP9 AND PUSH5 0x100000000 MUL SWAP8 SWAP1 SWAP8 AND PUSH15 0xFFFFFFFFFFFFFFFFFFFFFF00000000 NOT PUSH2 0xFFFF SWAP4 DUP5 AND PUSH3 0x10000 MUL PUSH4 0xFFFFFFFF NOT SWAP1 SWAP7 AND SWAP4 SWAP1 SWAP8 AND SWAP3 SWAP1 SWAP3 OR SWAP4 SWAP1 SWAP4 OR SWAP5 SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP4 SWAP1 SWAP4 OR SWAP1 SSTORE DUP2 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x0 SWAP3 SWAP1 SWAP2 DUP3 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x1E67 JUMPI SWAP1 POP POP SWAP1 POP PUSH1 0x1 CHAINID EQ PUSH2 0x1EC1 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1D DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x68747470733A2F2F7270632D746573746E65742E7769746E65742E696F000000 DUP2 MSTORE POP PUSH2 0x1EF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x18 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x68747470733A2F2F7270632D30312E7769746E65742E696F0000000000000000 DUP2 MSTORE POP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1F0B JUMPI PUSH2 0x1F0B PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 PUSH2 0x1F1F PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x4 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1F35 SWAP3 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST POP PUSH2 0x1F75 DUP9 DUP9 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 0x247B SWAP3 POP POP POP JUMP JUMPDEST POP DUP4 ISZERO PUSH2 0x1FB8 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH2 0x1BC2 JUMP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1FCC PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x5 ADD SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58F9 SWAP1 JUMP JUMPDEST PUSH2 0xFF0 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x2892 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x160F DUP4 PUSH1 0x60 SHR DUP4 PUSH2 0x2036 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH4 0x1D1DDA5D PUSH1 0xE2 SHL DUP2 MSTORE POP PUSH2 0x2967 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x1DDA5D PUSH1 0xEA SHL DUP2 MSTORE POP PUSH2 0x2967 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x28 PUSH1 0x21 PUSH1 0x99 SHL ADD EQ PUSH2 0x1C82 JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x20B0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH2 0x189E PUSH1 0x0 DUP4 DUP4 PUSH2 0x299B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0x0 NOT DUP2 LT ISZERO PUSH2 0xF0F JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x2126 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH2 0xF0F DUP5 DUP5 DUP5 DUP5 SUB PUSH1 0x0 PUSH2 0x2892 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x215F JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2189 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH2 0xFF0 DUP4 DUP4 DUP4 PUSH2 0x299B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x21BE JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH2 0x189E DUP3 PUSH1 0x0 DUP4 PUSH2 0x299B JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x2223 JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0x224D JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x9D8 PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x0 SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 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 SWAP1 JUMP JUMPDEST SWAP1 JUMP JUMPDEST DUP2 PUSH2 0x189E JUMPI PUSH2 0x189E DUP2 JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2313 SWAP2 SWAP1 PUSH2 0x4D7D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP1 DUP3 SWAP1 MSTORE PUSH3 0x461BCD PUSH1 0xE5 SHL DUP3 MSTORE PUSH2 0xC04 SWAP2 PUSH1 0x4 ADD PUSH2 0x3DA4 JUMP JUMPDEST PUSH2 0x236D PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x13 DUP2 MSTORE PUSH1 0x20 ADD PUSH19 0x3AB73430B7323632B21032BC31B2B83A34B7B7 PUSH1 0x69 SHL DUP2 MSTORE POP PUSH2 0x2302 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH2 0x9D8 PUSH32 0x0 PUSH1 0x5 PUSH2 0x2AC5 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x9D8 PUSH32 0x0 PUSH1 0x6 PUSH2 0x2AC5 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x23D7 JUMPI PUSH1 0x2B PUSH2 0x23DA JUMP JUMPDEST PUSH1 0x2A JUMPDEST PUSH1 0xFF AND DUP4 MLOAD EQ PUSH2 0x2425 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 PUSH22 0x84CAC6D066647440D2DCECC2D8D2C840D8CADCCEE8D PUSH1 0x53 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH2 0x2471 DUP4 DUP4 PUSH2 0x2450 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH4 0x1D1DDA5D PUSH1 0xE2 SHL DUP2 MSTORE POP PUSH2 0x2B70 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x1DDA5D PUSH1 0xEA SHL DUP2 MSTORE POP PUSH2 0x2B70 JUMP JUMPDEST PUSH1 0x60 SHL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x0 DUP2 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SUB PUSH2 0x24EA 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 PUSH22 0x3AB730B1B1B2B83A30B13632903AB73BB930B83832B9 PUSH1 0x51 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH32 0xAF2313438CF7747B4740D0822C1E7683638361ACE0DAA8F1C4D5A15D57F4EF04 DUP2 PUSH1 0x40 MLOAD PUSH2 0x2519 SWAP2 SWAP1 PUSH2 0x3DA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x252E DUP2 PUSH1 0x1 CHAINID EQ PUSH2 0x23C9 JUMP JUMPDEST PUSH2 0x2536 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x2 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x60 SWAP3 SWAP1 SWAP3 SHR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x1C82 PUSH2 0x255C PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x4 ADD 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 0x262B JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x259E SWAP1 PUSH2 0x44AB 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 0x25CA SWAP1 PUSH2 0x44AB JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2617 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x25EC JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2617 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 0x25FA JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x257F JUMP JUMPDEST POP POP POP POP DUP3 PUSH2 0x2753 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x900 PUSH2 0x2642 PUSH2 0x21CA JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH2 0x1901 PUSH1 0xF0 SHL DUP2 MSTORE PUSH1 0x2 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x2674 DUP9 DUP9 DUP9 DUP9 PUSH2 0x2BF2 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x2684 DUP3 DUP3 PUSH2 0x2CC1 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5E742EF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH3 0x35B60 PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x64 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x5E742EF SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x26E4 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 0x2708 SWAP2 SWAP1 PUSH2 0x44DF JUMP JUMPDEST PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58FC SLOAD PUSH2 0x273F SWAP1 PUSH3 0x10000 SWAP1 DIV PUSH2 0xFFFF AND PUSH1 0x64 PUSH2 0x4DB1 JUMP JUMPDEST PUSH2 0x2749 SWAP2 SWAP1 PUSH2 0x4DC4 JUMP JUMPDEST PUSH2 0x160F SWAP2 SWAP1 PUSH2 0x4DDB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x2 DUP1 DUP3 MSTORE PUSH1 0x60 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x276B JUMPI SWAP1 POP POP SWAP1 POP PUSH2 0x278A PUSH2 0x17ED JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x279D JUMPI PUSH2 0x279D PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP2 DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x27BC JUMPI PUSH2 0x27BC PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x40 MLOAD PUSH4 0x3C389C6F PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0xF0E271BC SWAP1 PUSH2 0x2815 SWAP1 DUP5 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x4DEF JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2834 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 0x2858 SWAP2 SWAP1 PUSH2 0x44DF JUMP JUMPDEST PUSH2 0x2860 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x5 ADD SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x900 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x28BC JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x28E6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 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 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0xF0F JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x2959 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x60 DUP4 DUP2 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 PUSH2 0x160F SWAP1 PUSH1 0x34 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP4 PUSH2 0x2D7A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x29C6 JUMPI DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x29BB SWAP2 SWAP1 PUSH2 0x4DB1 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x2A38 SWAP1 POP 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 0x2A19 JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2A54 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x2A73 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 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x2AB8 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xFF DUP4 EQ PUSH2 0x2ADF JUMPI PUSH2 0x2AD8 DUP4 PUSH2 0x2DC8 JUMP JUMPDEST SWAP1 POP PUSH2 0x900 JUMP JUMPDEST DUP2 DUP1 SLOAD PUSH2 0x2AEB SWAP1 PUSH2 0x44AB 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 0x2B17 SWAP1 PUSH2 0x44AB JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2B64 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2B39 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2B64 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 0x2B47 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH2 0x900 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x2B9F DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2B89 SWAP2 SWAP1 PUSH2 0x4E14 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x1 PUSH2 0x2E07 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x2BCC DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2BB7 SWAP2 SWAP1 PUSH2 0x4E14 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP4 PUSH2 0x3198 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BDD DUP3 PUSH1 0x5 PUSH1 0x8 PUSH1 0x0 PUSH2 0x31EC JUMP JUMPDEST SWAP1 POP PUSH2 0x2BE8 DUP2 PUSH2 0x31FA JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0x2C2D JUMPI POP PUSH1 0x0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x2CB7 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 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 0x2C81 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 0x2CAD JUMPI POP PUSH1 0x0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x2CB7 JUMP JUMPDEST SWAP3 POP PUSH1 0x0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2CD5 JUMPI PUSH2 0x2CD5 PUSH2 0x407E JUMP JUMPDEST SUB PUSH2 0x2CDE JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2CF2 JUMPI PUSH2 0x2CF2 PUSH2 0x407E JUMP JUMPDEST SUB PUSH2 0x2D10 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2D24 JUMPI PUSH2 0x2D24 PUSH2 0x407E JUMP JUMPDEST SUB PUSH2 0x2D45 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2D59 JUMPI PUSH2 0x2D59 PUSH2 0x407E JUMP JUMPDEST SUB PUSH2 0x189E JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2D8F SWAP2 SWAP1 PUSH2 0x4E14 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP1 POP PUSH1 0x0 PUSH2 0x2DB1 DUP6 PUSH1 0x8 PUSH1 0x5 PUSH1 0x1 PUSH2 0x3255 JUMP JUMPDEST SWAP1 POP PUSH2 0x2DBF DUP3 DUP3 PUSH1 0x1 PUSH2 0x331D JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x2DD5 DUP4 PUSH2 0x35AE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE SWAP2 SWAP3 POP PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP POP POP SWAP2 DUP3 MSTORE POP PUSH1 0x20 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 PUSH1 0x5A DUP6 MLOAD GT ISZERO PUSH2 0x2E5E 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 0x4265636833323A20696E76616C696420737472696E67206C656E677468000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP6 MLOAD DUP2 LT ISZERO PUSH2 0x2F5B JUMPI PUSH1 0x0 DUP7 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2E7E JUMPI PUSH2 0x2E7E PUSH2 0x4BDF JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD PUSH1 0xF8 SHR SWAP1 POP PUSH1 0x21 DUP2 LT DUP1 ISZERO SWAP1 PUSH2 0x2E9D JUMPI POP PUSH1 0x7E DUP2 PUSH1 0xFF AND GT ISZERO JUMPDEST PUSH2 0x2EDE 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 PUSH18 0x2132B1B419991D103BB937B7339031B430B9 PUSH1 0x71 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x30 NOT PUSH1 0xFF DUP3 AND ADD PUSH2 0x2F52 JUMPI DUP3 ISZERO DUP1 ISZERO PUSH2 0x2EF9 JUMPI POP PUSH1 0x1 DUP3 LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x2F09 JUMPI POP DUP7 MLOAD DUP3 PUSH1 0x7 ADD GT ISZERO JUMPDEST PUSH2 0x2F4E 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 PUSH22 0x4265636833323A2077726F6E6720706F73206F662031 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST DUP2 SWAP3 POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x2E61 JUMP JUMPDEST POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2F74 JUMPI PUSH2 0x2F74 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2F9E JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP3 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2FFA JUMPI DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x2FBE JUMPI PUSH2 0x2FBE PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2FDB JUMPI PUSH2 0x2FDB PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x1 ADD PUSH2 0x2FA4 JUMP JUMPDEST POP PUSH1 0x1 DUP2 DUP7 MLOAD SUB SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3019 JUMPI PUSH2 0x3019 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3042 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP2 POP PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x3135 JUMPI PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH2 0x120 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x100 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x4F9B PUSH2 0x100 SWAP2 CODECOPY DUP8 DUP5 DUP5 ADD PUSH1 0x1 ADD DUP2 MLOAD DUP2 LT PUSH2 0x3086 JUMPI PUSH2 0x3086 PUSH2 0x4BDF JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD DUP2 MLOAD PUSH1 0xF8 SWAP2 SWAP1 SWAP2 SHR SWAP1 DUP2 LT PUSH2 0x30A2 JUMPI PUSH2 0x30A2 PUSH2 0x4BDF JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT SWAP1 DUP2 AND SWAP2 POP DUP2 SWAP1 SUB PUSH2 0x3104 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 0x4265636833323A2062797465206E6F7420696E20616C70686162657400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST DUP1 PUSH1 0xF8 SHR DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x311A JUMPI PUSH2 0x311A PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE POP PUSH1 0x1 ADD PUSH2 0x3048 JUMP JUMPDEST POP PUSH2 0x3141 DUP4 DUP4 DUP7 PUSH2 0x35D6 JUMP JUMPDEST PUSH2 0x3186 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 PUSH22 0x4265636833323A2077726F6E6720636865636B73756D PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST POP DUP1 MLOAD PUSH1 0x5 NOT ADD DUP2 MSTORE SWAP1 SWAP4 SWAP1 SWAP3 POP SWAP1 POP JUMP JUMPDEST DUP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 DUP3 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 EQ PUSH2 0x189E 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 PUSH20 0x84CAC6D066647440D0E4E040DAD2E6DAC2E8C6D PUSH1 0x63 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2DBF DUP6 DUP6 DUP6 DUP6 PUSH2 0x3704 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD PUSH1 0x14 EQ PUSH2 0x324D 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 0x4265636833323A20696E76616C69642064617461206C656E6774680000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST POP PUSH1 0x14 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP6 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3272 JUMPI PUSH2 0x3272 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x329B JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x3310 JUMPI DUP7 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x32C8 JUMPI PUSH2 0x32C8 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH1 0xF8 SHR DUP3 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x32EE JUMPI PUSH2 0x32EE PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH2 0x3309 DUP2 PUSH2 0x4E30 JUMP JUMPDEST SWAP1 POP PUSH2 0x32A1 JUMP JUMPDEST POP PUSH2 0x2BE8 DUP2 DUP7 DUP7 DUP7 PUSH2 0x3704 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x332C DUP6 DUP6 DUP6 PUSH2 0x38D4 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD DUP6 MLOAD DUP8 MLOAD ADD ADD PUSH1 0x1 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3352 JUMPI PUSH2 0x3352 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x337C JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP7 MLOAD DUP2 LT ISZERO PUSH2 0x33D9 JUMPI DUP7 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x339D JUMPI PUSH2 0x339D PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x33BA JUMPI PUSH2 0x33BA PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x1 ADD PUSH2 0x3382 JUMP JUMPDEST POP PUSH1 0x31 PUSH1 0xF8 SHL DUP2 DUP8 MLOAD DUP2 MLOAD DUP2 LT PUSH2 0x33F2 JUMPI PUSH2 0x33F2 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP DUP6 MLOAD PUSH1 0x1 ADD PUSH1 0x0 JUMPDEST DUP7 MLOAD DUP2 LT ISZERO PUSH2 0x34D9 JUMPI PUSH1 0x0 DUP8 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x342E JUMPI PUSH2 0x342E PUSH2 0x4BDF JUMP JUMPDEST ADD PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE DUP3 DUP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x509B DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 DUP4 ADD MSTORE PUSH1 0xF8 SHR SWAP2 POP DUP2 LT ISZERO PUSH2 0x34D0 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x509B DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP2 MSTORE POP DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x3499 JUMPI PUSH2 0x3499 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP5 DUP5 DUP5 ADD DUP2 MLOAD DUP2 LT PUSH2 0x34B8 JUMPI PUSH2 0x34B8 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x3411 JUMP JUMPDEST POP DUP6 MLOAD ADD PUSH1 0x0 JUMPDEST DUP4 MLOAD DUP2 LT ISZERO PUSH2 0x2684 JUMPI PUSH1 0x0 DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x34FD JUMPI PUSH2 0x34FD PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x509B DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP2 MSTORE POP MLOAD DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x35A5 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x509B DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP2 MSTORE POP DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x356E JUMPI PUSH2 0x356E PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP5 DUP5 DUP5 ADD DUP2 MLOAD DUP2 LT PUSH2 0x358D JUMPI PUSH2 0x358D PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x34E0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0x1F DUP2 GT ISZERO PUSH2 0x900 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x35E2 DUP6 PUSH2 0x3A78 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 MLOAD DUP3 MLOAD ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3602 JUMPI PUSH2 0x3602 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x362B JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x3686 JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x364C JUMPI PUSH2 0x364C PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3669 JUMPI PUSH2 0x3669 PUSH2 0x4BDF JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x3631 JUMP JUMPDEST POP PUSH1 0x0 JUMPDEST DUP6 MLOAD DUP2 LT ISZERO PUSH2 0x36E2 JUMPI DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x36A5 JUMPI PUSH2 0x36A5 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP5 MLOAD DUP4 ADD DUP2 MLOAD DUP2 LT PUSH2 0x36C5 JUMPI PUSH2 0x36C5 PUSH2 0x4BDF JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x368A JUMP JUMPDEST POP DUP4 PUSH4 0xFFFFFFFF AND PUSH2 0x36F3 DUP3 PUSH2 0x3B73 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND EQ SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 DUP1 PUSH2 0x3717 PUSH1 0x1 DUP1 DUP9 SHL PUSH2 0x4E4C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP9 MLOAD DUP2 LT ISZERO PUSH2 0x380D JUMPI PUSH1 0x0 DUP10 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3739 JUMPI PUSH2 0x3739 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MLOAD SWAP1 POP PUSH1 0xFF DUP1 DUP3 AND DUP11 SHR AND ISZERO PUSH2 0x37BA 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 0x4265636833323A2076616C7565206D757374206265206E6F6E2D6E6567617469 PUSH1 0x44 DUP3 ADD MSTORE PUSH22 0x766520616E642066697420696E2066726F6D62697473 PUSH1 0x50 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xC04 JUMP JUMPDEST SWAP4 DUP9 SHL PUSH1 0xFF DUP6 AND OR SWAP4 SWAP3 DUP9 ADD SWAP3 JUMPDEST DUP8 DUP5 LT PUSH2 0x3804 JUMPI PUSH1 0x40 MLOAD SWAP4 DUP9 SWAP1 SUB SWAP4 PUSH2 0x37EE SWAP1 DUP8 SWAP1 DUP8 DUP8 SHR DUP7 AND PUSH1 0xF8 SHL SWAP1 PUSH1 0x20 ADD PUSH2 0x4E5F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP6 POP PUSH2 0x37C8 JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x371C JUMP JUMPDEST POP DUP5 ISZERO PUSH2 0x3855 JUMPI DUP2 ISZERO PUSH2 0x3850 JUMPI DUP4 DUP2 PUSH2 0x3826 DUP5 DUP10 PUSH2 0x4E4C JUMP JUMPDEST DUP6 SWAP1 SHL AND PUSH1 0xF8 SHL PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x383E SWAP3 SWAP2 SWAP1 PUSH2 0x4E5F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP JUMPDEST PUSH2 0x38C9 JUMP JUMPDEST DUP7 DUP3 LT DUP1 PUSH2 0x386F JUMPI POP DUP1 PUSH2 0x3869 DUP4 DUP9 PUSH2 0x4E4C JUMP JUMPDEST DUP5 SWAP1 SHL AND ISZERO JUMPDEST PUSH2 0x38C9 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 0x4265636833323A20696E76616C69642070616464696E67206F722076616C7565 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x2073697A65 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xC04 JUMP JUMPDEST POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x38E1 DUP6 PUSH2 0x3A78 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 MLOAD DUP3 MLOAD ADD PUSH1 0x6 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3904 JUMPI PUSH2 0x3904 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x392D JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP6 MLOAD DUP4 MLOAD ADD DUP2 LT ISZERO PUSH2 0x39F1 JUMPI DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x3996 JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x395A JUMPI PUSH2 0x395A PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3977 JUMPI PUSH2 0x3977 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH4 0xFFFFFFFF AND SWAP1 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP POP PUSH2 0x39E9 JUMP JUMPDEST DUP6 DUP4 MLOAD DUP3 SUB DUP2 MLOAD DUP2 LT PUSH2 0x39AB JUMPI PUSH2 0x39AB PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH1 0xF8 SHR PUSH1 0xFF AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x39CE JUMPI PUSH2 0x39CE PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH4 0xFFFFFFFF AND SWAP1 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x3933 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x6 DUP1 DUP3 MSTORE PUSH1 0xE0 DUP3 ADD SWAP1 SWAP3 MSTORE SWAP1 PUSH1 0x20 DUP3 ADD PUSH1 0xC0 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP3 POP PUSH1 0x0 DUP5 PUSH2 0x3A1F DUP4 PUSH2 0x3B73 JUMP JUMPDEST XOR SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x6 DUP2 LT ISZERO PUSH2 0x3A6D JUMPI DUP1 PUSH1 0x5 SUB PUSH1 0x5 MUL DUP3 PUSH4 0xFFFFFFFF AND SWAP1 SHR PUSH1 0x1F AND DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3A53 JUMPI PUSH2 0x3A53 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x3A25 JUMP JUMPDEST POP POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MLOAD DUP3 MLOAD ADD PUSH1 0x1 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3A99 JUMPI PUSH2 0x3A99 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3AC2 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x1616 JUMPI PUSH1 0x5 DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3AE5 JUMPI PUSH2 0x3AE5 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH1 0xF8 SHR PUSH1 0xFF AND SWAP1 SHR DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3B0A JUMPI PUSH2 0x3B0A PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH1 0xFF AND SWAP1 DUP2 PUSH1 0xFF AND DUP2 MSTORE POP POP DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x3B30 JUMPI PUSH2 0x3B30 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH1 0xF8 SHR PUSH1 0x1F AND DUP3 DUP5 MLOAD DUP4 ADD PUSH1 0x1 ADD DUP2 MLOAD DUP2 LT PUSH2 0x3B59 JUMPI PUSH2 0x3B59 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x3AC8 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH4 0x3B6A57B2 DUP2 MSTORE PUSH4 0x26508E6D PUSH1 0x20 DUP3 ADD MSTORE PUSH4 0x1EA119FA SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH4 0x3D4233DD PUSH1 0x60 DUP3 ADD MSTORE PUSH4 0x2A1462B3 PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 SWAP1 DUP3 JUMPDEST DUP5 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x3C64 JUMPI PUSH1 0x0 PUSH1 0x19 DUP5 PUSH4 0xFFFFFFFF AND SWAP1 SHR SWAP1 POP DUP6 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x3BEC JUMPI PUSH2 0x3BEC PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x5 DUP6 PUSH4 0x1FFFFFF AND PUSH4 0xFFFFFFFF AND SWAP1 SHL XOR SWAP4 POP PUSH1 0x0 JUMPDEST PUSH1 0x5 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x3C5A JUMPI PUSH1 0x1 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND SHR DUP2 AND SWAP1 SUB PUSH2 0x3C52 JUMPI DUP4 DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0x5 DUP2 LT PUSH2 0x3C48 JUMPI PUSH2 0x3C48 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD DUP6 XOR SWAP5 POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x3C0B JUMP JUMPDEST POP POP PUSH1 0x1 ADD PUSH2 0x3BB6 JUMP JUMPDEST POP SWAP1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x3CB3 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x3CB3 JUMPI DUP3 MLOAD DUP3 SWAP1 PUSH2 0x3CA3 SWAP1 DUP3 PUSH2 0x4EDC JUMP JUMPDEST POP SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x3C8D JUMP JUMPDEST POP PUSH2 0x3CBF SWAP3 SWAP2 POP PUSH2 0x3CC3 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x3CBF JUMPI PUSH1 0x0 PUSH2 0x3CD7 DUP3 DUP3 PUSH2 0x3CE0 JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x3CC3 JUMP JUMPDEST POP DUP1 SLOAD PUSH2 0x3CEC SWAP1 PUSH2 0x44AB JUMP JUMPDEST PUSH1 0x0 DUP3 SSTORE DUP1 PUSH1 0x1F LT PUSH2 0x3CFC JUMPI POP POP JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1C82 SWAP2 SWAP1 JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x3CBF JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x3D16 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3D3C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x160F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3D6F JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x3D57 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x3D90 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x3D54 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x160F PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3D78 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1C82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3DDF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x3DEA DUP2 PUSH2 0x3DB7 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 0x3E0D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x3E18 DUP2 PUSH2 0x3DB7 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x3E28 DUP2 PUSH2 0x3DB7 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 0x3E4B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x160F DUP2 PUSH2 0x3DB7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3E68 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x3E81 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3E98 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x3EB0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3ECC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3EE2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 ADD PUSH1 0xE0 DUP2 DUP8 SUB SLT ISZERO PUSH2 0x3EF4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3F0F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3F1B DUP7 DUP3 DUP8 ADD PUSH2 0x3E6F JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 DUP5 SUB SLT DUP1 ISZERO PUSH2 0x3F3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP SWAP1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MLOAD DUP1 DUP6 MSTORE PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 PUSH1 0x5 SHL DUP4 ADD ADD PUSH1 0x20 DUP6 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2684 JUMPI PUSH1 0x1F NOT DUP6 DUP5 SUB ADD DUP9 MSTORE PUSH2 0x3F7D DUP4 DUP4 MLOAD PUSH2 0x3D78 JUMP JUMPDEST PUSH1 0x20 SWAP9 DUP10 ADD SWAP9 SWAP1 SWAP4 POP SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x3F61 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x160F PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3F43 JUMP JUMPDEST PUSH1 0xFF PUSH1 0xF8 SHL DUP9 AND DUP2 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x3FC5 PUSH1 0xE0 DUP4 ADD DUP10 PUSH2 0x3D78 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x3FD7 DUP2 DUP10 PUSH2 0x3D78 JUMP JUMPDEST PUSH1 0x60 DUP5 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD DUP7 SWAP1 MSTORE DUP4 DUP2 SUB PUSH1 0xC0 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP8 ADD SWAP4 POP SWAP1 SWAP2 ADD SWAP1 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x402D JUMPI DUP4 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x400F JUMP JUMPDEST POP SWAP1 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1C82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0xC0D DUP2 PUSH2 0x403E JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4073 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x3EF4 DUP2 PUSH2 0x403E JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x40A4 JUMPI PUSH2 0x40A4 PUSH2 0x407E JUMP JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0x900 DUP3 DUP5 PUSH2 0x4094 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x40C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x40DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x40F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4106 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP5 ADD ADD GT ISZERO PUSH2 0x411B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 DUP5 ADD SWAP1 PUSH1 0x40 DUP5 ADD SWAP1 DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x416B JUMPI PUSH2 0x4158 DUP4 DUP6 MLOAD PUSH2 0x4094 JUMP JUMPDEST PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x4145 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4189 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x419F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x41AB DUP6 DUP3 DUP7 ADD PUSH2 0x3E6F JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1C82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x41E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x41EC DUP2 PUSH2 0x3DB7 JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD PUSH2 0x41FC DUP2 PUSH2 0x3DB7 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH2 0x421A DUP2 PUSH2 0x41B7 JUMP 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 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x424C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3F0F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x427C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4287 DUP2 PUSH2 0x3DB7 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4297 DUP2 PUSH2 0x3DB7 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0xC0 DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x42D7 JUMPI PUSH2 0x42D7 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MSTORE POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x42D7 JUMPI PUSH2 0x42D7 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x42D7 JUMPI PUSH2 0x42D7 PUSH2 0x42A2 JUMP JUMPDEST 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 PUSH2 0x4340 JUMPI PUSH2 0x4340 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x4360 JUMPI PUSH2 0x4360 PUSH2 0x42A2 JUMP JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4380 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4396 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP5 SGT PUSH2 0x43A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x43C0 JUMPI PUSH2 0x43C0 PUSH2 0x42A2 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL PUSH1 0x40 MLOAD PUSH2 0x43D4 PUSH1 0x20 DUP4 ADD DUP3 PUSH2 0x431B JUMP JUMPDEST SWAP2 DUP3 MSTORE PUSH1 0x20 DUP2 DUP5 ADD DUP2 ADD SWAP3 SWAP1 DUP2 ADD DUP8 DUP5 GT ISZERO PUSH2 0x43EF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP6 ADD SWAP3 POP JUMPDEST DUP4 DUP4 LT ISZERO PUSH2 0x4480 JUMPI DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4414 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x3F DUP2 ADD DUP10 SGT PUSH2 0x4425 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP2 ADD CALLDATALOAD PUSH2 0x4433 DUP2 PUSH2 0x4347 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4440 DUP3 DUP3 PUSH2 0x431B JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x40 DUP5 DUP5 ADD ADD DUP13 LT ISZERO PUSH2 0x4455 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 DUP6 MSTORE POP POP POP POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH1 0x20 DUP4 ADD SWAP3 POP PUSH2 0x43F6 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x44A0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x3EF4 DUP2 PUSH2 0x3DB7 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x44BF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1616 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x44F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x1C82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x451A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x160F DUP2 PUSH2 0x44F8 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x453C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x20 DUP2 ADD SWAP3 POP CALLDATALOAD SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x455B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x3EB0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH1 0x0 DUP3 DUP3 ADD PUSH1 0x20 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND SWAP1 SWAP2 ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 DUP3 MSTORE DUP5 CALLDATALOAD DUP3 DUP3 ADD MSTORE PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x0 SWAP1 DUP6 ADD CALLDATALOAD PUSH2 0x45B7 DUP2 PUSH2 0x44F8 JUMP JUMPDEST PUSH2 0xFFFF AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x45CE DUP2 PUSH2 0x44F8 JUMP JUMPDEST PUSH2 0xFFFF AND PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0x80 DUP6 ADD CALLDATALOAD PUSH2 0x45E5 DUP2 PUSH2 0x403E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0xC0 DUP4 ADD MSTORE PUSH2 0x45FF PUSH1 0xA0 DUP7 ADD PUSH2 0x4053 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x461A PUSH1 0xC0 DUP7 ADD DUP7 PUSH2 0x4525 JUMP JUMPDEST PUSH1 0xE0 PUSH2 0x100 DUP6 ADD MSTORE PUSH2 0x4631 PUSH2 0x120 DUP6 ADD DUP3 DUP5 PUSH2 0x456A JUMP JUMPDEST SWAP2 POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x2BE8 DUP2 DUP6 DUP8 PUSH2 0x456A JUMP JUMPDEST DUP1 MLOAD PUSH1 0x14 DUP2 LT PUSH2 0xC0D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0xC0D DUP2 PUSH2 0x403E JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x4672 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x20 DUP4 ADD PUSH1 0x0 PUSH2 0x4683 DUP4 PUSH2 0x4347 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4690 DUP3 DUP3 PUSH2 0x431B JUMP JUMPDEST DUP1 SWAP3 POP DUP5 DUP2 MSTORE DUP8 DUP6 DUP6 ADD GT ISZERO PUSH2 0x46A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x46B3 DUP6 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x3D54 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0xC0D DUP2 PUSH2 0x41B7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xC0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x46DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x46E7 DUP2 PUSH2 0x42B8 JUMP JUMPDEST DUP1 SWAP2 POP DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4700 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x40 DUP2 DUP7 SUB SLT ISZERO PUSH2 0x4712 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x471E DUP2 PUSH2 0x42DD JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4734 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4740 DUP8 DUP3 DUP6 ADD PUSH2 0x4661 JUMP JUMPDEST DUP3 MSTORE POP PUSH1 0x20 SWAP2 DUP3 ADD MLOAD DUP3 DUP3 ADD MSTORE DUP3 MSTORE PUSH2 0x475A SWAP1 DUP5 ADD PUSH2 0x46BE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x476B PUSH1 0x40 DUP5 ADD PUSH2 0x46BE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x477C PUSH1 0x60 DUP5 ADD PUSH2 0x46BE JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x478D PUSH1 0x80 DUP5 ADD PUSH2 0x4656 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x479E PUSH1 0xA0 DUP5 ADD PUSH2 0x4656 JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x47BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x47D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0xA0 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x47E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x47F0 DUP2 PUSH2 0x42FC JUMP JUMPDEST DUP2 MLOAD PUSH2 0x100 DUP2 LT PUSH2 0x4800 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH2 0x480E PUSH1 0x20 DUP4 ADD PUSH2 0x4647 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP3 DUP2 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x4829 PUSH1 0x60 DUP4 ADD PUSH2 0x4656 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4847 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4853 DUP7 DUP3 DUP6 ADD PUSH2 0x46C9 JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD PUSH2 0x100 DUP2 LT PUSH2 0x487A JUMPI PUSH2 0x487A PUSH2 0x407E JUMP JUMPDEST DUP1 PUSH1 0x20 DUP5 ADD MSTORE POP PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x14 DUP2 LT PUSH2 0x4896 JUMPI PUSH2 0x4896 PUSH2 0x407E JUMP JUMPDEST DUP1 PUSH1 0x40 DUP5 ADD MSTORE POP PUSH1 0x40 DUP4 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0xA0 DUP1 DUP5 ADD MSTORE DUP1 MLOAD PUSH1 0xC0 DUP1 DUP6 ADD MSTORE DUP1 MLOAD PUSH1 0x40 PUSH2 0x180 DUP7 ADD MSTORE PUSH2 0x48E5 PUSH2 0x1C0 DUP7 ADD DUP3 PUSH2 0x3D78 JUMP JUMPDEST PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH2 0x1A0 DUP8 ADD MSTORE SWAP2 DUP4 ADD MLOAD PUSH1 0xFF AND PUSH1 0xE0 DUP7 ADD MSTORE POP PUSH1 0x40 DUP3 ADD MLOAD SWAP1 PUSH2 0x4914 PUSH2 0x100 DUP7 ADD DUP4 PUSH1 0xFF AND SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x60 DUP4 ADD MLOAD PUSH1 0xFF AND PUSH2 0x120 DUP7 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 AND PUSH2 0x140 DUP9 ADD MSTORE PUSH1 0xA0 SWAP1 SWAP5 ADD MLOAD SWAP4 DUP5 AND PUSH2 0x160 DUP8 ADD MSTORE SWAP2 POP PUSH2 0x2DBF JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4960 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x160F DUP2 PUSH2 0x403E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 RETURNDATASIZE GT ISZERO PUSH2 0x22F5 JUMPI PUSH1 0x4 PUSH1 0x0 DUP1 RETURNDATACOPY POP PUSH1 0x0 MLOAD PUSH1 0xE0 SHR SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x44 RETURNDATASIZE LT ISZERO PUSH2 0x4994 JUMPI SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x3 NOT ADD PUSH1 0x4 DUP3 RETURNDATACOPY DUP1 MLOAD RETURNDATASIZE PUSH1 0x24 DUP3 ADD GT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x49BD JUMPI POP POP SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x49D8 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST RETURNDATASIZE DUP5 ADD PUSH1 0x3 NOT ADD DUP3 DUP3 ADD PUSH1 0x20 ADD GT ISZERO PUSH2 0x49F2 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST PUSH2 0x4A01 PUSH1 0x20 DUP3 DUP6 ADD ADD DUP6 PUSH2 0x431B JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4A1B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x160F DUP2 PUSH2 0x403E JUMP JUMPDEST PUSH3 0xFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1C82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4A49 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x160F DUP2 PUSH2 0x4A26 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x4A75 DUP2 PUSH2 0x44F8 JUMP JUMPDEST PUSH2 0xFFFF DUP2 AND SWAP1 POP DUP2 SLOAD DUP2 PUSH2 0xFFFF NOT DUP3 AND OR DUP4 SSTORE PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x4A96 DUP2 PUSH2 0x44F8 JUMP JUMPDEST PUSH4 0xFFFF0000 DUP2 PUSH1 0x10 SHL AND SWAP1 POP DUP1 DUP4 PUSH4 0xFFFFFFFF NOT DUP5 AND OR OR DUP5 SSTORE PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x4ABE DUP2 PUSH2 0x403E JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFF00000000 DUP2 PUSH1 0x20 SHL AND DUP5 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP6 AND OR DUP4 OR OR DUP6 SSTORE POP POP POP POP PUSH1 0x0 PUSH1 0x60 DUP4 ADD CALLDATALOAD PUSH2 0x4AFB DUP2 PUSH2 0x4A26 JUMP JUMPDEST DUP3 SLOAD PUSH3 0xFFFFFF PUSH1 0x60 SHL NOT AND PUSH1 0x60 SWAP2 SWAP1 SWAP2 SHL PUSH3 0xFFFFFF PUSH1 0x60 SHL AND OR SWAP1 SWAP2 SSTORE POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x900 JUMPI PUSH2 0x900 PUSH2 0x4B1C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 SUB PUSH2 0x4B73 JUMPI PUSH2 0x4B73 PUSH2 0x4B1C JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP2 MSTORE PUSH1 0x80 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x4BA1 SWAP1 DUP4 ADD DUP7 DUP9 PUSH2 0x456A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP5 SWAP1 SWAP5 AND PUSH1 0x40 DUP4 ADD MSTORE POP PUSH1 0x60 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4BD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x7 DUP2 LT PUSH2 0x160F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C07 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x160F DUP2 PUSH2 0x3DB7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C24 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4C3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4C46 DUP5 DUP3 DUP6 ADD PUSH2 0x4661 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP4 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x2DBF PUSH1 0x40 DUP4 ADD DUP5 DUP7 PUSH2 0x456A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x4C80 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 MLOAD PUSH1 0x20 DUP8 ADD MLOAD SWAP1 SWAP6 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4C9E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4CAA DUP9 DUP3 DUP10 ADD PUSH2 0x4661 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4CC6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4CD2 DUP9 DUP3 DUP10 ADD PUSH2 0x4661 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 DUP7 ADD MLOAD PUSH2 0x4CE3 DUP2 PUSH2 0x3DB7 JUMP JUMPDEST PUSH1 0x80 DUP8 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x4CF4 DUP2 PUSH2 0x403E JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x80 DUP2 MSTORE PUSH1 0x0 PUSH2 0x4D15 PUSH1 0x80 DUP4 ADD DUP8 PUSH2 0x3D78 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP6 SWAP1 SWAP6 AND PUSH1 0x20 DUP4 ADD MSTORE POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP3 SWAP1 SWAP3 AND PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 SWAP1 SWAP2 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xFFFF DUP4 AND DUP1 PUSH2 0x4D6D JUMPI PUSH2 0x4D6D PUSH2 0x4D43 JUMP JUMPDEST DUP1 PUSH2 0xFFFF DUP5 AND DIV SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH12 0x2BB930B83832B22BA4AA1D1 PUSH1 0xA5 SHL DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD PUSH2 0x4DA4 DUP2 PUSH1 0xC DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x3D54 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD PUSH1 0xC ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x900 JUMPI PUSH2 0x900 PUSH2 0x4B1C JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x900 JUMPI PUSH2 0x900 PUSH2 0x4B1C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x4DEA JUMPI PUSH2 0x4DEA PUSH2 0x4D43 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x4E02 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x3F43 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x2DBF DUP2 DUP6 PUSH2 0x3F43 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x4E26 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x3D54 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP3 AND PUSH4 0xFFFFFFFF DUP2 SUB PUSH2 0x4B73 JUMPI PUSH2 0x4B73 PUSH2 0x4B1C JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x900 JUMPI PUSH2 0x900 PUSH2 0x4B1C JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x4E71 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x3D54 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT SWAP4 SWAP1 SWAP4 AND SWAP2 SWAP1 SWAP3 ADD SWAP1 DUP2 MSTORE PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0xFF0 JUMPI DUP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x4EB5 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x4ED5 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x4EC1 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4EF5 JUMPI PUSH2 0x4EF5 PUSH2 0x42A2 JUMP JUMPDEST PUSH2 0x4F09 DUP2 PUSH2 0x4F03 DUP5 SLOAD PUSH2 0x44AB JUMP JUMPDEST DUP5 PUSH2 0x4E8E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x4F3D JUMPI PUSH1 0x0 DUP4 ISZERO PUSH2 0x4F25 JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x4ED5 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4F6D JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x4F4D JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x4F8B JUMPI DUP7 DUP5 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP INVALID SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT 0xF SELFDESTRUCT EXP GT ISZERO EQ BYTE 0x1E SMOD SDIV SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SAR SELFDESTRUCT XOR 0xD NOT MULMOD ADDMOD OR SELFDESTRUCT SLT AND 0x1F SHL SGT SELFDESTRUCT ADD STOP SUB LT SIGNEXTEND SHR 0xC 0xE MOD DIV MUL SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT PUSH18 0x707A7279397838676632747664773073336A PUSH15 0x35346B686365366D7561376CA26469 PUSH17 0x667358221220367CCED7546FB312124BDF 0xD5 0xDD COINBASE DUP10 JUMPI 0xAA DUP9 0xC6 0xE8 0xDA 0xBD 0xF6 0xA7 0xBC PUSH19 0x411F0C421DF564736F6C634300081C00337B22 PUSH11 0x736F6E727063223A22322E ADDRESS 0x22 0x2C 0x22 PUSH14 0x6574686F64223A2267657456616C PUSH22 0x655472616E73666572222C22706172616D73223A7B22 PUSH9 0x617368223A225C315C 0x22 0x2C 0x22 PUSH14 0x6F6465223A22657468657265616C 0x22 0x2C 0x22 PUSH7 0x6F726365223A74 PUSH19 0x75657D2C226964223A317DFFFFFFFFFFFFFFFF SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT 0xF SELFDESTRUCT EXP GT ISZERO EQ BYTE 0x1E SMOD SDIV SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SAR SELFDESTRUCT XOR 0xD NOT MULMOD ADDMOD OR SELFDESTRUCT SLT AND 0x1F SHL SGT SELFDESTRUCT ADD STOP SUB LT SIGNEXTEND SHR 0xC 0xE MOD DIV MUL SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT PUSH28 0x226A736F6E727063223A22322E30222C226D6574686F64223A226765 PUSH21 0x42616C616E636532222C22706172616D73223A7B22 PUSH17 0x6B68223A225C315C3B5C325C227D2C2269 PUSH5 0x223A317D00 ","sourceMap":"1106:19792:28:-:0;;;2541:2465;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1577:52:9;;;;;;;;;;;;;-1:-1:-1;;;1577:52:9;;;1616:4;3428:431:19;;;;;;;;;;;;;-1:-1:-1;;;3428:431:19;;;1582:113:7;;;;;;;;;;;;;-1:-1:-1;;;1582:113:7;;;;;;;;;;;;;;;;-1:-1:-1;;;1582:113:7;;;1656:5;1648;:13;;;;;;:::i;:::-;-1:-1:-1;1671:7:7;:17;1681:7;1671;:17;:::i;:::-;-1:-1:-1;3501:45:19;;-1:-1:-1;3501:4:19;;-1:-1:-1;3532:13:19;3501:30;:45::i;:::-;3493:53;;3567:51;:7;3601:16;3567:33;:51::i;:::-;3556:62;;3642:22;;;;;;;;;;3628:36;;3691:25;;;;;;3674:42;;3744:13;3727:30;;3792:23;4326:11;;4339:14;;4304:80;;;2079:95;4304:80;;;8731:25:51;8772:18;;;8765:34;;;;8815:18;;;8808:34;4355:13:19;8858:18:51;;;8851:34;4378:4:19;8901:19:51;;;8894:61;4268:7:19;;8703:19:51;;4304:80:19;;;;;;;;;;;;4294:91;;;;;;4287:98;;4213:179;;3792:23;3767:48;;-1:-1:-1;;3847:4:19;3825:27;;-1:-1:-1;2920:76:28::2;2938:19:::0;2959:13:::2;1447:1;2959:36;2920:17;:76::i;:::-;-1:-1:-1::0;;;;;;2896:100:28::2;;::::0;3041:37;;::::2;::::0;::::2;::::0;3007:71:::2;::::0;3132:18:::2;::::0;;3148:1:::2;3132:18:::0;;;;;::::2;::::0;;;3091:38:::2;::::0;3132:18:::2;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3091:59;;3161:77;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;3161:77:28::2;;::::0;::::2;;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;:19:::2;3181:1;3161:22;;;;;;;;:::i;:::-;;;;;;:77;;;;3293:29;-1:-1:-1::0;;;;;3293:52:28::2;;3360:510;;;;;;;;3435:37;3360:510;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;3605:19;3360:510;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;3360:510:28::2;;::::0;::::2;;::::0;3885:148:::2;;;;;;;;3932:30;3885:148;;;;;;;;:::i;:::-;::::0;;::::2;;4015:1;3990:27;;;;;;;;;;;;;;;;;;;;;;;1106:19792:::0;;;;;;;;;-1:-1:-1;1106:19792:28;;;;;;;3990:27:::2;;;;;;;;;;;;;;;;3885:148;;::::0;3293:751:::2;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3249:795:28;;::::2;;::::0;4168:549:::2;::::0;;::::2;::::0;::::2;::::0;;;4101:52;;::::2;::::0;::::2;::::0;4168:549;4243:37:::2;4168:549;;;;;;;;;;;;;;;;;;;;;;;;;4444:19;4168:549;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;4168:549:28::2;;::::0;::::2;;::::0;4732:148:::2;;;;;;;;4779:30;4732:148;;;;;;;;:::i;:::-;::::0;;::::2;;4862:1;4837:27;;;;;;;;;;;;;;;;;;;;;;;1106:19792:::0;;;;;;;;;-1:-1:-1;1106:19792:28;;;;;;;4837:27:::2;;;;;;;;;;;;;;;;4732:148;;::::0;4101:790:::2;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4055:836:28::2;;;-1:-1:-1::0;;;;;4055:836:28::2;;;::::0;::::2;4954:29;-1:-1:-1::0;;;;;4926:69:28::2;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4904:94:28::2;;::::0;-1:-1:-1;1106:19792:28;;-1:-1:-1;;1106:19792:28;2887:340:15;2983:11;3032:2;3016:5;3010:19;:24;3006:215;;;3057:20;3071:5;3057:13;:20::i;:::-;3050:27;;;;3006:215;3134:5;3108:46;3149:5;3134;3108:46;:::i;:::-;-1:-1:-1;1390:66:15;;-1:-1:-1;3006:215:15;2887:340;;;;:::o;23485:268:48:-;23561:7;23611;:17;;23626:2;23611:17;;;23621:2;23611:17;23589:40;;23595:3;23589:17;:40;23581:75;;;;-1:-1:-1;;;23581:75:48;;9168:2:51;23581:75:48;;;9150:21:51;9207:2;9187:18;;;9180:30;9246:24;9226:18;;;9219:52;9288:18;;23581:75:48;;;;;;;;;23695:48;23713:3;23718:7;:24;;;;;;;;;;;;;;;-1:-1:-1;;;23718:24:48;;;23695:17;:48::i;23718:24::-;;;;;;;;;;;;;;-1:-1:-1;;;23718:24:48;;;23695:17;:48::i;:::-;23687:57;;;23485:268;-1:-1:-1;;;23485:268:48:o;1708:286:15:-;1773:11;1796:17;1822:3;1796:30;;1854:2;1840:4;:11;:16;1836:72;;;1893:3;1879:18;;-1:-1:-1;;;1879:18:15;;;;;;;;:::i;1836:72::-;1974:11;;1957:13;1974:4;1957:13;:::i;:::-;1949:36;;1708:286;-1:-1:-1;;;1708:286:15:o;4134:433:46:-;4248:7;4269:17;4288:19;4311:83;4349:8;4332:26;;;;;;;;:::i;:::-;;;;-1:-1:-1;;4332:26:46;;;;;;;;;2520:1;4311:6;:83::i;:::-;4268:126;;;;4405:48;4439:6;4422:24;;;;;;;;:::i;:::-;;;;-1:-1:-1;;4422:24:46;;;;;;;;;4448:4;4405:16;:48::i;:::-;4464:18;4485:30;4497:4;4503:1;4506;4464:18;4485:11;:30::i;:::-;4464:51;-1:-1:-1;4533:26:46;4464:51;4533:19;:26::i;:::-;4526:33;4134:433;-1:-1:-1;;;;;;4134:433:46:o;7182:1676::-;7275:16;7293:19;7355:8;7422:2;7404:7;:14;:20;;7378:112;;;;-1:-1:-1;;;7378:112:46;;10340:2:51;7378:112:46;;;10322:21:51;10379:2;10359:18;;;10352:30;10418:31;10398:18;;;10391:59;10467:18;;7378:112:46;10138:353:51;7378:112:46;7510:6;7505:616;7526:7;:14;7522:1;:18;7505:616;;;7567:12;7588:7;7596:1;7588:10;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;7658:2:46;7648:12;;;;;:55;;;7700:3;7690:6;:13;;;;7648:55;7618:148;;;;-1:-1:-1;;;7618:148:46;;10698:2:51;7618:148:46;;;10680:21:51;10737:2;10717:18;;;10710:30;-1:-1:-1;;;10756:18:51;;;10749:48;10814:18;;7618:148:46;10496:342:51;7618:148:46;-1:-1:-1;;7789:28:46;;;;7785:321;;7876:8;;:48;;;;;7923:1;7918;:6;;7876:48;:105;;;;;7967:7;:14;7958:1;7962;7958:5;:23;;7876:105;7842:214;;;;-1:-1:-1;;;7842:214:46;;11045:2:51;7842:214:46;;;11027:21:51;11084:2;11064:18;;;11057:30;11123:24;11103:18;;;11096:52;11165:18;;7842:214:46;10843:346:51;7842:214:46;8085:1;8079:7;;7785:321;-1:-1:-1;7542:4:46;;7505:616;;;;8151:3;-1:-1:-1;;;;;8141:14:46;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8141:14:46;;8135:20;;8175:6;8170:83;8187:3;8183:1;:7;8170:83;;;8226:7;8234:1;8226:10;;;;;;;;:::i;:::-;;;;;;;;;8217:3;8221:1;8217:6;;;;;;;;:::i;:::-;;;;:19;-1:-1:-1;;;;;8217:19:46;;;;;;;;-1:-1:-1;8192:4:46;;8170:83;;;;8309:1;8303:3;8286:7;:14;:20;:24;-1:-1:-1;;;;;8274:37:46;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8274:37:46;;8267:44;;8331:6;8326:255;8343:4;:11;8339:1;:15;8326:255;;;8381:13;8397:23;;;;;;;;;;;;;;;;;8427:7;8439:3;8435:1;:7;8445:1;8435:11;8427:20;;;;;;;;:::i;:::-;;;;;8397:52;;8427:20;;;;;;8397:52;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;8397:52:46;;;;-1:-1:-1;8476:14:46;;;8468:55;;;;-1:-1:-1;;;8468:55:46;;11396:2:51;8468:55:46;;;11378:21:51;11435:2;11415:18;;;11408:30;11474;11454:18;;;11447:58;11522:18;;8468:55:46;11194:352:51;8468:55:46;8558:6;8552:13;;8542:4;8547:1;8542:7;;;;;;;;:::i;:::-;:23;;;;:7;;;;;;;;;;;:23;-1:-1:-1;8356:4:46;;8326:255;;;-1:-1:-1;8621:30:46;8636:3;8641:4;8647:3;8621:14;:30::i;:::-;8595:115;;;;-1:-1:-1;;;8595:115:46;;11753:2:51;8595:115:46;;;11735:21:51;11792:2;11772:18;;;11765:30;11831:24;11811:18;;;11804:52;11873:18;;8595:115:46;11551:346:51;8595:115:46;-1:-1:-1;8743:11:46;;-1:-1:-1;;8743:15:46;8801:24;;7182:1676;;8743:4;;-1:-1:-1;7182:1676:46;-1:-1:-1;7182:1676:46:o;5579:189::-;5730:4;5720:15;;;;;;5711:4;5701:15;;;;;;:34;5693:67;;;;-1:-1:-1;;;5693:67:46;;12104:2:51;5693:67:46;;;12086:21:51;12143:2;12123:18;;;12116:30;12182:22;12162:18;;;12155:50;12222:18;;5693:67:46;11902:344:51;5693:67:46;5579:189;;:::o;11806:227::-;11952:12;11984:41;11997:4;12003:8;12013:6;12021:3;11984:12;:41::i;:::-;11977:48;11806:227;-1:-1:-1;;;;;11806:227:46:o;5776:292::-;5863:7;5891:4;:11;5906:2;5891:17;5883:57;;;;-1:-1:-1;;;5883:57:46;;12453:2:51;5883:57:46;;;12435:21:51;12492:2;12472:18;;;12465:30;12531:29;12511:18;;;12504:57;12578:18;;5883:57:46;12251:351:51;5883:57:46;-1:-1:-1;6024:2:46;6014:13;6008:20;;5776:292::o;10800:586::-;10932:4;;10996:14;11006:3;10996:9;:14::i;:::-;10974:36;;11025:21;11076:4;:11;11062:4;:11;:25;-1:-1:-1;;;;;11049:39:46;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11049:39:46;;11025:63;;11108:6;11103:97;11120:4;:11;11116:1;:15;11103:97;;;11176:4;11181:1;11176:7;;;;;;;;:::i;:::-;;;;;;;11169:15;;11158:5;11164:1;11158:8;;;;;;;;:::i;:::-;:26;;;;:8;;;;;;;;;;;:26;11133:4;;11103:97;;;;11219:6;11214:111;11231:4;:11;11227:1;:15;11214:111;;;11301:4;11306:1;11301:7;;;;;;;;:::i;:::-;;;;;;;11294:15;;11269:5;11279:4;:11;11275:1;:15;11269:22;;;;;;;;:::i;:::-;:40;;;;:22;;;;;;;;;;;:40;11244:4;;11214:111;;;-1:-1:-1;11346:21:46;;;:14;11354:5;11346:7;:14::i;:::-;:21;;;;10800:586;-1:-1:-1;;;;;;10800:586:46:o;12041:1366::-;12192:16;12221:8;;;12282:17;12298:1;12283:11;;;12282:17;:::i;:::-;12270:29;;12342:6;12337:631;12354:8;:15;12350:1;:19;12337:631;;;12395:11;12409:8;12418:1;12409:11;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;12484:17:46;;;;;;12483:24;;12439:166;;;;-1:-1:-1;;;12439:166:46;;13039:2:51;12439:166:46;;;13021:21:51;13078:2;13058:18;;;13051:30;13117:34;13097:18;;;13090:62;13188:24;13168:18;;;13161:52;13230:19;;12439:166:46;12837:418:51;12439:166:46;12633:15;;;12632:25;;;;;12676:16;;;;12713:240;12728:6;12720:4;:14;12713:240;;12802:131;;12759:14;;;;;12802:131;;12845:3;;12889:11;;;12888:20;;12875:35;;;12802:131;;;:::i;:::-;;;;;;;;;;;;;12796:137;;12713:240;;;-1:-1:-1;12371:3:46;;12337:631;;;;12995:3;12991:409;;;13019:8;;13015:185;;13093:3;13159:4;13141:13;13150:4;13141:6;:13;:::i;:::-;13133:3;:22;;13132:31;13119:46;;13054:130;;;;;;;;;:::i;:::-;;;;;;;;;;;;;13048:136;;13015:185;12991:409;;;13265:8;13258:4;:15;:57;;;-1:-1:-1;13305:4:46;13287:13;13296:4;13287:6;:13;:::i;:::-;13279:22;;;13278:31;13277:38;13258:57;13232:156;;;;-1:-1:-1;;;13232:156:46;;13865:2:51;13232:156:46;;;13847:21:51;13904:2;13884:18;;;13877:30;13943:34;13923:18;;;13916:62;-1:-1:-1;;;13994:18:51;;;13987:35;14039:19;;13232:156:46;13663:401:51;13232:156:46;12210:1197;;;12041:1366;;;;;;:::o;8866:371::-;8942:18;9029:3;:10;9016:3;:10;:23;9042:1;9016:27;-1:-1:-1;;;;;9004:40:46;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9004:40:46;;8998:46;;9064:6;9059:160;9076:3;:10;9072:1;:14;9059:160;;;9139:1;9128:3;9132:1;9128:6;;;;;;;;:::i;:::-;;;;;;;;;9122:13;;:18;;;;9113:3;9117:1;9113:6;;;;;;;;:::i;:::-;;;;;;:27;;;;;;;;;;;9191:3;9195:1;9191:6;;;;;;;;:::i;:::-;;;;;;;;;9185:13;;9201:2;9185:18;9159:3;9167;:10;9163:1;:14;9180:1;9163:18;9159:23;;;;;;;;:::i;:::-;:44;;;;:23;;;;;;;;;;;:44;9088:4;;9059:160;;;;8866:371;;;:::o;9245:703::-;9353:159;;;;;;;;9391:10;9353:159;;9416:10;9353:159;;;;9441:10;9353:159;;;;;;;9466:10;9353:159;;;;9491:10;9353:159;;;;9309:6;;9341:1;;9309:6;9550:357;9573:6;:13;9569:1;:17;;;9550:357;;;9612:10;9632:2;9625:3;:9;;;;9612:22;;9699:6;9706:1;9699:9;;;;;;;;;;:::i;:::-;;;;;;;9687:1;9667:3;9673:9;9667:15;9660:28;;;;9659:50;9653:56;;9733:8;9728:164;9751:1;9747;:5;;;9728:164;;;9800:1;9788:8;;;;;;;;9787:14;;9786:21;;9782:91;;9843:3;9847:1;9843:6;;;;;;;;;:::i;:::-;;;;;9836:13;;;;9782:91;9754:3;;9728:164;;;-1:-1:-1;;9588:3:46;;9550:357;;;-1:-1:-1;9937:3:46;;9245:703;-1:-1:-1;;;9245:703:46:o;1106:19792:28:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:162:51:-;-1:-1:-1;;;;;120:31:51;;110:42;;100:70;;166:1;163;156:12;100:70;14:162;:::o;181:127::-;242:10;237:3;233:20;230:1;223:31;273:4;270:1;263:15;297:4;294:1;287:15;313:250;398:1;408:113;422:6;419:1;416:13;408:113;;;498:11;;;492:18;479:11;;;472:39;444:2;437:10;408:113;;;-1:-1:-1;;555:1:51;537:16;;530:27;313:250::o;568:1114::-;696:6;704;757:2;745:9;736:7;732:23;728:32;725:52;;;773:1;770;763:12;725:52;805:9;799:16;824:62;880:5;824:62;:::i;:::-;954:2;939:18;;933:25;905:5;;-1:-1:-1;;;;;;970:30:51;;967:50;;;1013:1;1010;1003:12;967:50;1036:22;;1089:4;1081:13;;1077:27;-1:-1:-1;1067:55:51;;1118:1;1115;1108:12;1067:55;1145:9;;-1:-1:-1;;;;;1166:30:51;;1163:56;;;1199:18;;:::i;:::-;1248:2;1242:9;1340:2;1302:17;;-1:-1:-1;;1298:31:51;;;1331:2;1294:40;1290:54;1278:67;;-1:-1:-1;;;;;1360:34:51;;1396:22;;;1357:62;1354:88;;;1422:18;;:::i;:::-;1458:2;1451:22;1482;;;1523:15;;;1540:2;1519:24;1516:37;-1:-1:-1;1513:57:51;;;1566:1;1563;1556:12;1513:57;1579:72;1644:6;1639:2;1631:6;1627:15;1622:2;1618;1614:11;1579:72;:::i;:::-;1670:6;1660:16;;;;;568:1114;;;;;:::o;1687:380::-;1766:1;1762:12;;;;1809;;;1830:61;;1884:4;1876:6;1872:17;1862:27;;1830:61;1937:2;1929:6;1926:14;1906:18;1903:38;1900:161;;1983:10;1978:3;1974:20;1971:1;1964:31;2018:4;2015:1;2008:15;2046:4;2043:1;2036:15;2198:518;2300:2;2295:3;2292:11;2289:421;;;2336:5;2333:1;2326:16;2380:4;2377:1;2367:18;2450:2;2438:10;2434:19;2431:1;2427:27;2421:4;2417:38;2486:4;2474:10;2471:20;2468:47;;;-1:-1:-1;2509:4:51;2468:47;2564:2;2559:3;2555:12;2552:1;2548:20;2542:4;2538:31;2528:41;;2619:81;2637:2;2630:5;2627:13;2619:81;;;2696:1;2682:16;;2663:1;2652:13;2619:81;;;2623:3;;2289:421;2198:518;;;:::o;2892:1299::-;3012:10;;-1:-1:-1;;;;;3034:30:51;;3031:56;;;3067:18;;:::i;:::-;3096:97;3186:6;3146:38;3178:4;3172:11;3146:38;:::i;:::-;3140:4;3096:97;:::i;:::-;3242:4;3273:2;3262:14;;3290:1;3285:649;;;;3978:1;3995:6;3992:89;;;-1:-1:-1;4047:19:51;;;4041:26;3992:89;-1:-1:-1;;2849:1:51;2845:11;;;2841:24;2837:29;2827:40;2873:1;2869:11;;;2824:57;4094:81;;3255:930;;3285:649;2145:1;2138:14;;;2182:4;2169:18;;-1:-1:-1;;3321:20:51;;;3439:222;3453:7;3450:1;3447:14;3439:222;;;3535:19;;;3529:26;3514:42;;3642:4;3627:20;;;;3595:1;3583:14;;;;3469:12;3439:222;;;3443:3;3689:6;3680:7;3677:19;3674:201;;;3750:19;;;3744:26;-1:-1:-1;;3833:1:51;3829:14;;;3845:3;3825:24;3821:37;3817:42;3802:58;3787:74;;3674:201;-1:-1:-1;;;;3921:1:51;3905:14;;;3901:22;3888:36;;-1:-1:-1;2892:1299:51:o;4196:127::-;4257:10;4252:3;4248:20;4245:1;4238:31;4288:4;4285:1;4278:15;4312:4;4309:1;4302:15;4328:127;4389:10;4384:3;4380:20;4377:1;4370:31;4420:4;4417:1;4410:15;4444:4;4441:1;4434:15;4460:271;4502:3;4540:5;4534:12;4567:6;4562:3;4555:19;4583:76;4652:6;4645:4;4640:3;4636:14;4629:4;4622:5;4618:16;4583:76;:::i;:::-;4713:2;4692:15;-1:-1:-1;;4688:29:51;4679:39;;;;4720:4;4675:50;;4460:271;-1:-1:-1;;4460:271:51:o;4736:1107::-;4791:3;4830:4;4825:3;4821:14;4860:5;4854:12;4892:2;4888;4885:10;4875:44;;4899:18;;:::i;:::-;4928:15;;4989:4;4978:16;;;4972:23;5027:4;5011:14;;;5004:28;5081:19;;5109:20;;;;5156:2;5199:1;5195:14;;;5186:24;;5182:33;;;5238:23;;;;;5147:12;;;-1:-1:-1;5289:526:51;5303:6;5300:1;5297:13;5289:526;;;5370:16;;;-1:-1:-1;;5366:30:51;5352:45;;5420:13;;5456:9;;5495:2;5488:10;;5478:44;;5502:18;;:::i;:::-;5550:2;5542:6;5535:18;;5602:4;5598:2;5594:13;5588:20;5566:42;;5647:4;5640;5632:6;5628:17;5621:31;5675:52;5721:4;5713:6;5709:17;5693:14;5675:52;:::i;:::-;5665:62;-1:-1:-1;;5762:4:51;5750:17;;;;5789:16;;;;;5325:1;5318:9;5289:526;;;-1:-1:-1;5831:6:51;;4736:1107;-1:-1:-1;;;;;;4736:1107:51:o;5848:2008::-;6139:2;6128:9;6121:21;6102:4;6167:6;6161:13;6200:1;6196:2;6193:9;6183:43;;6206:18;;:::i;:::-;6257:2;6242:18;;6235:30;6312:4;6300:17;;6294:24;6354:4;6349:2;6334:18;;6327:32;6382:52;6429:3;6414:19;;6294:24;6382:52;:::i;:::-;6483:2;6471:15;;6465:22;6529;;;-1:-1:-1;;6525:36:51;6518:4;6503:20;;6496:66;6611:21;;6641:22;;;6368:66;;-1:-1:-1;6691:4:51;6780:25;;;;6679:17;;;;6739:1;6735:14;;;6723:27;;6719:38;6823:1;6833:711;6847:6;6844:1;6841:13;6833:711;;;6912:19;;;-1:-1:-1;;6908:33:51;6896:46;;6965:13;;6916:6;7077:2;7065:15;;7135:1;7149:282;7165:4;7160:3;7157:13;7149:282;;;7250:6;7242;7238:19;7231:5;7224:34;7285:42;7320:6;7309:8;7303:15;7285:42;:::i;:::-;7370:4;7356:19;;;;7401:16;;;;;7275:52;-1:-1:-1;7189:1:51;7180:11;7149:282;;;-1:-1:-1;7495:4:51;7483:17;;;;7520:14;;;;;7454:6;-1:-1:-1;;;6869:1:51;6862:9;6833:711;;;-1:-1:-1;7593:2:51;7581:15;;7575:22;7638;;;-1:-1:-1;;7634:36:51;7628:3;7613:19;;7606:65;7575:22;-1:-1:-1;7691:41:51;7642:6;7575:22;7691:41;:::i;:::-;7680:52;;;;;;7779:9;7774:3;7770:19;7763:4;7752:9;7748:20;7741:49;7807:43;7846:3;7838:6;7807:43;:::i;7861:319::-;7968:6;8021:2;8009:9;8000:7;7996:23;7992:32;7989:52;;;8037:1;8034;8027:12;7989:52;8069:9;8063:16;8088:62;8144:5;8088:62;:::i;:::-;8169:5;7861:319;-1:-1:-1;;;7861:319:51:o;9317:220::-;9466:2;9455:9;9448:21;9429:4;9486:45;9527:2;9516:9;9512:18;9504:6;9486:45;:::i;9542:297::-;9660:12;;9707:4;9696:16;;;9690:23;;9660:12;9725:16;;9722:111;;;-1:-1:-1;;9799:4:51;9795:17;;;;9792:1;9788:25;9784:38;9773:50;;9542:297;-1:-1:-1;9542:297:51:o;9844:289::-;9975:3;10013:6;10007:13;10029:66;10088:6;10083:3;10076:4;10068:6;10064:17;10029:66;:::i;:::-;10111:16;;;;;9844:289;-1:-1:-1;;9844:289:51:o;12607:225::-;12674:9;;;12695:11;;;12692:134;;;12748:10;12743:3;12739:20;12736:1;12729:31;12783:4;12780:1;12773:15;12811:4;12808:1;12801:15;13260:398;13415:3;13453:6;13447:13;13469:66;13528:6;13523:3;13516:4;13508:6;13504:17;13469:66;:::i;:::-;-1:-1:-1;;;;;;13596:26:51;;;;13557:16;;;;13582:41;;;13650:1;13639:13;;13260:398;-1:-1:-1;;13260:398:51:o;13663:401::-;1106:19792:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@DOMAIN_SEPARATOR_1556":{"entryPoint":2761,"id":1556,"parameterSlots":0,"returnSlots":1},"@_EIP712Name_4074":{"entryPoint":9071,"id":4074,"parameterSlots":0,"returnSlots":1},"@_EIP712Version_4086":{"entryPoint":9116,"id":4086,"parameterSlots":0,"returnSlots":1},"@__formallyVerifyRadonAssets_9140":{"entryPoint":10067,"id":9140,"parameterSlots":2,"returnSlots":0},"@__settleWitCustodianUnwrapper_9223":{"entryPoint":9339,"id":9223,"parameterSlots":1,"returnSlots":0},"@__storage_9234":{"entryPoint":8149,"id":9234,"parameterSlots":0,"returnSlots":1},"@_approve_1216":{"entryPoint":8185,"id":1216,"parameterSlots":3,"returnSlots":0},"@_approve_1276":{"entryPoint":10386,"id":1276,"parameterSlots":4,"returnSlots":0},"@_buildDomainSeparator_4004":{"entryPoint":null,"id":4004,"parameterSlots":0,"returnSlots":1},"@_burn_1198":{"entryPoint":8596,"id":1198,"parameterSlots":2,"returnSlots":0},"@_checkTokenBridge_8405":{"entryPoint":8279,"id":8405,"parameterSlots":1,"returnSlots":0},"@_convertBits_12199":{"entryPoint":14084,"id":12199,"parameterSlots":4,"returnSlots":1},"@_domainSeparatorV4_3983":{"entryPoint":8650,"id":3983,"parameterSlots":0,"returnSlots":1},"@_getInitializableStorage_413":{"entryPoint":10345,"id":413,"parameterSlots":0,"returnSlots":1},"@_hashTypedDataV4_4020":{"entryPoint":9781,"id":4020,"parameterSlots":1,"returnSlots":1},"@_initializableStorageSlot_399":{"entryPoint":null,"id":399,"parameterSlots":0,"returnSlots":1},"@_mint_1165":{"entryPoint":8326,"id":1165,"parameterSlots":2,"returnSlots":0},"@_msgSender_1631":{"entryPoint":null,"id":1631,"parameterSlots":0,"returnSlots":1},"@_requireHrpMatch_11196":{"entryPoint":12696,"id":11196,"parameterSlots":2,"returnSlots":0},"@_require_9156":{"entryPoint":8952,"id":9156,"parameterSlots":2,"returnSlots":0},"@_revertUnhandled_9181":{"entryPoint":9017,"id":9181,"parameterSlots":0,"returnSlots":0},"@_revert_9173":{"entryPoint":8962,"id":9173,"parameterSlots":1,"returnSlots":0},"@_spendAllowance_1324":{"entryPoint":8380,"id":1324,"parameterSlots":3,"returnSlots":0},"@_throwError_3859":{"entryPoint":11457,"id":3859,"parameterSlots":2,"returnSlots":0},"@_transfer_1055":{"entryPoint":8501,"id":1055,"parameterSlots":3,"returnSlots":0},"@_update_1132":{"entryPoint":10651,"id":1132,"parameterSlots":3,"returnSlots":0},"@_useNonce_1691":{"entryPoint":null,"id":1691,"parameterSlots":1,"returnSlots":1},"@allowance_952":{"entryPoint":null,"id":952,"parameterSlots":2,"returnSlots":1},"@approve_976":{"entryPoint":2456,"id":976,"parameterSlots":2,"returnSlots":1},"@balanceOf_911":{"entryPoint":null,"id":911,"parameterSlots":1,"returnSlots":1},"@byteLength_1887":{"entryPoint":13742,"id":1887,"parameterSlots":1,"returnSlots":1},"@convertBits_12020":{"entryPoint":12885,"id":12020,"parameterSlots":4,"returnSlots":1},"@convertBits_12042":{"entryPoint":12780,"id":12042,"parameterSlots":4,"returnSlots":1},"@createChecksum_11870":{"entryPoint":14548,"id":11870,"parameterSlots":3,"returnSlots":1},"@crosschainBurn_139":{"entryPoint":2649,"id":139,"parameterSlots":2,"returnSlots":0},"@crosschainMint_115":{"entryPoint":2525,"id":115,"parameterSlots":2,"returnSlots":0},"@data_9796":{"entryPoint":null,"id":9796,"parameterSlots":0,"returnSlots":1},"@decimals_8390":{"entryPoint":null,"id":8390,"parameterSlots":0,"returnSlots":1},"@decode_11569":{"entryPoint":11783,"id":11569,"parameterSlots":2,"returnSlots":2},"@eip712Domain_4062":{"entryPoint":4371,"id":4062,"parameterSlots":0,"returnSlots":7},"@encode_11379":{"entryPoint":13085,"id":11379,"parameterSlots":3,"returnSlots":1},"@eq_13868":{"entryPoint":null,"id":13868,"parameterSlots":2,"returnSlots":1},"@eq_14888":{"entryPoint":null,"id":14888,"parameterSlots":2,"returnSlots":1},"@evmCurator_8417":{"entryPoint":2230,"id":8417,"parameterSlots":0,"returnSlots":1},"@fromBech32_11037":{"entryPoint":11120,"id":11037,"parameterSlots":2,"returnSlots":1},"@fromBech32_13909":{"entryPoint":9161,"id":13909,"parameterSlots":2,"returnSlots":1},"@getAddressFromBytes_11218":{"entryPoint":12794,"id":11218,"parameterSlots":1,"returnSlots":1},"@getWrapTransactionLastQueryId_8433":{"entryPoint":4311,"id":8433,"parameterSlots":1,"returnSlots":1},"@getWrapTransactionStatus_8485":{"entryPoint":5410,"id":8485,"parameterSlots":1,"returnSlots":1},"@getWrapTransactionStatuses_8531":{"entryPoint":5674,"id":8531,"parameterSlots":2,"returnSlots":1},"@hrpExpand_11636":{"entryPoint":14968,"id":11636,"parameterSlots":1,"returnSlots":1},"@initialize_8380":{"entryPoint":7301,"id":8380,"parameterSlots":3,"returnSlots":0},"@name_871":{"entryPoint":2310,"id":871,"parameterSlots":0,"returnSlots":1},"@nonces_1546":{"entryPoint":4341,"id":1546,"parameterSlots":1,"returnSlots":1},"@nonces_1676":{"entryPoint":null,"id":1676,"parameterSlots":1,"returnSlots":1},"@permit_1529":{"entryPoint":6306,"id":1529,"parameterSlots":7,"returnSlots":0},"@polymod_11732":{"entryPoint":15219,"id":11732,"parameterSlots":1,"returnSlots":1},"@pushDataReport_9096":{"entryPoint":3125,"id":9096,"parameterSlots":3,"returnSlots":0},"@recover_3810":{"entryPoint":9826,"id":3810,"parameterSlots":4,"returnSlots":1},"@reportWitOracleQueryResult_9003":{"entryPoint":6620,"id":9003,"parameterSlots":3,"returnSlots":0},"@reportableFrom_8924":{"entryPoint":null,"id":8924,"parameterSlots":1,"returnSlots":1},"@settleWitCustodianUnwrapper_8760":{"entryPoint":6182,"id":8760,"parameterSlots":2,"returnSlots":0},"@settleWitOracleCrossChainRpcProviders_8711":{"entryPoint":7168,"id":8711,"parameterSlots":1,"returnSlots":0},"@settleWitOracleSettings_8748":{"entryPoint":3861,"id":8748,"parameterSlots":1,"returnSlots":0},"@supportsInterface_4196":{"entryPoint":null,"id":4196,"parameterSlots":1,"returnSlots":1},"@supportsInterface_91":{"entryPoint":2255,"id":91,"parameterSlots":1,"returnSlots":1},"@symbol_880":{"entryPoint":5202,"id":880,"parameterSlots":0,"returnSlots":1},"@toBech32_10848":{"entryPoint":10599,"id":10848,"parameterSlots":2,"returnSlots":1},"@toBech32_10880":{"entryPoint":11642,"id":10880,"parameterSlots":2,"returnSlots":1},"@toBech32_13935":{"entryPoint":8198,"id":13935,"parameterSlots":2,"returnSlots":1},"@toStringWithFallback_1954":{"entryPoint":10949,"id":1954,"parameterSlots":2,"returnSlots":1},"@toString_1855":{"entryPoint":11720,"id":1855,"parameterSlots":1,"returnSlots":1},"@toTypedDataHash_4172":{"entryPoint":null,"id":4172,"parameterSlots":2,"returnSlots":1},"@totalReserveSupply_8542":{"entryPoint":5174,"id":8542,"parameterSlots":0,"returnSlots":1},"@totalSupply_898":{"entryPoint":null,"id":898,"parameterSlots":0,"returnSlots":1},"@totalUnwraps_8553":{"entryPoint":2771,"id":8553,"parameterSlots":0,"returnSlots":1},"@totalWraps_8564":{"entryPoint":3090,"id":8564,"parameterSlots":0,"returnSlots":1},"@transferCuratorship_8790":{"entryPoint":5217,"id":8790,"parameterSlots":1,"returnSlots":0},"@transferFrom_1008":{"entryPoint":2613,"id":1008,"parameterSlots":3,"returnSlots":1},"@transfer_935":{"entryPoint":5660,"id":935,"parameterSlots":2,"returnSlots":1},"@tryRecover_3774":{"entryPoint":11250,"id":3774,"parameterSlots":4,"returnSlots":3},"@unwrap_8904":{"entryPoint":4568,"id":8904,"parameterSlots":3,"returnSlots":1},"@verifyChecksum_11963":{"entryPoint":13782,"id":11963,"parameterSlots":3,"returnSlots":1},"@witCustodianUnwrapper_8596":{"entryPoint":2480,"id":8596,"parameterSlots":0,"returnSlots":1},"@witCustodianWrapper_8579":{"entryPoint":6125,"id":8579,"parameterSlots":0,"returnSlots":1},"@witOracleCrossChainProofOfInclusionTemplate_8157":{"entryPoint":null,"id":8157,"parameterSlots":0,"returnSlots":0},"@witOracleCrossChainProofOfReserveTemplate_8154":{"entryPoint":null,"id":8154,"parameterSlots":0,"returnSlots":0},"@witOracleCrossChainRpcProviders_8608":{"entryPoint":4085,"id":8608,"parameterSlots":0,"returnSlots":1},"@witOracleEstimateWrappingFee_8623":{"entryPoint":7124,"id":8623,"parameterSlots":1,"returnSlots":1},"@witOracleEstimateWrappingFee_9824":{"entryPoint":9872,"id":9824,"parameterSlots":2,"returnSlots":1},"@witOracleProofOfReserveLastUpdate_8635":{"entryPoint":2729,"id":8635,"parameterSlots":0,"returnSlots":1},"@witOracleProofOfReserveRadonBytecode_8651":{"entryPoint":5868,"id":8651,"parameterSlots":0,"returnSlots":1},"@witOracleProofOfReserveRadonHash_8663":{"entryPoint":8130,"id":8663,"parameterSlots":0,"returnSlots":1},"@witOracleQuerySettings_8675":{"entryPoint":4441,"id":8675,"parameterSlots":0,"returnSlots":1},"@witOracle_8151":{"entryPoint":null,"id":8151,"parameterSlots":0,"returnSlots":0},"@wrap_8818":{"entryPoint":2806,"id":8818,"parameterSlots":1,"returnSlots":1},"abi_decode_bytes_calldata":{"entryPoint":15983,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_bytes_fromMemory":{"entryPoint":18017,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_enum_RadonDataTypes_fromMemory":{"entryPoint":17991,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_struct_CBOR_fromMemory":{"entryPoint":18121,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":15929,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":17001,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":15864,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":16838,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_addresst_string_calldata_ptr":{"entryPoint":17547,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":15820,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr":{"entryPoint":17262,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_array$_t_userDefinedValueType$_TransactionHash_$13256_$dyn_calldata_ptr":{"entryPoint":16566,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes4":{"entryPoint":15658,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes_memory_ptr_fromMemory":{"entryPoint":19474,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IWitOracleRadonRegistry_$10616_fromMemory":{"entryPoint":19445,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_enum$_QueryStatus_$13430_fromMemory":{"entryPoint":19390,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_calldata_ptr":{"entryPoint":16758,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_struct$_DataPushReport_$13371_calldata_ptrt_bytes_calldata_ptr":{"entryPoint":16055,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_struct$_DataResult_$13388_memory_ptr_fromMemory":{"entryPoint":18346,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_WitOracleSettings_$7941_calldata_ptr":{"entryPoint":16168,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint16":{"entryPoint":17672,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint24":{"entryPoint":18999,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":17631,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_bytes_calldata_ptr":{"entryPoint":16951,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint64":{"entryPoint":18953,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint64_fromMemory":{"entryPoint":18766,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint64t_string_calldata_ptr":{"entryPoint":16478,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_userDefinedValueType$_RadonHash_$13250_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_userDefinedValueType$_TransactionHash_$13256":{"entryPoint":15958,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_userDefinedValueType$_TransactionHash_$13256t_string_memory_ptrt_string_memory_ptrt_addresst_uint64_fromMemory":{"entryPoint":19560,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_uint64":{"entryPoint":16467,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint8_fromMemory":{"entryPoint":18110,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_userDefinedValueType_Timestamp_fromMemory":{"entryPoint":18006,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_array_string_dyn":{"entryPoint":16195,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_bytes_calldata":{"entryPoint":17770,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_enum_WrappingStatus":{"entryPoint":16532,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_string":{"entryPoint":15736,"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_packed_t_bytes_memory_ptr_t_bytes1__to_t_bytes_memory_ptr_t_bytes1__nonPadded_inplace_fromStack_reversed":{"entryPoint":20063,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":19988,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_stringliteral_6464deb7a08899e125b23ae34c4cefa9ab1fa68b40b002bbb3ffd32198544726_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":19837,"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_string_calldata_ptr_t_uint64_t_uint256__to_t_address_t_string_memory_ptr_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":19324,"id":null,"parameterSlots":6,"returnSlots":1},"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_array$_t_enum$_WrappingStatus_$7946_$dyn_memory_ptr__to_t_array$_t_uint8_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":16683,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":16275,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":19951,"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_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":16294,"id":null,"parameterSlots":8,"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_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IWitOracleRadonRequestModal_$10761__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_WitOracle_$9915__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_WitOracle_$9915_t_contract$_IWitOracleRadonRequestModal_$10761_t_userDefinedValueType$_TransactionHash_$13256__to_t_address_t_address_t_bytes32__fromStack_library_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_enum$_WrappingStatus_$7946__to_t_uint8__fromStack_reversed":{"entryPoint":16552,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__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":15780,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr_t_address_t_uint64_t_userDefinedValueType$_TransactionHash_$13256__to_t_string_memory_ptr_t_address_t_uint256_t_bytes32__fromStack_reversed":{"entryPoint":19714,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_stringliteral_0d3bbdc5952ddfc25bafa340466db68d17d1faf42dd154469a20b429a3742415__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_53dc06d622ffc4876df233985214fd280a387287ffe9d0e519654cae6b62b983__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_596712763af5ad819c1a1c8db05ac93e50918d28937626717ff5e1d919b4454a__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_6a2cf2966ea32b348a1a2f630ac8faca290d4a2ab07de89caf8dae5717c1d46d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_804d16c791056572535f8e2036ddf984da7d771fd478e9d9544d867a673dae25__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_80c95633eb4d36a63978e9d13e657c438c0d395a23eb33de58bf1d9758a73228__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8925955b412698449f23fd1db0ca5278ae982350c0d6a43502b6059204e31edc__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c2f7d7791943b6f0be2f5c4696e74b461af6db49d575243d9759641d2894e1d5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c3d844aee3a847f0e164a11470dfaf03e0661e60bf8b0718b82a475dc4773582__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_cc3b15adba6692e0236e3ef91314dd5f2f6b9fc7d497a8d9fca03d4d32ef0086__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e61d0d29c666259da088b9a4a3c73f42db070a7c6e4ed8d249944652ec7c2cf8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e94f6be74a97f1cb3bd761cbce886a47861edc099a5ca2546d140eebfb9c3780__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_fbafcdcf532b64f842ae9e16c3ebe22680908b0bd1d2499a181aa780163d1903__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_fc1d79576d9c1e03d6ff90e81fd853c5eac89b9ed9cb54114db3e1e1ab962297__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_fd568fffd58e4623e9037429de35dafd51a2e3c636d36cf6c06518f7d2565153__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_struct$_DataPushReport_$13371_calldata_ptr_t_bytes_calldata_ptr__to_t_struct$_DataPushReport_$13371_memory_ptr_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":17811,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_struct$_DataResult_$13388_memory_ptr__to_t_struct$_DataResult_$13388_memory_ptr__fromStack_library_reversed":{"entryPoint":18529,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_WitOracleSettings_$7941_memory_ptr__to_t_struct$_WitOracleSettings_$7941_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_uint256_t_bytes_calldata_ptr__to_t_uint256_t_bytes_memory_ptr__fromStack_library_reversed":{"entryPoint":19534,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint256_t_uint24__to_t_uint256_t_uint24__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint64_t_userDefinedValueType$_Timestamp_$13254_t_userDefinedValueType$_TransactionHash_$13256__to_t_uint256_t_uint64_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_userDefinedValueType$_RadonHash_$13250__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_userDefinedValueType$_Timestamp_$13254__to_t_uint64__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_uint8":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_userDefinedValueType_Timestamp":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"array_allocation_size_string":{"entryPoint":17223,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"calldata_access_bytes_calldata":{"entryPoint":17701,"id":null,"parameterSlots":2,"returnSlots":2},"checked_add_t_uint256":{"entryPoint":19889,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint16":{"entryPoint":19801,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":19931,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":19908,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":20044,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint64":{"entryPoint":19250,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":20110,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":20188,"id":null,"parameterSlots":2,"returnSlots":0},"copy_memory_to_memory_with_cleanup":{"entryPoint":15700,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":17579,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"finalize_allocation":{"entryPoint":17179,"id":null,"parameterSlots":2,"returnSlots":0},"finalize_allocation_6050":{"entryPoint":17080,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_6051":{"entryPoint":17117,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_6053":{"entryPoint":17148,"id":null,"parameterSlots":1,"returnSlots":0},"increment_t_uint32":{"entryPoint":20016,"id":null,"parameterSlots":1,"returnSlots":1},"increment_t_uint64":{"entryPoint":19281,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x01":{"entryPoint":19028,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x11":{"entryPoint":19228,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":19779,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":16510,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":19423,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":17058,"id":null,"parameterSlots":0,"returnSlots":0},"return_data_selector":{"entryPoint":18795,"id":null,"parameterSlots":0,"returnSlots":1},"try_decode_error_message":{"entryPoint":18822,"id":null,"parameterSlots":0,"returnSlots":1},"update_storage_value_offset_0_t_struct$_WitOracleSettings_$7941_calldata_ptr_to_t_struct$_WitOracleSettings_$7941_storage":{"entryPoint":19050,"id":null,"parameterSlots":2,"returnSlots":0},"validator_revert_address":{"entryPoint":15799,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint16":{"entryPoint":17656,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint24":{"entryPoint":18982,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint64":{"entryPoint":16446,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint8":{"entryPoint":16823,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:47106:51","nodeType":"YulBlock","src":"0:47106:51","statements":[{"nativeSrc":"6:3:51","nodeType":"YulBlock","src":"6:3:51","statements":[]},{"body":{"nativeSrc":"115:102:51","nodeType":"YulBlock","src":"115:102:51","statements":[{"nativeSrc":"125:26:51","nodeType":"YulAssignment","src":"125:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"137:9:51","nodeType":"YulIdentifier","src":"137:9:51"},{"kind":"number","nativeSrc":"148:2:51","nodeType":"YulLiteral","src":"148:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"133:3:51","nodeType":"YulIdentifier","src":"133:3:51"},"nativeSrc":"133:18:51","nodeType":"YulFunctionCall","src":"133:18:51"},"variableNames":[{"name":"tail","nativeSrc":"125:4:51","nodeType":"YulIdentifier","src":"125:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"167:9:51","nodeType":"YulIdentifier","src":"167:9:51"},{"arguments":[{"name":"value0","nativeSrc":"182:6:51","nodeType":"YulIdentifier","src":"182:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"198:3:51","nodeType":"YulLiteral","src":"198:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"203:1:51","nodeType":"YulLiteral","src":"203:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"194:3:51","nodeType":"YulIdentifier","src":"194:3:51"},"nativeSrc":"194:11:51","nodeType":"YulFunctionCall","src":"194:11:51"},{"kind":"number","nativeSrc":"207:1:51","nodeType":"YulLiteral","src":"207:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"190:3:51","nodeType":"YulIdentifier","src":"190:3:51"},"nativeSrc":"190:19:51","nodeType":"YulFunctionCall","src":"190:19:51"}],"functionName":{"name":"and","nativeSrc":"178:3:51","nodeType":"YulIdentifier","src":"178:3:51"},"nativeSrc":"178:32:51","nodeType":"YulFunctionCall","src":"178:32:51"}],"functionName":{"name":"mstore","nativeSrc":"160:6:51","nodeType":"YulIdentifier","src":"160:6:51"},"nativeSrc":"160:51:51","nodeType":"YulFunctionCall","src":"160:51:51"},"nativeSrc":"160:51:51","nodeType":"YulExpressionStatement","src":"160:51:51"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"14:203:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"84:9:51","nodeType":"YulTypedName","src":"84:9:51","type":""},{"name":"value0","nativeSrc":"95:6:51","nodeType":"YulTypedName","src":"95:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"106:4:51","nodeType":"YulTypedName","src":"106:4:51","type":""}],"src":"14:203:51"},{"body":{"nativeSrc":"291:217:51","nodeType":"YulBlock","src":"291:217:51","statements":[{"body":{"nativeSrc":"337:16:51","nodeType":"YulBlock","src":"337:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"346:1:51","nodeType":"YulLiteral","src":"346:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"349:1:51","nodeType":"YulLiteral","src":"349:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"339:6:51","nodeType":"YulIdentifier","src":"339:6:51"},"nativeSrc":"339:12:51","nodeType":"YulFunctionCall","src":"339:12:51"},"nativeSrc":"339:12:51","nodeType":"YulExpressionStatement","src":"339:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"312:7:51","nodeType":"YulIdentifier","src":"312:7:51"},{"name":"headStart","nativeSrc":"321:9:51","nodeType":"YulIdentifier","src":"321:9:51"}],"functionName":{"name":"sub","nativeSrc":"308:3:51","nodeType":"YulIdentifier","src":"308:3:51"},"nativeSrc":"308:23:51","nodeType":"YulFunctionCall","src":"308:23:51"},{"kind":"number","nativeSrc":"333:2:51","nodeType":"YulLiteral","src":"333:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"304:3:51","nodeType":"YulIdentifier","src":"304:3:51"},"nativeSrc":"304:32:51","nodeType":"YulFunctionCall","src":"304:32:51"},"nativeSrc":"301:52:51","nodeType":"YulIf","src":"301:52:51"},{"nativeSrc":"362:36:51","nodeType":"YulVariableDeclaration","src":"362:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"388:9:51","nodeType":"YulIdentifier","src":"388:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"375:12:51","nodeType":"YulIdentifier","src":"375:12:51"},"nativeSrc":"375:23:51","nodeType":"YulFunctionCall","src":"375:23:51"},"variables":[{"name":"value","nativeSrc":"366:5:51","nodeType":"YulTypedName","src":"366:5:51","type":""}]},{"body":{"nativeSrc":"462:16:51","nodeType":"YulBlock","src":"462:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"471:1:51","nodeType":"YulLiteral","src":"471:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"474:1:51","nodeType":"YulLiteral","src":"474:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"464:6:51","nodeType":"YulIdentifier","src":"464:6:51"},"nativeSrc":"464:12:51","nodeType":"YulFunctionCall","src":"464:12:51"},"nativeSrc":"464:12:51","nodeType":"YulExpressionStatement","src":"464:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"420:5:51","nodeType":"YulIdentifier","src":"420:5:51"},{"arguments":[{"name":"value","nativeSrc":"431:5:51","nodeType":"YulIdentifier","src":"431:5:51"},{"arguments":[{"kind":"number","nativeSrc":"442:3:51","nodeType":"YulLiteral","src":"442:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"447:10:51","nodeType":"YulLiteral","src":"447:10:51","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"438:3:51","nodeType":"YulIdentifier","src":"438:3:51"},"nativeSrc":"438:20:51","nodeType":"YulFunctionCall","src":"438:20:51"}],"functionName":{"name":"and","nativeSrc":"427:3:51","nodeType":"YulIdentifier","src":"427:3:51"},"nativeSrc":"427:32:51","nodeType":"YulFunctionCall","src":"427:32:51"}],"functionName":{"name":"eq","nativeSrc":"417:2:51","nodeType":"YulIdentifier","src":"417:2:51"},"nativeSrc":"417:43:51","nodeType":"YulFunctionCall","src":"417:43:51"}],"functionName":{"name":"iszero","nativeSrc":"410:6:51","nodeType":"YulIdentifier","src":"410:6:51"},"nativeSrc":"410:51:51","nodeType":"YulFunctionCall","src":"410:51:51"},"nativeSrc":"407:71:51","nodeType":"YulIf","src":"407:71:51"},{"nativeSrc":"487:15:51","nodeType":"YulAssignment","src":"487:15:51","value":{"name":"value","nativeSrc":"497:5:51","nodeType":"YulIdentifier","src":"497:5:51"},"variableNames":[{"name":"value0","nativeSrc":"487:6:51","nodeType":"YulIdentifier","src":"487:6:51"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"222:286:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"257:9:51","nodeType":"YulTypedName","src":"257:9:51","type":""},{"name":"dataEnd","nativeSrc":"268:7:51","nodeType":"YulTypedName","src":"268:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"280:6:51","nodeType":"YulTypedName","src":"280:6:51","type":""}],"src":"222:286:51"},{"body":{"nativeSrc":"608:92:51","nodeType":"YulBlock","src":"608:92:51","statements":[{"nativeSrc":"618:26:51","nodeType":"YulAssignment","src":"618:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"630:9:51","nodeType":"YulIdentifier","src":"630:9:51"},{"kind":"number","nativeSrc":"641:2:51","nodeType":"YulLiteral","src":"641:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"626:3:51","nodeType":"YulIdentifier","src":"626:3:51"},"nativeSrc":"626:18:51","nodeType":"YulFunctionCall","src":"626:18:51"},"variableNames":[{"name":"tail","nativeSrc":"618:4:51","nodeType":"YulIdentifier","src":"618:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"660:9:51","nodeType":"YulIdentifier","src":"660:9:51"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"685:6:51","nodeType":"YulIdentifier","src":"685:6:51"}],"functionName":{"name":"iszero","nativeSrc":"678:6:51","nodeType":"YulIdentifier","src":"678:6:51"},"nativeSrc":"678:14:51","nodeType":"YulFunctionCall","src":"678:14:51"}],"functionName":{"name":"iszero","nativeSrc":"671:6:51","nodeType":"YulIdentifier","src":"671:6:51"},"nativeSrc":"671:22:51","nodeType":"YulFunctionCall","src":"671:22:51"}],"functionName":{"name":"mstore","nativeSrc":"653:6:51","nodeType":"YulIdentifier","src":"653:6:51"},"nativeSrc":"653:41:51","nodeType":"YulFunctionCall","src":"653:41:51"},"nativeSrc":"653:41:51","nodeType":"YulExpressionStatement","src":"653:41:51"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"513:187:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"577:9:51","nodeType":"YulTypedName","src":"577:9:51","type":""},{"name":"value0","nativeSrc":"588:6:51","nodeType":"YulTypedName","src":"588:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"599:4:51","nodeType":"YulTypedName","src":"599:4:51","type":""}],"src":"513:187:51"},{"body":{"nativeSrc":"771:184:51","nodeType":"YulBlock","src":"771:184:51","statements":[{"nativeSrc":"781:10:51","nodeType":"YulVariableDeclaration","src":"781:10:51","value":{"kind":"number","nativeSrc":"790:1:51","nodeType":"YulLiteral","src":"790:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"785:1:51","nodeType":"YulTypedName","src":"785:1:51","type":""}]},{"body":{"nativeSrc":"850:63:51","nodeType":"YulBlock","src":"850:63:51","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nativeSrc":"875:3:51","nodeType":"YulIdentifier","src":"875:3:51"},{"name":"i","nativeSrc":"880:1:51","nodeType":"YulIdentifier","src":"880:1:51"}],"functionName":{"name":"add","nativeSrc":"871:3:51","nodeType":"YulIdentifier","src":"871:3:51"},"nativeSrc":"871:11:51","nodeType":"YulFunctionCall","src":"871:11:51"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"894:3:51","nodeType":"YulIdentifier","src":"894:3:51"},{"name":"i","nativeSrc":"899:1:51","nodeType":"YulIdentifier","src":"899:1:51"}],"functionName":{"name":"add","nativeSrc":"890:3:51","nodeType":"YulIdentifier","src":"890:3:51"},"nativeSrc":"890:11:51","nodeType":"YulFunctionCall","src":"890:11:51"}],"functionName":{"name":"mload","nativeSrc":"884:5:51","nodeType":"YulIdentifier","src":"884:5:51"},"nativeSrc":"884:18:51","nodeType":"YulFunctionCall","src":"884:18:51"}],"functionName":{"name":"mstore","nativeSrc":"864:6:51","nodeType":"YulIdentifier","src":"864:6:51"},"nativeSrc":"864:39:51","nodeType":"YulFunctionCall","src":"864:39:51"},"nativeSrc":"864:39:51","nodeType":"YulExpressionStatement","src":"864:39:51"}]},"condition":{"arguments":[{"name":"i","nativeSrc":"811:1:51","nodeType":"YulIdentifier","src":"811:1:51"},{"name":"length","nativeSrc":"814:6:51","nodeType":"YulIdentifier","src":"814:6:51"}],"functionName":{"name":"lt","nativeSrc":"808:2:51","nodeType":"YulIdentifier","src":"808:2:51"},"nativeSrc":"808:13:51","nodeType":"YulFunctionCall","src":"808:13:51"},"nativeSrc":"800:113:51","nodeType":"YulForLoop","post":{"nativeSrc":"822:19:51","nodeType":"YulBlock","src":"822:19:51","statements":[{"nativeSrc":"824:15:51","nodeType":"YulAssignment","src":"824:15:51","value":{"arguments":[{"name":"i","nativeSrc":"833:1:51","nodeType":"YulIdentifier","src":"833:1:51"},{"kind":"number","nativeSrc":"836:2:51","nodeType":"YulLiteral","src":"836:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"829:3:51","nodeType":"YulIdentifier","src":"829:3:51"},"nativeSrc":"829:10:51","nodeType":"YulFunctionCall","src":"829:10:51"},"variableNames":[{"name":"i","nativeSrc":"824:1:51","nodeType":"YulIdentifier","src":"824:1:51"}]}]},"pre":{"nativeSrc":"804:3:51","nodeType":"YulBlock","src":"804:3:51","statements":[]},"src":"800:113:51"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nativeSrc":"933:3:51","nodeType":"YulIdentifier","src":"933:3:51"},{"name":"length","nativeSrc":"938:6:51","nodeType":"YulIdentifier","src":"938:6:51"}],"functionName":{"name":"add","nativeSrc":"929:3:51","nodeType":"YulIdentifier","src":"929:3:51"},"nativeSrc":"929:16:51","nodeType":"YulFunctionCall","src":"929:16:51"},{"kind":"number","nativeSrc":"947:1:51","nodeType":"YulLiteral","src":"947:1:51","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"922:6:51","nodeType":"YulIdentifier","src":"922:6:51"},"nativeSrc":"922:27:51","nodeType":"YulFunctionCall","src":"922:27:51"},"nativeSrc":"922:27:51","nodeType":"YulExpressionStatement","src":"922:27:51"}]},"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"705:250:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nativeSrc":"749:3:51","nodeType":"YulTypedName","src":"749:3:51","type":""},{"name":"dst","nativeSrc":"754:3:51","nodeType":"YulTypedName","src":"754:3:51","type":""},{"name":"length","nativeSrc":"759:6:51","nodeType":"YulTypedName","src":"759:6:51","type":""}],"src":"705:250:51"},{"body":{"nativeSrc":"1010:221:51","nodeType":"YulBlock","src":"1010:221:51","statements":[{"nativeSrc":"1020:26:51","nodeType":"YulVariableDeclaration","src":"1020:26:51","value":{"arguments":[{"name":"value","nativeSrc":"1040:5:51","nodeType":"YulIdentifier","src":"1040:5:51"}],"functionName":{"name":"mload","nativeSrc":"1034:5:51","nodeType":"YulIdentifier","src":"1034:5:51"},"nativeSrc":"1034:12:51","nodeType":"YulFunctionCall","src":"1034:12:51"},"variables":[{"name":"length","nativeSrc":"1024:6:51","nodeType":"YulTypedName","src":"1024:6:51","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"1062:3:51","nodeType":"YulIdentifier","src":"1062:3:51"},{"name":"length","nativeSrc":"1067:6:51","nodeType":"YulIdentifier","src":"1067:6:51"}],"functionName":{"name":"mstore","nativeSrc":"1055:6:51","nodeType":"YulIdentifier","src":"1055:6:51"},"nativeSrc":"1055:19:51","nodeType":"YulFunctionCall","src":"1055:19:51"},"nativeSrc":"1055:19:51","nodeType":"YulExpressionStatement","src":"1055:19:51"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1122:5:51","nodeType":"YulIdentifier","src":"1122:5:51"},{"kind":"number","nativeSrc":"1129:4:51","nodeType":"YulLiteral","src":"1129:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1118:3:51","nodeType":"YulIdentifier","src":"1118:3:51"},"nativeSrc":"1118:16:51","nodeType":"YulFunctionCall","src":"1118:16:51"},{"arguments":[{"name":"pos","nativeSrc":"1140:3:51","nodeType":"YulIdentifier","src":"1140:3:51"},{"kind":"number","nativeSrc":"1145:4:51","nodeType":"YulLiteral","src":"1145:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1136:3:51","nodeType":"YulIdentifier","src":"1136:3:51"},"nativeSrc":"1136:14:51","nodeType":"YulFunctionCall","src":"1136:14:51"},{"name":"length","nativeSrc":"1152:6:51","nodeType":"YulIdentifier","src":"1152:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"1083:34:51","nodeType":"YulIdentifier","src":"1083:34:51"},"nativeSrc":"1083:76:51","nodeType":"YulFunctionCall","src":"1083:76:51"},"nativeSrc":"1083:76:51","nodeType":"YulExpressionStatement","src":"1083:76:51"},{"nativeSrc":"1168:57:51","nodeType":"YulAssignment","src":"1168:57:51","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1183:3:51","nodeType":"YulIdentifier","src":"1183:3:51"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1196:6:51","nodeType":"YulIdentifier","src":"1196:6:51"},{"kind":"number","nativeSrc":"1204:2:51","nodeType":"YulLiteral","src":"1204:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1192:3:51","nodeType":"YulIdentifier","src":"1192:3:51"},"nativeSrc":"1192:15:51","nodeType":"YulFunctionCall","src":"1192:15:51"},{"arguments":[{"kind":"number","nativeSrc":"1213:2:51","nodeType":"YulLiteral","src":"1213:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1209:3:51","nodeType":"YulIdentifier","src":"1209:3:51"},"nativeSrc":"1209:7:51","nodeType":"YulFunctionCall","src":"1209:7:51"}],"functionName":{"name":"and","nativeSrc":"1188:3:51","nodeType":"YulIdentifier","src":"1188:3:51"},"nativeSrc":"1188:29:51","nodeType":"YulFunctionCall","src":"1188:29:51"}],"functionName":{"name":"add","nativeSrc":"1179:3:51","nodeType":"YulIdentifier","src":"1179:3:51"},"nativeSrc":"1179:39:51","nodeType":"YulFunctionCall","src":"1179:39:51"},{"kind":"number","nativeSrc":"1220:4:51","nodeType":"YulLiteral","src":"1220:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1175:3:51","nodeType":"YulIdentifier","src":"1175:3:51"},"nativeSrc":"1175:50:51","nodeType":"YulFunctionCall","src":"1175:50:51"},"variableNames":[{"name":"end","nativeSrc":"1168:3:51","nodeType":"YulIdentifier","src":"1168:3:51"}]}]},"name":"abi_encode_string","nativeSrc":"960:271:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"987:5:51","nodeType":"YulTypedName","src":"987:5:51","type":""},{"name":"pos","nativeSrc":"994:3:51","nodeType":"YulTypedName","src":"994:3:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"1002:3:51","nodeType":"YulTypedName","src":"1002:3:51","type":""}],"src":"960:271:51"},{"body":{"nativeSrc":"1357:99:51","nodeType":"YulBlock","src":"1357:99:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1374:9:51","nodeType":"YulIdentifier","src":"1374:9:51"},{"kind":"number","nativeSrc":"1385:2:51","nodeType":"YulLiteral","src":"1385:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"1367:6:51","nodeType":"YulIdentifier","src":"1367:6:51"},"nativeSrc":"1367:21:51","nodeType":"YulFunctionCall","src":"1367:21:51"},"nativeSrc":"1367:21:51","nodeType":"YulExpressionStatement","src":"1367:21:51"},{"nativeSrc":"1397:53:51","nodeType":"YulAssignment","src":"1397:53:51","value":{"arguments":[{"name":"value0","nativeSrc":"1423:6:51","nodeType":"YulIdentifier","src":"1423:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"1435:9:51","nodeType":"YulIdentifier","src":"1435:9:51"},{"kind":"number","nativeSrc":"1446:2:51","nodeType":"YulLiteral","src":"1446:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1431:3:51","nodeType":"YulIdentifier","src":"1431:3:51"},"nativeSrc":"1431:18:51","nodeType":"YulFunctionCall","src":"1431:18:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"1405:17:51","nodeType":"YulIdentifier","src":"1405:17:51"},"nativeSrc":"1405:45:51","nodeType":"YulFunctionCall","src":"1405:45:51"},"variableNames":[{"name":"tail","nativeSrc":"1397:4:51","nodeType":"YulIdentifier","src":"1397:4:51"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"1236:220:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1326:9:51","nodeType":"YulTypedName","src":"1326:9:51","type":""},{"name":"value0","nativeSrc":"1337:6:51","nodeType":"YulTypedName","src":"1337:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1348:4:51","nodeType":"YulTypedName","src":"1348:4:51","type":""}],"src":"1236:220:51"},{"body":{"nativeSrc":"1506:86:51","nodeType":"YulBlock","src":"1506:86:51","statements":[{"body":{"nativeSrc":"1570:16:51","nodeType":"YulBlock","src":"1570:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1579:1:51","nodeType":"YulLiteral","src":"1579:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1582:1:51","nodeType":"YulLiteral","src":"1582:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1572:6:51","nodeType":"YulIdentifier","src":"1572:6:51"},"nativeSrc":"1572:12:51","nodeType":"YulFunctionCall","src":"1572:12:51"},"nativeSrc":"1572:12:51","nodeType":"YulExpressionStatement","src":"1572:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1529:5:51","nodeType":"YulIdentifier","src":"1529:5:51"},{"arguments":[{"name":"value","nativeSrc":"1540:5:51","nodeType":"YulIdentifier","src":"1540:5:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1555:3:51","nodeType":"YulLiteral","src":"1555:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"1560:1:51","nodeType":"YulLiteral","src":"1560:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1551:3:51","nodeType":"YulIdentifier","src":"1551:3:51"},"nativeSrc":"1551:11:51","nodeType":"YulFunctionCall","src":"1551:11:51"},{"kind":"number","nativeSrc":"1564:1:51","nodeType":"YulLiteral","src":"1564:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1547:3:51","nodeType":"YulIdentifier","src":"1547:3:51"},"nativeSrc":"1547:19:51","nodeType":"YulFunctionCall","src":"1547:19:51"}],"functionName":{"name":"and","nativeSrc":"1536:3:51","nodeType":"YulIdentifier","src":"1536:3:51"},"nativeSrc":"1536:31:51","nodeType":"YulFunctionCall","src":"1536:31:51"}],"functionName":{"name":"eq","nativeSrc":"1526:2:51","nodeType":"YulIdentifier","src":"1526:2:51"},"nativeSrc":"1526:42:51","nodeType":"YulFunctionCall","src":"1526:42:51"}],"functionName":{"name":"iszero","nativeSrc":"1519:6:51","nodeType":"YulIdentifier","src":"1519:6:51"},"nativeSrc":"1519:50:51","nodeType":"YulFunctionCall","src":"1519:50:51"},"nativeSrc":"1516:70:51","nodeType":"YulIf","src":"1516:70:51"}]},"name":"validator_revert_address","nativeSrc":"1461:131:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"1495:5:51","nodeType":"YulTypedName","src":"1495:5:51","type":""}],"src":"1461:131:51"},{"body":{"nativeSrc":"1684:280:51","nodeType":"YulBlock","src":"1684:280:51","statements":[{"body":{"nativeSrc":"1730:16:51","nodeType":"YulBlock","src":"1730:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1739:1:51","nodeType":"YulLiteral","src":"1739:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1742:1:51","nodeType":"YulLiteral","src":"1742:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1732:6:51","nodeType":"YulIdentifier","src":"1732:6:51"},"nativeSrc":"1732:12:51","nodeType":"YulFunctionCall","src":"1732:12:51"},"nativeSrc":"1732:12:51","nodeType":"YulExpressionStatement","src":"1732:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1705:7:51","nodeType":"YulIdentifier","src":"1705:7:51"},{"name":"headStart","nativeSrc":"1714:9:51","nodeType":"YulIdentifier","src":"1714:9:51"}],"functionName":{"name":"sub","nativeSrc":"1701:3:51","nodeType":"YulIdentifier","src":"1701:3:51"},"nativeSrc":"1701:23:51","nodeType":"YulFunctionCall","src":"1701:23:51"},{"kind":"number","nativeSrc":"1726:2:51","nodeType":"YulLiteral","src":"1726:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1697:3:51","nodeType":"YulIdentifier","src":"1697:3:51"},"nativeSrc":"1697:32:51","nodeType":"YulFunctionCall","src":"1697:32:51"},"nativeSrc":"1694:52:51","nodeType":"YulIf","src":"1694:52:51"},{"nativeSrc":"1755:36:51","nodeType":"YulVariableDeclaration","src":"1755:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"1781:9:51","nodeType":"YulIdentifier","src":"1781:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"1768:12:51","nodeType":"YulIdentifier","src":"1768:12:51"},"nativeSrc":"1768:23:51","nodeType":"YulFunctionCall","src":"1768:23:51"},"variables":[{"name":"value","nativeSrc":"1759:5:51","nodeType":"YulTypedName","src":"1759:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1825:5:51","nodeType":"YulIdentifier","src":"1825:5:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"1800:24:51","nodeType":"YulIdentifier","src":"1800:24:51"},"nativeSrc":"1800:31:51","nodeType":"YulFunctionCall","src":"1800:31:51"},"nativeSrc":"1800:31:51","nodeType":"YulExpressionStatement","src":"1800:31:51"},{"nativeSrc":"1840:15:51","nodeType":"YulAssignment","src":"1840:15:51","value":{"name":"value","nativeSrc":"1850:5:51","nodeType":"YulIdentifier","src":"1850:5:51"},"variableNames":[{"name":"value0","nativeSrc":"1840:6:51","nodeType":"YulIdentifier","src":"1840:6:51"}]},{"nativeSrc":"1864:16:51","nodeType":"YulVariableDeclaration","src":"1864:16:51","value":{"kind":"number","nativeSrc":"1879:1:51","nodeType":"YulLiteral","src":"1879:1:51","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"1868:7:51","nodeType":"YulTypedName","src":"1868:7:51","type":""}]},{"nativeSrc":"1889:43:51","nodeType":"YulAssignment","src":"1889:43:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1917:9:51","nodeType":"YulIdentifier","src":"1917:9:51"},{"kind":"number","nativeSrc":"1928:2:51","nodeType":"YulLiteral","src":"1928:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1913:3:51","nodeType":"YulIdentifier","src":"1913:3:51"},"nativeSrc":"1913:18:51","nodeType":"YulFunctionCall","src":"1913:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"1900:12:51","nodeType":"YulIdentifier","src":"1900:12:51"},"nativeSrc":"1900:32:51","nodeType":"YulFunctionCall","src":"1900:32:51"},"variableNames":[{"name":"value_1","nativeSrc":"1889:7:51","nodeType":"YulIdentifier","src":"1889:7:51"}]},{"nativeSrc":"1941:17:51","nodeType":"YulAssignment","src":"1941:17:51","value":{"name":"value_1","nativeSrc":"1951:7:51","nodeType":"YulIdentifier","src":"1951:7:51"},"variableNames":[{"name":"value1","nativeSrc":"1941:6:51","nodeType":"YulIdentifier","src":"1941:6:51"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"1597:367:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1642:9:51","nodeType":"YulTypedName","src":"1642:9:51","type":""},{"name":"dataEnd","nativeSrc":"1653:7:51","nodeType":"YulTypedName","src":"1653:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1665:6:51","nodeType":"YulTypedName","src":"1665:6:51","type":""},{"name":"value1","nativeSrc":"1673:6:51","nodeType":"YulTypedName","src":"1673:6:51","type":""}],"src":"1597:367:51"},{"body":{"nativeSrc":"2088:102:51","nodeType":"YulBlock","src":"2088:102:51","statements":[{"nativeSrc":"2098:26:51","nodeType":"YulAssignment","src":"2098:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"2110:9:51","nodeType":"YulIdentifier","src":"2110:9:51"},{"kind":"number","nativeSrc":"2121:2:51","nodeType":"YulLiteral","src":"2121:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2106:3:51","nodeType":"YulIdentifier","src":"2106:3:51"},"nativeSrc":"2106:18:51","nodeType":"YulFunctionCall","src":"2106:18:51"},"variableNames":[{"name":"tail","nativeSrc":"2098:4:51","nodeType":"YulIdentifier","src":"2098:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2140:9:51","nodeType":"YulIdentifier","src":"2140:9:51"},{"arguments":[{"name":"value0","nativeSrc":"2155:6:51","nodeType":"YulIdentifier","src":"2155:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2171:3:51","nodeType":"YulLiteral","src":"2171:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"2176:1:51","nodeType":"YulLiteral","src":"2176:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2167:3:51","nodeType":"YulIdentifier","src":"2167:3:51"},"nativeSrc":"2167:11:51","nodeType":"YulFunctionCall","src":"2167:11:51"},{"kind":"number","nativeSrc":"2180:1:51","nodeType":"YulLiteral","src":"2180:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2163:3:51","nodeType":"YulIdentifier","src":"2163:3:51"},"nativeSrc":"2163:19:51","nodeType":"YulFunctionCall","src":"2163:19:51"}],"functionName":{"name":"and","nativeSrc":"2151:3:51","nodeType":"YulIdentifier","src":"2151:3:51"},"nativeSrc":"2151:32:51","nodeType":"YulFunctionCall","src":"2151:32:51"}],"functionName":{"name":"mstore","nativeSrc":"2133:6:51","nodeType":"YulIdentifier","src":"2133:6:51"},"nativeSrc":"2133:51:51","nodeType":"YulFunctionCall","src":"2133:51:51"},"nativeSrc":"2133:51:51","nodeType":"YulExpressionStatement","src":"2133:51:51"}]},"name":"abi_encode_tuple_t_contract$_WitOracle_$9915__to_t_address__fromStack_reversed","nativeSrc":"1969:221:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2057:9:51","nodeType":"YulTypedName","src":"2057:9:51","type":""},{"name":"value0","nativeSrc":"2068:6:51","nodeType":"YulTypedName","src":"2068:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2079:4:51","nodeType":"YulTypedName","src":"2079:4:51","type":""}],"src":"1969:221:51"},{"body":{"nativeSrc":"2296:76:51","nodeType":"YulBlock","src":"2296:76:51","statements":[{"nativeSrc":"2306:26:51","nodeType":"YulAssignment","src":"2306:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"2318:9:51","nodeType":"YulIdentifier","src":"2318:9:51"},{"kind":"number","nativeSrc":"2329:2:51","nodeType":"YulLiteral","src":"2329:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2314:3:51","nodeType":"YulIdentifier","src":"2314:3:51"},"nativeSrc":"2314:18:51","nodeType":"YulFunctionCall","src":"2314:18:51"},"variableNames":[{"name":"tail","nativeSrc":"2306:4:51","nodeType":"YulIdentifier","src":"2306:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2348:9:51","nodeType":"YulIdentifier","src":"2348:9:51"},{"name":"value0","nativeSrc":"2359:6:51","nodeType":"YulIdentifier","src":"2359:6:51"}],"functionName":{"name":"mstore","nativeSrc":"2341:6:51","nodeType":"YulIdentifier","src":"2341:6:51"},"nativeSrc":"2341:25:51","nodeType":"YulFunctionCall","src":"2341:25:51"},"nativeSrc":"2341:25:51","nodeType":"YulExpressionStatement","src":"2341:25:51"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"2195:177:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2265:9:51","nodeType":"YulTypedName","src":"2265:9:51","type":""},{"name":"value0","nativeSrc":"2276:6:51","nodeType":"YulTypedName","src":"2276:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2287:4:51","nodeType":"YulTypedName","src":"2287:4:51","type":""}],"src":"2195:177:51"},{"body":{"nativeSrc":"2481:404:51","nodeType":"YulBlock","src":"2481:404:51","statements":[{"body":{"nativeSrc":"2527:16:51","nodeType":"YulBlock","src":"2527:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2536:1:51","nodeType":"YulLiteral","src":"2536:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"2539:1:51","nodeType":"YulLiteral","src":"2539:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2529:6:51","nodeType":"YulIdentifier","src":"2529:6:51"},"nativeSrc":"2529:12:51","nodeType":"YulFunctionCall","src":"2529:12:51"},"nativeSrc":"2529:12:51","nodeType":"YulExpressionStatement","src":"2529:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2502:7:51","nodeType":"YulIdentifier","src":"2502:7:51"},{"name":"headStart","nativeSrc":"2511:9:51","nodeType":"YulIdentifier","src":"2511:9:51"}],"functionName":{"name":"sub","nativeSrc":"2498:3:51","nodeType":"YulIdentifier","src":"2498:3:51"},"nativeSrc":"2498:23:51","nodeType":"YulFunctionCall","src":"2498:23:51"},{"kind":"number","nativeSrc":"2523:2:51","nodeType":"YulLiteral","src":"2523:2:51","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2494:3:51","nodeType":"YulIdentifier","src":"2494:3:51"},"nativeSrc":"2494:32:51","nodeType":"YulFunctionCall","src":"2494:32:51"},"nativeSrc":"2491:52:51","nodeType":"YulIf","src":"2491:52:51"},{"nativeSrc":"2552:36:51","nodeType":"YulVariableDeclaration","src":"2552:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"2578:9:51","nodeType":"YulIdentifier","src":"2578:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"2565:12:51","nodeType":"YulIdentifier","src":"2565:12:51"},"nativeSrc":"2565:23:51","nodeType":"YulFunctionCall","src":"2565:23:51"},"variables":[{"name":"value","nativeSrc":"2556:5:51","nodeType":"YulTypedName","src":"2556:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2622:5:51","nodeType":"YulIdentifier","src":"2622:5:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2597:24:51","nodeType":"YulIdentifier","src":"2597:24:51"},"nativeSrc":"2597:31:51","nodeType":"YulFunctionCall","src":"2597:31:51"},"nativeSrc":"2597:31:51","nodeType":"YulExpressionStatement","src":"2597:31:51"},{"nativeSrc":"2637:15:51","nodeType":"YulAssignment","src":"2637:15:51","value":{"name":"value","nativeSrc":"2647:5:51","nodeType":"YulIdentifier","src":"2647:5:51"},"variableNames":[{"name":"value0","nativeSrc":"2637:6:51","nodeType":"YulIdentifier","src":"2637:6:51"}]},{"nativeSrc":"2661:47:51","nodeType":"YulVariableDeclaration","src":"2661:47:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2693:9:51","nodeType":"YulIdentifier","src":"2693:9:51"},{"kind":"number","nativeSrc":"2704:2:51","nodeType":"YulLiteral","src":"2704:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2689:3:51","nodeType":"YulIdentifier","src":"2689:3:51"},"nativeSrc":"2689:18:51","nodeType":"YulFunctionCall","src":"2689:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"2676:12:51","nodeType":"YulIdentifier","src":"2676:12:51"},"nativeSrc":"2676:32:51","nodeType":"YulFunctionCall","src":"2676:32:51"},"variables":[{"name":"value_1","nativeSrc":"2665:7:51","nodeType":"YulTypedName","src":"2665:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"2742:7:51","nodeType":"YulIdentifier","src":"2742:7:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2717:24:51","nodeType":"YulIdentifier","src":"2717:24:51"},"nativeSrc":"2717:33:51","nodeType":"YulFunctionCall","src":"2717:33:51"},"nativeSrc":"2717:33:51","nodeType":"YulExpressionStatement","src":"2717:33:51"},{"nativeSrc":"2759:17:51","nodeType":"YulAssignment","src":"2759:17:51","value":{"name":"value_1","nativeSrc":"2769:7:51","nodeType":"YulIdentifier","src":"2769:7:51"},"variableNames":[{"name":"value1","nativeSrc":"2759:6:51","nodeType":"YulIdentifier","src":"2759:6:51"}]},{"nativeSrc":"2785:16:51","nodeType":"YulVariableDeclaration","src":"2785:16:51","value":{"kind":"number","nativeSrc":"2800:1:51","nodeType":"YulLiteral","src":"2800:1:51","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"2789:7:51","nodeType":"YulTypedName","src":"2789:7:51","type":""}]},{"nativeSrc":"2810:43:51","nodeType":"YulAssignment","src":"2810:43:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2838:9:51","nodeType":"YulIdentifier","src":"2838:9:51"},{"kind":"number","nativeSrc":"2849:2:51","nodeType":"YulLiteral","src":"2849:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2834:3:51","nodeType":"YulIdentifier","src":"2834:3:51"},"nativeSrc":"2834:18:51","nodeType":"YulFunctionCall","src":"2834:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"2821:12:51","nodeType":"YulIdentifier","src":"2821:12:51"},"nativeSrc":"2821:32:51","nodeType":"YulFunctionCall","src":"2821:32:51"},"variableNames":[{"name":"value_2","nativeSrc":"2810:7:51","nodeType":"YulIdentifier","src":"2810:7:51"}]},{"nativeSrc":"2862:17:51","nodeType":"YulAssignment","src":"2862:17:51","value":{"name":"value_2","nativeSrc":"2872:7:51","nodeType":"YulIdentifier","src":"2872:7:51"},"variableNames":[{"name":"value2","nativeSrc":"2862:6:51","nodeType":"YulIdentifier","src":"2862:6:51"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"2377:508:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2431:9:51","nodeType":"YulTypedName","src":"2431:9:51","type":""},{"name":"dataEnd","nativeSrc":"2442:7:51","nodeType":"YulTypedName","src":"2442:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2454:6:51","nodeType":"YulTypedName","src":"2454:6:51","type":""},{"name":"value1","nativeSrc":"2462:6:51","nodeType":"YulTypedName","src":"2462:6:51","type":""},{"name":"value2","nativeSrc":"2470:6:51","nodeType":"YulTypedName","src":"2470:6:51","type":""}],"src":"2377:508:51"},{"body":{"nativeSrc":"3028:102:51","nodeType":"YulBlock","src":"3028:102:51","statements":[{"nativeSrc":"3038:26:51","nodeType":"YulAssignment","src":"3038:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"3050:9:51","nodeType":"YulIdentifier","src":"3050:9:51"},{"kind":"number","nativeSrc":"3061:2:51","nodeType":"YulLiteral","src":"3061:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3046:3:51","nodeType":"YulIdentifier","src":"3046:3:51"},"nativeSrc":"3046:18:51","nodeType":"YulFunctionCall","src":"3046:18:51"},"variableNames":[{"name":"tail","nativeSrc":"3038:4:51","nodeType":"YulIdentifier","src":"3038:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3080:9:51","nodeType":"YulIdentifier","src":"3080:9:51"},{"arguments":[{"name":"value0","nativeSrc":"3095:6:51","nodeType":"YulIdentifier","src":"3095:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3111:3:51","nodeType":"YulLiteral","src":"3111:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"3116:1:51","nodeType":"YulLiteral","src":"3116:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3107:3:51","nodeType":"YulIdentifier","src":"3107:3:51"},"nativeSrc":"3107:11:51","nodeType":"YulFunctionCall","src":"3107:11:51"},{"kind":"number","nativeSrc":"3120:1:51","nodeType":"YulLiteral","src":"3120:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3103:3:51","nodeType":"YulIdentifier","src":"3103:3:51"},"nativeSrc":"3103:19:51","nodeType":"YulFunctionCall","src":"3103:19:51"}],"functionName":{"name":"and","nativeSrc":"3091:3:51","nodeType":"YulIdentifier","src":"3091:3:51"},"nativeSrc":"3091:32:51","nodeType":"YulFunctionCall","src":"3091:32:51"}],"functionName":{"name":"mstore","nativeSrc":"3073:6:51","nodeType":"YulIdentifier","src":"3073:6:51"},"nativeSrc":"3073:51:51","nodeType":"YulFunctionCall","src":"3073:51:51"},"nativeSrc":"3073:51:51","nodeType":"YulExpressionStatement","src":"3073:51:51"}]},"name":"abi_encode_tuple_t_contract$_IWitOracleRadonRequestModal_$10761__to_t_address__fromStack_reversed","nativeSrc":"2890:240:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2997:9:51","nodeType":"YulTypedName","src":"2997:9:51","type":""},{"name":"value0","nativeSrc":"3008:6:51","nodeType":"YulTypedName","src":"3008:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3019:4:51","nodeType":"YulTypedName","src":"3019:4:51","type":""}],"src":"2890:240:51"},{"body":{"nativeSrc":"3202:59:51","nodeType":"YulBlock","src":"3202:59:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"3219:3:51","nodeType":"YulIdentifier","src":"3219:3:51"},{"arguments":[{"name":"value","nativeSrc":"3228:5:51","nodeType":"YulIdentifier","src":"3228:5:51"},{"kind":"number","nativeSrc":"3235:18:51","nodeType":"YulLiteral","src":"3235:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"3224:3:51","nodeType":"YulIdentifier","src":"3224:3:51"},"nativeSrc":"3224:30:51","nodeType":"YulFunctionCall","src":"3224:30:51"}],"functionName":{"name":"mstore","nativeSrc":"3212:6:51","nodeType":"YulIdentifier","src":"3212:6:51"},"nativeSrc":"3212:43:51","nodeType":"YulFunctionCall","src":"3212:43:51"},"nativeSrc":"3212:43:51","nodeType":"YulExpressionStatement","src":"3212:43:51"}]},"name":"abi_encode_userDefinedValueType_Timestamp","nativeSrc":"3135:126:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"3186:5:51","nodeType":"YulTypedName","src":"3186:5:51","type":""},{"name":"pos","nativeSrc":"3193:3:51","nodeType":"YulTypedName","src":"3193:3:51","type":""}],"src":"3135:126:51"},{"body":{"nativeSrc":"3397:101:51","nodeType":"YulBlock","src":"3397:101:51","statements":[{"nativeSrc":"3407:26:51","nodeType":"YulAssignment","src":"3407:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"3419:9:51","nodeType":"YulIdentifier","src":"3419:9:51"},{"kind":"number","nativeSrc":"3430:2:51","nodeType":"YulLiteral","src":"3430:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3415:3:51","nodeType":"YulIdentifier","src":"3415:3:51"},"nativeSrc":"3415:18:51","nodeType":"YulFunctionCall","src":"3415:18:51"},"variableNames":[{"name":"tail","nativeSrc":"3407:4:51","nodeType":"YulIdentifier","src":"3407:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3449:9:51","nodeType":"YulIdentifier","src":"3449:9:51"},{"arguments":[{"name":"value0","nativeSrc":"3464:6:51","nodeType":"YulIdentifier","src":"3464:6:51"},{"kind":"number","nativeSrc":"3472:18:51","nodeType":"YulLiteral","src":"3472:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"3460:3:51","nodeType":"YulIdentifier","src":"3460:3:51"},"nativeSrc":"3460:31:51","nodeType":"YulFunctionCall","src":"3460:31:51"}],"functionName":{"name":"mstore","nativeSrc":"3442:6:51","nodeType":"YulIdentifier","src":"3442:6:51"},"nativeSrc":"3442:50:51","nodeType":"YulFunctionCall","src":"3442:50:51"},"nativeSrc":"3442:50:51","nodeType":"YulExpressionStatement","src":"3442:50:51"}]},"name":"abi_encode_tuple_t_userDefinedValueType$_Timestamp_$13254__to_t_uint64__fromStack_reversed","nativeSrc":"3266:232:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3366:9:51","nodeType":"YulTypedName","src":"3366:9:51","type":""},{"name":"value0","nativeSrc":"3377:6:51","nodeType":"YulTypedName","src":"3377:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3388:4:51","nodeType":"YulTypedName","src":"3388:4:51","type":""}],"src":"3266:232:51"},{"body":{"nativeSrc":"3545:33:51","nodeType":"YulBlock","src":"3545:33:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"3554:3:51","nodeType":"YulIdentifier","src":"3554:3:51"},{"arguments":[{"name":"value","nativeSrc":"3563:5:51","nodeType":"YulIdentifier","src":"3563:5:51"},{"kind":"number","nativeSrc":"3570:4:51","nodeType":"YulLiteral","src":"3570:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"3559:3:51","nodeType":"YulIdentifier","src":"3559:3:51"},"nativeSrc":"3559:16:51","nodeType":"YulFunctionCall","src":"3559:16:51"}],"functionName":{"name":"mstore","nativeSrc":"3547:6:51","nodeType":"YulIdentifier","src":"3547:6:51"},"nativeSrc":"3547:29:51","nodeType":"YulFunctionCall","src":"3547:29:51"},"nativeSrc":"3547:29:51","nodeType":"YulExpressionStatement","src":"3547:29:51"}]},"name":"abi_encode_uint8","nativeSrc":"3503:75:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"3529:5:51","nodeType":"YulTypedName","src":"3529:5:51","type":""},{"name":"pos","nativeSrc":"3536:3:51","nodeType":"YulTypedName","src":"3536:3:51","type":""}],"src":"3503:75:51"},{"body":{"nativeSrc":"3680:87:51","nodeType":"YulBlock","src":"3680:87:51","statements":[{"nativeSrc":"3690:26:51","nodeType":"YulAssignment","src":"3690:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"3702:9:51","nodeType":"YulIdentifier","src":"3702:9:51"},{"kind":"number","nativeSrc":"3713:2:51","nodeType":"YulLiteral","src":"3713:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3698:3:51","nodeType":"YulIdentifier","src":"3698:3:51"},"nativeSrc":"3698:18:51","nodeType":"YulFunctionCall","src":"3698:18:51"},"variableNames":[{"name":"tail","nativeSrc":"3690:4:51","nodeType":"YulIdentifier","src":"3690:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3732:9:51","nodeType":"YulIdentifier","src":"3732:9:51"},{"arguments":[{"name":"value0","nativeSrc":"3747:6:51","nodeType":"YulIdentifier","src":"3747:6:51"},{"kind":"number","nativeSrc":"3755:4:51","nodeType":"YulLiteral","src":"3755:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"3743:3:51","nodeType":"YulIdentifier","src":"3743:3:51"},"nativeSrc":"3743:17:51","nodeType":"YulFunctionCall","src":"3743:17:51"}],"functionName":{"name":"mstore","nativeSrc":"3725:6:51","nodeType":"YulIdentifier","src":"3725:6:51"},"nativeSrc":"3725:36:51","nodeType":"YulFunctionCall","src":"3725:36:51"},"nativeSrc":"3725:36:51","nodeType":"YulExpressionStatement","src":"3725:36:51"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"3583:184:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3649:9:51","nodeType":"YulTypedName","src":"3649:9:51","type":""},{"name":"value0","nativeSrc":"3660:6:51","nodeType":"YulTypedName","src":"3660:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3671:4:51","nodeType":"YulTypedName","src":"3671:4:51","type":""}],"src":"3583:184:51"},{"body":{"nativeSrc":"3873:76:51","nodeType":"YulBlock","src":"3873:76:51","statements":[{"nativeSrc":"3883:26:51","nodeType":"YulAssignment","src":"3883:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"3895:9:51","nodeType":"YulIdentifier","src":"3895:9:51"},{"kind":"number","nativeSrc":"3906:2:51","nodeType":"YulLiteral","src":"3906:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3891:3:51","nodeType":"YulIdentifier","src":"3891:3:51"},"nativeSrc":"3891:18:51","nodeType":"YulFunctionCall","src":"3891:18:51"},"variableNames":[{"name":"tail","nativeSrc":"3883:4:51","nodeType":"YulIdentifier","src":"3883:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3925:9:51","nodeType":"YulIdentifier","src":"3925:9:51"},{"name":"value0","nativeSrc":"3936:6:51","nodeType":"YulIdentifier","src":"3936:6:51"}],"functionName":{"name":"mstore","nativeSrc":"3918:6:51","nodeType":"YulIdentifier","src":"3918:6:51"},"nativeSrc":"3918:25:51","nodeType":"YulFunctionCall","src":"3918:25:51"},"nativeSrc":"3918:25:51","nodeType":"YulExpressionStatement","src":"3918:25:51"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"3772:177:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3842:9:51","nodeType":"YulTypedName","src":"3842:9:51","type":""},{"name":"value0","nativeSrc":"3853:6:51","nodeType":"YulTypedName","src":"3853:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3864:4:51","nodeType":"YulTypedName","src":"3864:4:51","type":""}],"src":"3772:177:51"},{"body":{"nativeSrc":"4024:177:51","nodeType":"YulBlock","src":"4024:177:51","statements":[{"body":{"nativeSrc":"4070:16:51","nodeType":"YulBlock","src":"4070:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4079:1:51","nodeType":"YulLiteral","src":"4079:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4082:1:51","nodeType":"YulLiteral","src":"4082:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4072:6:51","nodeType":"YulIdentifier","src":"4072:6:51"},"nativeSrc":"4072:12:51","nodeType":"YulFunctionCall","src":"4072:12:51"},"nativeSrc":"4072:12:51","nodeType":"YulExpressionStatement","src":"4072:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4045:7:51","nodeType":"YulIdentifier","src":"4045:7:51"},{"name":"headStart","nativeSrc":"4054:9:51","nodeType":"YulIdentifier","src":"4054:9:51"}],"functionName":{"name":"sub","nativeSrc":"4041:3:51","nodeType":"YulIdentifier","src":"4041:3:51"},"nativeSrc":"4041:23:51","nodeType":"YulFunctionCall","src":"4041:23:51"},{"kind":"number","nativeSrc":"4066:2:51","nodeType":"YulLiteral","src":"4066:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"4037:3:51","nodeType":"YulIdentifier","src":"4037:3:51"},"nativeSrc":"4037:32:51","nodeType":"YulFunctionCall","src":"4037:32:51"},"nativeSrc":"4034:52:51","nodeType":"YulIf","src":"4034:52:51"},{"nativeSrc":"4095:36:51","nodeType":"YulVariableDeclaration","src":"4095:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"4121:9:51","nodeType":"YulIdentifier","src":"4121:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"4108:12:51","nodeType":"YulIdentifier","src":"4108:12:51"},"nativeSrc":"4108:23:51","nodeType":"YulFunctionCall","src":"4108:23:51"},"variables":[{"name":"value","nativeSrc":"4099:5:51","nodeType":"YulTypedName","src":"4099:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4165:5:51","nodeType":"YulIdentifier","src":"4165:5:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4140:24:51","nodeType":"YulIdentifier","src":"4140:24:51"},"nativeSrc":"4140:31:51","nodeType":"YulFunctionCall","src":"4140:31:51"},"nativeSrc":"4140:31:51","nodeType":"YulExpressionStatement","src":"4140:31:51"},{"nativeSrc":"4180:15:51","nodeType":"YulAssignment","src":"4180:15:51","value":{"name":"value","nativeSrc":"4190:5:51","nodeType":"YulIdentifier","src":"4190:5:51"},"variableNames":[{"name":"value0","nativeSrc":"4180:6:51","nodeType":"YulIdentifier","src":"4180:6:51"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"3954:247:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3990:9:51","nodeType":"YulTypedName","src":"3990:9:51","type":""},{"name":"dataEnd","nativeSrc":"4001:7:51","nodeType":"YulTypedName","src":"4001:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4013:6:51","nodeType":"YulTypedName","src":"4013:6:51","type":""}],"src":"3954:247:51"},{"body":{"nativeSrc":"4313:156:51","nodeType":"YulBlock","src":"4313:156:51","statements":[{"body":{"nativeSrc":"4359:16:51","nodeType":"YulBlock","src":"4359:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4368:1:51","nodeType":"YulLiteral","src":"4368:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4371:1:51","nodeType":"YulLiteral","src":"4371:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4361:6:51","nodeType":"YulIdentifier","src":"4361:6:51"},"nativeSrc":"4361:12:51","nodeType":"YulFunctionCall","src":"4361:12:51"},"nativeSrc":"4361:12:51","nodeType":"YulExpressionStatement","src":"4361:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4334:7:51","nodeType":"YulIdentifier","src":"4334:7:51"},{"name":"headStart","nativeSrc":"4343:9:51","nodeType":"YulIdentifier","src":"4343:9:51"}],"functionName":{"name":"sub","nativeSrc":"4330:3:51","nodeType":"YulIdentifier","src":"4330:3:51"},"nativeSrc":"4330:23:51","nodeType":"YulFunctionCall","src":"4330:23:51"},{"kind":"number","nativeSrc":"4355:2:51","nodeType":"YulLiteral","src":"4355:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"4326:3:51","nodeType":"YulIdentifier","src":"4326:3:51"},"nativeSrc":"4326:32:51","nodeType":"YulFunctionCall","src":"4326:32:51"},"nativeSrc":"4323:52:51","nodeType":"YulIf","src":"4323:52:51"},{"nativeSrc":"4384:14:51","nodeType":"YulVariableDeclaration","src":"4384:14:51","value":{"kind":"number","nativeSrc":"4397:1:51","nodeType":"YulLiteral","src":"4397:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"4388:5:51","nodeType":"YulTypedName","src":"4388:5:51","type":""}]},{"nativeSrc":"4407:32:51","nodeType":"YulAssignment","src":"4407:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"4429:9:51","nodeType":"YulIdentifier","src":"4429:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"4416:12:51","nodeType":"YulIdentifier","src":"4416:12:51"},"nativeSrc":"4416:23:51","nodeType":"YulFunctionCall","src":"4416:23:51"},"variableNames":[{"name":"value","nativeSrc":"4407:5:51","nodeType":"YulIdentifier","src":"4407:5:51"}]},{"nativeSrc":"4448:15:51","nodeType":"YulAssignment","src":"4448:15:51","value":{"name":"value","nativeSrc":"4458:5:51","nodeType":"YulIdentifier","src":"4458:5:51"},"variableNames":[{"name":"value0","nativeSrc":"4448:6:51","nodeType":"YulIdentifier","src":"4448:6:51"}]}]},"name":"abi_decode_tuple_t_userDefinedValueType$_TransactionHash_$13256","nativeSrc":"4206:263:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4279:9:51","nodeType":"YulTypedName","src":"4279:9:51","type":""},{"name":"dataEnd","nativeSrc":"4290:7:51","nodeType":"YulTypedName","src":"4290:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4302:6:51","nodeType":"YulTypedName","src":"4302:6:51","type":""}],"src":"4206:263:51"},{"body":{"nativeSrc":"4546:275:51","nodeType":"YulBlock","src":"4546:275:51","statements":[{"body":{"nativeSrc":"4595:16:51","nodeType":"YulBlock","src":"4595:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4604:1:51","nodeType":"YulLiteral","src":"4604:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4607:1:51","nodeType":"YulLiteral","src":"4607:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4597:6:51","nodeType":"YulIdentifier","src":"4597:6:51"},"nativeSrc":"4597:12:51","nodeType":"YulFunctionCall","src":"4597:12:51"},"nativeSrc":"4597:12:51","nodeType":"YulExpressionStatement","src":"4597:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"4574:6:51","nodeType":"YulIdentifier","src":"4574:6:51"},{"kind":"number","nativeSrc":"4582:4:51","nodeType":"YulLiteral","src":"4582:4:51","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"4570:3:51","nodeType":"YulIdentifier","src":"4570:3:51"},"nativeSrc":"4570:17:51","nodeType":"YulFunctionCall","src":"4570:17:51"},{"name":"end","nativeSrc":"4589:3:51","nodeType":"YulIdentifier","src":"4589:3:51"}],"functionName":{"name":"slt","nativeSrc":"4566:3:51","nodeType":"YulIdentifier","src":"4566:3:51"},"nativeSrc":"4566:27:51","nodeType":"YulFunctionCall","src":"4566:27:51"}],"functionName":{"name":"iszero","nativeSrc":"4559:6:51","nodeType":"YulIdentifier","src":"4559:6:51"},"nativeSrc":"4559:35:51","nodeType":"YulFunctionCall","src":"4559:35:51"},"nativeSrc":"4556:55:51","nodeType":"YulIf","src":"4556:55:51"},{"nativeSrc":"4620:30:51","nodeType":"YulAssignment","src":"4620:30:51","value":{"arguments":[{"name":"offset","nativeSrc":"4643:6:51","nodeType":"YulIdentifier","src":"4643:6:51"}],"functionName":{"name":"calldataload","nativeSrc":"4630:12:51","nodeType":"YulIdentifier","src":"4630:12:51"},"nativeSrc":"4630:20:51","nodeType":"YulFunctionCall","src":"4630:20:51"},"variableNames":[{"name":"length","nativeSrc":"4620:6:51","nodeType":"YulIdentifier","src":"4620:6:51"}]},{"body":{"nativeSrc":"4693:16:51","nodeType":"YulBlock","src":"4693:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4702:1:51","nodeType":"YulLiteral","src":"4702:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4705:1:51","nodeType":"YulLiteral","src":"4705:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4695:6:51","nodeType":"YulIdentifier","src":"4695:6:51"},"nativeSrc":"4695:12:51","nodeType":"YulFunctionCall","src":"4695:12:51"},"nativeSrc":"4695:12:51","nodeType":"YulExpressionStatement","src":"4695:12:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"4665:6:51","nodeType":"YulIdentifier","src":"4665:6:51"},{"kind":"number","nativeSrc":"4673:18:51","nodeType":"YulLiteral","src":"4673:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4662:2:51","nodeType":"YulIdentifier","src":"4662:2:51"},"nativeSrc":"4662:30:51","nodeType":"YulFunctionCall","src":"4662:30:51"},"nativeSrc":"4659:50:51","nodeType":"YulIf","src":"4659:50:51"},{"nativeSrc":"4718:29:51","nodeType":"YulAssignment","src":"4718:29:51","value":{"arguments":[{"name":"offset","nativeSrc":"4734:6:51","nodeType":"YulIdentifier","src":"4734:6:51"},{"kind":"number","nativeSrc":"4742:4:51","nodeType":"YulLiteral","src":"4742:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4730:3:51","nodeType":"YulIdentifier","src":"4730:3:51"},"nativeSrc":"4730:17:51","nodeType":"YulFunctionCall","src":"4730:17:51"},"variableNames":[{"name":"arrayPos","nativeSrc":"4718:8:51","nodeType":"YulIdentifier","src":"4718:8:51"}]},{"body":{"nativeSrc":"4799:16:51","nodeType":"YulBlock","src":"4799:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4808:1:51","nodeType":"YulLiteral","src":"4808:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4811:1:51","nodeType":"YulLiteral","src":"4811:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4801:6:51","nodeType":"YulIdentifier","src":"4801:6:51"},"nativeSrc":"4801:12:51","nodeType":"YulFunctionCall","src":"4801:12:51"},"nativeSrc":"4801:12:51","nodeType":"YulExpressionStatement","src":"4801:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"4770:6:51","nodeType":"YulIdentifier","src":"4770:6:51"},{"name":"length","nativeSrc":"4778:6:51","nodeType":"YulIdentifier","src":"4778:6:51"}],"functionName":{"name":"add","nativeSrc":"4766:3:51","nodeType":"YulIdentifier","src":"4766:3:51"},"nativeSrc":"4766:19:51","nodeType":"YulFunctionCall","src":"4766:19:51"},{"kind":"number","nativeSrc":"4787:4:51","nodeType":"YulLiteral","src":"4787:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4762:3:51","nodeType":"YulIdentifier","src":"4762:3:51"},"nativeSrc":"4762:30:51","nodeType":"YulFunctionCall","src":"4762:30:51"},{"name":"end","nativeSrc":"4794:3:51","nodeType":"YulIdentifier","src":"4794:3:51"}],"functionName":{"name":"gt","nativeSrc":"4759:2:51","nodeType":"YulIdentifier","src":"4759:2:51"},"nativeSrc":"4759:39:51","nodeType":"YulFunctionCall","src":"4759:39:51"},"nativeSrc":"4756:59:51","nodeType":"YulIf","src":"4756:59:51"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"4474:347:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"4509:6:51","nodeType":"YulTypedName","src":"4509:6:51","type":""},{"name":"end","nativeSrc":"4517:3:51","nodeType":"YulTypedName","src":"4517:3:51","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"4525:8:51","nodeType":"YulTypedName","src":"4525:8:51","type":""},{"name":"length","nativeSrc":"4535:6:51","nodeType":"YulTypedName","src":"4535:6:51","type":""}],"src":"4474:347:51"},{"body":{"nativeSrc":"4967:557:51","nodeType":"YulBlock","src":"4967:557:51","statements":[{"body":{"nativeSrc":"5013:16:51","nodeType":"YulBlock","src":"5013:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5022:1:51","nodeType":"YulLiteral","src":"5022:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"5025:1:51","nodeType":"YulLiteral","src":"5025:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5015:6:51","nodeType":"YulIdentifier","src":"5015:6:51"},"nativeSrc":"5015:12:51","nodeType":"YulFunctionCall","src":"5015:12:51"},"nativeSrc":"5015:12:51","nodeType":"YulExpressionStatement","src":"5015:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4988:7:51","nodeType":"YulIdentifier","src":"4988:7:51"},{"name":"headStart","nativeSrc":"4997:9:51","nodeType":"YulIdentifier","src":"4997:9:51"}],"functionName":{"name":"sub","nativeSrc":"4984:3:51","nodeType":"YulIdentifier","src":"4984:3:51"},"nativeSrc":"4984:23:51","nodeType":"YulFunctionCall","src":"4984:23:51"},{"kind":"number","nativeSrc":"5009:2:51","nodeType":"YulLiteral","src":"5009:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4980:3:51","nodeType":"YulIdentifier","src":"4980:3:51"},"nativeSrc":"4980:32:51","nodeType":"YulFunctionCall","src":"4980:32:51"},"nativeSrc":"4977:52:51","nodeType":"YulIf","src":"4977:52:51"},{"nativeSrc":"5038:37:51","nodeType":"YulVariableDeclaration","src":"5038:37:51","value":{"arguments":[{"name":"headStart","nativeSrc":"5065:9:51","nodeType":"YulIdentifier","src":"5065:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"5052:12:51","nodeType":"YulIdentifier","src":"5052:12:51"},"nativeSrc":"5052:23:51","nodeType":"YulFunctionCall","src":"5052:23:51"},"variables":[{"name":"offset","nativeSrc":"5042:6:51","nodeType":"YulTypedName","src":"5042:6:51","type":""}]},{"body":{"nativeSrc":"5118:16:51","nodeType":"YulBlock","src":"5118:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5127:1:51","nodeType":"YulLiteral","src":"5127:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"5130:1:51","nodeType":"YulLiteral","src":"5130:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5120:6:51","nodeType":"YulIdentifier","src":"5120:6:51"},"nativeSrc":"5120:12:51","nodeType":"YulFunctionCall","src":"5120:12:51"},"nativeSrc":"5120:12:51","nodeType":"YulExpressionStatement","src":"5120:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"5090:6:51","nodeType":"YulIdentifier","src":"5090:6:51"},{"kind":"number","nativeSrc":"5098:18:51","nodeType":"YulLiteral","src":"5098:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"5087:2:51","nodeType":"YulIdentifier","src":"5087:2:51"},"nativeSrc":"5087:30:51","nodeType":"YulFunctionCall","src":"5087:30:51"},"nativeSrc":"5084:50:51","nodeType":"YulIf","src":"5084:50:51"},{"nativeSrc":"5143:32:51","nodeType":"YulVariableDeclaration","src":"5143:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"5157:9:51","nodeType":"YulIdentifier","src":"5157:9:51"},{"name":"offset","nativeSrc":"5168:6:51","nodeType":"YulIdentifier","src":"5168:6:51"}],"functionName":{"name":"add","nativeSrc":"5153:3:51","nodeType":"YulIdentifier","src":"5153:3:51"},"nativeSrc":"5153:22:51","nodeType":"YulFunctionCall","src":"5153:22:51"},"variables":[{"name":"_1","nativeSrc":"5147:2:51","nodeType":"YulTypedName","src":"5147:2:51","type":""}]},{"body":{"nativeSrc":"5214:16:51","nodeType":"YulBlock","src":"5214:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5223:1:51","nodeType":"YulLiteral","src":"5223:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"5226:1:51","nodeType":"YulLiteral","src":"5226:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5216:6:51","nodeType":"YulIdentifier","src":"5216:6:51"},"nativeSrc":"5216:12:51","nodeType":"YulFunctionCall","src":"5216:12:51"},"nativeSrc":"5216:12:51","nodeType":"YulExpressionStatement","src":"5216:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5195:7:51","nodeType":"YulIdentifier","src":"5195:7:51"},{"name":"_1","nativeSrc":"5204:2:51","nodeType":"YulIdentifier","src":"5204:2:51"}],"functionName":{"name":"sub","nativeSrc":"5191:3:51","nodeType":"YulIdentifier","src":"5191:3:51"},"nativeSrc":"5191:16:51","nodeType":"YulFunctionCall","src":"5191:16:51"},{"kind":"number","nativeSrc":"5209:3:51","nodeType":"YulLiteral","src":"5209:3:51","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"5187:3:51","nodeType":"YulIdentifier","src":"5187:3:51"},"nativeSrc":"5187:26:51","nodeType":"YulFunctionCall","src":"5187:26:51"},"nativeSrc":"5184:46:51","nodeType":"YulIf","src":"5184:46:51"},{"nativeSrc":"5239:12:51","nodeType":"YulAssignment","src":"5239:12:51","value":{"name":"_1","nativeSrc":"5249:2:51","nodeType":"YulIdentifier","src":"5249:2:51"},"variableNames":[{"name":"value0","nativeSrc":"5239:6:51","nodeType":"YulIdentifier","src":"5239:6:51"}]},{"nativeSrc":"5260:48:51","nodeType":"YulVariableDeclaration","src":"5260:48:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5293:9:51","nodeType":"YulIdentifier","src":"5293:9:51"},{"kind":"number","nativeSrc":"5304:2:51","nodeType":"YulLiteral","src":"5304:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5289:3:51","nodeType":"YulIdentifier","src":"5289:3:51"},"nativeSrc":"5289:18:51","nodeType":"YulFunctionCall","src":"5289:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"5276:12:51","nodeType":"YulIdentifier","src":"5276:12:51"},"nativeSrc":"5276:32:51","nodeType":"YulFunctionCall","src":"5276:32:51"},"variables":[{"name":"offset_1","nativeSrc":"5264:8:51","nodeType":"YulTypedName","src":"5264:8:51","type":""}]},{"body":{"nativeSrc":"5353:16:51","nodeType":"YulBlock","src":"5353:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5362:1:51","nodeType":"YulLiteral","src":"5362:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"5365:1:51","nodeType":"YulLiteral","src":"5365:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5355:6:51","nodeType":"YulIdentifier","src":"5355:6:51"},"nativeSrc":"5355:12:51","nodeType":"YulFunctionCall","src":"5355:12:51"},"nativeSrc":"5355:12:51","nodeType":"YulExpressionStatement","src":"5355:12:51"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"5323:8:51","nodeType":"YulIdentifier","src":"5323:8:51"},{"kind":"number","nativeSrc":"5333:18:51","nodeType":"YulLiteral","src":"5333:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"5320:2:51","nodeType":"YulIdentifier","src":"5320:2:51"},"nativeSrc":"5320:32:51","nodeType":"YulFunctionCall","src":"5320:32:51"},"nativeSrc":"5317:52:51","nodeType":"YulIf","src":"5317:52:51"},{"nativeSrc":"5378:86:51","nodeType":"YulVariableDeclaration","src":"5378:86:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5434:9:51","nodeType":"YulIdentifier","src":"5434:9:51"},{"name":"offset_1","nativeSrc":"5445:8:51","nodeType":"YulIdentifier","src":"5445:8:51"}],"functionName":{"name":"add","nativeSrc":"5430:3:51","nodeType":"YulIdentifier","src":"5430:3:51"},"nativeSrc":"5430:24:51","nodeType":"YulFunctionCall","src":"5430:24:51"},{"name":"dataEnd","nativeSrc":"5456:7:51","nodeType":"YulIdentifier","src":"5456:7:51"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"5404:25:51","nodeType":"YulIdentifier","src":"5404:25:51"},"nativeSrc":"5404:60:51","nodeType":"YulFunctionCall","src":"5404:60:51"},"variables":[{"name":"value1_1","nativeSrc":"5382:8:51","nodeType":"YulTypedName","src":"5382:8:51","type":""},{"name":"value2_1","nativeSrc":"5392:8:51","nodeType":"YulTypedName","src":"5392:8:51","type":""}]},{"nativeSrc":"5473:18:51","nodeType":"YulAssignment","src":"5473:18:51","value":{"name":"value1_1","nativeSrc":"5483:8:51","nodeType":"YulIdentifier","src":"5483:8:51"},"variableNames":[{"name":"value1","nativeSrc":"5473:6:51","nodeType":"YulIdentifier","src":"5473:6:51"}]},{"nativeSrc":"5500:18:51","nodeType":"YulAssignment","src":"5500:18:51","value":{"name":"value2_1","nativeSrc":"5510:8:51","nodeType":"YulIdentifier","src":"5510:8:51"},"variableNames":[{"name":"value2","nativeSrc":"5500:6:51","nodeType":"YulIdentifier","src":"5500:6:51"}]}]},"name":"abi_decode_tuple_t_struct$_DataPushReport_$13371_calldata_ptrt_bytes_calldata_ptr","nativeSrc":"4826:698:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4917:9:51","nodeType":"YulTypedName","src":"4917:9:51","type":""},{"name":"dataEnd","nativeSrc":"4928:7:51","nodeType":"YulTypedName","src":"4928:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4940:6:51","nodeType":"YulTypedName","src":"4940:6:51","type":""},{"name":"value1","nativeSrc":"4948:6:51","nodeType":"YulTypedName","src":"4948:6:51","type":""},{"name":"value2","nativeSrc":"4956:6:51","nodeType":"YulTypedName","src":"4956:6:51","type":""}],"src":"4826:698:51"},{"body":{"nativeSrc":"5636:134:51","nodeType":"YulBlock","src":"5636:134:51","statements":[{"nativeSrc":"5646:43:51","nodeType":"YulVariableDeclaration","src":"5646:43:51","value":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5664:7:51","nodeType":"YulIdentifier","src":"5664:7:51"},{"name":"headStart","nativeSrc":"5673:9:51","nodeType":"YulIdentifier","src":"5673:9:51"}],"functionName":{"name":"sub","nativeSrc":"5660:3:51","nodeType":"YulIdentifier","src":"5660:3:51"},"nativeSrc":"5660:23:51","nodeType":"YulFunctionCall","src":"5660:23:51"},{"kind":"number","nativeSrc":"5685:3:51","nodeType":"YulLiteral","src":"5685:3:51","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"5656:3:51","nodeType":"YulIdentifier","src":"5656:3:51"},"nativeSrc":"5656:33:51","nodeType":"YulFunctionCall","src":"5656:33:51"},"variables":[{"name":"_1","nativeSrc":"5650:2:51","nodeType":"YulTypedName","src":"5650:2:51","type":""}]},{"body":{"nativeSrc":"5704:16:51","nodeType":"YulBlock","src":"5704:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5713:1:51","nodeType":"YulLiteral","src":"5713:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"5716:1:51","nodeType":"YulLiteral","src":"5716:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5706:6:51","nodeType":"YulIdentifier","src":"5706:6:51"},"nativeSrc":"5706:12:51","nodeType":"YulFunctionCall","src":"5706:12:51"},"nativeSrc":"5706:12:51","nodeType":"YulExpressionStatement","src":"5706:12:51"}]},"condition":{"name":"_1","nativeSrc":"5701:2:51","nodeType":"YulIdentifier","src":"5701:2:51"},"nativeSrc":"5698:22:51","nodeType":"YulIf","src":"5698:22:51"},{"nativeSrc":"5729:7:51","nodeType":"YulAssignment","src":"5729:7:51","value":{"kind":"number","nativeSrc":"5735:1:51","nodeType":"YulLiteral","src":"5735:1:51","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"5729:2:51","nodeType":"YulIdentifier","src":"5729:2:51"}]},{"nativeSrc":"5745:19:51","nodeType":"YulAssignment","src":"5745:19:51","value":{"name":"headStart","nativeSrc":"5755:9:51","nodeType":"YulIdentifier","src":"5755:9:51"},"variableNames":[{"name":"value0","nativeSrc":"5745:6:51","nodeType":"YulIdentifier","src":"5745:6:51"}]}]},"name":"abi_decode_tuple_t_struct$_WitOracleSettings_$7941_calldata_ptr","nativeSrc":"5529:241:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5602:9:51","nodeType":"YulTypedName","src":"5602:9:51","type":""},{"name":"dataEnd","nativeSrc":"5613:7:51","nodeType":"YulTypedName","src":"5613:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5625:6:51","nodeType":"YulTypedName","src":"5625:6:51","type":""}],"src":"5529:241:51"},{"body":{"nativeSrc":"5835:519:51","nodeType":"YulBlock","src":"5835:519:51","statements":[{"nativeSrc":"5845:16:51","nodeType":"YulVariableDeclaration","src":"5845:16:51","value":{"name":"pos","nativeSrc":"5858:3:51","nodeType":"YulIdentifier","src":"5858:3:51"},"variables":[{"name":"pos_1","nativeSrc":"5849:5:51","nodeType":"YulTypedName","src":"5849:5:51","type":""}]},{"nativeSrc":"5870:26:51","nodeType":"YulVariableDeclaration","src":"5870:26:51","value":{"arguments":[{"name":"value","nativeSrc":"5890:5:51","nodeType":"YulIdentifier","src":"5890:5:51"}],"functionName":{"name":"mload","nativeSrc":"5884:5:51","nodeType":"YulIdentifier","src":"5884:5:51"},"nativeSrc":"5884:12:51","nodeType":"YulFunctionCall","src":"5884:12:51"},"variables":[{"name":"length","nativeSrc":"5874:6:51","nodeType":"YulTypedName","src":"5874:6:51","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"5912:3:51","nodeType":"YulIdentifier","src":"5912:3:51"},{"name":"length","nativeSrc":"5917:6:51","nodeType":"YulIdentifier","src":"5917:6:51"}],"functionName":{"name":"mstore","nativeSrc":"5905:6:51","nodeType":"YulIdentifier","src":"5905:6:51"},"nativeSrc":"5905:19:51","nodeType":"YulFunctionCall","src":"5905:19:51"},"nativeSrc":"5905:19:51","nodeType":"YulExpressionStatement","src":"5905:19:51"},{"nativeSrc":"5933:21:51","nodeType":"YulAssignment","src":"5933:21:51","value":{"arguments":[{"name":"pos","nativeSrc":"5944:3:51","nodeType":"YulIdentifier","src":"5944:3:51"},{"kind":"number","nativeSrc":"5949:4:51","nodeType":"YulLiteral","src":"5949:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5940:3:51","nodeType":"YulIdentifier","src":"5940:3:51"},"nativeSrc":"5940:14:51","nodeType":"YulFunctionCall","src":"5940:14:51"},"variableNames":[{"name":"pos","nativeSrc":"5933:3:51","nodeType":"YulIdentifier","src":"5933:3:51"}]},{"nativeSrc":"5963:49:51","nodeType":"YulVariableDeclaration","src":"5963:49:51","value":{"arguments":[{"arguments":[{"name":"pos_1","nativeSrc":"5983:5:51","nodeType":"YulIdentifier","src":"5983:5:51"},{"arguments":[{"kind":"number","nativeSrc":"5994:1:51","nodeType":"YulLiteral","src":"5994:1:51","type":"","value":"5"},{"name":"length","nativeSrc":"5997:6:51","nodeType":"YulIdentifier","src":"5997:6:51"}],"functionName":{"name":"shl","nativeSrc":"5990:3:51","nodeType":"YulIdentifier","src":"5990:3:51"},"nativeSrc":"5990:14:51","nodeType":"YulFunctionCall","src":"5990:14:51"}],"functionName":{"name":"add","nativeSrc":"5979:3:51","nodeType":"YulIdentifier","src":"5979:3:51"},"nativeSrc":"5979:26:51","nodeType":"YulFunctionCall","src":"5979:26:51"},{"kind":"number","nativeSrc":"6007:4:51","nodeType":"YulLiteral","src":"6007:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5975:3:51","nodeType":"YulIdentifier","src":"5975:3:51"},"nativeSrc":"5975:37:51","nodeType":"YulFunctionCall","src":"5975:37:51"},"variables":[{"name":"tail","nativeSrc":"5967:4:51","nodeType":"YulTypedName","src":"5967:4:51","type":""}]},{"nativeSrc":"6021:30:51","nodeType":"YulVariableDeclaration","src":"6021:30:51","value":{"arguments":[{"name":"value","nativeSrc":"6039:5:51","nodeType":"YulIdentifier","src":"6039:5:51"},{"kind":"number","nativeSrc":"6046:4:51","nodeType":"YulLiteral","src":"6046:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6035:3:51","nodeType":"YulIdentifier","src":"6035:3:51"},"nativeSrc":"6035:16:51","nodeType":"YulFunctionCall","src":"6035:16:51"},"variables":[{"name":"srcPtr","nativeSrc":"6025:6:51","nodeType":"YulTypedName","src":"6025:6:51","type":""}]},{"nativeSrc":"6060:10:51","nodeType":"YulVariableDeclaration","src":"6060:10:51","value":{"kind":"number","nativeSrc":"6069:1:51","nodeType":"YulLiteral","src":"6069:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"6064:1:51","nodeType":"YulTypedName","src":"6064:1:51","type":""}]},{"body":{"nativeSrc":"6128:200:51","nodeType":"YulBlock","src":"6128:200:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"6149:3:51","nodeType":"YulIdentifier","src":"6149:3:51"},{"arguments":[{"arguments":[{"name":"tail","nativeSrc":"6162:4:51","nodeType":"YulIdentifier","src":"6162:4:51"},{"name":"pos_1","nativeSrc":"6168:5:51","nodeType":"YulIdentifier","src":"6168:5:51"}],"functionName":{"name":"sub","nativeSrc":"6158:3:51","nodeType":"YulIdentifier","src":"6158:3:51"},"nativeSrc":"6158:16:51","nodeType":"YulFunctionCall","src":"6158:16:51"},{"arguments":[{"kind":"number","nativeSrc":"6180:2:51","nodeType":"YulLiteral","src":"6180:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"6176:3:51","nodeType":"YulIdentifier","src":"6176:3:51"},"nativeSrc":"6176:7:51","nodeType":"YulFunctionCall","src":"6176:7:51"}],"functionName":{"name":"add","nativeSrc":"6154:3:51","nodeType":"YulIdentifier","src":"6154:3:51"},"nativeSrc":"6154:30:51","nodeType":"YulFunctionCall","src":"6154:30:51"}],"functionName":{"name":"mstore","nativeSrc":"6142:6:51","nodeType":"YulIdentifier","src":"6142:6:51"},"nativeSrc":"6142:43:51","nodeType":"YulFunctionCall","src":"6142:43:51"},"nativeSrc":"6142:43:51","nodeType":"YulExpressionStatement","src":"6142:43:51"},{"nativeSrc":"6198:46:51","nodeType":"YulAssignment","src":"6198:46:51","value":{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"6230:6:51","nodeType":"YulIdentifier","src":"6230:6:51"}],"functionName":{"name":"mload","nativeSrc":"6224:5:51","nodeType":"YulIdentifier","src":"6224:5:51"},"nativeSrc":"6224:13:51","nodeType":"YulFunctionCall","src":"6224:13:51"},{"name":"tail","nativeSrc":"6239:4:51","nodeType":"YulIdentifier","src":"6239:4:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"6206:17:51","nodeType":"YulIdentifier","src":"6206:17:51"},"nativeSrc":"6206:38:51","nodeType":"YulFunctionCall","src":"6206:38:51"},"variableNames":[{"name":"tail","nativeSrc":"6198:4:51","nodeType":"YulIdentifier","src":"6198:4:51"}]},{"nativeSrc":"6257:27:51","nodeType":"YulAssignment","src":"6257:27:51","value":{"arguments":[{"name":"srcPtr","nativeSrc":"6271:6:51","nodeType":"YulIdentifier","src":"6271:6:51"},{"kind":"number","nativeSrc":"6279:4:51","nodeType":"YulLiteral","src":"6279:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6267:3:51","nodeType":"YulIdentifier","src":"6267:3:51"},"nativeSrc":"6267:17:51","nodeType":"YulFunctionCall","src":"6267:17:51"},"variableNames":[{"name":"srcPtr","nativeSrc":"6257:6:51","nodeType":"YulIdentifier","src":"6257:6:51"}]},{"nativeSrc":"6297:21:51","nodeType":"YulAssignment","src":"6297:21:51","value":{"arguments":[{"name":"pos","nativeSrc":"6308:3:51","nodeType":"YulIdentifier","src":"6308:3:51"},{"kind":"number","nativeSrc":"6313:4:51","nodeType":"YulLiteral","src":"6313:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6304:3:51","nodeType":"YulIdentifier","src":"6304:3:51"},"nativeSrc":"6304:14:51","nodeType":"YulFunctionCall","src":"6304:14:51"},"variableNames":[{"name":"pos","nativeSrc":"6297:3:51","nodeType":"YulIdentifier","src":"6297:3:51"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"6090:1:51","nodeType":"YulIdentifier","src":"6090:1:51"},{"name":"length","nativeSrc":"6093:6:51","nodeType":"YulIdentifier","src":"6093:6:51"}],"functionName":{"name":"lt","nativeSrc":"6087:2:51","nodeType":"YulIdentifier","src":"6087:2:51"},"nativeSrc":"6087:13:51","nodeType":"YulFunctionCall","src":"6087:13:51"},"nativeSrc":"6079:249:51","nodeType":"YulForLoop","post":{"nativeSrc":"6101:18:51","nodeType":"YulBlock","src":"6101:18:51","statements":[{"nativeSrc":"6103:14:51","nodeType":"YulAssignment","src":"6103:14:51","value":{"arguments":[{"name":"i","nativeSrc":"6112:1:51","nodeType":"YulIdentifier","src":"6112:1:51"},{"kind":"number","nativeSrc":"6115:1:51","nodeType":"YulLiteral","src":"6115:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"6108:3:51","nodeType":"YulIdentifier","src":"6108:3:51"},"nativeSrc":"6108:9:51","nodeType":"YulFunctionCall","src":"6108:9:51"},"variableNames":[{"name":"i","nativeSrc":"6103:1:51","nodeType":"YulIdentifier","src":"6103:1:51"}]}]},"pre":{"nativeSrc":"6083:3:51","nodeType":"YulBlock","src":"6083:3:51","statements":[]},"src":"6079:249:51"},{"nativeSrc":"6337:11:51","nodeType":"YulAssignment","src":"6337:11:51","value":{"name":"tail","nativeSrc":"6344:4:51","nodeType":"YulIdentifier","src":"6344:4:51"},"variableNames":[{"name":"end","nativeSrc":"6337:3:51","nodeType":"YulIdentifier","src":"6337:3:51"}]}]},"name":"abi_encode_array_string_dyn","nativeSrc":"5775:579:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"5812:5:51","nodeType":"YulTypedName","src":"5812:5:51","type":""},{"name":"pos","nativeSrc":"5819:3:51","nodeType":"YulTypedName","src":"5819:3:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"5827:3:51","nodeType":"YulTypedName","src":"5827:3:51","type":""}],"src":"5775:579:51"},{"body":{"nativeSrc":"6530:109:51","nodeType":"YulBlock","src":"6530:109:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6547:9:51","nodeType":"YulIdentifier","src":"6547:9:51"},{"kind":"number","nativeSrc":"6558:2:51","nodeType":"YulLiteral","src":"6558:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"6540:6:51","nodeType":"YulIdentifier","src":"6540:6:51"},"nativeSrc":"6540:21:51","nodeType":"YulFunctionCall","src":"6540:21:51"},"nativeSrc":"6540:21:51","nodeType":"YulExpressionStatement","src":"6540:21:51"},{"nativeSrc":"6570:63:51","nodeType":"YulAssignment","src":"6570:63:51","value":{"arguments":[{"name":"value0","nativeSrc":"6606:6:51","nodeType":"YulIdentifier","src":"6606:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"6618:9:51","nodeType":"YulIdentifier","src":"6618:9:51"},{"kind":"number","nativeSrc":"6629:2:51","nodeType":"YulLiteral","src":"6629:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6614:3:51","nodeType":"YulIdentifier","src":"6614:3:51"},"nativeSrc":"6614:18:51","nodeType":"YulFunctionCall","src":"6614:18:51"}],"functionName":{"name":"abi_encode_array_string_dyn","nativeSrc":"6578:27:51","nodeType":"YulIdentifier","src":"6578:27:51"},"nativeSrc":"6578:55:51","nodeType":"YulFunctionCall","src":"6578:55:51"},"variableNames":[{"name":"tail","nativeSrc":"6570:4:51","nodeType":"YulIdentifier","src":"6570:4:51"}]}]},"name":"abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"6359:280:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6499:9:51","nodeType":"YulTypedName","src":"6499:9:51","type":""},{"name":"value0","nativeSrc":"6510:6:51","nodeType":"YulTypedName","src":"6510:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6521:4:51","nodeType":"YulTypedName","src":"6521:4:51","type":""}],"src":"6359:280:51"},{"body":{"nativeSrc":"7001:881:51","nodeType":"YulBlock","src":"7001:881:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7018:9:51","nodeType":"YulIdentifier","src":"7018:9:51"},{"arguments":[{"name":"value0","nativeSrc":"7033:6:51","nodeType":"YulIdentifier","src":"7033:6:51"},{"arguments":[{"kind":"number","nativeSrc":"7045:3:51","nodeType":"YulLiteral","src":"7045:3:51","type":"","value":"248"},{"kind":"number","nativeSrc":"7050:3:51","nodeType":"YulLiteral","src":"7050:3:51","type":"","value":"255"}],"functionName":{"name":"shl","nativeSrc":"7041:3:51","nodeType":"YulIdentifier","src":"7041:3:51"},"nativeSrc":"7041:13:51","nodeType":"YulFunctionCall","src":"7041:13:51"}],"functionName":{"name":"and","nativeSrc":"7029:3:51","nodeType":"YulIdentifier","src":"7029:3:51"},"nativeSrc":"7029:26:51","nodeType":"YulFunctionCall","src":"7029:26:51"}],"functionName":{"name":"mstore","nativeSrc":"7011:6:51","nodeType":"YulIdentifier","src":"7011:6:51"},"nativeSrc":"7011:45:51","nodeType":"YulFunctionCall","src":"7011:45:51"},"nativeSrc":"7011:45:51","nodeType":"YulExpressionStatement","src":"7011:45:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7076:9:51","nodeType":"YulIdentifier","src":"7076:9:51"},{"kind":"number","nativeSrc":"7087:2:51","nodeType":"YulLiteral","src":"7087:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7072:3:51","nodeType":"YulIdentifier","src":"7072:3:51"},"nativeSrc":"7072:18:51","nodeType":"YulFunctionCall","src":"7072:18:51"},{"kind":"number","nativeSrc":"7092:3:51","nodeType":"YulLiteral","src":"7092:3:51","type":"","value":"224"}],"functionName":{"name":"mstore","nativeSrc":"7065:6:51","nodeType":"YulIdentifier","src":"7065:6:51"},"nativeSrc":"7065:31:51","nodeType":"YulFunctionCall","src":"7065:31:51"},"nativeSrc":"7065:31:51","nodeType":"YulExpressionStatement","src":"7065:31:51"},{"nativeSrc":"7105:60:51","nodeType":"YulVariableDeclaration","src":"7105:60:51","value":{"arguments":[{"name":"value1","nativeSrc":"7137:6:51","nodeType":"YulIdentifier","src":"7137:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"7149:9:51","nodeType":"YulIdentifier","src":"7149:9:51"},{"kind":"number","nativeSrc":"7160:3:51","nodeType":"YulLiteral","src":"7160:3:51","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"7145:3:51","nodeType":"YulIdentifier","src":"7145:3:51"},"nativeSrc":"7145:19:51","nodeType":"YulFunctionCall","src":"7145:19:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"7119:17:51","nodeType":"YulIdentifier","src":"7119:17:51"},"nativeSrc":"7119:46:51","nodeType":"YulFunctionCall","src":"7119:46:51"},"variables":[{"name":"tail_1","nativeSrc":"7109:6:51","nodeType":"YulTypedName","src":"7109:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7185:9:51","nodeType":"YulIdentifier","src":"7185:9:51"},{"kind":"number","nativeSrc":"7196:2:51","nodeType":"YulLiteral","src":"7196:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7181:3:51","nodeType":"YulIdentifier","src":"7181:3:51"},"nativeSrc":"7181:18:51","nodeType":"YulFunctionCall","src":"7181:18:51"},{"arguments":[{"name":"tail_1","nativeSrc":"7205:6:51","nodeType":"YulIdentifier","src":"7205:6:51"},{"name":"headStart","nativeSrc":"7213:9:51","nodeType":"YulIdentifier","src":"7213:9:51"}],"functionName":{"name":"sub","nativeSrc":"7201:3:51","nodeType":"YulIdentifier","src":"7201:3:51"},"nativeSrc":"7201:22:51","nodeType":"YulFunctionCall","src":"7201:22:51"}],"functionName":{"name":"mstore","nativeSrc":"7174:6:51","nodeType":"YulIdentifier","src":"7174:6:51"},"nativeSrc":"7174:50:51","nodeType":"YulFunctionCall","src":"7174:50:51"},"nativeSrc":"7174:50:51","nodeType":"YulExpressionStatement","src":"7174:50:51"},{"nativeSrc":"7233:47:51","nodeType":"YulVariableDeclaration","src":"7233:47:51","value":{"arguments":[{"name":"value2","nativeSrc":"7265:6:51","nodeType":"YulIdentifier","src":"7265:6:51"},{"name":"tail_1","nativeSrc":"7273:6:51","nodeType":"YulIdentifier","src":"7273:6:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"7247:17:51","nodeType":"YulIdentifier","src":"7247:17:51"},"nativeSrc":"7247:33:51","nodeType":"YulFunctionCall","src":"7247:33:51"},"variables":[{"name":"tail_2","nativeSrc":"7237:6:51","nodeType":"YulTypedName","src":"7237:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7300:9:51","nodeType":"YulIdentifier","src":"7300:9:51"},{"kind":"number","nativeSrc":"7311:2:51","nodeType":"YulLiteral","src":"7311:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"7296:3:51","nodeType":"YulIdentifier","src":"7296:3:51"},"nativeSrc":"7296:18:51","nodeType":"YulFunctionCall","src":"7296:18:51"},{"name":"value3","nativeSrc":"7316:6:51","nodeType":"YulIdentifier","src":"7316:6:51"}],"functionName":{"name":"mstore","nativeSrc":"7289:6:51","nodeType":"YulIdentifier","src":"7289:6:51"},"nativeSrc":"7289:34:51","nodeType":"YulFunctionCall","src":"7289:34:51"},"nativeSrc":"7289:34:51","nodeType":"YulExpressionStatement","src":"7289:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7343:9:51","nodeType":"YulIdentifier","src":"7343:9:51"},{"kind":"number","nativeSrc":"7354:3:51","nodeType":"YulLiteral","src":"7354:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"7339:3:51","nodeType":"YulIdentifier","src":"7339:3:51"},"nativeSrc":"7339:19:51","nodeType":"YulFunctionCall","src":"7339:19:51"},{"arguments":[{"name":"value4","nativeSrc":"7364:6:51","nodeType":"YulIdentifier","src":"7364:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7380:3:51","nodeType":"YulLiteral","src":"7380:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"7385:1:51","nodeType":"YulLiteral","src":"7385:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7376:3:51","nodeType":"YulIdentifier","src":"7376:3:51"},"nativeSrc":"7376:11:51","nodeType":"YulFunctionCall","src":"7376:11:51"},{"kind":"number","nativeSrc":"7389:1:51","nodeType":"YulLiteral","src":"7389:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7372:3:51","nodeType":"YulIdentifier","src":"7372:3:51"},"nativeSrc":"7372:19:51","nodeType":"YulFunctionCall","src":"7372:19:51"}],"functionName":{"name":"and","nativeSrc":"7360:3:51","nodeType":"YulIdentifier","src":"7360:3:51"},"nativeSrc":"7360:32:51","nodeType":"YulFunctionCall","src":"7360:32:51"}],"functionName":{"name":"mstore","nativeSrc":"7332:6:51","nodeType":"YulIdentifier","src":"7332:6:51"},"nativeSrc":"7332:61:51","nodeType":"YulFunctionCall","src":"7332:61:51"},"nativeSrc":"7332:61:51","nodeType":"YulExpressionStatement","src":"7332:61:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7413:9:51","nodeType":"YulIdentifier","src":"7413:9:51"},{"kind":"number","nativeSrc":"7424:3:51","nodeType":"YulLiteral","src":"7424:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"7409:3:51","nodeType":"YulIdentifier","src":"7409:3:51"},"nativeSrc":"7409:19:51","nodeType":"YulFunctionCall","src":"7409:19:51"},{"name":"value5","nativeSrc":"7430:6:51","nodeType":"YulIdentifier","src":"7430:6:51"}],"functionName":{"name":"mstore","nativeSrc":"7402:6:51","nodeType":"YulIdentifier","src":"7402:6:51"},"nativeSrc":"7402:35:51","nodeType":"YulFunctionCall","src":"7402:35:51"},"nativeSrc":"7402:35:51","nodeType":"YulExpressionStatement","src":"7402:35:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7457:9:51","nodeType":"YulIdentifier","src":"7457:9:51"},{"kind":"number","nativeSrc":"7468:3:51","nodeType":"YulLiteral","src":"7468:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"7453:3:51","nodeType":"YulIdentifier","src":"7453:3:51"},"nativeSrc":"7453:19:51","nodeType":"YulFunctionCall","src":"7453:19:51"},{"arguments":[{"name":"tail_2","nativeSrc":"7478:6:51","nodeType":"YulIdentifier","src":"7478:6:51"},{"name":"headStart","nativeSrc":"7486:9:51","nodeType":"YulIdentifier","src":"7486:9:51"}],"functionName":{"name":"sub","nativeSrc":"7474:3:51","nodeType":"YulIdentifier","src":"7474:3:51"},"nativeSrc":"7474:22:51","nodeType":"YulFunctionCall","src":"7474:22:51"}],"functionName":{"name":"mstore","nativeSrc":"7446:6:51","nodeType":"YulIdentifier","src":"7446:6:51"},"nativeSrc":"7446:51:51","nodeType":"YulFunctionCall","src":"7446:51:51"},"nativeSrc":"7446:51:51","nodeType":"YulExpressionStatement","src":"7446:51:51"},{"nativeSrc":"7506:17:51","nodeType":"YulVariableDeclaration","src":"7506:17:51","value":{"name":"tail_2","nativeSrc":"7517:6:51","nodeType":"YulIdentifier","src":"7517:6:51"},"variables":[{"name":"pos","nativeSrc":"7510:3:51","nodeType":"YulTypedName","src":"7510:3:51","type":""}]},{"nativeSrc":"7532:27:51","nodeType":"YulVariableDeclaration","src":"7532:27:51","value":{"arguments":[{"name":"value6","nativeSrc":"7552:6:51","nodeType":"YulIdentifier","src":"7552:6:51"}],"functionName":{"name":"mload","nativeSrc":"7546:5:51","nodeType":"YulIdentifier","src":"7546:5:51"},"nativeSrc":"7546:13:51","nodeType":"YulFunctionCall","src":"7546:13:51"},"variables":[{"name":"length","nativeSrc":"7536:6:51","nodeType":"YulTypedName","src":"7536:6:51","type":""}]},{"expression":{"arguments":[{"name":"tail_2","nativeSrc":"7575:6:51","nodeType":"YulIdentifier","src":"7575:6:51"},{"name":"length","nativeSrc":"7583:6:51","nodeType":"YulIdentifier","src":"7583:6:51"}],"functionName":{"name":"mstore","nativeSrc":"7568:6:51","nodeType":"YulIdentifier","src":"7568:6:51"},"nativeSrc":"7568:22:51","nodeType":"YulFunctionCall","src":"7568:22:51"},"nativeSrc":"7568:22:51","nodeType":"YulExpressionStatement","src":"7568:22:51"},{"nativeSrc":"7599:22:51","nodeType":"YulAssignment","src":"7599:22:51","value":{"arguments":[{"name":"tail_2","nativeSrc":"7610:6:51","nodeType":"YulIdentifier","src":"7610:6:51"},{"kind":"number","nativeSrc":"7618:2:51","nodeType":"YulLiteral","src":"7618:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7606:3:51","nodeType":"YulIdentifier","src":"7606:3:51"},"nativeSrc":"7606:15:51","nodeType":"YulFunctionCall","src":"7606:15:51"},"variableNames":[{"name":"pos","nativeSrc":"7599:3:51","nodeType":"YulIdentifier","src":"7599:3:51"}]},{"nativeSrc":"7630:29:51","nodeType":"YulVariableDeclaration","src":"7630:29:51","value":{"arguments":[{"name":"value6","nativeSrc":"7648:6:51","nodeType":"YulIdentifier","src":"7648:6:51"},{"kind":"number","nativeSrc":"7656:2:51","nodeType":"YulLiteral","src":"7656:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7644:3:51","nodeType":"YulIdentifier","src":"7644:3:51"},"nativeSrc":"7644:15:51","nodeType":"YulFunctionCall","src":"7644:15:51"},"variables":[{"name":"srcPtr","nativeSrc":"7634:6:51","nodeType":"YulTypedName","src":"7634:6:51","type":""}]},{"nativeSrc":"7668:10:51","nodeType":"YulVariableDeclaration","src":"7668:10:51","value":{"kind":"number","nativeSrc":"7677:1:51","nodeType":"YulLiteral","src":"7677:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"7672:1:51","nodeType":"YulTypedName","src":"7672:1:51","type":""}]},{"body":{"nativeSrc":"7736:120:51","nodeType":"YulBlock","src":"7736:120:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"7757:3:51","nodeType":"YulIdentifier","src":"7757:3:51"},{"arguments":[{"name":"srcPtr","nativeSrc":"7768:6:51","nodeType":"YulIdentifier","src":"7768:6:51"}],"functionName":{"name":"mload","nativeSrc":"7762:5:51","nodeType":"YulIdentifier","src":"7762:5:51"},"nativeSrc":"7762:13:51","nodeType":"YulFunctionCall","src":"7762:13:51"}],"functionName":{"name":"mstore","nativeSrc":"7750:6:51","nodeType":"YulIdentifier","src":"7750:6:51"},"nativeSrc":"7750:26:51","nodeType":"YulFunctionCall","src":"7750:26:51"},"nativeSrc":"7750:26:51","nodeType":"YulExpressionStatement","src":"7750:26:51"},{"nativeSrc":"7789:19:51","nodeType":"YulAssignment","src":"7789:19:51","value":{"arguments":[{"name":"pos","nativeSrc":"7800:3:51","nodeType":"YulIdentifier","src":"7800:3:51"},{"kind":"number","nativeSrc":"7805:2:51","nodeType":"YulLiteral","src":"7805:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7796:3:51","nodeType":"YulIdentifier","src":"7796:3:51"},"nativeSrc":"7796:12:51","nodeType":"YulFunctionCall","src":"7796:12:51"},"variableNames":[{"name":"pos","nativeSrc":"7789:3:51","nodeType":"YulIdentifier","src":"7789:3:51"}]},{"nativeSrc":"7821:25:51","nodeType":"YulAssignment","src":"7821:25:51","value":{"arguments":[{"name":"srcPtr","nativeSrc":"7835:6:51","nodeType":"YulIdentifier","src":"7835:6:51"},{"kind":"number","nativeSrc":"7843:2:51","nodeType":"YulLiteral","src":"7843:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7831:3:51","nodeType":"YulIdentifier","src":"7831:3:51"},"nativeSrc":"7831:15:51","nodeType":"YulFunctionCall","src":"7831:15:51"},"variableNames":[{"name":"srcPtr","nativeSrc":"7821:6:51","nodeType":"YulIdentifier","src":"7821:6:51"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"7698:1:51","nodeType":"YulIdentifier","src":"7698:1:51"},{"name":"length","nativeSrc":"7701:6:51","nodeType":"YulIdentifier","src":"7701:6:51"}],"functionName":{"name":"lt","nativeSrc":"7695:2:51","nodeType":"YulIdentifier","src":"7695:2:51"},"nativeSrc":"7695:13:51","nodeType":"YulFunctionCall","src":"7695:13:51"},"nativeSrc":"7687:169:51","nodeType":"YulForLoop","post":{"nativeSrc":"7709:18:51","nodeType":"YulBlock","src":"7709:18:51","statements":[{"nativeSrc":"7711:14:51","nodeType":"YulAssignment","src":"7711:14:51","value":{"arguments":[{"name":"i","nativeSrc":"7720:1:51","nodeType":"YulIdentifier","src":"7720:1:51"},{"kind":"number","nativeSrc":"7723:1:51","nodeType":"YulLiteral","src":"7723:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"7716:3:51","nodeType":"YulIdentifier","src":"7716:3:51"},"nativeSrc":"7716:9:51","nodeType":"YulFunctionCall","src":"7716:9:51"},"variableNames":[{"name":"i","nativeSrc":"7711:1:51","nodeType":"YulIdentifier","src":"7711:1:51"}]}]},"pre":{"nativeSrc":"7691:3:51","nodeType":"YulBlock","src":"7691:3:51","statements":[]},"src":"7687:169:51"},{"nativeSrc":"7865:11:51","nodeType":"YulAssignment","src":"7865:11:51","value":{"name":"pos","nativeSrc":"7873:3:51","nodeType":"YulIdentifier","src":"7873:3:51"},"variableNames":[{"name":"tail","nativeSrc":"7865:4:51","nodeType":"YulIdentifier","src":"7865:4:51"}]}]},"name":"abi_encode_tuple_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"6644:1238:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6922:9:51","nodeType":"YulTypedName","src":"6922:9:51","type":""},{"name":"value6","nativeSrc":"6933:6:51","nodeType":"YulTypedName","src":"6933:6:51","type":""},{"name":"value5","nativeSrc":"6941:6:51","nodeType":"YulTypedName","src":"6941:6:51","type":""},{"name":"value4","nativeSrc":"6949:6:51","nodeType":"YulTypedName","src":"6949:6:51","type":""},{"name":"value3","nativeSrc":"6957:6:51","nodeType":"YulTypedName","src":"6957:6:51","type":""},{"name":"value2","nativeSrc":"6965:6:51","nodeType":"YulTypedName","src":"6965:6:51","type":""},{"name":"value1","nativeSrc":"6973:6:51","nodeType":"YulTypedName","src":"6973:6:51","type":""},{"name":"value0","nativeSrc":"6981:6:51","nodeType":"YulTypedName","src":"6981:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6992:4:51","nodeType":"YulTypedName","src":"6992:4:51","type":""}],"src":"6644:1238:51"},{"body":{"nativeSrc":"8058:339:51","nodeType":"YulBlock","src":"8058:339:51","statements":[{"nativeSrc":"8068:27:51","nodeType":"YulAssignment","src":"8068:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"8080:9:51","nodeType":"YulIdentifier","src":"8080:9:51"},{"kind":"number","nativeSrc":"8091:3:51","nodeType":"YulLiteral","src":"8091:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"8076:3:51","nodeType":"YulIdentifier","src":"8076:3:51"},"nativeSrc":"8076:19:51","nodeType":"YulFunctionCall","src":"8076:19:51"},"variableNames":[{"name":"tail","nativeSrc":"8068:4:51","nodeType":"YulIdentifier","src":"8068:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8111:9:51","nodeType":"YulIdentifier","src":"8111:9:51"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"8132:6:51","nodeType":"YulIdentifier","src":"8132:6:51"}],"functionName":{"name":"mload","nativeSrc":"8126:5:51","nodeType":"YulIdentifier","src":"8126:5:51"},"nativeSrc":"8126:13:51","nodeType":"YulFunctionCall","src":"8126:13:51"},{"kind":"number","nativeSrc":"8141:6:51","nodeType":"YulLiteral","src":"8141:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"8122:3:51","nodeType":"YulIdentifier","src":"8122:3:51"},"nativeSrc":"8122:26:51","nodeType":"YulFunctionCall","src":"8122:26:51"}],"functionName":{"name":"mstore","nativeSrc":"8104:6:51","nodeType":"YulIdentifier","src":"8104:6:51"},"nativeSrc":"8104:45:51","nodeType":"YulFunctionCall","src":"8104:45:51"},"nativeSrc":"8104:45:51","nodeType":"YulExpressionStatement","src":"8104:45:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8169:9:51","nodeType":"YulIdentifier","src":"8169:9:51"},{"kind":"number","nativeSrc":"8180:4:51","nodeType":"YulLiteral","src":"8180:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8165:3:51","nodeType":"YulIdentifier","src":"8165:3:51"},"nativeSrc":"8165:20:51","nodeType":"YulFunctionCall","src":"8165:20:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"8201:6:51","nodeType":"YulIdentifier","src":"8201:6:51"},{"kind":"number","nativeSrc":"8209:4:51","nodeType":"YulLiteral","src":"8209:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8197:3:51","nodeType":"YulIdentifier","src":"8197:3:51"},"nativeSrc":"8197:17:51","nodeType":"YulFunctionCall","src":"8197:17:51"}],"functionName":{"name":"mload","nativeSrc":"8191:5:51","nodeType":"YulIdentifier","src":"8191:5:51"},"nativeSrc":"8191:24:51","nodeType":"YulFunctionCall","src":"8191:24:51"},{"kind":"number","nativeSrc":"8217:6:51","nodeType":"YulLiteral","src":"8217:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"8187:3:51","nodeType":"YulIdentifier","src":"8187:3:51"},"nativeSrc":"8187:37:51","nodeType":"YulFunctionCall","src":"8187:37:51"}],"functionName":{"name":"mstore","nativeSrc":"8158:6:51","nodeType":"YulIdentifier","src":"8158:6:51"},"nativeSrc":"8158:67:51","nodeType":"YulFunctionCall","src":"8158:67:51"},"nativeSrc":"8158:67:51","nodeType":"YulExpressionStatement","src":"8158:67:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8245:9:51","nodeType":"YulIdentifier","src":"8245:9:51"},{"kind":"number","nativeSrc":"8256:4:51","nodeType":"YulLiteral","src":"8256:4:51","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"8241:3:51","nodeType":"YulIdentifier","src":"8241:3:51"},"nativeSrc":"8241:20:51","nodeType":"YulFunctionCall","src":"8241:20:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"8277:6:51","nodeType":"YulIdentifier","src":"8277:6:51"},{"kind":"number","nativeSrc":"8285:4:51","nodeType":"YulLiteral","src":"8285:4:51","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"8273:3:51","nodeType":"YulIdentifier","src":"8273:3:51"},"nativeSrc":"8273:17:51","nodeType":"YulFunctionCall","src":"8273:17:51"}],"functionName":{"name":"mload","nativeSrc":"8267:5:51","nodeType":"YulIdentifier","src":"8267:5:51"},"nativeSrc":"8267:24:51","nodeType":"YulFunctionCall","src":"8267:24:51"},{"kind":"number","nativeSrc":"8293:18:51","nodeType":"YulLiteral","src":"8293:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"8263:3:51","nodeType":"YulIdentifier","src":"8263:3:51"},"nativeSrc":"8263:49:51","nodeType":"YulFunctionCall","src":"8263:49:51"}],"functionName":{"name":"mstore","nativeSrc":"8234:6:51","nodeType":"YulIdentifier","src":"8234:6:51"},"nativeSrc":"8234:79:51","nodeType":"YulFunctionCall","src":"8234:79:51"},"nativeSrc":"8234:79:51","nodeType":"YulExpressionStatement","src":"8234:79:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8333:9:51","nodeType":"YulIdentifier","src":"8333:9:51"},{"kind":"number","nativeSrc":"8344:4:51","nodeType":"YulLiteral","src":"8344:4:51","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"8329:3:51","nodeType":"YulIdentifier","src":"8329:3:51"},"nativeSrc":"8329:20:51","nodeType":"YulFunctionCall","src":"8329:20:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"8365:6:51","nodeType":"YulIdentifier","src":"8365:6:51"},{"kind":"number","nativeSrc":"8373:4:51","nodeType":"YulLiteral","src":"8373:4:51","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"8361:3:51","nodeType":"YulIdentifier","src":"8361:3:51"},"nativeSrc":"8361:17:51","nodeType":"YulFunctionCall","src":"8361:17:51"}],"functionName":{"name":"mload","nativeSrc":"8355:5:51","nodeType":"YulIdentifier","src":"8355:5:51"},"nativeSrc":"8355:24:51","nodeType":"YulFunctionCall","src":"8355:24:51"},{"kind":"number","nativeSrc":"8381:8:51","nodeType":"YulLiteral","src":"8381:8:51","type":"","value":"0xffffff"}],"functionName":{"name":"and","nativeSrc":"8351:3:51","nodeType":"YulIdentifier","src":"8351:3:51"},"nativeSrc":"8351:39:51","nodeType":"YulFunctionCall","src":"8351:39:51"}],"functionName":{"name":"mstore","nativeSrc":"8322:6:51","nodeType":"YulIdentifier","src":"8322:6:51"},"nativeSrc":"8322:69:51","nodeType":"YulFunctionCall","src":"8322:69:51"},"nativeSrc":"8322:69:51","nodeType":"YulExpressionStatement","src":"8322:69:51"}]},"name":"abi_encode_tuple_t_struct$_WitOracleSettings_$7941_memory_ptr__to_t_struct$_WitOracleSettings_$7941_memory_ptr__fromStack_reversed","nativeSrc":"7887:510:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8027:9:51","nodeType":"YulTypedName","src":"8027:9:51","type":""},{"name":"value0","nativeSrc":"8038:6:51","nodeType":"YulTypedName","src":"8038:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8049:4:51","nodeType":"YulTypedName","src":"8049:4:51","type":""}],"src":"7887:510:51"},{"body":{"nativeSrc":"8446:85:51","nodeType":"YulBlock","src":"8446:85:51","statements":[{"body":{"nativeSrc":"8509:16:51","nodeType":"YulBlock","src":"8509:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8518:1:51","nodeType":"YulLiteral","src":"8518:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"8521:1:51","nodeType":"YulLiteral","src":"8521:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8511:6:51","nodeType":"YulIdentifier","src":"8511:6:51"},"nativeSrc":"8511:12:51","nodeType":"YulFunctionCall","src":"8511:12:51"},"nativeSrc":"8511:12:51","nodeType":"YulExpressionStatement","src":"8511:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8469:5:51","nodeType":"YulIdentifier","src":"8469:5:51"},{"arguments":[{"name":"value","nativeSrc":"8480:5:51","nodeType":"YulIdentifier","src":"8480:5:51"},{"kind":"number","nativeSrc":"8487:18:51","nodeType":"YulLiteral","src":"8487:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"8476:3:51","nodeType":"YulIdentifier","src":"8476:3:51"},"nativeSrc":"8476:30:51","nodeType":"YulFunctionCall","src":"8476:30:51"}],"functionName":{"name":"eq","nativeSrc":"8466:2:51","nodeType":"YulIdentifier","src":"8466:2:51"},"nativeSrc":"8466:41:51","nodeType":"YulFunctionCall","src":"8466:41:51"}],"functionName":{"name":"iszero","nativeSrc":"8459:6:51","nodeType":"YulIdentifier","src":"8459:6:51"},"nativeSrc":"8459:49:51","nodeType":"YulFunctionCall","src":"8459:49:51"},"nativeSrc":"8456:69:51","nodeType":"YulIf","src":"8456:69:51"}]},"name":"validator_revert_uint64","nativeSrc":"8402:129:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"8435:5:51","nodeType":"YulTypedName","src":"8435:5:51","type":""}],"src":"8402:129:51"},{"body":{"nativeSrc":"8584:84:51","nodeType":"YulBlock","src":"8584:84:51","statements":[{"nativeSrc":"8594:29:51","nodeType":"YulAssignment","src":"8594:29:51","value":{"arguments":[{"name":"offset","nativeSrc":"8616:6:51","nodeType":"YulIdentifier","src":"8616:6:51"}],"functionName":{"name":"calldataload","nativeSrc":"8603:12:51","nodeType":"YulIdentifier","src":"8603:12:51"},"nativeSrc":"8603:20:51","nodeType":"YulFunctionCall","src":"8603:20:51"},"variableNames":[{"name":"value","nativeSrc":"8594:5:51","nodeType":"YulIdentifier","src":"8594:5:51"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8656:5:51","nodeType":"YulIdentifier","src":"8656:5:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"8632:23:51","nodeType":"YulIdentifier","src":"8632:23:51"},"nativeSrc":"8632:30:51","nodeType":"YulFunctionCall","src":"8632:30:51"},"nativeSrc":"8632:30:51","nodeType":"YulExpressionStatement","src":"8632:30:51"}]},"name":"abi_decode_uint64","nativeSrc":"8536:132:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"8563:6:51","nodeType":"YulTypedName","src":"8563:6:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"8574:5:51","nodeType":"YulTypedName","src":"8574:5:51","type":""}],"src":"8536:132:51"},{"body":{"nativeSrc":"8779:437:51","nodeType":"YulBlock","src":"8779:437:51","statements":[{"body":{"nativeSrc":"8825:16:51","nodeType":"YulBlock","src":"8825:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8834:1:51","nodeType":"YulLiteral","src":"8834:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"8837:1:51","nodeType":"YulLiteral","src":"8837:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8827:6:51","nodeType":"YulIdentifier","src":"8827:6:51"},"nativeSrc":"8827:12:51","nodeType":"YulFunctionCall","src":"8827:12:51"},"nativeSrc":"8827:12:51","nodeType":"YulExpressionStatement","src":"8827:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8800:7:51","nodeType":"YulIdentifier","src":"8800:7:51"},{"name":"headStart","nativeSrc":"8809:9:51","nodeType":"YulIdentifier","src":"8809:9:51"}],"functionName":{"name":"sub","nativeSrc":"8796:3:51","nodeType":"YulIdentifier","src":"8796:3:51"},"nativeSrc":"8796:23:51","nodeType":"YulFunctionCall","src":"8796:23:51"},{"kind":"number","nativeSrc":"8821:2:51","nodeType":"YulLiteral","src":"8821:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"8792:3:51","nodeType":"YulIdentifier","src":"8792:3:51"},"nativeSrc":"8792:32:51","nodeType":"YulFunctionCall","src":"8792:32:51"},"nativeSrc":"8789:52:51","nodeType":"YulIf","src":"8789:52:51"},{"nativeSrc":"8850:36:51","nodeType":"YulVariableDeclaration","src":"8850:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"8876:9:51","nodeType":"YulIdentifier","src":"8876:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"8863:12:51","nodeType":"YulIdentifier","src":"8863:12:51"},"nativeSrc":"8863:23:51","nodeType":"YulFunctionCall","src":"8863:23:51"},"variables":[{"name":"value","nativeSrc":"8854:5:51","nodeType":"YulTypedName","src":"8854:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8919:5:51","nodeType":"YulIdentifier","src":"8919:5:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"8895:23:51","nodeType":"YulIdentifier","src":"8895:23:51"},"nativeSrc":"8895:30:51","nodeType":"YulFunctionCall","src":"8895:30:51"},"nativeSrc":"8895:30:51","nodeType":"YulExpressionStatement","src":"8895:30:51"},{"nativeSrc":"8934:15:51","nodeType":"YulAssignment","src":"8934:15:51","value":{"name":"value","nativeSrc":"8944:5:51","nodeType":"YulIdentifier","src":"8944:5:51"},"variableNames":[{"name":"value0","nativeSrc":"8934:6:51","nodeType":"YulIdentifier","src":"8934:6:51"}]},{"nativeSrc":"8958:46:51","nodeType":"YulVariableDeclaration","src":"8958:46:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8989:9:51","nodeType":"YulIdentifier","src":"8989:9:51"},{"kind":"number","nativeSrc":"9000:2:51","nodeType":"YulLiteral","src":"9000:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8985:3:51","nodeType":"YulIdentifier","src":"8985:3:51"},"nativeSrc":"8985:18:51","nodeType":"YulFunctionCall","src":"8985:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"8972:12:51","nodeType":"YulIdentifier","src":"8972:12:51"},"nativeSrc":"8972:32:51","nodeType":"YulFunctionCall","src":"8972:32:51"},"variables":[{"name":"offset","nativeSrc":"8962:6:51","nodeType":"YulTypedName","src":"8962:6:51","type":""}]},{"body":{"nativeSrc":"9047:16:51","nodeType":"YulBlock","src":"9047:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9056:1:51","nodeType":"YulLiteral","src":"9056:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"9059:1:51","nodeType":"YulLiteral","src":"9059:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9049:6:51","nodeType":"YulIdentifier","src":"9049:6:51"},"nativeSrc":"9049:12:51","nodeType":"YulFunctionCall","src":"9049:12:51"},"nativeSrc":"9049:12:51","nodeType":"YulExpressionStatement","src":"9049:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"9019:6:51","nodeType":"YulIdentifier","src":"9019:6:51"},{"kind":"number","nativeSrc":"9027:18:51","nodeType":"YulLiteral","src":"9027:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"9016:2:51","nodeType":"YulIdentifier","src":"9016:2:51"},"nativeSrc":"9016:30:51","nodeType":"YulFunctionCall","src":"9016:30:51"},"nativeSrc":"9013:50:51","nodeType":"YulIf","src":"9013:50:51"},{"nativeSrc":"9072:84:51","nodeType":"YulVariableDeclaration","src":"9072:84:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9128:9:51","nodeType":"YulIdentifier","src":"9128:9:51"},{"name":"offset","nativeSrc":"9139:6:51","nodeType":"YulIdentifier","src":"9139:6:51"}],"functionName":{"name":"add","nativeSrc":"9124:3:51","nodeType":"YulIdentifier","src":"9124:3:51"},"nativeSrc":"9124:22:51","nodeType":"YulFunctionCall","src":"9124:22:51"},{"name":"dataEnd","nativeSrc":"9148:7:51","nodeType":"YulIdentifier","src":"9148:7:51"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"9098:25:51","nodeType":"YulIdentifier","src":"9098:25:51"},"nativeSrc":"9098:58:51","nodeType":"YulFunctionCall","src":"9098:58:51"},"variables":[{"name":"value1_1","nativeSrc":"9076:8:51","nodeType":"YulTypedName","src":"9076:8:51","type":""},{"name":"value2_1","nativeSrc":"9086:8:51","nodeType":"YulTypedName","src":"9086:8:51","type":""}]},{"nativeSrc":"9165:18:51","nodeType":"YulAssignment","src":"9165:18:51","value":{"name":"value1_1","nativeSrc":"9175:8:51","nodeType":"YulIdentifier","src":"9175:8:51"},"variableNames":[{"name":"value1","nativeSrc":"9165:6:51","nodeType":"YulIdentifier","src":"9165:6:51"}]},{"nativeSrc":"9192:18:51","nodeType":"YulAssignment","src":"9192:18:51","value":{"name":"value2_1","nativeSrc":"9202:8:51","nodeType":"YulIdentifier","src":"9202:8:51"},"variableNames":[{"name":"value2","nativeSrc":"9192:6:51","nodeType":"YulIdentifier","src":"9192:6:51"}]}]},"name":"abi_decode_tuple_t_uint64t_string_calldata_ptr","nativeSrc":"8673:543:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8729:9:51","nodeType":"YulTypedName","src":"8729:9:51","type":""},{"name":"dataEnd","nativeSrc":"8740:7:51","nodeType":"YulTypedName","src":"8740:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8752:6:51","nodeType":"YulTypedName","src":"8752:6:51","type":""},{"name":"value1","nativeSrc":"8760:6:51","nodeType":"YulTypedName","src":"8760:6:51","type":""},{"name":"value2","nativeSrc":"8768:6:51","nodeType":"YulTypedName","src":"8768:6:51","type":""}],"src":"8673:543:51"},{"body":{"nativeSrc":"9253:95:51","nodeType":"YulBlock","src":"9253:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9270:1:51","nodeType":"YulLiteral","src":"9270:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"9277:3:51","nodeType":"YulLiteral","src":"9277:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"9282:10:51","nodeType":"YulLiteral","src":"9282:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"9273:3:51","nodeType":"YulIdentifier","src":"9273:3:51"},"nativeSrc":"9273:20:51","nodeType":"YulFunctionCall","src":"9273:20:51"}],"functionName":{"name":"mstore","nativeSrc":"9263:6:51","nodeType":"YulIdentifier","src":"9263:6:51"},"nativeSrc":"9263:31:51","nodeType":"YulFunctionCall","src":"9263:31:51"},"nativeSrc":"9263:31:51","nodeType":"YulExpressionStatement","src":"9263:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9310:1:51","nodeType":"YulLiteral","src":"9310:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"9313:4:51","nodeType":"YulLiteral","src":"9313:4:51","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"9303:6:51","nodeType":"YulIdentifier","src":"9303:6:51"},"nativeSrc":"9303:15:51","nodeType":"YulFunctionCall","src":"9303:15:51"},"nativeSrc":"9303:15:51","nodeType":"YulExpressionStatement","src":"9303:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9334:1:51","nodeType":"YulLiteral","src":"9334:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"9337:4:51","nodeType":"YulLiteral","src":"9337:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"9327:6:51","nodeType":"YulIdentifier","src":"9327:6:51"},"nativeSrc":"9327:15:51","nodeType":"YulFunctionCall","src":"9327:15:51"},"nativeSrc":"9327:15:51","nodeType":"YulExpressionStatement","src":"9327:15:51"}]},"name":"panic_error_0x21","nativeSrc":"9221:127:51","nodeType":"YulFunctionDefinition","src":"9221:127:51"},{"body":{"nativeSrc":"9409:89:51","nodeType":"YulBlock","src":"9409:89:51","statements":[{"body":{"nativeSrc":"9443:22:51","nodeType":"YulBlock","src":"9443:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x21","nativeSrc":"9445:16:51","nodeType":"YulIdentifier","src":"9445:16:51"},"nativeSrc":"9445:18:51","nodeType":"YulFunctionCall","src":"9445:18:51"},"nativeSrc":"9445:18:51","nodeType":"YulExpressionStatement","src":"9445:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"9432:5:51","nodeType":"YulIdentifier","src":"9432:5:51"},{"kind":"number","nativeSrc":"9439:1:51","nodeType":"YulLiteral","src":"9439:1:51","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"9429:2:51","nodeType":"YulIdentifier","src":"9429:2:51"},"nativeSrc":"9429:12:51","nodeType":"YulFunctionCall","src":"9429:12:51"}],"functionName":{"name":"iszero","nativeSrc":"9422:6:51","nodeType":"YulIdentifier","src":"9422:6:51"},"nativeSrc":"9422:20:51","nodeType":"YulFunctionCall","src":"9422:20:51"},"nativeSrc":"9419:46:51","nodeType":"YulIf","src":"9419:46:51"},{"expression":{"arguments":[{"name":"pos","nativeSrc":"9481:3:51","nodeType":"YulIdentifier","src":"9481:3:51"},{"name":"value","nativeSrc":"9486:5:51","nodeType":"YulIdentifier","src":"9486:5:51"}],"functionName":{"name":"mstore","nativeSrc":"9474:6:51","nodeType":"YulIdentifier","src":"9474:6:51"},"nativeSrc":"9474:18:51","nodeType":"YulFunctionCall","src":"9474:18:51"},"nativeSrc":"9474:18:51","nodeType":"YulExpressionStatement","src":"9474:18:51"}]},"name":"abi_encode_enum_WrappingStatus","nativeSrc":"9353:145:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"9393:5:51","nodeType":"YulTypedName","src":"9393:5:51","type":""},{"name":"pos","nativeSrc":"9400:3:51","nodeType":"YulTypedName","src":"9400:3:51","type":""}],"src":"9353:145:51"},{"body":{"nativeSrc":"9621:100:51","nodeType":"YulBlock","src":"9621:100:51","statements":[{"nativeSrc":"9631:26:51","nodeType":"YulAssignment","src":"9631:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"9643:9:51","nodeType":"YulIdentifier","src":"9643:9:51"},{"kind":"number","nativeSrc":"9654:2:51","nodeType":"YulLiteral","src":"9654:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9639:3:51","nodeType":"YulIdentifier","src":"9639:3:51"},"nativeSrc":"9639:18:51","nodeType":"YulFunctionCall","src":"9639:18:51"},"variableNames":[{"name":"tail","nativeSrc":"9631:4:51","nodeType":"YulIdentifier","src":"9631:4:51"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"9697:6:51","nodeType":"YulIdentifier","src":"9697:6:51"},{"name":"headStart","nativeSrc":"9705:9:51","nodeType":"YulIdentifier","src":"9705:9:51"}],"functionName":{"name":"abi_encode_enum_WrappingStatus","nativeSrc":"9666:30:51","nodeType":"YulIdentifier","src":"9666:30:51"},"nativeSrc":"9666:49:51","nodeType":"YulFunctionCall","src":"9666:49:51"},"nativeSrc":"9666:49:51","nodeType":"YulExpressionStatement","src":"9666:49:51"}]},"name":"abi_encode_tuple_t_enum$_WrappingStatus_$7946__to_t_uint8__fromStack_reversed","nativeSrc":"9503:218:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9590:9:51","nodeType":"YulTypedName","src":"9590:9:51","type":""},{"name":"value0","nativeSrc":"9601:6:51","nodeType":"YulTypedName","src":"9601:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9612:4:51","nodeType":"YulTypedName","src":"9612:4:51","type":""}],"src":"9503:218:51"},{"body":{"nativeSrc":"9868:505:51","nodeType":"YulBlock","src":"9868:505:51","statements":[{"body":{"nativeSrc":"9914:16:51","nodeType":"YulBlock","src":"9914:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9923:1:51","nodeType":"YulLiteral","src":"9923:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"9926:1:51","nodeType":"YulLiteral","src":"9926:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9916:6:51","nodeType":"YulIdentifier","src":"9916:6:51"},"nativeSrc":"9916:12:51","nodeType":"YulFunctionCall","src":"9916:12:51"},"nativeSrc":"9916:12:51","nodeType":"YulExpressionStatement","src":"9916:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9889:7:51","nodeType":"YulIdentifier","src":"9889:7:51"},{"name":"headStart","nativeSrc":"9898:9:51","nodeType":"YulIdentifier","src":"9898:9:51"}],"functionName":{"name":"sub","nativeSrc":"9885:3:51","nodeType":"YulIdentifier","src":"9885:3:51"},"nativeSrc":"9885:23:51","nodeType":"YulFunctionCall","src":"9885:23:51"},{"kind":"number","nativeSrc":"9910:2:51","nodeType":"YulLiteral","src":"9910:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"9881:3:51","nodeType":"YulIdentifier","src":"9881:3:51"},"nativeSrc":"9881:32:51","nodeType":"YulFunctionCall","src":"9881:32:51"},"nativeSrc":"9878:52:51","nodeType":"YulIf","src":"9878:52:51"},{"nativeSrc":"9939:37:51","nodeType":"YulVariableDeclaration","src":"9939:37:51","value":{"arguments":[{"name":"headStart","nativeSrc":"9966:9:51","nodeType":"YulIdentifier","src":"9966:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"9953:12:51","nodeType":"YulIdentifier","src":"9953:12:51"},"nativeSrc":"9953:23:51","nodeType":"YulFunctionCall","src":"9953:23:51"},"variables":[{"name":"offset","nativeSrc":"9943:6:51","nodeType":"YulTypedName","src":"9943:6:51","type":""}]},{"body":{"nativeSrc":"10019:16:51","nodeType":"YulBlock","src":"10019:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10028:1:51","nodeType":"YulLiteral","src":"10028:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"10031:1:51","nodeType":"YulLiteral","src":"10031:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10021:6:51","nodeType":"YulIdentifier","src":"10021:6:51"},"nativeSrc":"10021:12:51","nodeType":"YulFunctionCall","src":"10021:12:51"},"nativeSrc":"10021:12:51","nodeType":"YulExpressionStatement","src":"10021:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"9991:6:51","nodeType":"YulIdentifier","src":"9991:6:51"},{"kind":"number","nativeSrc":"9999:18:51","nodeType":"YulLiteral","src":"9999:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"9988:2:51","nodeType":"YulIdentifier","src":"9988:2:51"},"nativeSrc":"9988:30:51","nodeType":"YulFunctionCall","src":"9988:30:51"},"nativeSrc":"9985:50:51","nodeType":"YulIf","src":"9985:50:51"},{"nativeSrc":"10044:32:51","nodeType":"YulVariableDeclaration","src":"10044:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"10058:9:51","nodeType":"YulIdentifier","src":"10058:9:51"},{"name":"offset","nativeSrc":"10069:6:51","nodeType":"YulIdentifier","src":"10069:6:51"}],"functionName":{"name":"add","nativeSrc":"10054:3:51","nodeType":"YulIdentifier","src":"10054:3:51"},"nativeSrc":"10054:22:51","nodeType":"YulFunctionCall","src":"10054:22:51"},"variables":[{"name":"_1","nativeSrc":"10048:2:51","nodeType":"YulTypedName","src":"10048:2:51","type":""}]},{"body":{"nativeSrc":"10124:16:51","nodeType":"YulBlock","src":"10124:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10133:1:51","nodeType":"YulLiteral","src":"10133:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"10136:1:51","nodeType":"YulLiteral","src":"10136:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10126:6:51","nodeType":"YulIdentifier","src":"10126:6:51"},"nativeSrc":"10126:12:51","nodeType":"YulFunctionCall","src":"10126:12:51"},"nativeSrc":"10126:12:51","nodeType":"YulExpressionStatement","src":"10126:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"10103:2:51","nodeType":"YulIdentifier","src":"10103:2:51"},{"kind":"number","nativeSrc":"10107:4:51","nodeType":"YulLiteral","src":"10107:4:51","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"10099:3:51","nodeType":"YulIdentifier","src":"10099:3:51"},"nativeSrc":"10099:13:51","nodeType":"YulFunctionCall","src":"10099:13:51"},{"name":"dataEnd","nativeSrc":"10114:7:51","nodeType":"YulIdentifier","src":"10114:7:51"}],"functionName":{"name":"slt","nativeSrc":"10095:3:51","nodeType":"YulIdentifier","src":"10095:3:51"},"nativeSrc":"10095:27:51","nodeType":"YulFunctionCall","src":"10095:27:51"}],"functionName":{"name":"iszero","nativeSrc":"10088:6:51","nodeType":"YulIdentifier","src":"10088:6:51"},"nativeSrc":"10088:35:51","nodeType":"YulFunctionCall","src":"10088:35:51"},"nativeSrc":"10085:55:51","nodeType":"YulIf","src":"10085:55:51"},{"nativeSrc":"10149:30:51","nodeType":"YulVariableDeclaration","src":"10149:30:51","value":{"arguments":[{"name":"_1","nativeSrc":"10176:2:51","nodeType":"YulIdentifier","src":"10176:2:51"}],"functionName":{"name":"calldataload","nativeSrc":"10163:12:51","nodeType":"YulIdentifier","src":"10163:12:51"},"nativeSrc":"10163:16:51","nodeType":"YulFunctionCall","src":"10163:16:51"},"variables":[{"name":"length","nativeSrc":"10153:6:51","nodeType":"YulTypedName","src":"10153:6:51","type":""}]},{"body":{"nativeSrc":"10222:16:51","nodeType":"YulBlock","src":"10222:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10231:1:51","nodeType":"YulLiteral","src":"10231:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"10234:1:51","nodeType":"YulLiteral","src":"10234:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10224:6:51","nodeType":"YulIdentifier","src":"10224:6:51"},"nativeSrc":"10224:12:51","nodeType":"YulFunctionCall","src":"10224:12:51"},"nativeSrc":"10224:12:51","nodeType":"YulExpressionStatement","src":"10224:12:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"10194:6:51","nodeType":"YulIdentifier","src":"10194:6:51"},{"kind":"number","nativeSrc":"10202:18:51","nodeType":"YulLiteral","src":"10202:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"10191:2:51","nodeType":"YulIdentifier","src":"10191:2:51"},"nativeSrc":"10191:30:51","nodeType":"YulFunctionCall","src":"10191:30:51"},"nativeSrc":"10188:50:51","nodeType":"YulIf","src":"10188:50:51"},{"body":{"nativeSrc":"10296:16:51","nodeType":"YulBlock","src":"10296:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10305:1:51","nodeType":"YulLiteral","src":"10305:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"10308:1:51","nodeType":"YulLiteral","src":"10308:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10298:6:51","nodeType":"YulIdentifier","src":"10298:6:51"},"nativeSrc":"10298:12:51","nodeType":"YulFunctionCall","src":"10298:12:51"},"nativeSrc":"10298:12:51","nodeType":"YulExpressionStatement","src":"10298:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"10261:2:51","nodeType":"YulIdentifier","src":"10261:2:51"},{"arguments":[{"kind":"number","nativeSrc":"10269:1:51","nodeType":"YulLiteral","src":"10269:1:51","type":"","value":"5"},{"name":"length","nativeSrc":"10272:6:51","nodeType":"YulIdentifier","src":"10272:6:51"}],"functionName":{"name":"shl","nativeSrc":"10265:3:51","nodeType":"YulIdentifier","src":"10265:3:51"},"nativeSrc":"10265:14:51","nodeType":"YulFunctionCall","src":"10265:14:51"}],"functionName":{"name":"add","nativeSrc":"10257:3:51","nodeType":"YulIdentifier","src":"10257:3:51"},"nativeSrc":"10257:23:51","nodeType":"YulFunctionCall","src":"10257:23:51"},{"kind":"number","nativeSrc":"10282:2:51","nodeType":"YulLiteral","src":"10282:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10253:3:51","nodeType":"YulIdentifier","src":"10253:3:51"},"nativeSrc":"10253:32:51","nodeType":"YulFunctionCall","src":"10253:32:51"},{"name":"dataEnd","nativeSrc":"10287:7:51","nodeType":"YulIdentifier","src":"10287:7:51"}],"functionName":{"name":"gt","nativeSrc":"10250:2:51","nodeType":"YulIdentifier","src":"10250:2:51"},"nativeSrc":"10250:45:51","nodeType":"YulFunctionCall","src":"10250:45:51"},"nativeSrc":"10247:65:51","nodeType":"YulIf","src":"10247:65:51"},{"nativeSrc":"10321:21:51","nodeType":"YulAssignment","src":"10321:21:51","value":{"arguments":[{"name":"_1","nativeSrc":"10335:2:51","nodeType":"YulIdentifier","src":"10335:2:51"},{"kind":"number","nativeSrc":"10339:2:51","nodeType":"YulLiteral","src":"10339:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10331:3:51","nodeType":"YulIdentifier","src":"10331:3:51"},"nativeSrc":"10331:11:51","nodeType":"YulFunctionCall","src":"10331:11:51"},"variableNames":[{"name":"value0","nativeSrc":"10321:6:51","nodeType":"YulIdentifier","src":"10321:6:51"}]},{"nativeSrc":"10351:16:51","nodeType":"YulAssignment","src":"10351:16:51","value":{"name":"length","nativeSrc":"10361:6:51","nodeType":"YulIdentifier","src":"10361:6:51"},"variableNames":[{"name":"value1","nativeSrc":"10351:6:51","nodeType":"YulIdentifier","src":"10351:6:51"}]}]},"name":"abi_decode_tuple_t_array$_t_userDefinedValueType$_TransactionHash_$13256_$dyn_calldata_ptr","nativeSrc":"9726:647:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9826:9:51","nodeType":"YulTypedName","src":"9826:9:51","type":""},{"name":"dataEnd","nativeSrc":"9837:7:51","nodeType":"YulTypedName","src":"9837:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9849:6:51","nodeType":"YulTypedName","src":"9849:6:51","type":""},{"name":"value1","nativeSrc":"9857:6:51","nodeType":"YulTypedName","src":"9857:6:51","type":""}],"src":"9726:647:51"},{"body":{"nativeSrc":"10546:484:51","nodeType":"YulBlock","src":"10546:484:51","statements":[{"nativeSrc":"10556:32:51","nodeType":"YulVariableDeclaration","src":"10556:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"10574:9:51","nodeType":"YulIdentifier","src":"10574:9:51"},{"kind":"number","nativeSrc":"10585:2:51","nodeType":"YulLiteral","src":"10585:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10570:3:51","nodeType":"YulIdentifier","src":"10570:3:51"},"nativeSrc":"10570:18:51","nodeType":"YulFunctionCall","src":"10570:18:51"},"variables":[{"name":"tail_1","nativeSrc":"10560:6:51","nodeType":"YulTypedName","src":"10560:6:51","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"10604:9:51","nodeType":"YulIdentifier","src":"10604:9:51"},{"kind":"number","nativeSrc":"10615:2:51","nodeType":"YulLiteral","src":"10615:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"10597:6:51","nodeType":"YulIdentifier","src":"10597:6:51"},"nativeSrc":"10597:21:51","nodeType":"YulFunctionCall","src":"10597:21:51"},"nativeSrc":"10597:21:51","nodeType":"YulExpressionStatement","src":"10597:21:51"},{"nativeSrc":"10627:17:51","nodeType":"YulVariableDeclaration","src":"10627:17:51","value":{"name":"tail_1","nativeSrc":"10638:6:51","nodeType":"YulIdentifier","src":"10638:6:51"},"variables":[{"name":"pos","nativeSrc":"10631:3:51","nodeType":"YulTypedName","src":"10631:3:51","type":""}]},{"nativeSrc":"10653:27:51","nodeType":"YulVariableDeclaration","src":"10653:27:51","value":{"arguments":[{"name":"value0","nativeSrc":"10673:6:51","nodeType":"YulIdentifier","src":"10673:6:51"}],"functionName":{"name":"mload","nativeSrc":"10667:5:51","nodeType":"YulIdentifier","src":"10667:5:51"},"nativeSrc":"10667:13:51","nodeType":"YulFunctionCall","src":"10667:13:51"},"variables":[{"name":"length","nativeSrc":"10657:6:51","nodeType":"YulTypedName","src":"10657:6:51","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"10696:6:51","nodeType":"YulIdentifier","src":"10696:6:51"},{"name":"length","nativeSrc":"10704:6:51","nodeType":"YulIdentifier","src":"10704:6:51"}],"functionName":{"name":"mstore","nativeSrc":"10689:6:51","nodeType":"YulIdentifier","src":"10689:6:51"},"nativeSrc":"10689:22:51","nodeType":"YulFunctionCall","src":"10689:22:51"},"nativeSrc":"10689:22:51","nodeType":"YulExpressionStatement","src":"10689:22:51"},{"nativeSrc":"10720:25:51","nodeType":"YulAssignment","src":"10720:25:51","value":{"arguments":[{"name":"headStart","nativeSrc":"10731:9:51","nodeType":"YulIdentifier","src":"10731:9:51"},{"kind":"number","nativeSrc":"10742:2:51","nodeType":"YulLiteral","src":"10742:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10727:3:51","nodeType":"YulIdentifier","src":"10727:3:51"},"nativeSrc":"10727:18:51","nodeType":"YulFunctionCall","src":"10727:18:51"},"variableNames":[{"name":"pos","nativeSrc":"10720:3:51","nodeType":"YulIdentifier","src":"10720:3:51"}]},{"nativeSrc":"10754:29:51","nodeType":"YulVariableDeclaration","src":"10754:29:51","value":{"arguments":[{"name":"value0","nativeSrc":"10772:6:51","nodeType":"YulIdentifier","src":"10772:6:51"},{"kind":"number","nativeSrc":"10780:2:51","nodeType":"YulLiteral","src":"10780:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10768:3:51","nodeType":"YulIdentifier","src":"10768:3:51"},"nativeSrc":"10768:15:51","nodeType":"YulFunctionCall","src":"10768:15:51"},"variables":[{"name":"srcPtr","nativeSrc":"10758:6:51","nodeType":"YulTypedName","src":"10758:6:51","type":""}]},{"nativeSrc":"10792:10:51","nodeType":"YulVariableDeclaration","src":"10792:10:51","value":{"kind":"number","nativeSrc":"10801:1:51","nodeType":"YulLiteral","src":"10801:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"10796:1:51","nodeType":"YulTypedName","src":"10796:1:51","type":""}]},{"body":{"nativeSrc":"10860:144:51","nodeType":"YulBlock","src":"10860:144:51","statements":[{"expression":{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"10911:6:51","nodeType":"YulIdentifier","src":"10911:6:51"}],"functionName":{"name":"mload","nativeSrc":"10905:5:51","nodeType":"YulIdentifier","src":"10905:5:51"},"nativeSrc":"10905:13:51","nodeType":"YulFunctionCall","src":"10905:13:51"},{"name":"pos","nativeSrc":"10920:3:51","nodeType":"YulIdentifier","src":"10920:3:51"}],"functionName":{"name":"abi_encode_enum_WrappingStatus","nativeSrc":"10874:30:51","nodeType":"YulIdentifier","src":"10874:30:51"},"nativeSrc":"10874:50:51","nodeType":"YulFunctionCall","src":"10874:50:51"},"nativeSrc":"10874:50:51","nodeType":"YulExpressionStatement","src":"10874:50:51"},{"nativeSrc":"10937:19:51","nodeType":"YulAssignment","src":"10937:19:51","value":{"arguments":[{"name":"pos","nativeSrc":"10948:3:51","nodeType":"YulIdentifier","src":"10948:3:51"},{"kind":"number","nativeSrc":"10953:2:51","nodeType":"YulLiteral","src":"10953:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10944:3:51","nodeType":"YulIdentifier","src":"10944:3:51"},"nativeSrc":"10944:12:51","nodeType":"YulFunctionCall","src":"10944:12:51"},"variableNames":[{"name":"pos","nativeSrc":"10937:3:51","nodeType":"YulIdentifier","src":"10937:3:51"}]},{"nativeSrc":"10969:25:51","nodeType":"YulAssignment","src":"10969:25:51","value":{"arguments":[{"name":"srcPtr","nativeSrc":"10983:6:51","nodeType":"YulIdentifier","src":"10983:6:51"},{"kind":"number","nativeSrc":"10991:2:51","nodeType":"YulLiteral","src":"10991:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10979:3:51","nodeType":"YulIdentifier","src":"10979:3:51"},"nativeSrc":"10979:15:51","nodeType":"YulFunctionCall","src":"10979:15:51"},"variableNames":[{"name":"srcPtr","nativeSrc":"10969:6:51","nodeType":"YulIdentifier","src":"10969:6:51"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"10822:1:51","nodeType":"YulIdentifier","src":"10822:1:51"},{"name":"length","nativeSrc":"10825:6:51","nodeType":"YulIdentifier","src":"10825:6:51"}],"functionName":{"name":"lt","nativeSrc":"10819:2:51","nodeType":"YulIdentifier","src":"10819:2:51"},"nativeSrc":"10819:13:51","nodeType":"YulFunctionCall","src":"10819:13:51"},"nativeSrc":"10811:193:51","nodeType":"YulForLoop","post":{"nativeSrc":"10833:18:51","nodeType":"YulBlock","src":"10833:18:51","statements":[{"nativeSrc":"10835:14:51","nodeType":"YulAssignment","src":"10835:14:51","value":{"arguments":[{"name":"i","nativeSrc":"10844:1:51","nodeType":"YulIdentifier","src":"10844:1:51"},{"kind":"number","nativeSrc":"10847:1:51","nodeType":"YulLiteral","src":"10847:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"10840:3:51","nodeType":"YulIdentifier","src":"10840:3:51"},"nativeSrc":"10840:9:51","nodeType":"YulFunctionCall","src":"10840:9:51"},"variableNames":[{"name":"i","nativeSrc":"10835:1:51","nodeType":"YulIdentifier","src":"10835:1:51"}]}]},"pre":{"nativeSrc":"10815:3:51","nodeType":"YulBlock","src":"10815:3:51","statements":[]},"src":"10811:193:51"},{"nativeSrc":"11013:11:51","nodeType":"YulAssignment","src":"11013:11:51","value":{"name":"pos","nativeSrc":"11021:3:51","nodeType":"YulIdentifier","src":"11021:3:51"},"variableNames":[{"name":"tail","nativeSrc":"11013:4:51","nodeType":"YulIdentifier","src":"11013:4:51"}]}]},"name":"abi_encode_tuple_t_array$_t_enum$_WrappingStatus_$7946_$dyn_memory_ptr__to_t_array$_t_uint8_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"10378:652:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10515:9:51","nodeType":"YulTypedName","src":"10515:9:51","type":""},{"name":"value0","nativeSrc":"10526:6:51","nodeType":"YulTypedName","src":"10526:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10537:4:51","nodeType":"YulTypedName","src":"10537:4:51","type":""}],"src":"10378:652:51"},{"body":{"nativeSrc":"11154:99:51","nodeType":"YulBlock","src":"11154:99:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11171:9:51","nodeType":"YulIdentifier","src":"11171:9:51"},{"kind":"number","nativeSrc":"11182:2:51","nodeType":"YulLiteral","src":"11182:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"11164:6:51","nodeType":"YulIdentifier","src":"11164:6:51"},"nativeSrc":"11164:21:51","nodeType":"YulFunctionCall","src":"11164:21:51"},"nativeSrc":"11164:21:51","nodeType":"YulExpressionStatement","src":"11164:21:51"},{"nativeSrc":"11194:53:51","nodeType":"YulAssignment","src":"11194:53:51","value":{"arguments":[{"name":"value0","nativeSrc":"11220:6:51","nodeType":"YulIdentifier","src":"11220:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"11232:9:51","nodeType":"YulIdentifier","src":"11232:9:51"},{"kind":"number","nativeSrc":"11243:2:51","nodeType":"YulLiteral","src":"11243:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11228:3:51","nodeType":"YulIdentifier","src":"11228:3:51"},"nativeSrc":"11228:18:51","nodeType":"YulFunctionCall","src":"11228:18:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"11202:17:51","nodeType":"YulIdentifier","src":"11202:17:51"},"nativeSrc":"11202:45:51","nodeType":"YulFunctionCall","src":"11202:45:51"},"variableNames":[{"name":"tail","nativeSrc":"11194:4:51","nodeType":"YulIdentifier","src":"11194:4:51"}]}]},"name":"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"11035:218:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11123:9:51","nodeType":"YulTypedName","src":"11123:9:51","type":""},{"name":"value0","nativeSrc":"11134:6:51","nodeType":"YulTypedName","src":"11134:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11145:4:51","nodeType":"YulTypedName","src":"11145:4:51","type":""}],"src":"11035:218:51"},{"body":{"nativeSrc":"11348:320:51","nodeType":"YulBlock","src":"11348:320:51","statements":[{"body":{"nativeSrc":"11394:16:51","nodeType":"YulBlock","src":"11394:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11403:1:51","nodeType":"YulLiteral","src":"11403:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"11406:1:51","nodeType":"YulLiteral","src":"11406:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11396:6:51","nodeType":"YulIdentifier","src":"11396:6:51"},"nativeSrc":"11396:12:51","nodeType":"YulFunctionCall","src":"11396:12:51"},"nativeSrc":"11396:12:51","nodeType":"YulExpressionStatement","src":"11396:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11369:7:51","nodeType":"YulIdentifier","src":"11369:7:51"},{"name":"headStart","nativeSrc":"11378:9:51","nodeType":"YulIdentifier","src":"11378:9:51"}],"functionName":{"name":"sub","nativeSrc":"11365:3:51","nodeType":"YulIdentifier","src":"11365:3:51"},"nativeSrc":"11365:23:51","nodeType":"YulFunctionCall","src":"11365:23:51"},{"kind":"number","nativeSrc":"11390:2:51","nodeType":"YulLiteral","src":"11390:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"11361:3:51","nodeType":"YulIdentifier","src":"11361:3:51"},"nativeSrc":"11361:32:51","nodeType":"YulFunctionCall","src":"11361:32:51"},"nativeSrc":"11358:52:51","nodeType":"YulIf","src":"11358:52:51"},{"nativeSrc":"11419:37:51","nodeType":"YulVariableDeclaration","src":"11419:37:51","value":{"arguments":[{"name":"headStart","nativeSrc":"11446:9:51","nodeType":"YulIdentifier","src":"11446:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"11433:12:51","nodeType":"YulIdentifier","src":"11433:12:51"},"nativeSrc":"11433:23:51","nodeType":"YulFunctionCall","src":"11433:23:51"},"variables":[{"name":"offset","nativeSrc":"11423:6:51","nodeType":"YulTypedName","src":"11423:6:51","type":""}]},{"body":{"nativeSrc":"11499:16:51","nodeType":"YulBlock","src":"11499:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11508:1:51","nodeType":"YulLiteral","src":"11508:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"11511:1:51","nodeType":"YulLiteral","src":"11511:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11501:6:51","nodeType":"YulIdentifier","src":"11501:6:51"},"nativeSrc":"11501:12:51","nodeType":"YulFunctionCall","src":"11501:12:51"},"nativeSrc":"11501:12:51","nodeType":"YulExpressionStatement","src":"11501:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"11471:6:51","nodeType":"YulIdentifier","src":"11471:6:51"},{"kind":"number","nativeSrc":"11479:18:51","nodeType":"YulLiteral","src":"11479:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"11468:2:51","nodeType":"YulIdentifier","src":"11468:2:51"},"nativeSrc":"11468:30:51","nodeType":"YulFunctionCall","src":"11468:30:51"},"nativeSrc":"11465:50:51","nodeType":"YulIf","src":"11465:50:51"},{"nativeSrc":"11524:84:51","nodeType":"YulVariableDeclaration","src":"11524:84:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11580:9:51","nodeType":"YulIdentifier","src":"11580:9:51"},{"name":"offset","nativeSrc":"11591:6:51","nodeType":"YulIdentifier","src":"11591:6:51"}],"functionName":{"name":"add","nativeSrc":"11576:3:51","nodeType":"YulIdentifier","src":"11576:3:51"},"nativeSrc":"11576:22:51","nodeType":"YulFunctionCall","src":"11576:22:51"},{"name":"dataEnd","nativeSrc":"11600:7:51","nodeType":"YulIdentifier","src":"11600:7:51"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"11550:25:51","nodeType":"YulIdentifier","src":"11550:25:51"},"nativeSrc":"11550:58:51","nodeType":"YulFunctionCall","src":"11550:58:51"},"variables":[{"name":"value0_1","nativeSrc":"11528:8:51","nodeType":"YulTypedName","src":"11528:8:51","type":""},{"name":"value1_1","nativeSrc":"11538:8:51","nodeType":"YulTypedName","src":"11538:8:51","type":""}]},{"nativeSrc":"11617:18:51","nodeType":"YulAssignment","src":"11617:18:51","value":{"name":"value0_1","nativeSrc":"11627:8:51","nodeType":"YulIdentifier","src":"11627:8:51"},"variableNames":[{"name":"value0","nativeSrc":"11617:6:51","nodeType":"YulIdentifier","src":"11617:6:51"}]},{"nativeSrc":"11644:18:51","nodeType":"YulAssignment","src":"11644:18:51","value":{"name":"value1_1","nativeSrc":"11654:8:51","nodeType":"YulIdentifier","src":"11654:8:51"},"variableNames":[{"name":"value1","nativeSrc":"11644:6:51","nodeType":"YulIdentifier","src":"11644:6:51"}]}]},"name":"abi_decode_tuple_t_string_calldata_ptr","nativeSrc":"11258:410:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11306:9:51","nodeType":"YulTypedName","src":"11306:9:51","type":""},{"name":"dataEnd","nativeSrc":"11317:7:51","nodeType":"YulTypedName","src":"11317:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11329:6:51","nodeType":"YulTypedName","src":"11329:6:51","type":""},{"name":"value1","nativeSrc":"11337:6:51","nodeType":"YulTypedName","src":"11337:6:51","type":""}],"src":"11258:410:51"},{"body":{"nativeSrc":"11716:71:51","nodeType":"YulBlock","src":"11716:71:51","statements":[{"body":{"nativeSrc":"11765:16:51","nodeType":"YulBlock","src":"11765:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11774:1:51","nodeType":"YulLiteral","src":"11774:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"11777:1:51","nodeType":"YulLiteral","src":"11777:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11767:6:51","nodeType":"YulIdentifier","src":"11767:6:51"},"nativeSrc":"11767:12:51","nodeType":"YulFunctionCall","src":"11767:12:51"},"nativeSrc":"11767:12:51","nodeType":"YulExpressionStatement","src":"11767:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11739:5:51","nodeType":"YulIdentifier","src":"11739:5:51"},{"arguments":[{"name":"value","nativeSrc":"11750:5:51","nodeType":"YulIdentifier","src":"11750:5:51"},{"kind":"number","nativeSrc":"11757:4:51","nodeType":"YulLiteral","src":"11757:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"11746:3:51","nodeType":"YulIdentifier","src":"11746:3:51"},"nativeSrc":"11746:16:51","nodeType":"YulFunctionCall","src":"11746:16:51"}],"functionName":{"name":"eq","nativeSrc":"11736:2:51","nodeType":"YulIdentifier","src":"11736:2:51"},"nativeSrc":"11736:27:51","nodeType":"YulFunctionCall","src":"11736:27:51"}],"functionName":{"name":"iszero","nativeSrc":"11729:6:51","nodeType":"YulIdentifier","src":"11729:6:51"},"nativeSrc":"11729:35:51","nodeType":"YulFunctionCall","src":"11729:35:51"},"nativeSrc":"11726:55:51","nodeType":"YulIf","src":"11726:55:51"}]},"name":"validator_revert_uint8","nativeSrc":"11673:114:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"11705:5:51","nodeType":"YulTypedName","src":"11705:5:51","type":""}],"src":"11673:114:51"},{"body":{"nativeSrc":"11962:839:51","nodeType":"YulBlock","src":"11962:839:51","statements":[{"body":{"nativeSrc":"12009:16:51","nodeType":"YulBlock","src":"12009:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12018:1:51","nodeType":"YulLiteral","src":"12018:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"12021:1:51","nodeType":"YulLiteral","src":"12021:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12011:6:51","nodeType":"YulIdentifier","src":"12011:6:51"},"nativeSrc":"12011:12:51","nodeType":"YulFunctionCall","src":"12011:12:51"},"nativeSrc":"12011:12:51","nodeType":"YulExpressionStatement","src":"12011:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11983:7:51","nodeType":"YulIdentifier","src":"11983:7:51"},{"name":"headStart","nativeSrc":"11992:9:51","nodeType":"YulIdentifier","src":"11992:9:51"}],"functionName":{"name":"sub","nativeSrc":"11979:3:51","nodeType":"YulIdentifier","src":"11979:3:51"},"nativeSrc":"11979:23:51","nodeType":"YulFunctionCall","src":"11979:23:51"},{"kind":"number","nativeSrc":"12004:3:51","nodeType":"YulLiteral","src":"12004:3:51","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"11975:3:51","nodeType":"YulIdentifier","src":"11975:3:51"},"nativeSrc":"11975:33:51","nodeType":"YulFunctionCall","src":"11975:33:51"},"nativeSrc":"11972:53:51","nodeType":"YulIf","src":"11972:53:51"},{"nativeSrc":"12034:36:51","nodeType":"YulVariableDeclaration","src":"12034:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"12060:9:51","nodeType":"YulIdentifier","src":"12060:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"12047:12:51","nodeType":"YulIdentifier","src":"12047:12:51"},"nativeSrc":"12047:23:51","nodeType":"YulFunctionCall","src":"12047:23:51"},"variables":[{"name":"value","nativeSrc":"12038:5:51","nodeType":"YulTypedName","src":"12038:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12104:5:51","nodeType":"YulIdentifier","src":"12104:5:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"12079:24:51","nodeType":"YulIdentifier","src":"12079:24:51"},"nativeSrc":"12079:31:51","nodeType":"YulFunctionCall","src":"12079:31:51"},"nativeSrc":"12079:31:51","nodeType":"YulExpressionStatement","src":"12079:31:51"},{"nativeSrc":"12119:15:51","nodeType":"YulAssignment","src":"12119:15:51","value":{"name":"value","nativeSrc":"12129:5:51","nodeType":"YulIdentifier","src":"12129:5:51"},"variableNames":[{"name":"value0","nativeSrc":"12119:6:51","nodeType":"YulIdentifier","src":"12119:6:51"}]},{"nativeSrc":"12143:47:51","nodeType":"YulVariableDeclaration","src":"12143:47:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12175:9:51","nodeType":"YulIdentifier","src":"12175:9:51"},{"kind":"number","nativeSrc":"12186:2:51","nodeType":"YulLiteral","src":"12186:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12171:3:51","nodeType":"YulIdentifier","src":"12171:3:51"},"nativeSrc":"12171:18:51","nodeType":"YulFunctionCall","src":"12171:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"12158:12:51","nodeType":"YulIdentifier","src":"12158:12:51"},"nativeSrc":"12158:32:51","nodeType":"YulFunctionCall","src":"12158:32:51"},"variables":[{"name":"value_1","nativeSrc":"12147:7:51","nodeType":"YulTypedName","src":"12147:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"12224:7:51","nodeType":"YulIdentifier","src":"12224:7:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"12199:24:51","nodeType":"YulIdentifier","src":"12199:24:51"},"nativeSrc":"12199:33:51","nodeType":"YulFunctionCall","src":"12199:33:51"},"nativeSrc":"12199:33:51","nodeType":"YulExpressionStatement","src":"12199:33:51"},{"nativeSrc":"12241:17:51","nodeType":"YulAssignment","src":"12241:17:51","value":{"name":"value_1","nativeSrc":"12251:7:51","nodeType":"YulIdentifier","src":"12251:7:51"},"variableNames":[{"name":"value1","nativeSrc":"12241:6:51","nodeType":"YulIdentifier","src":"12241:6:51"}]},{"nativeSrc":"12267:16:51","nodeType":"YulVariableDeclaration","src":"12267:16:51","value":{"kind":"number","nativeSrc":"12282:1:51","nodeType":"YulLiteral","src":"12282:1:51","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"12271:7:51","nodeType":"YulTypedName","src":"12271:7:51","type":""}]},{"nativeSrc":"12292:43:51","nodeType":"YulAssignment","src":"12292:43:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12320:9:51","nodeType":"YulIdentifier","src":"12320:9:51"},{"kind":"number","nativeSrc":"12331:2:51","nodeType":"YulLiteral","src":"12331:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12316:3:51","nodeType":"YulIdentifier","src":"12316:3:51"},"nativeSrc":"12316:18:51","nodeType":"YulFunctionCall","src":"12316:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"12303:12:51","nodeType":"YulIdentifier","src":"12303:12:51"},"nativeSrc":"12303:32:51","nodeType":"YulFunctionCall","src":"12303:32:51"},"variableNames":[{"name":"value_2","nativeSrc":"12292:7:51","nodeType":"YulIdentifier","src":"12292:7:51"}]},{"nativeSrc":"12344:17:51","nodeType":"YulAssignment","src":"12344:17:51","value":{"name":"value_2","nativeSrc":"12354:7:51","nodeType":"YulIdentifier","src":"12354:7:51"},"variableNames":[{"name":"value2","nativeSrc":"12344:6:51","nodeType":"YulIdentifier","src":"12344:6:51"}]},{"nativeSrc":"12370:16:51","nodeType":"YulVariableDeclaration","src":"12370:16:51","value":{"kind":"number","nativeSrc":"12385:1:51","nodeType":"YulLiteral","src":"12385:1:51","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"12374:7:51","nodeType":"YulTypedName","src":"12374:7:51","type":""}]},{"nativeSrc":"12395:43:51","nodeType":"YulAssignment","src":"12395:43:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12423:9:51","nodeType":"YulIdentifier","src":"12423:9:51"},{"kind":"number","nativeSrc":"12434:2:51","nodeType":"YulLiteral","src":"12434:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12419:3:51","nodeType":"YulIdentifier","src":"12419:3:51"},"nativeSrc":"12419:18:51","nodeType":"YulFunctionCall","src":"12419:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"12406:12:51","nodeType":"YulIdentifier","src":"12406:12:51"},"nativeSrc":"12406:32:51","nodeType":"YulFunctionCall","src":"12406:32:51"},"variableNames":[{"name":"value_3","nativeSrc":"12395:7:51","nodeType":"YulIdentifier","src":"12395:7:51"}]},{"nativeSrc":"12447:17:51","nodeType":"YulAssignment","src":"12447:17:51","value":{"name":"value_3","nativeSrc":"12457:7:51","nodeType":"YulIdentifier","src":"12457:7:51"},"variableNames":[{"name":"value3","nativeSrc":"12447:6:51","nodeType":"YulIdentifier","src":"12447:6:51"}]},{"nativeSrc":"12473:48:51","nodeType":"YulVariableDeclaration","src":"12473:48:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12505:9:51","nodeType":"YulIdentifier","src":"12505:9:51"},{"kind":"number","nativeSrc":"12516:3:51","nodeType":"YulLiteral","src":"12516:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"12501:3:51","nodeType":"YulIdentifier","src":"12501:3:51"},"nativeSrc":"12501:19:51","nodeType":"YulFunctionCall","src":"12501:19:51"}],"functionName":{"name":"calldataload","nativeSrc":"12488:12:51","nodeType":"YulIdentifier","src":"12488:12:51"},"nativeSrc":"12488:33:51","nodeType":"YulFunctionCall","src":"12488:33:51"},"variables":[{"name":"value_4","nativeSrc":"12477:7:51","nodeType":"YulTypedName","src":"12477:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"12553:7:51","nodeType":"YulIdentifier","src":"12553:7:51"}],"functionName":{"name":"validator_revert_uint8","nativeSrc":"12530:22:51","nodeType":"YulIdentifier","src":"12530:22:51"},"nativeSrc":"12530:31:51","nodeType":"YulFunctionCall","src":"12530:31:51"},"nativeSrc":"12530:31:51","nodeType":"YulExpressionStatement","src":"12530:31:51"},{"nativeSrc":"12570:17:51","nodeType":"YulAssignment","src":"12570:17:51","value":{"name":"value_4","nativeSrc":"12580:7:51","nodeType":"YulIdentifier","src":"12580:7:51"},"variableNames":[{"name":"value4","nativeSrc":"12570:6:51","nodeType":"YulIdentifier","src":"12570:6:51"}]},{"nativeSrc":"12596:16:51","nodeType":"YulVariableDeclaration","src":"12596:16:51","value":{"kind":"number","nativeSrc":"12611:1:51","nodeType":"YulLiteral","src":"12611:1:51","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"12600:7:51","nodeType":"YulTypedName","src":"12600:7:51","type":""}]},{"nativeSrc":"12621:44:51","nodeType":"YulAssignment","src":"12621:44:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12649:9:51","nodeType":"YulIdentifier","src":"12649:9:51"},{"kind":"number","nativeSrc":"12660:3:51","nodeType":"YulLiteral","src":"12660:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"12645:3:51","nodeType":"YulIdentifier","src":"12645:3:51"},"nativeSrc":"12645:19:51","nodeType":"YulFunctionCall","src":"12645:19:51"}],"functionName":{"name":"calldataload","nativeSrc":"12632:12:51","nodeType":"YulIdentifier","src":"12632:12:51"},"nativeSrc":"12632:33:51","nodeType":"YulFunctionCall","src":"12632:33:51"},"variableNames":[{"name":"value_5","nativeSrc":"12621:7:51","nodeType":"YulIdentifier","src":"12621:7:51"}]},{"nativeSrc":"12674:17:51","nodeType":"YulAssignment","src":"12674:17:51","value":{"name":"value_5","nativeSrc":"12684:7:51","nodeType":"YulIdentifier","src":"12684:7:51"},"variableNames":[{"name":"value5","nativeSrc":"12674:6:51","nodeType":"YulIdentifier","src":"12674:6:51"}]},{"nativeSrc":"12700:16:51","nodeType":"YulVariableDeclaration","src":"12700:16:51","value":{"kind":"number","nativeSrc":"12715:1:51","nodeType":"YulLiteral","src":"12715:1:51","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"12704:7:51","nodeType":"YulTypedName","src":"12704:7:51","type":""}]},{"nativeSrc":"12725:44:51","nodeType":"YulAssignment","src":"12725:44:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12753:9:51","nodeType":"YulIdentifier","src":"12753:9:51"},{"kind":"number","nativeSrc":"12764:3:51","nodeType":"YulLiteral","src":"12764:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"12749:3:51","nodeType":"YulIdentifier","src":"12749:3:51"},"nativeSrc":"12749:19:51","nodeType":"YulFunctionCall","src":"12749:19:51"}],"functionName":{"name":"calldataload","nativeSrc":"12736:12:51","nodeType":"YulIdentifier","src":"12736:12:51"},"nativeSrc":"12736:33:51","nodeType":"YulFunctionCall","src":"12736:33:51"},"variableNames":[{"name":"value_6","nativeSrc":"12725:7:51","nodeType":"YulIdentifier","src":"12725:7:51"}]},{"nativeSrc":"12778:17:51","nodeType":"YulAssignment","src":"12778:17:51","value":{"name":"value_6","nativeSrc":"12788:7:51","nodeType":"YulIdentifier","src":"12788:7:51"},"variableNames":[{"name":"value6","nativeSrc":"12778:6:51","nodeType":"YulIdentifier","src":"12778:6:51"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"11792:1009:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11880:9:51","nodeType":"YulTypedName","src":"11880:9:51","type":""},{"name":"dataEnd","nativeSrc":"11891:7:51","nodeType":"YulTypedName","src":"11891:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11903:6:51","nodeType":"YulTypedName","src":"11903:6:51","type":""},{"name":"value1","nativeSrc":"11911:6:51","nodeType":"YulTypedName","src":"11911:6:51","type":""},{"name":"value2","nativeSrc":"11919:6:51","nodeType":"YulTypedName","src":"11919:6:51","type":""},{"name":"value3","nativeSrc":"11927:6:51","nodeType":"YulTypedName","src":"11927:6:51","type":""},{"name":"value4","nativeSrc":"11935:6:51","nodeType":"YulTypedName","src":"11935:6:51","type":""},{"name":"value5","nativeSrc":"11943:6:51","nodeType":"YulTypedName","src":"11943:6:51","type":""},{"name":"value6","nativeSrc":"11951:6:51","nodeType":"YulTypedName","src":"11951:6:51","type":""}],"src":"11792:1009:51"},{"body":{"nativeSrc":"12912:417:51","nodeType":"YulBlock","src":"12912:417:51","statements":[{"body":{"nativeSrc":"12958:16:51","nodeType":"YulBlock","src":"12958:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12967:1:51","nodeType":"YulLiteral","src":"12967:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"12970:1:51","nodeType":"YulLiteral","src":"12970:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12960:6:51","nodeType":"YulIdentifier","src":"12960:6:51"},"nativeSrc":"12960:12:51","nodeType":"YulFunctionCall","src":"12960:12:51"},"nativeSrc":"12960:12:51","nodeType":"YulExpressionStatement","src":"12960:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12933:7:51","nodeType":"YulIdentifier","src":"12933:7:51"},{"name":"headStart","nativeSrc":"12942:9:51","nodeType":"YulIdentifier","src":"12942:9:51"}],"functionName":{"name":"sub","nativeSrc":"12929:3:51","nodeType":"YulIdentifier","src":"12929:3:51"},"nativeSrc":"12929:23:51","nodeType":"YulFunctionCall","src":"12929:23:51"},{"kind":"number","nativeSrc":"12954:2:51","nodeType":"YulLiteral","src":"12954:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"12925:3:51","nodeType":"YulIdentifier","src":"12925:3:51"},"nativeSrc":"12925:32:51","nodeType":"YulFunctionCall","src":"12925:32:51"},"nativeSrc":"12922:52:51","nodeType":"YulIf","src":"12922:52:51"},{"nativeSrc":"12983:14:51","nodeType":"YulVariableDeclaration","src":"12983:14:51","value":{"kind":"number","nativeSrc":"12996:1:51","nodeType":"YulLiteral","src":"12996:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"12987:5:51","nodeType":"YulTypedName","src":"12987:5:51","type":""}]},{"nativeSrc":"13006:32:51","nodeType":"YulAssignment","src":"13006:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"13028:9:51","nodeType":"YulIdentifier","src":"13028:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"13015:12:51","nodeType":"YulIdentifier","src":"13015:12:51"},"nativeSrc":"13015:23:51","nodeType":"YulFunctionCall","src":"13015:23:51"},"variableNames":[{"name":"value","nativeSrc":"13006:5:51","nodeType":"YulIdentifier","src":"13006:5:51"}]},{"nativeSrc":"13047:15:51","nodeType":"YulAssignment","src":"13047:15:51","value":{"name":"value","nativeSrc":"13057:5:51","nodeType":"YulIdentifier","src":"13057:5:51"},"variableNames":[{"name":"value0","nativeSrc":"13047:6:51","nodeType":"YulIdentifier","src":"13047:6:51"}]},{"nativeSrc":"13071:46:51","nodeType":"YulVariableDeclaration","src":"13071:46:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13102:9:51","nodeType":"YulIdentifier","src":"13102:9:51"},{"kind":"number","nativeSrc":"13113:2:51","nodeType":"YulLiteral","src":"13113:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13098:3:51","nodeType":"YulIdentifier","src":"13098:3:51"},"nativeSrc":"13098:18:51","nodeType":"YulFunctionCall","src":"13098:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"13085:12:51","nodeType":"YulIdentifier","src":"13085:12:51"},"nativeSrc":"13085:32:51","nodeType":"YulFunctionCall","src":"13085:32:51"},"variables":[{"name":"offset","nativeSrc":"13075:6:51","nodeType":"YulTypedName","src":"13075:6:51","type":""}]},{"body":{"nativeSrc":"13160:16:51","nodeType":"YulBlock","src":"13160:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13169:1:51","nodeType":"YulLiteral","src":"13169:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"13172:1:51","nodeType":"YulLiteral","src":"13172:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13162:6:51","nodeType":"YulIdentifier","src":"13162:6:51"},"nativeSrc":"13162:12:51","nodeType":"YulFunctionCall","src":"13162:12:51"},"nativeSrc":"13162:12:51","nodeType":"YulExpressionStatement","src":"13162:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"13132:6:51","nodeType":"YulIdentifier","src":"13132:6:51"},{"kind":"number","nativeSrc":"13140:18:51","nodeType":"YulLiteral","src":"13140:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"13129:2:51","nodeType":"YulIdentifier","src":"13129:2:51"},"nativeSrc":"13129:30:51","nodeType":"YulFunctionCall","src":"13129:30:51"},"nativeSrc":"13126:50:51","nodeType":"YulIf","src":"13126:50:51"},{"nativeSrc":"13185:84:51","nodeType":"YulVariableDeclaration","src":"13185:84:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13241:9:51","nodeType":"YulIdentifier","src":"13241:9:51"},{"name":"offset","nativeSrc":"13252:6:51","nodeType":"YulIdentifier","src":"13252:6:51"}],"functionName":{"name":"add","nativeSrc":"13237:3:51","nodeType":"YulIdentifier","src":"13237:3:51"},"nativeSrc":"13237:22:51","nodeType":"YulFunctionCall","src":"13237:22:51"},{"name":"dataEnd","nativeSrc":"13261:7:51","nodeType":"YulIdentifier","src":"13261:7:51"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"13211:25:51","nodeType":"YulIdentifier","src":"13211:25:51"},"nativeSrc":"13211:58:51","nodeType":"YulFunctionCall","src":"13211:58:51"},"variables":[{"name":"value1_1","nativeSrc":"13189:8:51","nodeType":"YulTypedName","src":"13189:8:51","type":""},{"name":"value2_1","nativeSrc":"13199:8:51","nodeType":"YulTypedName","src":"13199:8:51","type":""}]},{"nativeSrc":"13278:18:51","nodeType":"YulAssignment","src":"13278:18:51","value":{"name":"value1_1","nativeSrc":"13288:8:51","nodeType":"YulIdentifier","src":"13288:8:51"},"variableNames":[{"name":"value1","nativeSrc":"13278:6:51","nodeType":"YulIdentifier","src":"13278:6:51"}]},{"nativeSrc":"13305:18:51","nodeType":"YulAssignment","src":"13305:18:51","value":{"name":"value2_1","nativeSrc":"13315:8:51","nodeType":"YulIdentifier","src":"13315:8:51"},"variableNames":[{"name":"value2","nativeSrc":"13305:6:51","nodeType":"YulIdentifier","src":"13305:6:51"}]}]},"name":"abi_decode_tuple_t_uint256t_bytes_calldata_ptr","nativeSrc":"12806:523:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12862:9:51","nodeType":"YulTypedName","src":"12862:9:51","type":""},{"name":"dataEnd","nativeSrc":"12873:7:51","nodeType":"YulTypedName","src":"12873:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12885:6:51","nodeType":"YulTypedName","src":"12885:6:51","type":""},{"name":"value1","nativeSrc":"12893:6:51","nodeType":"YulTypedName","src":"12893:6:51","type":""},{"name":"value2","nativeSrc":"12901:6:51","nodeType":"YulTypedName","src":"12901:6:51","type":""}],"src":"12806:523:51"},{"body":{"nativeSrc":"13421:301:51","nodeType":"YulBlock","src":"13421:301:51","statements":[{"body":{"nativeSrc":"13467:16:51","nodeType":"YulBlock","src":"13467:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13476:1:51","nodeType":"YulLiteral","src":"13476:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"13479:1:51","nodeType":"YulLiteral","src":"13479:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13469:6:51","nodeType":"YulIdentifier","src":"13469:6:51"},"nativeSrc":"13469:12:51","nodeType":"YulFunctionCall","src":"13469:12:51"},"nativeSrc":"13469:12:51","nodeType":"YulExpressionStatement","src":"13469:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13442:7:51","nodeType":"YulIdentifier","src":"13442:7:51"},{"name":"headStart","nativeSrc":"13451:9:51","nodeType":"YulIdentifier","src":"13451:9:51"}],"functionName":{"name":"sub","nativeSrc":"13438:3:51","nodeType":"YulIdentifier","src":"13438:3:51"},"nativeSrc":"13438:23:51","nodeType":"YulFunctionCall","src":"13438:23:51"},{"kind":"number","nativeSrc":"13463:2:51","nodeType":"YulLiteral","src":"13463:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"13434:3:51","nodeType":"YulIdentifier","src":"13434:3:51"},"nativeSrc":"13434:32:51","nodeType":"YulFunctionCall","src":"13434:32:51"},"nativeSrc":"13431:52:51","nodeType":"YulIf","src":"13431:52:51"},{"nativeSrc":"13492:36:51","nodeType":"YulVariableDeclaration","src":"13492:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"13518:9:51","nodeType":"YulIdentifier","src":"13518:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"13505:12:51","nodeType":"YulIdentifier","src":"13505:12:51"},"nativeSrc":"13505:23:51","nodeType":"YulFunctionCall","src":"13505:23:51"},"variables":[{"name":"value","nativeSrc":"13496:5:51","nodeType":"YulTypedName","src":"13496:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13562:5:51","nodeType":"YulIdentifier","src":"13562:5:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"13537:24:51","nodeType":"YulIdentifier","src":"13537:24:51"},"nativeSrc":"13537:31:51","nodeType":"YulFunctionCall","src":"13537:31:51"},"nativeSrc":"13537:31:51","nodeType":"YulExpressionStatement","src":"13537:31:51"},{"nativeSrc":"13577:15:51","nodeType":"YulAssignment","src":"13577:15:51","value":{"name":"value","nativeSrc":"13587:5:51","nodeType":"YulIdentifier","src":"13587:5:51"},"variableNames":[{"name":"value0","nativeSrc":"13577:6:51","nodeType":"YulIdentifier","src":"13577:6:51"}]},{"nativeSrc":"13601:47:51","nodeType":"YulVariableDeclaration","src":"13601:47:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13633:9:51","nodeType":"YulIdentifier","src":"13633:9:51"},{"kind":"number","nativeSrc":"13644:2:51","nodeType":"YulLiteral","src":"13644:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13629:3:51","nodeType":"YulIdentifier","src":"13629:3:51"},"nativeSrc":"13629:18:51","nodeType":"YulFunctionCall","src":"13629:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"13616:12:51","nodeType":"YulIdentifier","src":"13616:12:51"},"nativeSrc":"13616:32:51","nodeType":"YulFunctionCall","src":"13616:32:51"},"variables":[{"name":"value_1","nativeSrc":"13605:7:51","nodeType":"YulTypedName","src":"13605:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"13682:7:51","nodeType":"YulIdentifier","src":"13682:7:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"13657:24:51","nodeType":"YulIdentifier","src":"13657:24:51"},"nativeSrc":"13657:33:51","nodeType":"YulFunctionCall","src":"13657:33:51"},"nativeSrc":"13657:33:51","nodeType":"YulExpressionStatement","src":"13657:33:51"},{"nativeSrc":"13699:17:51","nodeType":"YulAssignment","src":"13699:17:51","value":{"name":"value_1","nativeSrc":"13709:7:51","nodeType":"YulIdentifier","src":"13709:7:51"},"variableNames":[{"name":"value1","nativeSrc":"13699:6:51","nodeType":"YulIdentifier","src":"13699:6:51"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"13334:388:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13379:9:51","nodeType":"YulTypedName","src":"13379:9:51","type":""},{"name":"dataEnd","nativeSrc":"13390:7:51","nodeType":"YulTypedName","src":"13390:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13402:6:51","nodeType":"YulTypedName","src":"13402:6:51","type":""},{"name":"value1","nativeSrc":"13410:6:51","nodeType":"YulTypedName","src":"13410:6:51","type":""}],"src":"13334:388:51"},{"body":{"nativeSrc":"13797:156:51","nodeType":"YulBlock","src":"13797:156:51","statements":[{"body":{"nativeSrc":"13843:16:51","nodeType":"YulBlock","src":"13843:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13852:1:51","nodeType":"YulLiteral","src":"13852:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"13855:1:51","nodeType":"YulLiteral","src":"13855:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13845:6:51","nodeType":"YulIdentifier","src":"13845:6:51"},"nativeSrc":"13845:12:51","nodeType":"YulFunctionCall","src":"13845:12:51"},"nativeSrc":"13845:12:51","nodeType":"YulExpressionStatement","src":"13845:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13818:7:51","nodeType":"YulIdentifier","src":"13818:7:51"},{"name":"headStart","nativeSrc":"13827:9:51","nodeType":"YulIdentifier","src":"13827:9:51"}],"functionName":{"name":"sub","nativeSrc":"13814:3:51","nodeType":"YulIdentifier","src":"13814:3:51"},"nativeSrc":"13814:23:51","nodeType":"YulFunctionCall","src":"13814:23:51"},{"kind":"number","nativeSrc":"13839:2:51","nodeType":"YulLiteral","src":"13839:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"13810:3:51","nodeType":"YulIdentifier","src":"13810:3:51"},"nativeSrc":"13810:32:51","nodeType":"YulFunctionCall","src":"13810:32:51"},"nativeSrc":"13807:52:51","nodeType":"YulIf","src":"13807:52:51"},{"nativeSrc":"13868:14:51","nodeType":"YulVariableDeclaration","src":"13868:14:51","value":{"kind":"number","nativeSrc":"13881:1:51","nodeType":"YulLiteral","src":"13881:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"13872:5:51","nodeType":"YulTypedName","src":"13872:5:51","type":""}]},{"nativeSrc":"13891:32:51","nodeType":"YulAssignment","src":"13891:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"13913:9:51","nodeType":"YulIdentifier","src":"13913:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"13900:12:51","nodeType":"YulIdentifier","src":"13900:12:51"},"nativeSrc":"13900:23:51","nodeType":"YulFunctionCall","src":"13900:23:51"},"variableNames":[{"name":"value","nativeSrc":"13891:5:51","nodeType":"YulIdentifier","src":"13891:5:51"}]},{"nativeSrc":"13932:15:51","nodeType":"YulAssignment","src":"13932:15:51","value":{"name":"value","nativeSrc":"13942:5:51","nodeType":"YulIdentifier","src":"13942:5:51"},"variableNames":[{"name":"value0","nativeSrc":"13932:6:51","nodeType":"YulIdentifier","src":"13932:6:51"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"13727:226:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13763:9:51","nodeType":"YulTypedName","src":"13763:9:51","type":""},{"name":"dataEnd","nativeSrc":"13774:7:51","nodeType":"YulTypedName","src":"13774:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13786:6:51","nodeType":"YulTypedName","src":"13786:6:51","type":""}],"src":"13727:226:51"},{"body":{"nativeSrc":"13990:95:51","nodeType":"YulBlock","src":"13990:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14007:1:51","nodeType":"YulLiteral","src":"14007:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14014:3:51","nodeType":"YulLiteral","src":"14014:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"14019:10:51","nodeType":"YulLiteral","src":"14019:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14010:3:51","nodeType":"YulIdentifier","src":"14010:3:51"},"nativeSrc":"14010:20:51","nodeType":"YulFunctionCall","src":"14010:20:51"}],"functionName":{"name":"mstore","nativeSrc":"14000:6:51","nodeType":"YulIdentifier","src":"14000:6:51"},"nativeSrc":"14000:31:51","nodeType":"YulFunctionCall","src":"14000:31:51"},"nativeSrc":"14000:31:51","nodeType":"YulExpressionStatement","src":"14000:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14047:1:51","nodeType":"YulLiteral","src":"14047:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"14050:4:51","nodeType":"YulLiteral","src":"14050:4:51","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"14040:6:51","nodeType":"YulIdentifier","src":"14040:6:51"},"nativeSrc":"14040:15:51","nodeType":"YulFunctionCall","src":"14040:15:51"},"nativeSrc":"14040:15:51","nodeType":"YulExpressionStatement","src":"14040:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14071:1:51","nodeType":"YulLiteral","src":"14071:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"14074:4:51","nodeType":"YulLiteral","src":"14074:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14064:6:51","nodeType":"YulIdentifier","src":"14064:6:51"},"nativeSrc":"14064:15:51","nodeType":"YulFunctionCall","src":"14064:15:51"},"nativeSrc":"14064:15:51","nodeType":"YulExpressionStatement","src":"14064:15:51"}]},"name":"panic_error_0x41","nativeSrc":"13958:127:51","nodeType":"YulFunctionDefinition","src":"13958:127:51"},{"body":{"nativeSrc":"14136:179:51","nodeType":"YulBlock","src":"14136:179:51","statements":[{"nativeSrc":"14146:35:51","nodeType":"YulVariableDeclaration","src":"14146:35:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"14168:6:51","nodeType":"YulIdentifier","src":"14168:6:51"},{"kind":"number","nativeSrc":"14176:4:51","nodeType":"YulLiteral","src":"14176:4:51","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"14164:3:51","nodeType":"YulIdentifier","src":"14164:3:51"},"nativeSrc":"14164:17:51","nodeType":"YulFunctionCall","src":"14164:17:51"},"variables":[{"name":"newFreePtr","nativeSrc":"14150:10:51","nodeType":"YulTypedName","src":"14150:10:51","type":""}]},{"body":{"nativeSrc":"14256:22:51","nodeType":"YulBlock","src":"14256:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"14258:16:51","nodeType":"YulIdentifier","src":"14258:16:51"},"nativeSrc":"14258:18:51","nodeType":"YulFunctionCall","src":"14258:18:51"},"nativeSrc":"14258:18:51","nodeType":"YulExpressionStatement","src":"14258:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"14199:10:51","nodeType":"YulIdentifier","src":"14199:10:51"},{"kind":"number","nativeSrc":"14211:18:51","nodeType":"YulLiteral","src":"14211:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"14196:2:51","nodeType":"YulIdentifier","src":"14196:2:51"},"nativeSrc":"14196:34:51","nodeType":"YulFunctionCall","src":"14196:34:51"},{"arguments":[{"name":"newFreePtr","nativeSrc":"14235:10:51","nodeType":"YulIdentifier","src":"14235:10:51"},{"name":"memPtr","nativeSrc":"14247:6:51","nodeType":"YulIdentifier","src":"14247:6:51"}],"functionName":{"name":"lt","nativeSrc":"14232:2:51","nodeType":"YulIdentifier","src":"14232:2:51"},"nativeSrc":"14232:22:51","nodeType":"YulFunctionCall","src":"14232:22:51"}],"functionName":{"name":"or","nativeSrc":"14193:2:51","nodeType":"YulIdentifier","src":"14193:2:51"},"nativeSrc":"14193:62:51","nodeType":"YulFunctionCall","src":"14193:62:51"},"nativeSrc":"14190:88:51","nodeType":"YulIf","src":"14190:88:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14294:2:51","nodeType":"YulLiteral","src":"14294:2:51","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"14298:10:51","nodeType":"YulIdentifier","src":"14298:10:51"}],"functionName":{"name":"mstore","nativeSrc":"14287:6:51","nodeType":"YulIdentifier","src":"14287:6:51"},"nativeSrc":"14287:22:51","nodeType":"YulFunctionCall","src":"14287:22:51"},"nativeSrc":"14287:22:51","nodeType":"YulExpressionStatement","src":"14287:22:51"}]},"name":"finalize_allocation_6050","nativeSrc":"14090:225:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nativeSrc":"14124:6:51","nodeType":"YulTypedName","src":"14124:6:51","type":""}],"src":"14090:225:51"},{"body":{"nativeSrc":"14366:177:51","nodeType":"YulBlock","src":"14366:177:51","statements":[{"nativeSrc":"14376:33:51","nodeType":"YulVariableDeclaration","src":"14376:33:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"14398:6:51","nodeType":"YulIdentifier","src":"14398:6:51"},{"kind":"number","nativeSrc":"14406:2:51","nodeType":"YulLiteral","src":"14406:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14394:3:51","nodeType":"YulIdentifier","src":"14394:3:51"},"nativeSrc":"14394:15:51","nodeType":"YulFunctionCall","src":"14394:15:51"},"variables":[{"name":"newFreePtr","nativeSrc":"14380:10:51","nodeType":"YulTypedName","src":"14380:10:51","type":""}]},{"body":{"nativeSrc":"14484:22:51","nodeType":"YulBlock","src":"14484:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"14486:16:51","nodeType":"YulIdentifier","src":"14486:16:51"},"nativeSrc":"14486:18:51","nodeType":"YulFunctionCall","src":"14486:18:51"},"nativeSrc":"14486:18:51","nodeType":"YulExpressionStatement","src":"14486:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"14427:10:51","nodeType":"YulIdentifier","src":"14427:10:51"},{"kind":"number","nativeSrc":"14439:18:51","nodeType":"YulLiteral","src":"14439:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"14424:2:51","nodeType":"YulIdentifier","src":"14424:2:51"},"nativeSrc":"14424:34:51","nodeType":"YulFunctionCall","src":"14424:34:51"},{"arguments":[{"name":"newFreePtr","nativeSrc":"14463:10:51","nodeType":"YulIdentifier","src":"14463:10:51"},{"name":"memPtr","nativeSrc":"14475:6:51","nodeType":"YulIdentifier","src":"14475:6:51"}],"functionName":{"name":"lt","nativeSrc":"14460:2:51","nodeType":"YulIdentifier","src":"14460:2:51"},"nativeSrc":"14460:22:51","nodeType":"YulFunctionCall","src":"14460:22:51"}],"functionName":{"name":"or","nativeSrc":"14421:2:51","nodeType":"YulIdentifier","src":"14421:2:51"},"nativeSrc":"14421:62:51","nodeType":"YulFunctionCall","src":"14421:62:51"},"nativeSrc":"14418:88:51","nodeType":"YulIf","src":"14418:88:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14522:2:51","nodeType":"YulLiteral","src":"14522:2:51","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"14526:10:51","nodeType":"YulIdentifier","src":"14526:10:51"}],"functionName":{"name":"mstore","nativeSrc":"14515:6:51","nodeType":"YulIdentifier","src":"14515:6:51"},"nativeSrc":"14515:22:51","nodeType":"YulFunctionCall","src":"14515:22:51"},"nativeSrc":"14515:22:51","nodeType":"YulExpressionStatement","src":"14515:22:51"}]},"name":"finalize_allocation_6051","nativeSrc":"14320:223:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nativeSrc":"14354:6:51","nodeType":"YulTypedName","src":"14354:6:51","type":""}],"src":"14320:223:51"},{"body":{"nativeSrc":"14594:179:51","nodeType":"YulBlock","src":"14594:179:51","statements":[{"nativeSrc":"14604:35:51","nodeType":"YulVariableDeclaration","src":"14604:35:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"14626:6:51","nodeType":"YulIdentifier","src":"14626:6:51"},{"kind":"number","nativeSrc":"14634:4:51","nodeType":"YulLiteral","src":"14634:4:51","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"14622:3:51","nodeType":"YulIdentifier","src":"14622:3:51"},"nativeSrc":"14622:17:51","nodeType":"YulFunctionCall","src":"14622:17:51"},"variables":[{"name":"newFreePtr","nativeSrc":"14608:10:51","nodeType":"YulTypedName","src":"14608:10:51","type":""}]},{"body":{"nativeSrc":"14714:22:51","nodeType":"YulBlock","src":"14714:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"14716:16:51","nodeType":"YulIdentifier","src":"14716:16:51"},"nativeSrc":"14716:18:51","nodeType":"YulFunctionCall","src":"14716:18:51"},"nativeSrc":"14716:18:51","nodeType":"YulExpressionStatement","src":"14716:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"14657:10:51","nodeType":"YulIdentifier","src":"14657:10:51"},{"kind":"number","nativeSrc":"14669:18:51","nodeType":"YulLiteral","src":"14669:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"14654:2:51","nodeType":"YulIdentifier","src":"14654:2:51"},"nativeSrc":"14654:34:51","nodeType":"YulFunctionCall","src":"14654:34:51"},{"arguments":[{"name":"newFreePtr","nativeSrc":"14693:10:51","nodeType":"YulIdentifier","src":"14693:10:51"},{"name":"memPtr","nativeSrc":"14705:6:51","nodeType":"YulIdentifier","src":"14705:6:51"}],"functionName":{"name":"lt","nativeSrc":"14690:2:51","nodeType":"YulIdentifier","src":"14690:2:51"},"nativeSrc":"14690:22:51","nodeType":"YulFunctionCall","src":"14690:22:51"}],"functionName":{"name":"or","nativeSrc":"14651:2:51","nodeType":"YulIdentifier","src":"14651:2:51"},"nativeSrc":"14651:62:51","nodeType":"YulFunctionCall","src":"14651:62:51"},"nativeSrc":"14648:88:51","nodeType":"YulIf","src":"14648:88:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14752:2:51","nodeType":"YulLiteral","src":"14752:2:51","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"14756:10:51","nodeType":"YulIdentifier","src":"14756:10:51"}],"functionName":{"name":"mstore","nativeSrc":"14745:6:51","nodeType":"YulIdentifier","src":"14745:6:51"},"nativeSrc":"14745:22:51","nodeType":"YulFunctionCall","src":"14745:22:51"},"nativeSrc":"14745:22:51","nodeType":"YulExpressionStatement","src":"14745:22:51"}]},"name":"finalize_allocation_6053","nativeSrc":"14548:225:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nativeSrc":"14582:6:51","nodeType":"YulTypedName","src":"14582:6:51","type":""}],"src":"14548:225:51"},{"body":{"nativeSrc":"14825:202:51","nodeType":"YulBlock","src":"14825:202:51","statements":[{"nativeSrc":"14835:58:51","nodeType":"YulVariableDeclaration","src":"14835:58:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"14857:6:51","nodeType":"YulIdentifier","src":"14857:6:51"},{"arguments":[{"arguments":[{"name":"size","nativeSrc":"14873:4:51","nodeType":"YulIdentifier","src":"14873:4:51"},{"kind":"number","nativeSrc":"14879:2:51","nodeType":"YulLiteral","src":"14879:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"14869:3:51","nodeType":"YulIdentifier","src":"14869:3:51"},"nativeSrc":"14869:13:51","nodeType":"YulFunctionCall","src":"14869:13:51"},{"arguments":[{"kind":"number","nativeSrc":"14888:2:51","nodeType":"YulLiteral","src":"14888:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"14884:3:51","nodeType":"YulIdentifier","src":"14884:3:51"},"nativeSrc":"14884:7:51","nodeType":"YulFunctionCall","src":"14884:7:51"}],"functionName":{"name":"and","nativeSrc":"14865:3:51","nodeType":"YulIdentifier","src":"14865:3:51"},"nativeSrc":"14865:27:51","nodeType":"YulFunctionCall","src":"14865:27:51"}],"functionName":{"name":"add","nativeSrc":"14853:3:51","nodeType":"YulIdentifier","src":"14853:3:51"},"nativeSrc":"14853:40:51","nodeType":"YulFunctionCall","src":"14853:40:51"},"variables":[{"name":"newFreePtr","nativeSrc":"14839:10:51","nodeType":"YulTypedName","src":"14839:10:51","type":""}]},{"body":{"nativeSrc":"14968:22:51","nodeType":"YulBlock","src":"14968:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"14970:16:51","nodeType":"YulIdentifier","src":"14970:16:51"},"nativeSrc":"14970:18:51","nodeType":"YulFunctionCall","src":"14970:18:51"},"nativeSrc":"14970:18:51","nodeType":"YulExpressionStatement","src":"14970:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"14911:10:51","nodeType":"YulIdentifier","src":"14911:10:51"},{"kind":"number","nativeSrc":"14923:18:51","nodeType":"YulLiteral","src":"14923:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"14908:2:51","nodeType":"YulIdentifier","src":"14908:2:51"},"nativeSrc":"14908:34:51","nodeType":"YulFunctionCall","src":"14908:34:51"},{"arguments":[{"name":"newFreePtr","nativeSrc":"14947:10:51","nodeType":"YulIdentifier","src":"14947:10:51"},{"name":"memPtr","nativeSrc":"14959:6:51","nodeType":"YulIdentifier","src":"14959:6:51"}],"functionName":{"name":"lt","nativeSrc":"14944:2:51","nodeType":"YulIdentifier","src":"14944:2:51"},"nativeSrc":"14944:22:51","nodeType":"YulFunctionCall","src":"14944:22:51"}],"functionName":{"name":"or","nativeSrc":"14905:2:51","nodeType":"YulIdentifier","src":"14905:2:51"},"nativeSrc":"14905:62:51","nodeType":"YulFunctionCall","src":"14905:62:51"},"nativeSrc":"14902:88:51","nodeType":"YulIf","src":"14902:88:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"15006:2:51","nodeType":"YulLiteral","src":"15006:2:51","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"15010:10:51","nodeType":"YulIdentifier","src":"15010:10:51"}],"functionName":{"name":"mstore","nativeSrc":"14999:6:51","nodeType":"YulIdentifier","src":"14999:6:51"},"nativeSrc":"14999:22:51","nodeType":"YulFunctionCall","src":"14999:22:51"},"nativeSrc":"14999:22:51","nodeType":"YulExpressionStatement","src":"14999:22:51"}]},"name":"finalize_allocation","nativeSrc":"14778:249:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nativeSrc":"14807:6:51","nodeType":"YulTypedName","src":"14807:6:51","type":""},{"name":"size","nativeSrc":"14815:4:51","nodeType":"YulTypedName","src":"14815:4:51","type":""}],"src":"14778:249:51"},{"body":{"nativeSrc":"15090:129:51","nodeType":"YulBlock","src":"15090:129:51","statements":[{"body":{"nativeSrc":"15134:22:51","nodeType":"YulBlock","src":"15134:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"15136:16:51","nodeType":"YulIdentifier","src":"15136:16:51"},"nativeSrc":"15136:18:51","nodeType":"YulFunctionCall","src":"15136:18:51"},"nativeSrc":"15136:18:51","nodeType":"YulExpressionStatement","src":"15136:18:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"15106:6:51","nodeType":"YulIdentifier","src":"15106:6:51"},{"kind":"number","nativeSrc":"15114:18:51","nodeType":"YulLiteral","src":"15114:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"15103:2:51","nodeType":"YulIdentifier","src":"15103:2:51"},"nativeSrc":"15103:30:51","nodeType":"YulFunctionCall","src":"15103:30:51"},"nativeSrc":"15100:56:51","nodeType":"YulIf","src":"15100:56:51"},{"nativeSrc":"15165:48:51","nodeType":"YulAssignment","src":"15165:48:51","value":{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"15185:6:51","nodeType":"YulIdentifier","src":"15185:6:51"},{"kind":"number","nativeSrc":"15193:2:51","nodeType":"YulLiteral","src":"15193:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"15181:3:51","nodeType":"YulIdentifier","src":"15181:3:51"},"nativeSrc":"15181:15:51","nodeType":"YulFunctionCall","src":"15181:15:51"},{"arguments":[{"kind":"number","nativeSrc":"15202:2:51","nodeType":"YulLiteral","src":"15202:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"15198:3:51","nodeType":"YulIdentifier","src":"15198:3:51"},"nativeSrc":"15198:7:51","nodeType":"YulFunctionCall","src":"15198:7:51"}],"functionName":{"name":"and","nativeSrc":"15177:3:51","nodeType":"YulIdentifier","src":"15177:3:51"},"nativeSrc":"15177:29:51","nodeType":"YulFunctionCall","src":"15177:29:51"},{"kind":"number","nativeSrc":"15208:4:51","nodeType":"YulLiteral","src":"15208:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15173:3:51","nodeType":"YulIdentifier","src":"15173:3:51"},"nativeSrc":"15173:40:51","nodeType":"YulFunctionCall","src":"15173:40:51"},"variableNames":[{"name":"size","nativeSrc":"15165:4:51","nodeType":"YulIdentifier","src":"15165:4:51"}]}]},"name":"array_allocation_size_string","nativeSrc":"15032:187:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"length","nativeSrc":"15070:6:51","nodeType":"YulTypedName","src":"15070:6:51","type":""}],"returnVariables":[{"name":"size","nativeSrc":"15081:4:51","nodeType":"YulTypedName","src":"15081:4:51","type":""}],"src":"15032:187:51"},{"body":{"nativeSrc":"15329:1541:51","nodeType":"YulBlock","src":"15329:1541:51","statements":[{"body":{"nativeSrc":"15375:16:51","nodeType":"YulBlock","src":"15375:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15384:1:51","nodeType":"YulLiteral","src":"15384:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"15387:1:51","nodeType":"YulLiteral","src":"15387:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15377:6:51","nodeType":"YulIdentifier","src":"15377:6:51"},"nativeSrc":"15377:12:51","nodeType":"YulFunctionCall","src":"15377:12:51"},"nativeSrc":"15377:12:51","nodeType":"YulExpressionStatement","src":"15377:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15350:7:51","nodeType":"YulIdentifier","src":"15350:7:51"},{"name":"headStart","nativeSrc":"15359:9:51","nodeType":"YulIdentifier","src":"15359:9:51"}],"functionName":{"name":"sub","nativeSrc":"15346:3:51","nodeType":"YulIdentifier","src":"15346:3:51"},"nativeSrc":"15346:23:51","nodeType":"YulFunctionCall","src":"15346:23:51"},{"kind":"number","nativeSrc":"15371:2:51","nodeType":"YulLiteral","src":"15371:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"15342:3:51","nodeType":"YulIdentifier","src":"15342:3:51"},"nativeSrc":"15342:32:51","nodeType":"YulFunctionCall","src":"15342:32:51"},"nativeSrc":"15339:52:51","nodeType":"YulIf","src":"15339:52:51"},{"nativeSrc":"15400:37:51","nodeType":"YulVariableDeclaration","src":"15400:37:51","value":{"arguments":[{"name":"headStart","nativeSrc":"15427:9:51","nodeType":"YulIdentifier","src":"15427:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"15414:12:51","nodeType":"YulIdentifier","src":"15414:12:51"},"nativeSrc":"15414:23:51","nodeType":"YulFunctionCall","src":"15414:23:51"},"variables":[{"name":"offset","nativeSrc":"15404:6:51","nodeType":"YulTypedName","src":"15404:6:51","type":""}]},{"body":{"nativeSrc":"15480:16:51","nodeType":"YulBlock","src":"15480:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15489:1:51","nodeType":"YulLiteral","src":"15489:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"15492:1:51","nodeType":"YulLiteral","src":"15492:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15482:6:51","nodeType":"YulIdentifier","src":"15482:6:51"},"nativeSrc":"15482:12:51","nodeType":"YulFunctionCall","src":"15482:12:51"},"nativeSrc":"15482:12:51","nodeType":"YulExpressionStatement","src":"15482:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"15452:6:51","nodeType":"YulIdentifier","src":"15452:6:51"},{"kind":"number","nativeSrc":"15460:18:51","nodeType":"YulLiteral","src":"15460:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"15449:2:51","nodeType":"YulIdentifier","src":"15449:2:51"},"nativeSrc":"15449:30:51","nodeType":"YulFunctionCall","src":"15449:30:51"},"nativeSrc":"15446:50:51","nodeType":"YulIf","src":"15446:50:51"},{"nativeSrc":"15505:32:51","nodeType":"YulVariableDeclaration","src":"15505:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"15519:9:51","nodeType":"YulIdentifier","src":"15519:9:51"},{"name":"offset","nativeSrc":"15530:6:51","nodeType":"YulIdentifier","src":"15530:6:51"}],"functionName":{"name":"add","nativeSrc":"15515:3:51","nodeType":"YulIdentifier","src":"15515:3:51"},"nativeSrc":"15515:22:51","nodeType":"YulFunctionCall","src":"15515:22:51"},"variables":[{"name":"_1","nativeSrc":"15509:2:51","nodeType":"YulTypedName","src":"15509:2:51","type":""}]},{"body":{"nativeSrc":"15585:16:51","nodeType":"YulBlock","src":"15585:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15594:1:51","nodeType":"YulLiteral","src":"15594:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"15597:1:51","nodeType":"YulLiteral","src":"15597:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15587:6:51","nodeType":"YulIdentifier","src":"15587:6:51"},"nativeSrc":"15587:12:51","nodeType":"YulFunctionCall","src":"15587:12:51"},"nativeSrc":"15587:12:51","nodeType":"YulExpressionStatement","src":"15587:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"15564:2:51","nodeType":"YulIdentifier","src":"15564:2:51"},{"kind":"number","nativeSrc":"15568:4:51","nodeType":"YulLiteral","src":"15568:4:51","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"15560:3:51","nodeType":"YulIdentifier","src":"15560:3:51"},"nativeSrc":"15560:13:51","nodeType":"YulFunctionCall","src":"15560:13:51"},{"name":"dataEnd","nativeSrc":"15575:7:51","nodeType":"YulIdentifier","src":"15575:7:51"}],"functionName":{"name":"slt","nativeSrc":"15556:3:51","nodeType":"YulIdentifier","src":"15556:3:51"},"nativeSrc":"15556:27:51","nodeType":"YulFunctionCall","src":"15556:27:51"}],"functionName":{"name":"iszero","nativeSrc":"15549:6:51","nodeType":"YulIdentifier","src":"15549:6:51"},"nativeSrc":"15549:35:51","nodeType":"YulFunctionCall","src":"15549:35:51"},"nativeSrc":"15546:55:51","nodeType":"YulIf","src":"15546:55:51"},{"nativeSrc":"15610:30:51","nodeType":"YulVariableDeclaration","src":"15610:30:51","value":{"arguments":[{"name":"_1","nativeSrc":"15637:2:51","nodeType":"YulIdentifier","src":"15637:2:51"}],"functionName":{"name":"calldataload","nativeSrc":"15624:12:51","nodeType":"YulIdentifier","src":"15624:12:51"},"nativeSrc":"15624:16:51","nodeType":"YulFunctionCall","src":"15624:16:51"},"variables":[{"name":"length","nativeSrc":"15614:6:51","nodeType":"YulTypedName","src":"15614:6:51","type":""}]},{"body":{"nativeSrc":"15683:22:51","nodeType":"YulBlock","src":"15683:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"15685:16:51","nodeType":"YulIdentifier","src":"15685:16:51"},"nativeSrc":"15685:18:51","nodeType":"YulFunctionCall","src":"15685:18:51"},"nativeSrc":"15685:18:51","nodeType":"YulExpressionStatement","src":"15685:18:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"15655:6:51","nodeType":"YulIdentifier","src":"15655:6:51"},{"kind":"number","nativeSrc":"15663:18:51","nodeType":"YulLiteral","src":"15663:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"15652:2:51","nodeType":"YulIdentifier","src":"15652:2:51"},"nativeSrc":"15652:30:51","nodeType":"YulFunctionCall","src":"15652:30:51"},"nativeSrc":"15649:56:51","nodeType":"YulIf","src":"15649:56:51"},{"nativeSrc":"15714:24:51","nodeType":"YulVariableDeclaration","src":"15714:24:51","value":{"arguments":[{"kind":"number","nativeSrc":"15728:1:51","nodeType":"YulLiteral","src":"15728:1:51","type":"","value":"5"},{"name":"length","nativeSrc":"15731:6:51","nodeType":"YulIdentifier","src":"15731:6:51"}],"functionName":{"name":"shl","nativeSrc":"15724:3:51","nodeType":"YulIdentifier","src":"15724:3:51"},"nativeSrc":"15724:14:51","nodeType":"YulFunctionCall","src":"15724:14:51"},"variables":[{"name":"_2","nativeSrc":"15718:2:51","nodeType":"YulTypedName","src":"15718:2:51","type":""}]},{"nativeSrc":"15747:23:51","nodeType":"YulVariableDeclaration","src":"15747:23:51","value":{"arguments":[{"kind":"number","nativeSrc":"15767:2:51","nodeType":"YulLiteral","src":"15767:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"15761:5:51","nodeType":"YulIdentifier","src":"15761:5:51"},"nativeSrc":"15761:9:51","nodeType":"YulFunctionCall","src":"15761:9:51"},"variables":[{"name":"memPtr","nativeSrc":"15751:6:51","nodeType":"YulTypedName","src":"15751:6:51","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"15799:6:51","nodeType":"YulIdentifier","src":"15799:6:51"},{"arguments":[{"name":"_2","nativeSrc":"15811:2:51","nodeType":"YulIdentifier","src":"15811:2:51"},{"kind":"number","nativeSrc":"15815:2:51","nodeType":"YulLiteral","src":"15815:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15807:3:51","nodeType":"YulIdentifier","src":"15807:3:51"},"nativeSrc":"15807:11:51","nodeType":"YulFunctionCall","src":"15807:11:51"}],"functionName":{"name":"finalize_allocation","nativeSrc":"15779:19:51","nodeType":"YulIdentifier","src":"15779:19:51"},"nativeSrc":"15779:40:51","nodeType":"YulFunctionCall","src":"15779:40:51"},"nativeSrc":"15779:40:51","nodeType":"YulExpressionStatement","src":"15779:40:51"},{"nativeSrc":"15828:17:51","nodeType":"YulVariableDeclaration","src":"15828:17:51","value":{"name":"memPtr","nativeSrc":"15839:6:51","nodeType":"YulIdentifier","src":"15839:6:51"},"variables":[{"name":"dst","nativeSrc":"15832:3:51","nodeType":"YulTypedName","src":"15832:3:51","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"15861:6:51","nodeType":"YulIdentifier","src":"15861:6:51"},{"name":"length","nativeSrc":"15869:6:51","nodeType":"YulIdentifier","src":"15869:6:51"}],"functionName":{"name":"mstore","nativeSrc":"15854:6:51","nodeType":"YulIdentifier","src":"15854:6:51"},"nativeSrc":"15854:22:51","nodeType":"YulFunctionCall","src":"15854:22:51"},"nativeSrc":"15854:22:51","nodeType":"YulExpressionStatement","src":"15854:22:51"},{"nativeSrc":"15885:22:51","nodeType":"YulAssignment","src":"15885:22:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"15896:6:51","nodeType":"YulIdentifier","src":"15896:6:51"},{"kind":"number","nativeSrc":"15904:2:51","nodeType":"YulLiteral","src":"15904:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15892:3:51","nodeType":"YulIdentifier","src":"15892:3:51"},"nativeSrc":"15892:15:51","nodeType":"YulFunctionCall","src":"15892:15:51"},"variableNames":[{"name":"dst","nativeSrc":"15885:3:51","nodeType":"YulIdentifier","src":"15885:3:51"}]},{"nativeSrc":"15916:34:51","nodeType":"YulVariableDeclaration","src":"15916:34:51","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"15938:2:51","nodeType":"YulIdentifier","src":"15938:2:51"},{"name":"_2","nativeSrc":"15942:2:51","nodeType":"YulIdentifier","src":"15942:2:51"}],"functionName":{"name":"add","nativeSrc":"15934:3:51","nodeType":"YulIdentifier","src":"15934:3:51"},"nativeSrc":"15934:11:51","nodeType":"YulFunctionCall","src":"15934:11:51"},{"kind":"number","nativeSrc":"15947:2:51","nodeType":"YulLiteral","src":"15947:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15930:3:51","nodeType":"YulIdentifier","src":"15930:3:51"},"nativeSrc":"15930:20:51","nodeType":"YulFunctionCall","src":"15930:20:51"},"variables":[{"name":"srcEnd","nativeSrc":"15920:6:51","nodeType":"YulTypedName","src":"15920:6:51","type":""}]},{"body":{"nativeSrc":"15982:16:51","nodeType":"YulBlock","src":"15982:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15991:1:51","nodeType":"YulLiteral","src":"15991:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"15994:1:51","nodeType":"YulLiteral","src":"15994:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15984:6:51","nodeType":"YulIdentifier","src":"15984:6:51"},"nativeSrc":"15984:12:51","nodeType":"YulFunctionCall","src":"15984:12:51"},"nativeSrc":"15984:12:51","nodeType":"YulExpressionStatement","src":"15984:12:51"}]},"condition":{"arguments":[{"name":"srcEnd","nativeSrc":"15965:6:51","nodeType":"YulIdentifier","src":"15965:6:51"},{"name":"dataEnd","nativeSrc":"15973:7:51","nodeType":"YulIdentifier","src":"15973:7:51"}],"functionName":{"name":"gt","nativeSrc":"15962:2:51","nodeType":"YulIdentifier","src":"15962:2:51"},"nativeSrc":"15962:19:51","nodeType":"YulFunctionCall","src":"15962:19:51"},"nativeSrc":"15959:39:51","nodeType":"YulIf","src":"15959:39:51"},{"nativeSrc":"16007:22:51","nodeType":"YulVariableDeclaration","src":"16007:22:51","value":{"arguments":[{"name":"_1","nativeSrc":"16022:2:51","nodeType":"YulIdentifier","src":"16022:2:51"},{"kind":"number","nativeSrc":"16026:2:51","nodeType":"YulLiteral","src":"16026:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16018:3:51","nodeType":"YulIdentifier","src":"16018:3:51"},"nativeSrc":"16018:11:51","nodeType":"YulFunctionCall","src":"16018:11:51"},"variables":[{"name":"src","nativeSrc":"16011:3:51","nodeType":"YulTypedName","src":"16011:3:51","type":""}]},{"body":{"nativeSrc":"16094:745:51","nodeType":"YulBlock","src":"16094:745:51","statements":[{"nativeSrc":"16108:36:51","nodeType":"YulVariableDeclaration","src":"16108:36:51","value":{"arguments":[{"name":"src","nativeSrc":"16140:3:51","nodeType":"YulIdentifier","src":"16140:3:51"}],"functionName":{"name":"calldataload","nativeSrc":"16127:12:51","nodeType":"YulIdentifier","src":"16127:12:51"},"nativeSrc":"16127:17:51","nodeType":"YulFunctionCall","src":"16127:17:51"},"variables":[{"name":"innerOffset","nativeSrc":"16112:11:51","nodeType":"YulTypedName","src":"16112:11:51","type":""}]},{"body":{"nativeSrc":"16196:16:51","nodeType":"YulBlock","src":"16196:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16205:1:51","nodeType":"YulLiteral","src":"16205:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"16208:1:51","nodeType":"YulLiteral","src":"16208:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16198:6:51","nodeType":"YulIdentifier","src":"16198:6:51"},"nativeSrc":"16198:12:51","nodeType":"YulFunctionCall","src":"16198:12:51"},"nativeSrc":"16198:12:51","nodeType":"YulExpressionStatement","src":"16198:12:51"}]},"condition":{"arguments":[{"name":"innerOffset","nativeSrc":"16163:11:51","nodeType":"YulIdentifier","src":"16163:11:51"},{"kind":"number","nativeSrc":"16176:18:51","nodeType":"YulLiteral","src":"16176:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"16160:2:51","nodeType":"YulIdentifier","src":"16160:2:51"},"nativeSrc":"16160:35:51","nodeType":"YulFunctionCall","src":"16160:35:51"},"nativeSrc":"16157:55:51","nodeType":"YulIf","src":"16157:55:51"},{"nativeSrc":"16225:30:51","nodeType":"YulVariableDeclaration","src":"16225:30:51","value":{"arguments":[{"name":"_1","nativeSrc":"16239:2:51","nodeType":"YulIdentifier","src":"16239:2:51"},{"name":"innerOffset","nativeSrc":"16243:11:51","nodeType":"YulIdentifier","src":"16243:11:51"}],"functionName":{"name":"add","nativeSrc":"16235:3:51","nodeType":"YulIdentifier","src":"16235:3:51"},"nativeSrc":"16235:20:51","nodeType":"YulFunctionCall","src":"16235:20:51"},"variables":[{"name":"_3","nativeSrc":"16229:2:51","nodeType":"YulTypedName","src":"16229:2:51","type":""}]},{"body":{"nativeSrc":"16305:16:51","nodeType":"YulBlock","src":"16305:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16314:1:51","nodeType":"YulLiteral","src":"16314:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"16317:1:51","nodeType":"YulLiteral","src":"16317:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16307:6:51","nodeType":"YulIdentifier","src":"16307:6:51"},"nativeSrc":"16307:12:51","nodeType":"YulFunctionCall","src":"16307:12:51"},"nativeSrc":"16307:12:51","nodeType":"YulExpressionStatement","src":"16307:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nativeSrc":"16286:2:51","nodeType":"YulIdentifier","src":"16286:2:51"},{"kind":"number","nativeSrc":"16290:2:51","nodeType":"YulLiteral","src":"16290:2:51","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"16282:3:51","nodeType":"YulIdentifier","src":"16282:3:51"},"nativeSrc":"16282:11:51","nodeType":"YulFunctionCall","src":"16282:11:51"},{"name":"dataEnd","nativeSrc":"16295:7:51","nodeType":"YulIdentifier","src":"16295:7:51"}],"functionName":{"name":"slt","nativeSrc":"16278:3:51","nodeType":"YulIdentifier","src":"16278:3:51"},"nativeSrc":"16278:25:51","nodeType":"YulFunctionCall","src":"16278:25:51"}],"functionName":{"name":"iszero","nativeSrc":"16271:6:51","nodeType":"YulIdentifier","src":"16271:6:51"},"nativeSrc":"16271:33:51","nodeType":"YulFunctionCall","src":"16271:33:51"},"nativeSrc":"16268:53:51","nodeType":"YulIf","src":"16268:53:51"},{"nativeSrc":"16334:41:51","nodeType":"YulVariableDeclaration","src":"16334:41:51","value":{"arguments":[{"arguments":[{"name":"_3","nativeSrc":"16367:2:51","nodeType":"YulIdentifier","src":"16367:2:51"},{"kind":"number","nativeSrc":"16371:2:51","nodeType":"YulLiteral","src":"16371:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16363:3:51","nodeType":"YulIdentifier","src":"16363:3:51"},"nativeSrc":"16363:11:51","nodeType":"YulFunctionCall","src":"16363:11:51"}],"functionName":{"name":"calldataload","nativeSrc":"16350:12:51","nodeType":"YulIdentifier","src":"16350:12:51"},"nativeSrc":"16350:25:51","nodeType":"YulFunctionCall","src":"16350:25:51"},"variables":[{"name":"length_1","nativeSrc":"16338:8:51","nodeType":"YulTypedName","src":"16338:8:51","type":""}]},{"nativeSrc":"16388:48:51","nodeType":"YulVariableDeclaration","src":"16388:48:51","value":{"arguments":[{"name":"length_1","nativeSrc":"16427:8:51","nodeType":"YulIdentifier","src":"16427:8:51"}],"functionName":{"name":"array_allocation_size_string","nativeSrc":"16398:28:51","nodeType":"YulIdentifier","src":"16398:28:51"},"nativeSrc":"16398:38:51","nodeType":"YulFunctionCall","src":"16398:38:51"},"variables":[{"name":"_4","nativeSrc":"16392:2:51","nodeType":"YulTypedName","src":"16392:2:51","type":""}]},{"nativeSrc":"16449:25:51","nodeType":"YulVariableDeclaration","src":"16449:25:51","value":{"arguments":[{"kind":"number","nativeSrc":"16471:2:51","nodeType":"YulLiteral","src":"16471:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"16465:5:51","nodeType":"YulIdentifier","src":"16465:5:51"},"nativeSrc":"16465:9:51","nodeType":"YulFunctionCall","src":"16465:9:51"},"variables":[{"name":"memPtr_1","nativeSrc":"16453:8:51","nodeType":"YulTypedName","src":"16453:8:51","type":""}]},{"expression":{"arguments":[{"name":"memPtr_1","nativeSrc":"16507:8:51","nodeType":"YulIdentifier","src":"16507:8:51"},{"name":"_4","nativeSrc":"16517:2:51","nodeType":"YulIdentifier","src":"16517:2:51"}],"functionName":{"name":"finalize_allocation","nativeSrc":"16487:19:51","nodeType":"YulIdentifier","src":"16487:19:51"},"nativeSrc":"16487:33:51","nodeType":"YulFunctionCall","src":"16487:33:51"},"nativeSrc":"16487:33:51","nodeType":"YulExpressionStatement","src":"16487:33:51"},{"expression":{"arguments":[{"name":"memPtr_1","nativeSrc":"16540:8:51","nodeType":"YulIdentifier","src":"16540:8:51"},{"name":"length_1","nativeSrc":"16550:8:51","nodeType":"YulIdentifier","src":"16550:8:51"}],"functionName":{"name":"mstore","nativeSrc":"16533:6:51","nodeType":"YulIdentifier","src":"16533:6:51"},"nativeSrc":"16533:26:51","nodeType":"YulFunctionCall","src":"16533:26:51"},"nativeSrc":"16533:26:51","nodeType":"YulExpressionStatement","src":"16533:26:51"},{"body":{"nativeSrc":"16624:16:51","nodeType":"YulBlock","src":"16624:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16633:1:51","nodeType":"YulLiteral","src":"16633:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"16636:1:51","nodeType":"YulLiteral","src":"16636:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16626:6:51","nodeType":"YulIdentifier","src":"16626:6:51"},"nativeSrc":"16626:12:51","nodeType":"YulFunctionCall","src":"16626:12:51"},"nativeSrc":"16626:12:51","nodeType":"YulExpressionStatement","src":"16626:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nativeSrc":"16590:2:51","nodeType":"YulIdentifier","src":"16590:2:51"},{"name":"length_1","nativeSrc":"16594:8:51","nodeType":"YulIdentifier","src":"16594:8:51"}],"functionName":{"name":"add","nativeSrc":"16586:3:51","nodeType":"YulIdentifier","src":"16586:3:51"},"nativeSrc":"16586:17:51","nodeType":"YulFunctionCall","src":"16586:17:51"},{"kind":"number","nativeSrc":"16605:2:51","nodeType":"YulLiteral","src":"16605:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16582:3:51","nodeType":"YulIdentifier","src":"16582:3:51"},"nativeSrc":"16582:26:51","nodeType":"YulFunctionCall","src":"16582:26:51"},{"kind":"number","nativeSrc":"16610:2:51","nodeType":"YulLiteral","src":"16610:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16578:3:51","nodeType":"YulIdentifier","src":"16578:3:51"},"nativeSrc":"16578:35:51","nodeType":"YulFunctionCall","src":"16578:35:51"},{"name":"dataEnd","nativeSrc":"16615:7:51","nodeType":"YulIdentifier","src":"16615:7:51"}],"functionName":{"name":"gt","nativeSrc":"16575:2:51","nodeType":"YulIdentifier","src":"16575:2:51"},"nativeSrc":"16575:48:51","nodeType":"YulFunctionCall","src":"16575:48:51"},"nativeSrc":"16572:68:51","nodeType":"YulIf","src":"16572:68:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr_1","nativeSrc":"16670:8:51","nodeType":"YulIdentifier","src":"16670:8:51"},{"kind":"number","nativeSrc":"16680:2:51","nodeType":"YulLiteral","src":"16680:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16666:3:51","nodeType":"YulIdentifier","src":"16666:3:51"},"nativeSrc":"16666:17:51","nodeType":"YulFunctionCall","src":"16666:17:51"},{"arguments":[{"name":"_3","nativeSrc":"16689:2:51","nodeType":"YulIdentifier","src":"16689:2:51"},{"kind":"number","nativeSrc":"16693:2:51","nodeType":"YulLiteral","src":"16693:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16685:3:51","nodeType":"YulIdentifier","src":"16685:3:51"},"nativeSrc":"16685:11:51","nodeType":"YulFunctionCall","src":"16685:11:51"},{"name":"length_1","nativeSrc":"16698:8:51","nodeType":"YulIdentifier","src":"16698:8:51"}],"functionName":{"name":"calldatacopy","nativeSrc":"16653:12:51","nodeType":"YulIdentifier","src":"16653:12:51"},"nativeSrc":"16653:54:51","nodeType":"YulFunctionCall","src":"16653:54:51"},"nativeSrc":"16653:54:51","nodeType":"YulExpressionStatement","src":"16653:54:51"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr_1","nativeSrc":"16735:8:51","nodeType":"YulIdentifier","src":"16735:8:51"},{"name":"length_1","nativeSrc":"16745:8:51","nodeType":"YulIdentifier","src":"16745:8:51"}],"functionName":{"name":"add","nativeSrc":"16731:3:51","nodeType":"YulIdentifier","src":"16731:3:51"},"nativeSrc":"16731:23:51","nodeType":"YulFunctionCall","src":"16731:23:51"},{"kind":"number","nativeSrc":"16756:2:51","nodeType":"YulLiteral","src":"16756:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16727:3:51","nodeType":"YulIdentifier","src":"16727:3:51"},"nativeSrc":"16727:32:51","nodeType":"YulFunctionCall","src":"16727:32:51"},{"kind":"number","nativeSrc":"16761:1:51","nodeType":"YulLiteral","src":"16761:1:51","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"16720:6:51","nodeType":"YulIdentifier","src":"16720:6:51"},"nativeSrc":"16720:43:51","nodeType":"YulFunctionCall","src":"16720:43:51"},"nativeSrc":"16720:43:51","nodeType":"YulExpressionStatement","src":"16720:43:51"},{"expression":{"arguments":[{"name":"dst","nativeSrc":"16783:3:51","nodeType":"YulIdentifier","src":"16783:3:51"},{"name":"memPtr_1","nativeSrc":"16788:8:51","nodeType":"YulIdentifier","src":"16788:8:51"}],"functionName":{"name":"mstore","nativeSrc":"16776:6:51","nodeType":"YulIdentifier","src":"16776:6:51"},"nativeSrc":"16776:21:51","nodeType":"YulFunctionCall","src":"16776:21:51"},"nativeSrc":"16776:21:51","nodeType":"YulExpressionStatement","src":"16776:21:51"},{"nativeSrc":"16810:19:51","nodeType":"YulAssignment","src":"16810:19:51","value":{"arguments":[{"name":"dst","nativeSrc":"16821:3:51","nodeType":"YulIdentifier","src":"16821:3:51"},{"kind":"number","nativeSrc":"16826:2:51","nodeType":"YulLiteral","src":"16826:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16817:3:51","nodeType":"YulIdentifier","src":"16817:3:51"},"nativeSrc":"16817:12:51","nodeType":"YulFunctionCall","src":"16817:12:51"},"variableNames":[{"name":"dst","nativeSrc":"16810:3:51","nodeType":"YulIdentifier","src":"16810:3:51"}]}]},"condition":{"arguments":[{"name":"src","nativeSrc":"16049:3:51","nodeType":"YulIdentifier","src":"16049:3:51"},{"name":"srcEnd","nativeSrc":"16054:6:51","nodeType":"YulIdentifier","src":"16054:6:51"}],"functionName":{"name":"lt","nativeSrc":"16046:2:51","nodeType":"YulIdentifier","src":"16046:2:51"},"nativeSrc":"16046:15:51","nodeType":"YulFunctionCall","src":"16046:15:51"},"nativeSrc":"16038:801:51","nodeType":"YulForLoop","post":{"nativeSrc":"16062:23:51","nodeType":"YulBlock","src":"16062:23:51","statements":[{"nativeSrc":"16064:19:51","nodeType":"YulAssignment","src":"16064:19:51","value":{"arguments":[{"name":"src","nativeSrc":"16075:3:51","nodeType":"YulIdentifier","src":"16075:3:51"},{"kind":"number","nativeSrc":"16080:2:51","nodeType":"YulLiteral","src":"16080:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16071:3:51","nodeType":"YulIdentifier","src":"16071:3:51"},"nativeSrc":"16071:12:51","nodeType":"YulFunctionCall","src":"16071:12:51"},"variableNames":[{"name":"src","nativeSrc":"16064:3:51","nodeType":"YulIdentifier","src":"16064:3:51"}]}]},"pre":{"nativeSrc":"16042:3:51","nodeType":"YulBlock","src":"16042:3:51","statements":[]},"src":"16038:801:51"},{"nativeSrc":"16848:16:51","nodeType":"YulAssignment","src":"16848:16:51","value":{"name":"memPtr","nativeSrc":"16858:6:51","nodeType":"YulIdentifier","src":"16858:6:51"},"variableNames":[{"name":"value0","nativeSrc":"16848:6:51","nodeType":"YulIdentifier","src":"16848:6:51"}]}]},"name":"abi_decode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr","nativeSrc":"15224:1646:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15295:9:51","nodeType":"YulTypedName","src":"15295:9:51","type":""},{"name":"dataEnd","nativeSrc":"15306:7:51","nodeType":"YulTypedName","src":"15306:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15318:6:51","nodeType":"YulTypedName","src":"15318:6:51","type":""}],"src":"15224:1646:51"},{"body":{"nativeSrc":"16982:438:51","nodeType":"YulBlock","src":"16982:438:51","statements":[{"body":{"nativeSrc":"17028:16:51","nodeType":"YulBlock","src":"17028:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17037:1:51","nodeType":"YulLiteral","src":"17037:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"17040:1:51","nodeType":"YulLiteral","src":"17040:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17030:6:51","nodeType":"YulIdentifier","src":"17030:6:51"},"nativeSrc":"17030:12:51","nodeType":"YulFunctionCall","src":"17030:12:51"},"nativeSrc":"17030:12:51","nodeType":"YulExpressionStatement","src":"17030:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"17003:7:51","nodeType":"YulIdentifier","src":"17003:7:51"},{"name":"headStart","nativeSrc":"17012:9:51","nodeType":"YulIdentifier","src":"17012:9:51"}],"functionName":{"name":"sub","nativeSrc":"16999:3:51","nodeType":"YulIdentifier","src":"16999:3:51"},"nativeSrc":"16999:23:51","nodeType":"YulFunctionCall","src":"16999:23:51"},{"kind":"number","nativeSrc":"17024:2:51","nodeType":"YulLiteral","src":"17024:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"16995:3:51","nodeType":"YulIdentifier","src":"16995:3:51"},"nativeSrc":"16995:32:51","nodeType":"YulFunctionCall","src":"16995:32:51"},"nativeSrc":"16992:52:51","nodeType":"YulIf","src":"16992:52:51"},{"nativeSrc":"17053:36:51","nodeType":"YulVariableDeclaration","src":"17053:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"17079:9:51","nodeType":"YulIdentifier","src":"17079:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"17066:12:51","nodeType":"YulIdentifier","src":"17066:12:51"},"nativeSrc":"17066:23:51","nodeType":"YulFunctionCall","src":"17066:23:51"},"variables":[{"name":"value","nativeSrc":"17057:5:51","nodeType":"YulTypedName","src":"17057:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"17123:5:51","nodeType":"YulIdentifier","src":"17123:5:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"17098:24:51","nodeType":"YulIdentifier","src":"17098:24:51"},"nativeSrc":"17098:31:51","nodeType":"YulFunctionCall","src":"17098:31:51"},"nativeSrc":"17098:31:51","nodeType":"YulExpressionStatement","src":"17098:31:51"},{"nativeSrc":"17138:15:51","nodeType":"YulAssignment","src":"17138:15:51","value":{"name":"value","nativeSrc":"17148:5:51","nodeType":"YulIdentifier","src":"17148:5:51"},"variableNames":[{"name":"value0","nativeSrc":"17138:6:51","nodeType":"YulIdentifier","src":"17138:6:51"}]},{"nativeSrc":"17162:46:51","nodeType":"YulVariableDeclaration","src":"17162:46:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17193:9:51","nodeType":"YulIdentifier","src":"17193:9:51"},{"kind":"number","nativeSrc":"17204:2:51","nodeType":"YulLiteral","src":"17204:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17189:3:51","nodeType":"YulIdentifier","src":"17189:3:51"},"nativeSrc":"17189:18:51","nodeType":"YulFunctionCall","src":"17189:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"17176:12:51","nodeType":"YulIdentifier","src":"17176:12:51"},"nativeSrc":"17176:32:51","nodeType":"YulFunctionCall","src":"17176:32:51"},"variables":[{"name":"offset","nativeSrc":"17166:6:51","nodeType":"YulTypedName","src":"17166:6:51","type":""}]},{"body":{"nativeSrc":"17251:16:51","nodeType":"YulBlock","src":"17251:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17260:1:51","nodeType":"YulLiteral","src":"17260:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"17263:1:51","nodeType":"YulLiteral","src":"17263:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17253:6:51","nodeType":"YulIdentifier","src":"17253:6:51"},"nativeSrc":"17253:12:51","nodeType":"YulFunctionCall","src":"17253:12:51"},"nativeSrc":"17253:12:51","nodeType":"YulExpressionStatement","src":"17253:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"17223:6:51","nodeType":"YulIdentifier","src":"17223:6:51"},{"kind":"number","nativeSrc":"17231:18:51","nodeType":"YulLiteral","src":"17231:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"17220:2:51","nodeType":"YulIdentifier","src":"17220:2:51"},"nativeSrc":"17220:30:51","nodeType":"YulFunctionCall","src":"17220:30:51"},"nativeSrc":"17217:50:51","nodeType":"YulIf","src":"17217:50:51"},{"nativeSrc":"17276:84:51","nodeType":"YulVariableDeclaration","src":"17276:84:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17332:9:51","nodeType":"YulIdentifier","src":"17332:9:51"},{"name":"offset","nativeSrc":"17343:6:51","nodeType":"YulIdentifier","src":"17343:6:51"}],"functionName":{"name":"add","nativeSrc":"17328:3:51","nodeType":"YulIdentifier","src":"17328:3:51"},"nativeSrc":"17328:22:51","nodeType":"YulFunctionCall","src":"17328:22:51"},{"name":"dataEnd","nativeSrc":"17352:7:51","nodeType":"YulIdentifier","src":"17352:7:51"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"17302:25:51","nodeType":"YulIdentifier","src":"17302:25:51"},"nativeSrc":"17302:58:51","nodeType":"YulFunctionCall","src":"17302:58:51"},"variables":[{"name":"value1_1","nativeSrc":"17280:8:51","nodeType":"YulTypedName","src":"17280:8:51","type":""},{"name":"value2_1","nativeSrc":"17290:8:51","nodeType":"YulTypedName","src":"17290:8:51","type":""}]},{"nativeSrc":"17369:18:51","nodeType":"YulAssignment","src":"17369:18:51","value":{"name":"value1_1","nativeSrc":"17379:8:51","nodeType":"YulIdentifier","src":"17379:8:51"},"variableNames":[{"name":"value1","nativeSrc":"17369:6:51","nodeType":"YulIdentifier","src":"17369:6:51"}]},{"nativeSrc":"17396:18:51","nodeType":"YulAssignment","src":"17396:18:51","value":{"name":"value2_1","nativeSrc":"17406:8:51","nodeType":"YulIdentifier","src":"17406:8:51"},"variableNames":[{"name":"value2","nativeSrc":"17396:6:51","nodeType":"YulIdentifier","src":"17396:6:51"}]}]},"name":"abi_decode_tuple_t_addresst_string_calldata_ptr","nativeSrc":"16875:545:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16932:9:51","nodeType":"YulTypedName","src":"16932:9:51","type":""},{"name":"dataEnd","nativeSrc":"16943:7:51","nodeType":"YulTypedName","src":"16943:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"16955:6:51","nodeType":"YulTypedName","src":"16955:6:51","type":""},{"name":"value1","nativeSrc":"16963:6:51","nodeType":"YulTypedName","src":"16963:6:51","type":""},{"name":"value2","nativeSrc":"16971:6:51","nodeType":"YulTypedName","src":"16971:6:51","type":""}],"src":"16875:545:51"},{"body":{"nativeSrc":"17557:76:51","nodeType":"YulBlock","src":"17557:76:51","statements":[{"nativeSrc":"17567:26:51","nodeType":"YulAssignment","src":"17567:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"17579:9:51","nodeType":"YulIdentifier","src":"17579:9:51"},{"kind":"number","nativeSrc":"17590:2:51","nodeType":"YulLiteral","src":"17590:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17575:3:51","nodeType":"YulIdentifier","src":"17575:3:51"},"nativeSrc":"17575:18:51","nodeType":"YulFunctionCall","src":"17575:18:51"},"variableNames":[{"name":"tail","nativeSrc":"17567:4:51","nodeType":"YulIdentifier","src":"17567:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17609:9:51","nodeType":"YulIdentifier","src":"17609:9:51"},{"name":"value0","nativeSrc":"17620:6:51","nodeType":"YulIdentifier","src":"17620:6:51"}],"functionName":{"name":"mstore","nativeSrc":"17602:6:51","nodeType":"YulIdentifier","src":"17602:6:51"},"nativeSrc":"17602:25:51","nodeType":"YulFunctionCall","src":"17602:25:51"},"nativeSrc":"17602:25:51","nodeType":"YulExpressionStatement","src":"17602:25:51"}]},"name":"abi_encode_tuple_t_userDefinedValueType$_RadonHash_$13250__to_t_bytes32__fromStack_reversed","nativeSrc":"17425:208:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17526:9:51","nodeType":"YulTypedName","src":"17526:9:51","type":""},{"name":"value0","nativeSrc":"17537:6:51","nodeType":"YulTypedName","src":"17537:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17548:4:51","nodeType":"YulTypedName","src":"17548:4:51","type":""}],"src":"17425:208:51"},{"body":{"nativeSrc":"17693:325:51","nodeType":"YulBlock","src":"17693:325:51","statements":[{"nativeSrc":"17703:22:51","nodeType":"YulAssignment","src":"17703:22:51","value":{"arguments":[{"kind":"number","nativeSrc":"17717:1:51","nodeType":"YulLiteral","src":"17717:1:51","type":"","value":"1"},{"name":"data","nativeSrc":"17720:4:51","nodeType":"YulIdentifier","src":"17720:4:51"}],"functionName":{"name":"shr","nativeSrc":"17713:3:51","nodeType":"YulIdentifier","src":"17713:3:51"},"nativeSrc":"17713:12:51","nodeType":"YulFunctionCall","src":"17713:12:51"},"variableNames":[{"name":"length","nativeSrc":"17703:6:51","nodeType":"YulIdentifier","src":"17703:6:51"}]},{"nativeSrc":"17734:38:51","nodeType":"YulVariableDeclaration","src":"17734:38:51","value":{"arguments":[{"name":"data","nativeSrc":"17764:4:51","nodeType":"YulIdentifier","src":"17764:4:51"},{"kind":"number","nativeSrc":"17770:1:51","nodeType":"YulLiteral","src":"17770:1:51","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"17760:3:51","nodeType":"YulIdentifier","src":"17760:3:51"},"nativeSrc":"17760:12:51","nodeType":"YulFunctionCall","src":"17760:12:51"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"17738:18:51","nodeType":"YulTypedName","src":"17738:18:51","type":""}]},{"body":{"nativeSrc":"17811:31:51","nodeType":"YulBlock","src":"17811:31:51","statements":[{"nativeSrc":"17813:27:51","nodeType":"YulAssignment","src":"17813:27:51","value":{"arguments":[{"name":"length","nativeSrc":"17827:6:51","nodeType":"YulIdentifier","src":"17827:6:51"},{"kind":"number","nativeSrc":"17835:4:51","nodeType":"YulLiteral","src":"17835:4:51","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"17823:3:51","nodeType":"YulIdentifier","src":"17823:3:51"},"nativeSrc":"17823:17:51","nodeType":"YulFunctionCall","src":"17823:17:51"},"variableNames":[{"name":"length","nativeSrc":"17813:6:51","nodeType":"YulIdentifier","src":"17813:6:51"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"17791:18:51","nodeType":"YulIdentifier","src":"17791:18:51"}],"functionName":{"name":"iszero","nativeSrc":"17784:6:51","nodeType":"YulIdentifier","src":"17784:6:51"},"nativeSrc":"17784:26:51","nodeType":"YulFunctionCall","src":"17784:26:51"},"nativeSrc":"17781:61:51","nodeType":"YulIf","src":"17781:61:51"},{"body":{"nativeSrc":"17901:111:51","nodeType":"YulBlock","src":"17901:111:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17922:1:51","nodeType":"YulLiteral","src":"17922:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"17929:3:51","nodeType":"YulLiteral","src":"17929:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"17934:10:51","nodeType":"YulLiteral","src":"17934:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"17925:3:51","nodeType":"YulIdentifier","src":"17925:3:51"},"nativeSrc":"17925:20:51","nodeType":"YulFunctionCall","src":"17925:20:51"}],"functionName":{"name":"mstore","nativeSrc":"17915:6:51","nodeType":"YulIdentifier","src":"17915:6:51"},"nativeSrc":"17915:31:51","nodeType":"YulFunctionCall","src":"17915:31:51"},"nativeSrc":"17915:31:51","nodeType":"YulExpressionStatement","src":"17915:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"17966:1:51","nodeType":"YulLiteral","src":"17966:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"17969:4:51","nodeType":"YulLiteral","src":"17969:4:51","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"17959:6:51","nodeType":"YulIdentifier","src":"17959:6:51"},"nativeSrc":"17959:15:51","nodeType":"YulFunctionCall","src":"17959:15:51"},"nativeSrc":"17959:15:51","nodeType":"YulExpressionStatement","src":"17959:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"17994:1:51","nodeType":"YulLiteral","src":"17994:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"17997:4:51","nodeType":"YulLiteral","src":"17997:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"17987:6:51","nodeType":"YulIdentifier","src":"17987:6:51"},"nativeSrc":"17987:15:51","nodeType":"YulFunctionCall","src":"17987:15:51"},"nativeSrc":"17987:15:51","nodeType":"YulExpressionStatement","src":"17987:15:51"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"17857:18:51","nodeType":"YulIdentifier","src":"17857:18:51"},{"arguments":[{"name":"length","nativeSrc":"17880:6:51","nodeType":"YulIdentifier","src":"17880:6:51"},{"kind":"number","nativeSrc":"17888:2:51","nodeType":"YulLiteral","src":"17888:2:51","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"17877:2:51","nodeType":"YulIdentifier","src":"17877:2:51"},"nativeSrc":"17877:14:51","nodeType":"YulFunctionCall","src":"17877:14:51"}],"functionName":{"name":"eq","nativeSrc":"17854:2:51","nodeType":"YulIdentifier","src":"17854:2:51"},"nativeSrc":"17854:38:51","nodeType":"YulFunctionCall","src":"17854:38:51"},"nativeSrc":"17851:161:51","nodeType":"YulIf","src":"17851:161:51"}]},"name":"extract_byte_array_length","nativeSrc":"17638:380:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"17673:4:51","nodeType":"YulTypedName","src":"17673:4:51","type":""}],"returnVariables":[{"name":"length","nativeSrc":"17682:6:51","nodeType":"YulTypedName","src":"17682:6:51","type":""}],"src":"17638:380:51"},{"body":{"nativeSrc":"18280:214:51","nodeType":"YulBlock","src":"18280:214:51","statements":[{"nativeSrc":"18290:26:51","nodeType":"YulAssignment","src":"18290:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"18302:9:51","nodeType":"YulIdentifier","src":"18302:9:51"},{"kind":"number","nativeSrc":"18313:2:51","nodeType":"YulLiteral","src":"18313:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18298:3:51","nodeType":"YulIdentifier","src":"18298:3:51"},"nativeSrc":"18298:18:51","nodeType":"YulFunctionCall","src":"18298:18:51"},"variableNames":[{"name":"tail","nativeSrc":"18290:4:51","nodeType":"YulIdentifier","src":"18290:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18332:9:51","nodeType":"YulIdentifier","src":"18332:9:51"},{"arguments":[{"name":"value0","nativeSrc":"18347:6:51","nodeType":"YulIdentifier","src":"18347:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18363:3:51","nodeType":"YulLiteral","src":"18363:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"18368:1:51","nodeType":"YulLiteral","src":"18368:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18359:3:51","nodeType":"YulIdentifier","src":"18359:3:51"},"nativeSrc":"18359:11:51","nodeType":"YulFunctionCall","src":"18359:11:51"},{"kind":"number","nativeSrc":"18372:1:51","nodeType":"YulLiteral","src":"18372:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18355:3:51","nodeType":"YulIdentifier","src":"18355:3:51"},"nativeSrc":"18355:19:51","nodeType":"YulFunctionCall","src":"18355:19:51"}],"functionName":{"name":"and","nativeSrc":"18343:3:51","nodeType":"YulIdentifier","src":"18343:3:51"},"nativeSrc":"18343:32:51","nodeType":"YulFunctionCall","src":"18343:32:51"}],"functionName":{"name":"mstore","nativeSrc":"18325:6:51","nodeType":"YulIdentifier","src":"18325:6:51"},"nativeSrc":"18325:51:51","nodeType":"YulFunctionCall","src":"18325:51:51"},"nativeSrc":"18325:51:51","nodeType":"YulExpressionStatement","src":"18325:51:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18396:9:51","nodeType":"YulIdentifier","src":"18396:9:51"},{"kind":"number","nativeSrc":"18407:2:51","nodeType":"YulLiteral","src":"18407:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18392:3:51","nodeType":"YulIdentifier","src":"18392:3:51"},"nativeSrc":"18392:18:51","nodeType":"YulFunctionCall","src":"18392:18:51"},{"arguments":[{"name":"value1","nativeSrc":"18416:6:51","nodeType":"YulIdentifier","src":"18416:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18432:3:51","nodeType":"YulLiteral","src":"18432:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"18437:1:51","nodeType":"YulLiteral","src":"18437:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18428:3:51","nodeType":"YulIdentifier","src":"18428:3:51"},"nativeSrc":"18428:11:51","nodeType":"YulFunctionCall","src":"18428:11:51"},{"kind":"number","nativeSrc":"18441:1:51","nodeType":"YulLiteral","src":"18441:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18424:3:51","nodeType":"YulIdentifier","src":"18424:3:51"},"nativeSrc":"18424:19:51","nodeType":"YulFunctionCall","src":"18424:19:51"}],"functionName":{"name":"and","nativeSrc":"18412:3:51","nodeType":"YulIdentifier","src":"18412:3:51"},"nativeSrc":"18412:32:51","nodeType":"YulFunctionCall","src":"18412:32:51"}],"functionName":{"name":"mstore","nativeSrc":"18385:6:51","nodeType":"YulIdentifier","src":"18385:6:51"},"nativeSrc":"18385:60:51","nodeType":"YulFunctionCall","src":"18385:60:51"},"nativeSrc":"18385:60:51","nodeType":"YulExpressionStatement","src":"18385:60:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18465:9:51","nodeType":"YulIdentifier","src":"18465:9:51"},{"kind":"number","nativeSrc":"18476:2:51","nodeType":"YulLiteral","src":"18476:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18461:3:51","nodeType":"YulIdentifier","src":"18461:3:51"},"nativeSrc":"18461:18:51","nodeType":"YulFunctionCall","src":"18461:18:51"},{"name":"value2","nativeSrc":"18481:6:51","nodeType":"YulIdentifier","src":"18481:6:51"}],"functionName":{"name":"mstore","nativeSrc":"18454:6:51","nodeType":"YulIdentifier","src":"18454:6:51"},"nativeSrc":"18454:34:51","nodeType":"YulFunctionCall","src":"18454:34:51"},"nativeSrc":"18454:34:51","nodeType":"YulExpressionStatement","src":"18454:34:51"}]},"name":"abi_encode_tuple_t_contract$_WitOracle_$9915_t_contract$_IWitOracleRadonRequestModal_$10761_t_userDefinedValueType$_TransactionHash_$13256__to_t_address_t_address_t_bytes32__fromStack_library_reversed","nativeSrc":"18023:471:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18233:9:51","nodeType":"YulTypedName","src":"18233:9:51","type":""},{"name":"value2","nativeSrc":"18244:6:51","nodeType":"YulTypedName","src":"18244:6:51","type":""},{"name":"value1","nativeSrc":"18252:6:51","nodeType":"YulTypedName","src":"18252:6:51","type":""},{"name":"value0","nativeSrc":"18260:6:51","nodeType":"YulTypedName","src":"18260:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18271:4:51","nodeType":"YulTypedName","src":"18271:4:51","type":""}],"src":"18023:471:51"},{"body":{"nativeSrc":"18580:149:51","nodeType":"YulBlock","src":"18580:149:51","statements":[{"body":{"nativeSrc":"18626:16:51","nodeType":"YulBlock","src":"18626:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18635:1:51","nodeType":"YulLiteral","src":"18635:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"18638:1:51","nodeType":"YulLiteral","src":"18638:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18628:6:51","nodeType":"YulIdentifier","src":"18628:6:51"},"nativeSrc":"18628:12:51","nodeType":"YulFunctionCall","src":"18628:12:51"},"nativeSrc":"18628:12:51","nodeType":"YulExpressionStatement","src":"18628:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"18601:7:51","nodeType":"YulIdentifier","src":"18601:7:51"},{"name":"headStart","nativeSrc":"18610:9:51","nodeType":"YulIdentifier","src":"18610:9:51"}],"functionName":{"name":"sub","nativeSrc":"18597:3:51","nodeType":"YulIdentifier","src":"18597:3:51"},"nativeSrc":"18597:23:51","nodeType":"YulFunctionCall","src":"18597:23:51"},{"kind":"number","nativeSrc":"18622:2:51","nodeType":"YulLiteral","src":"18622:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"18593:3:51","nodeType":"YulIdentifier","src":"18593:3:51"},"nativeSrc":"18593:32:51","nodeType":"YulFunctionCall","src":"18593:32:51"},"nativeSrc":"18590:52:51","nodeType":"YulIf","src":"18590:52:51"},{"nativeSrc":"18651:14:51","nodeType":"YulVariableDeclaration","src":"18651:14:51","value":{"kind":"number","nativeSrc":"18664:1:51","nodeType":"YulLiteral","src":"18664:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"18655:5:51","nodeType":"YulTypedName","src":"18655:5:51","type":""}]},{"nativeSrc":"18674:25:51","nodeType":"YulAssignment","src":"18674:25:51","value":{"arguments":[{"name":"headStart","nativeSrc":"18689:9:51","nodeType":"YulIdentifier","src":"18689:9:51"}],"functionName":{"name":"mload","nativeSrc":"18683:5:51","nodeType":"YulIdentifier","src":"18683:5:51"},"nativeSrc":"18683:16:51","nodeType":"YulFunctionCall","src":"18683:16:51"},"variableNames":[{"name":"value","nativeSrc":"18674:5:51","nodeType":"YulIdentifier","src":"18674:5:51"}]},{"nativeSrc":"18708:15:51","nodeType":"YulAssignment","src":"18708:15:51","value":{"name":"value","nativeSrc":"18718:5:51","nodeType":"YulIdentifier","src":"18718:5:51"},"variableNames":[{"name":"value0","nativeSrc":"18708:6:51","nodeType":"YulIdentifier","src":"18708:6:51"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"18499:230:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18546:9:51","nodeType":"YulTypedName","src":"18546:9:51","type":""},{"name":"dataEnd","nativeSrc":"18557:7:51","nodeType":"YulTypedName","src":"18557:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"18569:6:51","nodeType":"YulTypedName","src":"18569:6:51","type":""}],"src":"18499:230:51"},{"body":{"nativeSrc":"18908:164:51","nodeType":"YulBlock","src":"18908:164:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18925:9:51","nodeType":"YulIdentifier","src":"18925:9:51"},{"kind":"number","nativeSrc":"18936:2:51","nodeType":"YulLiteral","src":"18936:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"18918:6:51","nodeType":"YulIdentifier","src":"18918:6:51"},"nativeSrc":"18918:21:51","nodeType":"YulFunctionCall","src":"18918:21:51"},"nativeSrc":"18918:21:51","nodeType":"YulExpressionStatement","src":"18918:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18959:9:51","nodeType":"YulIdentifier","src":"18959:9:51"},{"kind":"number","nativeSrc":"18970:2:51","nodeType":"YulLiteral","src":"18970:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18955:3:51","nodeType":"YulIdentifier","src":"18955:3:51"},"nativeSrc":"18955:18:51","nodeType":"YulFunctionCall","src":"18955:18:51"},{"kind":"number","nativeSrc":"18975:2:51","nodeType":"YulLiteral","src":"18975:2:51","type":"","value":"14"}],"functionName":{"name":"mstore","nativeSrc":"18948:6:51","nodeType":"YulIdentifier","src":"18948:6:51"},"nativeSrc":"18948:30:51","nodeType":"YulFunctionCall","src":"18948:30:51"},"nativeSrc":"18948:30:51","nodeType":"YulExpressionStatement","src":"18948:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18998:9:51","nodeType":"YulIdentifier","src":"18998:9:51"},{"kind":"number","nativeSrc":"19009:2:51","nodeType":"YulLiteral","src":"19009:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18994:3:51","nodeType":"YulIdentifier","src":"18994:3:51"},"nativeSrc":"18994:18:51","nodeType":"YulFunctionCall","src":"18994:18:51"},{"hexValue":"616c7265616479206d696e746564","kind":"string","nativeSrc":"19014:16:51","nodeType":"YulLiteral","src":"19014:16:51","type":"","value":"already minted"}],"functionName":{"name":"mstore","nativeSrc":"18987:6:51","nodeType":"YulIdentifier","src":"18987:6:51"},"nativeSrc":"18987:44:51","nodeType":"YulFunctionCall","src":"18987:44:51"},"nativeSrc":"18987:44:51","nodeType":"YulExpressionStatement","src":"18987:44:51"},{"nativeSrc":"19040:26:51","nodeType":"YulAssignment","src":"19040:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"19052:9:51","nodeType":"YulIdentifier","src":"19052:9:51"},{"kind":"number","nativeSrc":"19063:2:51","nodeType":"YulLiteral","src":"19063:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"19048:3:51","nodeType":"YulIdentifier","src":"19048:3:51"},"nativeSrc":"19048:18:51","nodeType":"YulFunctionCall","src":"19048:18:51"},"variableNames":[{"name":"tail","nativeSrc":"19040:4:51","nodeType":"YulIdentifier","src":"19040:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_fc1d79576d9c1e03d6ff90e81fd853c5eac89b9ed9cb54114db3e1e1ab962297__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"18734:338:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18885:9:51","nodeType":"YulTypedName","src":"18885:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18899:4:51","nodeType":"YulTypedName","src":"18899:4:51","type":""}],"src":"18734:338:51"},{"body":{"nativeSrc":"19121:73:51","nodeType":"YulBlock","src":"19121:73:51","statements":[{"body":{"nativeSrc":"19172:16:51","nodeType":"YulBlock","src":"19172:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19181:1:51","nodeType":"YulLiteral","src":"19181:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"19184:1:51","nodeType":"YulLiteral","src":"19184:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19174:6:51","nodeType":"YulIdentifier","src":"19174:6:51"},"nativeSrc":"19174:12:51","nodeType":"YulFunctionCall","src":"19174:12:51"},"nativeSrc":"19174:12:51","nodeType":"YulExpressionStatement","src":"19174:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"19144:5:51","nodeType":"YulIdentifier","src":"19144:5:51"},{"arguments":[{"name":"value","nativeSrc":"19155:5:51","nodeType":"YulIdentifier","src":"19155:5:51"},{"kind":"number","nativeSrc":"19162:6:51","nodeType":"YulLiteral","src":"19162:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"19151:3:51","nodeType":"YulIdentifier","src":"19151:3:51"},"nativeSrc":"19151:18:51","nodeType":"YulFunctionCall","src":"19151:18:51"}],"functionName":{"name":"eq","nativeSrc":"19141:2:51","nodeType":"YulIdentifier","src":"19141:2:51"},"nativeSrc":"19141:29:51","nodeType":"YulFunctionCall","src":"19141:29:51"}],"functionName":{"name":"iszero","nativeSrc":"19134:6:51","nodeType":"YulIdentifier","src":"19134:6:51"},"nativeSrc":"19134:37:51","nodeType":"YulFunctionCall","src":"19134:37:51"},"nativeSrc":"19131:57:51","nodeType":"YulIf","src":"19131:57:51"}]},"name":"validator_revert_uint16","nativeSrc":"19077:117:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"19110:5:51","nodeType":"YulTypedName","src":"19110:5:51","type":""}],"src":"19077:117:51"},{"body":{"nativeSrc":"19268:176:51","nodeType":"YulBlock","src":"19268:176:51","statements":[{"body":{"nativeSrc":"19314:16:51","nodeType":"YulBlock","src":"19314:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19323:1:51","nodeType":"YulLiteral","src":"19323:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"19326:1:51","nodeType":"YulLiteral","src":"19326:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19316:6:51","nodeType":"YulIdentifier","src":"19316:6:51"},"nativeSrc":"19316:12:51","nodeType":"YulFunctionCall","src":"19316:12:51"},"nativeSrc":"19316:12:51","nodeType":"YulExpressionStatement","src":"19316:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"19289:7:51","nodeType":"YulIdentifier","src":"19289:7:51"},{"name":"headStart","nativeSrc":"19298:9:51","nodeType":"YulIdentifier","src":"19298:9:51"}],"functionName":{"name":"sub","nativeSrc":"19285:3:51","nodeType":"YulIdentifier","src":"19285:3:51"},"nativeSrc":"19285:23:51","nodeType":"YulFunctionCall","src":"19285:23:51"},{"kind":"number","nativeSrc":"19310:2:51","nodeType":"YulLiteral","src":"19310:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"19281:3:51","nodeType":"YulIdentifier","src":"19281:3:51"},"nativeSrc":"19281:32:51","nodeType":"YulFunctionCall","src":"19281:32:51"},"nativeSrc":"19278:52:51","nodeType":"YulIf","src":"19278:52:51"},{"nativeSrc":"19339:36:51","nodeType":"YulVariableDeclaration","src":"19339:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"19365:9:51","nodeType":"YulIdentifier","src":"19365:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"19352:12:51","nodeType":"YulIdentifier","src":"19352:12:51"},"nativeSrc":"19352:23:51","nodeType":"YulFunctionCall","src":"19352:23:51"},"variables":[{"name":"value","nativeSrc":"19343:5:51","nodeType":"YulTypedName","src":"19343:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"19408:5:51","nodeType":"YulIdentifier","src":"19408:5:51"}],"functionName":{"name":"validator_revert_uint16","nativeSrc":"19384:23:51","nodeType":"YulIdentifier","src":"19384:23:51"},"nativeSrc":"19384:30:51","nodeType":"YulFunctionCall","src":"19384:30:51"},"nativeSrc":"19384:30:51","nodeType":"YulExpressionStatement","src":"19384:30:51"},{"nativeSrc":"19423:15:51","nodeType":"YulAssignment","src":"19423:15:51","value":{"name":"value","nativeSrc":"19433:5:51","nodeType":"YulIdentifier","src":"19433:5:51"},"variableNames":[{"name":"value0","nativeSrc":"19423:6:51","nodeType":"YulIdentifier","src":"19423:6:51"}]}]},"name":"abi_decode_tuple_t_uint16","nativeSrc":"19199:245:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19234:9:51","nodeType":"YulTypedName","src":"19234:9:51","type":""},{"name":"dataEnd","nativeSrc":"19245:7:51","nodeType":"YulTypedName","src":"19245:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"19257:6:51","nodeType":"YulTypedName","src":"19257:6:51","type":""}],"src":"19199:245:51"},{"body":{"nativeSrc":"19525:424:51","nodeType":"YulBlock","src":"19525:424:51","statements":[{"nativeSrc":"19535:43:51","nodeType":"YulVariableDeclaration","src":"19535:43:51","value":{"arguments":[{"name":"ptr","nativeSrc":"19574:3:51","nodeType":"YulIdentifier","src":"19574:3:51"}],"functionName":{"name":"calldataload","nativeSrc":"19561:12:51","nodeType":"YulIdentifier","src":"19561:12:51"},"nativeSrc":"19561:17:51","nodeType":"YulFunctionCall","src":"19561:17:51"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"19539:18:51","nodeType":"YulTypedName","src":"19539:18:51","type":""}]},{"body":{"nativeSrc":"19667:16:51","nodeType":"YulBlock","src":"19667:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19676:1:51","nodeType":"YulLiteral","src":"19676:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"19679:1:51","nodeType":"YulLiteral","src":"19679:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19669:6:51","nodeType":"YulIdentifier","src":"19669:6:51"},"nativeSrc":"19669:12:51","nodeType":"YulFunctionCall","src":"19669:12:51"},"nativeSrc":"19669:12:51","nodeType":"YulExpressionStatement","src":"19669:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"19601:18:51","nodeType":"YulIdentifier","src":"19601:18:51"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"19629:12:51","nodeType":"YulIdentifier","src":"19629:12:51"},"nativeSrc":"19629:14:51","nodeType":"YulFunctionCall","src":"19629:14:51"},{"name":"base_ref","nativeSrc":"19645:8:51","nodeType":"YulIdentifier","src":"19645:8:51"}],"functionName":{"name":"sub","nativeSrc":"19625:3:51","nodeType":"YulIdentifier","src":"19625:3:51"},"nativeSrc":"19625:29:51","nodeType":"YulFunctionCall","src":"19625:29:51"},{"arguments":[{"kind":"number","nativeSrc":"19660:2:51","nodeType":"YulLiteral","src":"19660:2:51","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"19656:3:51","nodeType":"YulIdentifier","src":"19656:3:51"},"nativeSrc":"19656:7:51","nodeType":"YulFunctionCall","src":"19656:7:51"}],"functionName":{"name":"add","nativeSrc":"19621:3:51","nodeType":"YulIdentifier","src":"19621:3:51"},"nativeSrc":"19621:43:51","nodeType":"YulFunctionCall","src":"19621:43:51"}],"functionName":{"name":"slt","nativeSrc":"19597:3:51","nodeType":"YulIdentifier","src":"19597:3:51"},"nativeSrc":"19597:68:51","nodeType":"YulFunctionCall","src":"19597:68:51"}],"functionName":{"name":"iszero","nativeSrc":"19590:6:51","nodeType":"YulIdentifier","src":"19590:6:51"},"nativeSrc":"19590:76:51","nodeType":"YulFunctionCall","src":"19590:76:51"},"nativeSrc":"19587:96:51","nodeType":"YulIf","src":"19587:96:51"},{"nativeSrc":"19692:48:51","nodeType":"YulVariableDeclaration","src":"19692:48:51","value":{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"19711:18:51","nodeType":"YulIdentifier","src":"19711:18:51"},{"name":"base_ref","nativeSrc":"19731:8:51","nodeType":"YulIdentifier","src":"19731:8:51"}],"functionName":{"name":"add","nativeSrc":"19707:3:51","nodeType":"YulIdentifier","src":"19707:3:51"},"nativeSrc":"19707:33:51","nodeType":"YulFunctionCall","src":"19707:33:51"},"variables":[{"name":"value_1","nativeSrc":"19696:7:51","nodeType":"YulTypedName","src":"19696:7:51","type":""}]},{"nativeSrc":"19749:31:51","nodeType":"YulAssignment","src":"19749:31:51","value":{"arguments":[{"name":"value_1","nativeSrc":"19772:7:51","nodeType":"YulIdentifier","src":"19772:7:51"}],"functionName":{"name":"calldataload","nativeSrc":"19759:12:51","nodeType":"YulIdentifier","src":"19759:12:51"},"nativeSrc":"19759:21:51","nodeType":"YulFunctionCall","src":"19759:21:51"},"variableNames":[{"name":"length","nativeSrc":"19749:6:51","nodeType":"YulIdentifier","src":"19749:6:51"}]},{"nativeSrc":"19789:27:51","nodeType":"YulAssignment","src":"19789:27:51","value":{"arguments":[{"name":"value_1","nativeSrc":"19802:7:51","nodeType":"YulIdentifier","src":"19802:7:51"},{"kind":"number","nativeSrc":"19811:4:51","nodeType":"YulLiteral","src":"19811:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"19798:3:51","nodeType":"YulIdentifier","src":"19798:3:51"},"nativeSrc":"19798:18:51","nodeType":"YulFunctionCall","src":"19798:18:51"},"variableNames":[{"name":"value","nativeSrc":"19789:5:51","nodeType":"YulIdentifier","src":"19789:5:51"}]},{"body":{"nativeSrc":"19859:16:51","nodeType":"YulBlock","src":"19859:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19868:1:51","nodeType":"YulLiteral","src":"19868:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"19871:1:51","nodeType":"YulLiteral","src":"19871:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19861:6:51","nodeType":"YulIdentifier","src":"19861:6:51"},"nativeSrc":"19861:12:51","nodeType":"YulFunctionCall","src":"19861:12:51"},"nativeSrc":"19861:12:51","nodeType":"YulExpressionStatement","src":"19861:12:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"19831:6:51","nodeType":"YulIdentifier","src":"19831:6:51"},{"kind":"number","nativeSrc":"19839:18:51","nodeType":"YulLiteral","src":"19839:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"19828:2:51","nodeType":"YulIdentifier","src":"19828:2:51"},"nativeSrc":"19828:30:51","nodeType":"YulFunctionCall","src":"19828:30:51"},"nativeSrc":"19825:50:51","nodeType":"YulIf","src":"19825:50:51"},{"body":{"nativeSrc":"19927:16:51","nodeType":"YulBlock","src":"19927:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19936:1:51","nodeType":"YulLiteral","src":"19936:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"19939:1:51","nodeType":"YulLiteral","src":"19939:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19929:6:51","nodeType":"YulIdentifier","src":"19929:6:51"},"nativeSrc":"19929:12:51","nodeType":"YulFunctionCall","src":"19929:12:51"},"nativeSrc":"19929:12:51","nodeType":"YulExpressionStatement","src":"19929:12:51"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"19891:5:51","nodeType":"YulIdentifier","src":"19891:5:51"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"19902:12:51","nodeType":"YulIdentifier","src":"19902:12:51"},"nativeSrc":"19902:14:51","nodeType":"YulFunctionCall","src":"19902:14:51"},{"name":"length","nativeSrc":"19918:6:51","nodeType":"YulIdentifier","src":"19918:6:51"}],"functionName":{"name":"sub","nativeSrc":"19898:3:51","nodeType":"YulIdentifier","src":"19898:3:51"},"nativeSrc":"19898:27:51","nodeType":"YulFunctionCall","src":"19898:27:51"}],"functionName":{"name":"sgt","nativeSrc":"19887:3:51","nodeType":"YulIdentifier","src":"19887:3:51"},"nativeSrc":"19887:39:51","nodeType":"YulFunctionCall","src":"19887:39:51"},"nativeSrc":"19884:59:51","nodeType":"YulIf","src":"19884:59:51"}]},"name":"calldata_access_bytes_calldata","nativeSrc":"19449:500:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"19489:8:51","nodeType":"YulTypedName","src":"19489:8:51","type":""},{"name":"ptr","nativeSrc":"19499:3:51","nodeType":"YulTypedName","src":"19499:3:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"19507:5:51","nodeType":"YulTypedName","src":"19507:5:51","type":""},{"name":"length","nativeSrc":"19514:6:51","nodeType":"YulTypedName","src":"19514:6:51","type":""}],"src":"19449:500:51"},{"body":{"nativeSrc":"20020:200:51","nodeType":"YulBlock","src":"20020:200:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"20037:3:51","nodeType":"YulIdentifier","src":"20037:3:51"},{"name":"length","nativeSrc":"20042:6:51","nodeType":"YulIdentifier","src":"20042:6:51"}],"functionName":{"name":"mstore","nativeSrc":"20030:6:51","nodeType":"YulIdentifier","src":"20030:6:51"},"nativeSrc":"20030:19:51","nodeType":"YulFunctionCall","src":"20030:19:51"},"nativeSrc":"20030:19:51","nodeType":"YulExpressionStatement","src":"20030:19:51"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20075:3:51","nodeType":"YulIdentifier","src":"20075:3:51"},{"kind":"number","nativeSrc":"20080:4:51","nodeType":"YulLiteral","src":"20080:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"20071:3:51","nodeType":"YulIdentifier","src":"20071:3:51"},"nativeSrc":"20071:14:51","nodeType":"YulFunctionCall","src":"20071:14:51"},{"name":"start","nativeSrc":"20087:5:51","nodeType":"YulIdentifier","src":"20087:5:51"},{"name":"length","nativeSrc":"20094:6:51","nodeType":"YulIdentifier","src":"20094:6:51"}],"functionName":{"name":"calldatacopy","nativeSrc":"20058:12:51","nodeType":"YulIdentifier","src":"20058:12:51"},"nativeSrc":"20058:43:51","nodeType":"YulFunctionCall","src":"20058:43:51"},"nativeSrc":"20058:43:51","nodeType":"YulExpressionStatement","src":"20058:43:51"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20125:3:51","nodeType":"YulIdentifier","src":"20125:3:51"},{"name":"length","nativeSrc":"20130:6:51","nodeType":"YulIdentifier","src":"20130:6:51"}],"functionName":{"name":"add","nativeSrc":"20121:3:51","nodeType":"YulIdentifier","src":"20121:3:51"},"nativeSrc":"20121:16:51","nodeType":"YulFunctionCall","src":"20121:16:51"},{"kind":"number","nativeSrc":"20139:4:51","nodeType":"YulLiteral","src":"20139:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"20117:3:51","nodeType":"YulIdentifier","src":"20117:3:51"},"nativeSrc":"20117:27:51","nodeType":"YulFunctionCall","src":"20117:27:51"},{"kind":"number","nativeSrc":"20146:1:51","nodeType":"YulLiteral","src":"20146:1:51","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"20110:6:51","nodeType":"YulIdentifier","src":"20110:6:51"},"nativeSrc":"20110:38:51","nodeType":"YulFunctionCall","src":"20110:38:51"},"nativeSrc":"20110:38:51","nodeType":"YulExpressionStatement","src":"20110:38:51"},{"nativeSrc":"20157:57:51","nodeType":"YulAssignment","src":"20157:57:51","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"20172:3:51","nodeType":"YulIdentifier","src":"20172:3:51"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"20185:6:51","nodeType":"YulIdentifier","src":"20185:6:51"},{"kind":"number","nativeSrc":"20193:2:51","nodeType":"YulLiteral","src":"20193:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"20181:3:51","nodeType":"YulIdentifier","src":"20181:3:51"},"nativeSrc":"20181:15:51","nodeType":"YulFunctionCall","src":"20181:15:51"},{"arguments":[{"kind":"number","nativeSrc":"20202:2:51","nodeType":"YulLiteral","src":"20202:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"20198:3:51","nodeType":"YulIdentifier","src":"20198:3:51"},"nativeSrc":"20198:7:51","nodeType":"YulFunctionCall","src":"20198:7:51"}],"functionName":{"name":"and","nativeSrc":"20177:3:51","nodeType":"YulIdentifier","src":"20177:3:51"},"nativeSrc":"20177:29:51","nodeType":"YulFunctionCall","src":"20177:29:51"}],"functionName":{"name":"add","nativeSrc":"20168:3:51","nodeType":"YulIdentifier","src":"20168:3:51"},"nativeSrc":"20168:39:51","nodeType":"YulFunctionCall","src":"20168:39:51"},{"kind":"number","nativeSrc":"20209:4:51","nodeType":"YulLiteral","src":"20209:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"20164:3:51","nodeType":"YulIdentifier","src":"20164:3:51"},"nativeSrc":"20164:50:51","nodeType":"YulFunctionCall","src":"20164:50:51"},"variableNames":[{"name":"end","nativeSrc":"20157:3:51","nodeType":"YulIdentifier","src":"20157:3:51"}]}]},"name":"abi_encode_bytes_calldata","nativeSrc":"19954:266:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nativeSrc":"19989:5:51","nodeType":"YulTypedName","src":"19989:5:51","type":""},{"name":"length","nativeSrc":"19996:6:51","nodeType":"YulTypedName","src":"19996:6:51","type":""},{"name":"pos","nativeSrc":"20004:3:51","nodeType":"YulTypedName","src":"20004:3:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"20012:3:51","nodeType":"YulTypedName","src":"20012:3:51","type":""}],"src":"19954:266:51"},{"body":{"nativeSrc":"20450:1239:51","nodeType":"YulBlock","src":"20450:1239:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20467:9:51","nodeType":"YulIdentifier","src":"20467:9:51"},{"kind":"number","nativeSrc":"20478:2:51","nodeType":"YulLiteral","src":"20478:2:51","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"20460:6:51","nodeType":"YulIdentifier","src":"20460:6:51"},"nativeSrc":"20460:21:51","nodeType":"YulFunctionCall","src":"20460:21:51"},"nativeSrc":"20460:21:51","nodeType":"YulExpressionStatement","src":"20460:21:51"},{"nativeSrc":"20490:14:51","nodeType":"YulVariableDeclaration","src":"20490:14:51","value":{"kind":"number","nativeSrc":"20503:1:51","nodeType":"YulLiteral","src":"20503:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"20494:5:51","nodeType":"YulTypedName","src":"20494:5:51","type":""}]},{"nativeSrc":"20513:29:51","nodeType":"YulAssignment","src":"20513:29:51","value":{"arguments":[{"name":"value0","nativeSrc":"20535:6:51","nodeType":"YulIdentifier","src":"20535:6:51"}],"functionName":{"name":"calldataload","nativeSrc":"20522:12:51","nodeType":"YulIdentifier","src":"20522:12:51"},"nativeSrc":"20522:20:51","nodeType":"YulFunctionCall","src":"20522:20:51"},"variableNames":[{"name":"value","nativeSrc":"20513:5:51","nodeType":"YulIdentifier","src":"20513:5:51"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20562:9:51","nodeType":"YulIdentifier","src":"20562:9:51"},{"kind":"number","nativeSrc":"20573:2:51","nodeType":"YulLiteral","src":"20573:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20558:3:51","nodeType":"YulIdentifier","src":"20558:3:51"},"nativeSrc":"20558:18:51","nodeType":"YulFunctionCall","src":"20558:18:51"},{"name":"value","nativeSrc":"20578:5:51","nodeType":"YulIdentifier","src":"20578:5:51"}],"functionName":{"name":"mstore","nativeSrc":"20551:6:51","nodeType":"YulIdentifier","src":"20551:6:51"},"nativeSrc":"20551:33:51","nodeType":"YulFunctionCall","src":"20551:33:51"},"nativeSrc":"20551:33:51","nodeType":"YulExpressionStatement","src":"20551:33:51"},{"nativeSrc":"20593:16:51","nodeType":"YulVariableDeclaration","src":"20593:16:51","value":{"kind":"number","nativeSrc":"20608:1:51","nodeType":"YulLiteral","src":"20608:1:51","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"20597:7:51","nodeType":"YulTypedName","src":"20597:7:51","type":""}]},{"nativeSrc":"20618:42:51","nodeType":"YulAssignment","src":"20618:42:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"20646:6:51","nodeType":"YulIdentifier","src":"20646:6:51"},{"kind":"number","nativeSrc":"20654:4:51","nodeType":"YulLiteral","src":"20654:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"20642:3:51","nodeType":"YulIdentifier","src":"20642:3:51"},"nativeSrc":"20642:17:51","nodeType":"YulFunctionCall","src":"20642:17:51"}],"functionName":{"name":"calldataload","nativeSrc":"20629:12:51","nodeType":"YulIdentifier","src":"20629:12:51"},"nativeSrc":"20629:31:51","nodeType":"YulFunctionCall","src":"20629:31:51"},"variableNames":[{"name":"value_1","nativeSrc":"20618:7:51","nodeType":"YulIdentifier","src":"20618:7:51"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20680:9:51","nodeType":"YulIdentifier","src":"20680:9:51"},{"kind":"number","nativeSrc":"20691:2:51","nodeType":"YulLiteral","src":"20691:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20676:3:51","nodeType":"YulIdentifier","src":"20676:3:51"},"nativeSrc":"20676:18:51","nodeType":"YulFunctionCall","src":"20676:18:51"},{"name":"value_1","nativeSrc":"20696:7:51","nodeType":"YulIdentifier","src":"20696:7:51"}],"functionName":{"name":"mstore","nativeSrc":"20669:6:51","nodeType":"YulIdentifier","src":"20669:6:51"},"nativeSrc":"20669:35:51","nodeType":"YulFunctionCall","src":"20669:35:51"},"nativeSrc":"20669:35:51","nodeType":"YulExpressionStatement","src":"20669:35:51"},{"nativeSrc":"20713:44:51","nodeType":"YulVariableDeclaration","src":"20713:44:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"20745:6:51","nodeType":"YulIdentifier","src":"20745:6:51"},{"kind":"number","nativeSrc":"20753:2:51","nodeType":"YulLiteral","src":"20753:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20741:3:51","nodeType":"YulIdentifier","src":"20741:3:51"},"nativeSrc":"20741:15:51","nodeType":"YulFunctionCall","src":"20741:15:51"}],"functionName":{"name":"calldataload","nativeSrc":"20728:12:51","nodeType":"YulIdentifier","src":"20728:12:51"},"nativeSrc":"20728:29:51","nodeType":"YulFunctionCall","src":"20728:29:51"},"variables":[{"name":"value_2","nativeSrc":"20717:7:51","nodeType":"YulTypedName","src":"20717:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"20790:7:51","nodeType":"YulIdentifier","src":"20790:7:51"}],"functionName":{"name":"validator_revert_uint16","nativeSrc":"20766:23:51","nodeType":"YulIdentifier","src":"20766:23:51"},"nativeSrc":"20766:32:51","nodeType":"YulFunctionCall","src":"20766:32:51"},"nativeSrc":"20766:32:51","nodeType":"YulExpressionStatement","src":"20766:32:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20818:9:51","nodeType":"YulIdentifier","src":"20818:9:51"},{"kind":"number","nativeSrc":"20829:3:51","nodeType":"YulLiteral","src":"20829:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"20814:3:51","nodeType":"YulIdentifier","src":"20814:3:51"},"nativeSrc":"20814:19:51","nodeType":"YulFunctionCall","src":"20814:19:51"},{"arguments":[{"name":"value_2","nativeSrc":"20839:7:51","nodeType":"YulIdentifier","src":"20839:7:51"},{"kind":"number","nativeSrc":"20848:6:51","nodeType":"YulLiteral","src":"20848:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"20835:3:51","nodeType":"YulIdentifier","src":"20835:3:51"},"nativeSrc":"20835:20:51","nodeType":"YulFunctionCall","src":"20835:20:51"}],"functionName":{"name":"mstore","nativeSrc":"20807:6:51","nodeType":"YulIdentifier","src":"20807:6:51"},"nativeSrc":"20807:49:51","nodeType":"YulFunctionCall","src":"20807:49:51"},"nativeSrc":"20807:49:51","nodeType":"YulExpressionStatement","src":"20807:49:51"},{"nativeSrc":"20865:44:51","nodeType":"YulVariableDeclaration","src":"20865:44:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"20897:6:51","nodeType":"YulIdentifier","src":"20897:6:51"},{"kind":"number","nativeSrc":"20905:2:51","nodeType":"YulLiteral","src":"20905:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20893:3:51","nodeType":"YulIdentifier","src":"20893:3:51"},"nativeSrc":"20893:15:51","nodeType":"YulFunctionCall","src":"20893:15:51"}],"functionName":{"name":"calldataload","nativeSrc":"20880:12:51","nodeType":"YulIdentifier","src":"20880:12:51"},"nativeSrc":"20880:29:51","nodeType":"YulFunctionCall","src":"20880:29:51"},"variables":[{"name":"value_3","nativeSrc":"20869:7:51","nodeType":"YulTypedName","src":"20869:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"20942:7:51","nodeType":"YulIdentifier","src":"20942:7:51"}],"functionName":{"name":"validator_revert_uint16","nativeSrc":"20918:23:51","nodeType":"YulIdentifier","src":"20918:23:51"},"nativeSrc":"20918:32:51","nodeType":"YulFunctionCall","src":"20918:32:51"},"nativeSrc":"20918:32:51","nodeType":"YulExpressionStatement","src":"20918:32:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20970:9:51","nodeType":"YulIdentifier","src":"20970:9:51"},{"kind":"number","nativeSrc":"20981:3:51","nodeType":"YulLiteral","src":"20981:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"20966:3:51","nodeType":"YulIdentifier","src":"20966:3:51"},"nativeSrc":"20966:19:51","nodeType":"YulFunctionCall","src":"20966:19:51"},{"arguments":[{"name":"value_3","nativeSrc":"20991:7:51","nodeType":"YulIdentifier","src":"20991:7:51"},{"kind":"number","nativeSrc":"21000:6:51","nodeType":"YulLiteral","src":"21000:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"20987:3:51","nodeType":"YulIdentifier","src":"20987:3:51"},"nativeSrc":"20987:20:51","nodeType":"YulFunctionCall","src":"20987:20:51"}],"functionName":{"name":"mstore","nativeSrc":"20959:6:51","nodeType":"YulIdentifier","src":"20959:6:51"},"nativeSrc":"20959:49:51","nodeType":"YulFunctionCall","src":"20959:49:51"},"nativeSrc":"20959:49:51","nodeType":"YulExpressionStatement","src":"20959:49:51"},{"nativeSrc":"21017:45:51","nodeType":"YulVariableDeclaration","src":"21017:45:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"21049:6:51","nodeType":"YulIdentifier","src":"21049:6:51"},{"kind":"number","nativeSrc":"21057:3:51","nodeType":"YulLiteral","src":"21057:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"21045:3:51","nodeType":"YulIdentifier","src":"21045:3:51"},"nativeSrc":"21045:16:51","nodeType":"YulFunctionCall","src":"21045:16:51"}],"functionName":{"name":"calldataload","nativeSrc":"21032:12:51","nodeType":"YulIdentifier","src":"21032:12:51"},"nativeSrc":"21032:30:51","nodeType":"YulFunctionCall","src":"21032:30:51"},"variables":[{"name":"value_4","nativeSrc":"21021:7:51","nodeType":"YulTypedName","src":"21021:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"21095:7:51","nodeType":"YulIdentifier","src":"21095:7:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"21071:23:51","nodeType":"YulIdentifier","src":"21071:23:51"},"nativeSrc":"21071:32:51","nodeType":"YulFunctionCall","src":"21071:32:51"},"nativeSrc":"21071:32:51","nodeType":"YulExpressionStatement","src":"21071:32:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21123:9:51","nodeType":"YulIdentifier","src":"21123:9:51"},{"kind":"number","nativeSrc":"21134:3:51","nodeType":"YulLiteral","src":"21134:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"21119:3:51","nodeType":"YulIdentifier","src":"21119:3:51"},"nativeSrc":"21119:19:51","nodeType":"YulFunctionCall","src":"21119:19:51"},{"arguments":[{"name":"value_4","nativeSrc":"21144:7:51","nodeType":"YulIdentifier","src":"21144:7:51"},{"kind":"number","nativeSrc":"21153:18:51","nodeType":"YulLiteral","src":"21153:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"21140:3:51","nodeType":"YulIdentifier","src":"21140:3:51"},"nativeSrc":"21140:32:51","nodeType":"YulFunctionCall","src":"21140:32:51"}],"functionName":{"name":"mstore","nativeSrc":"21112:6:51","nodeType":"YulIdentifier","src":"21112:6:51"},"nativeSrc":"21112:61:51","nodeType":"YulFunctionCall","src":"21112:61:51"},"nativeSrc":"21112:61:51","nodeType":"YulExpressionStatement","src":"21112:61:51"},{"nativeSrc":"21182:55:51","nodeType":"YulVariableDeclaration","src":"21182:55:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"21224:6:51","nodeType":"YulIdentifier","src":"21224:6:51"},{"kind":"number","nativeSrc":"21232:3:51","nodeType":"YulLiteral","src":"21232:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"21220:3:51","nodeType":"YulIdentifier","src":"21220:3:51"},"nativeSrc":"21220:16:51","nodeType":"YulFunctionCall","src":"21220:16:51"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"21202:17:51","nodeType":"YulIdentifier","src":"21202:17:51"},"nativeSrc":"21202:35:51","nodeType":"YulFunctionCall","src":"21202:35:51"},"variables":[{"name":"memberValue0","nativeSrc":"21186:12:51","nodeType":"YulTypedName","src":"21186:12:51","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"21288:12:51","nodeType":"YulIdentifier","src":"21288:12:51"},{"arguments":[{"name":"headStart","nativeSrc":"21306:9:51","nodeType":"YulIdentifier","src":"21306:9:51"},{"kind":"number","nativeSrc":"21317:4:51","nodeType":"YulLiteral","src":"21317:4:51","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"21302:3:51","nodeType":"YulIdentifier","src":"21302:3:51"},"nativeSrc":"21302:20:51","nodeType":"YulFunctionCall","src":"21302:20:51"}],"functionName":{"name":"abi_encode_userDefinedValueType_Timestamp","nativeSrc":"21246:41:51","nodeType":"YulIdentifier","src":"21246:41:51"},"nativeSrc":"21246:77:51","nodeType":"YulFunctionCall","src":"21246:77:51"},"nativeSrc":"21246:77:51","nodeType":"YulExpressionStatement","src":"21246:77:51"},{"nativeSrc":"21332:92:51","nodeType":"YulVariableDeclaration","src":"21332:92:51","value":{"arguments":[{"name":"value0","nativeSrc":"21399:6:51","nodeType":"YulIdentifier","src":"21399:6:51"},{"arguments":[{"name":"value0","nativeSrc":"21411:6:51","nodeType":"YulIdentifier","src":"21411:6:51"},{"kind":"number","nativeSrc":"21419:3:51","nodeType":"YulLiteral","src":"21419:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"21407:3:51","nodeType":"YulIdentifier","src":"21407:3:51"},"nativeSrc":"21407:16:51","nodeType":"YulFunctionCall","src":"21407:16:51"}],"functionName":{"name":"calldata_access_bytes_calldata","nativeSrc":"21368:30:51","nodeType":"YulIdentifier","src":"21368:30:51"},"nativeSrc":"21368:56:51","nodeType":"YulFunctionCall","src":"21368:56:51"},"variables":[{"name":"memberValue0_1","nativeSrc":"21336:14:51","nodeType":"YulTypedName","src":"21336:14:51","type":""},{"name":"memberValue1","nativeSrc":"21352:12:51","nodeType":"YulTypedName","src":"21352:12:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21444:9:51","nodeType":"YulIdentifier","src":"21444:9:51"},{"kind":"number","nativeSrc":"21455:3:51","nodeType":"YulLiteral","src":"21455:3:51","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"21440:3:51","nodeType":"YulIdentifier","src":"21440:3:51"},"nativeSrc":"21440:19:51","nodeType":"YulFunctionCall","src":"21440:19:51"},{"kind":"number","nativeSrc":"21461:4:51","nodeType":"YulLiteral","src":"21461:4:51","type":"","value":"0xe0"}],"functionName":{"name":"mstore","nativeSrc":"21433:6:51","nodeType":"YulIdentifier","src":"21433:6:51"},"nativeSrc":"21433:33:51","nodeType":"YulFunctionCall","src":"21433:33:51"},"nativeSrc":"21433:33:51","nodeType":"YulExpressionStatement","src":"21433:33:51"},{"nativeSrc":"21475:87:51","nodeType":"YulVariableDeclaration","src":"21475:87:51","value":{"arguments":[{"name":"memberValue0_1","nativeSrc":"21512:14:51","nodeType":"YulIdentifier","src":"21512:14:51"},{"name":"memberValue1","nativeSrc":"21528:12:51","nodeType":"YulIdentifier","src":"21528:12:51"},{"arguments":[{"name":"headStart","nativeSrc":"21546:9:51","nodeType":"YulIdentifier","src":"21546:9:51"},{"kind":"number","nativeSrc":"21557:3:51","nodeType":"YulLiteral","src":"21557:3:51","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"21542:3:51","nodeType":"YulIdentifier","src":"21542:3:51"},"nativeSrc":"21542:19:51","nodeType":"YulFunctionCall","src":"21542:19:51"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"21486:25:51","nodeType":"YulIdentifier","src":"21486:25:51"},"nativeSrc":"21486:76:51","nodeType":"YulFunctionCall","src":"21486:76:51"},"variables":[{"name":"end","nativeSrc":"21479:3:51","nodeType":"YulTypedName","src":"21479:3:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21582:9:51","nodeType":"YulIdentifier","src":"21582:9:51"},{"kind":"number","nativeSrc":"21593:4:51","nodeType":"YulLiteral","src":"21593:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"21578:3:51","nodeType":"YulIdentifier","src":"21578:3:51"},"nativeSrc":"21578:20:51","nodeType":"YulFunctionCall","src":"21578:20:51"},{"arguments":[{"name":"end","nativeSrc":"21604:3:51","nodeType":"YulIdentifier","src":"21604:3:51"},{"name":"headStart","nativeSrc":"21609:9:51","nodeType":"YulIdentifier","src":"21609:9:51"}],"functionName":{"name":"sub","nativeSrc":"21600:3:51","nodeType":"YulIdentifier","src":"21600:3:51"},"nativeSrc":"21600:19:51","nodeType":"YulFunctionCall","src":"21600:19:51"}],"functionName":{"name":"mstore","nativeSrc":"21571:6:51","nodeType":"YulIdentifier","src":"21571:6:51"},"nativeSrc":"21571:49:51","nodeType":"YulFunctionCall","src":"21571:49:51"},"nativeSrc":"21571:49:51","nodeType":"YulExpressionStatement","src":"21571:49:51"},{"nativeSrc":"21629:54:51","nodeType":"YulAssignment","src":"21629:54:51","value":{"arguments":[{"name":"value1","nativeSrc":"21663:6:51","nodeType":"YulIdentifier","src":"21663:6:51"},{"name":"value2","nativeSrc":"21671:6:51","nodeType":"YulIdentifier","src":"21671:6:51"},{"name":"end","nativeSrc":"21679:3:51","nodeType":"YulIdentifier","src":"21679:3:51"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"21637:25:51","nodeType":"YulIdentifier","src":"21637:25:51"},"nativeSrc":"21637:46:51","nodeType":"YulFunctionCall","src":"21637:46:51"},"variableNames":[{"name":"tail","nativeSrc":"21629:4:51","nodeType":"YulIdentifier","src":"21629:4:51"}]}]},"name":"abi_encode_tuple_t_struct$_DataPushReport_$13371_calldata_ptr_t_bytes_calldata_ptr__to_t_struct$_DataPushReport_$13371_memory_ptr_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"20225:1464:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20403:9:51","nodeType":"YulTypedName","src":"20403:9:51","type":""},{"name":"value2","nativeSrc":"20414:6:51","nodeType":"YulTypedName","src":"20414:6:51","type":""},{"name":"value1","nativeSrc":"20422:6:51","nodeType":"YulTypedName","src":"20422:6:51","type":""},{"name":"value0","nativeSrc":"20430:6:51","nodeType":"YulTypedName","src":"20430:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20441:4:51","nodeType":"YulTypedName","src":"20441:4:51","type":""}],"src":"20225:1464:51"},{"body":{"nativeSrc":"21766:88:51","nodeType":"YulBlock","src":"21766:88:51","statements":[{"nativeSrc":"21776:22:51","nodeType":"YulAssignment","src":"21776:22:51","value":{"arguments":[{"name":"offset","nativeSrc":"21791:6:51","nodeType":"YulIdentifier","src":"21791:6:51"}],"functionName":{"name":"mload","nativeSrc":"21785:5:51","nodeType":"YulIdentifier","src":"21785:5:51"},"nativeSrc":"21785:13:51","nodeType":"YulFunctionCall","src":"21785:13:51"},"variableNames":[{"name":"value","nativeSrc":"21776:5:51","nodeType":"YulIdentifier","src":"21776:5:51"}]},{"body":{"nativeSrc":"21832:16:51","nodeType":"YulBlock","src":"21832:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21841:1:51","nodeType":"YulLiteral","src":"21841:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"21844:1:51","nodeType":"YulLiteral","src":"21844:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21834:6:51","nodeType":"YulIdentifier","src":"21834:6:51"},"nativeSrc":"21834:12:51","nodeType":"YulFunctionCall","src":"21834:12:51"},"nativeSrc":"21834:12:51","nodeType":"YulExpressionStatement","src":"21834:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"21820:5:51","nodeType":"YulIdentifier","src":"21820:5:51"},{"kind":"number","nativeSrc":"21827:2:51","nodeType":"YulLiteral","src":"21827:2:51","type":"","value":"20"}],"functionName":{"name":"lt","nativeSrc":"21817:2:51","nodeType":"YulIdentifier","src":"21817:2:51"},"nativeSrc":"21817:13:51","nodeType":"YulFunctionCall","src":"21817:13:51"}],"functionName":{"name":"iszero","nativeSrc":"21810:6:51","nodeType":"YulIdentifier","src":"21810:6:51"},"nativeSrc":"21810:21:51","nodeType":"YulFunctionCall","src":"21810:21:51"},"nativeSrc":"21807:41:51","nodeType":"YulIf","src":"21807:41:51"}]},"name":"abi_decode_enum_RadonDataTypes_fromMemory","nativeSrc":"21694:160:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"21745:6:51","nodeType":"YulTypedName","src":"21745:6:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"21756:5:51","nodeType":"YulTypedName","src":"21756:5:51","type":""}],"src":"21694:160:51"},{"body":{"nativeSrc":"21942:77:51","nodeType":"YulBlock","src":"21942:77:51","statements":[{"nativeSrc":"21952:22:51","nodeType":"YulAssignment","src":"21952:22:51","value":{"arguments":[{"name":"offset","nativeSrc":"21967:6:51","nodeType":"YulIdentifier","src":"21967:6:51"}],"functionName":{"name":"mload","nativeSrc":"21961:5:51","nodeType":"YulIdentifier","src":"21961:5:51"},"nativeSrc":"21961:13:51","nodeType":"YulFunctionCall","src":"21961:13:51"},"variableNames":[{"name":"value","nativeSrc":"21952:5:51","nodeType":"YulIdentifier","src":"21952:5:51"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"22007:5:51","nodeType":"YulIdentifier","src":"22007:5:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"21983:23:51","nodeType":"YulIdentifier","src":"21983:23:51"},"nativeSrc":"21983:30:51","nodeType":"YulFunctionCall","src":"21983:30:51"},"nativeSrc":"21983:30:51","nodeType":"YulExpressionStatement","src":"21983:30:51"}]},"name":"abi_decode_userDefinedValueType_Timestamp_fromMemory","nativeSrc":"21859:160:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"21921:6:51","nodeType":"YulTypedName","src":"21921:6:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"21932:5:51","nodeType":"YulTypedName","src":"21932:5:51","type":""}],"src":"21859:160:51"},{"body":{"nativeSrc":"22087:506:51","nodeType":"YulBlock","src":"22087:506:51","statements":[{"body":{"nativeSrc":"22136:16:51","nodeType":"YulBlock","src":"22136:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22145:1:51","nodeType":"YulLiteral","src":"22145:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"22148:1:51","nodeType":"YulLiteral","src":"22148:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22138:6:51","nodeType":"YulIdentifier","src":"22138:6:51"},"nativeSrc":"22138:12:51","nodeType":"YulFunctionCall","src":"22138:12:51"},"nativeSrc":"22138:12:51","nodeType":"YulExpressionStatement","src":"22138:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"22115:6:51","nodeType":"YulIdentifier","src":"22115:6:51"},{"kind":"number","nativeSrc":"22123:4:51","nodeType":"YulLiteral","src":"22123:4:51","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"22111:3:51","nodeType":"YulIdentifier","src":"22111:3:51"},"nativeSrc":"22111:17:51","nodeType":"YulFunctionCall","src":"22111:17:51"},{"name":"end","nativeSrc":"22130:3:51","nodeType":"YulIdentifier","src":"22130:3:51"}],"functionName":{"name":"slt","nativeSrc":"22107:3:51","nodeType":"YulIdentifier","src":"22107:3:51"},"nativeSrc":"22107:27:51","nodeType":"YulFunctionCall","src":"22107:27:51"}],"functionName":{"name":"iszero","nativeSrc":"22100:6:51","nodeType":"YulIdentifier","src":"22100:6:51"},"nativeSrc":"22100:35:51","nodeType":"YulFunctionCall","src":"22100:35:51"},"nativeSrc":"22097:55:51","nodeType":"YulIf","src":"22097:55:51"},{"nativeSrc":"22161:27:51","nodeType":"YulVariableDeclaration","src":"22161:27:51","value":{"arguments":[{"name":"offset","nativeSrc":"22181:6:51","nodeType":"YulIdentifier","src":"22181:6:51"}],"functionName":{"name":"mload","nativeSrc":"22175:5:51","nodeType":"YulIdentifier","src":"22175:5:51"},"nativeSrc":"22175:13:51","nodeType":"YulFunctionCall","src":"22175:13:51"},"variables":[{"name":"length","nativeSrc":"22165:6:51","nodeType":"YulTypedName","src":"22165:6:51","type":""}]},{"nativeSrc":"22197:28:51","nodeType":"YulVariableDeclaration","src":"22197:28:51","value":{"arguments":[{"name":"offset","nativeSrc":"22212:6:51","nodeType":"YulIdentifier","src":"22212:6:51"},{"kind":"number","nativeSrc":"22220:4:51","nodeType":"YulLiteral","src":"22220:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"22208:3:51","nodeType":"YulIdentifier","src":"22208:3:51"},"nativeSrc":"22208:17:51","nodeType":"YulFunctionCall","src":"22208:17:51"},"variables":[{"name":"src","nativeSrc":"22201:3:51","nodeType":"YulTypedName","src":"22201:3:51","type":""}]},{"nativeSrc":"22234:16:51","nodeType":"YulVariableDeclaration","src":"22234:16:51","value":{"kind":"number","nativeSrc":"22249:1:51","nodeType":"YulLiteral","src":"22249:1:51","type":"","value":"0"},"variables":[{"name":"array_1","nativeSrc":"22238:7:51","nodeType":"YulTypedName","src":"22238:7:51","type":""}]},{"nativeSrc":"22259:46:51","nodeType":"YulVariableDeclaration","src":"22259:46:51","value":{"arguments":[{"name":"length","nativeSrc":"22298:6:51","nodeType":"YulIdentifier","src":"22298:6:51"}],"functionName":{"name":"array_allocation_size_string","nativeSrc":"22269:28:51","nodeType":"YulIdentifier","src":"22269:28:51"},"nativeSrc":"22269:36:51","nodeType":"YulFunctionCall","src":"22269:36:51"},"variables":[{"name":"_1","nativeSrc":"22263:2:51","nodeType":"YulTypedName","src":"22263:2:51","type":""}]},{"nativeSrc":"22314:23:51","nodeType":"YulVariableDeclaration","src":"22314:23:51","value":{"arguments":[{"kind":"number","nativeSrc":"22334:2:51","nodeType":"YulLiteral","src":"22334:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"22328:5:51","nodeType":"YulIdentifier","src":"22328:5:51"},"nativeSrc":"22328:9:51","nodeType":"YulFunctionCall","src":"22328:9:51"},"variables":[{"name":"memPtr","nativeSrc":"22318:6:51","nodeType":"YulTypedName","src":"22318:6:51","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"22366:6:51","nodeType":"YulIdentifier","src":"22366:6:51"},{"name":"_1","nativeSrc":"22374:2:51","nodeType":"YulIdentifier","src":"22374:2:51"}],"functionName":{"name":"finalize_allocation","nativeSrc":"22346:19:51","nodeType":"YulIdentifier","src":"22346:19:51"},"nativeSrc":"22346:31:51","nodeType":"YulFunctionCall","src":"22346:31:51"},"nativeSrc":"22346:31:51","nodeType":"YulExpressionStatement","src":"22346:31:51"},{"nativeSrc":"22386:17:51","nodeType":"YulAssignment","src":"22386:17:51","value":{"name":"memPtr","nativeSrc":"22397:6:51","nodeType":"YulIdentifier","src":"22397:6:51"},"variableNames":[{"name":"array_1","nativeSrc":"22386:7:51","nodeType":"YulIdentifier","src":"22386:7:51"}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"22419:6:51","nodeType":"YulIdentifier","src":"22419:6:51"},{"name":"length","nativeSrc":"22427:6:51","nodeType":"YulIdentifier","src":"22427:6:51"}],"functionName":{"name":"mstore","nativeSrc":"22412:6:51","nodeType":"YulIdentifier","src":"22412:6:51"},"nativeSrc":"22412:22:51","nodeType":"YulFunctionCall","src":"22412:22:51"},"nativeSrc":"22412:22:51","nodeType":"YulExpressionStatement","src":"22412:22:51"},{"body":{"nativeSrc":"22472:16:51","nodeType":"YulBlock","src":"22472:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22481:1:51","nodeType":"YulLiteral","src":"22481:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"22484:1:51","nodeType":"YulLiteral","src":"22484:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22474:6:51","nodeType":"YulIdentifier","src":"22474:6:51"},"nativeSrc":"22474:12:51","nodeType":"YulFunctionCall","src":"22474:12:51"},"nativeSrc":"22474:12:51","nodeType":"YulExpressionStatement","src":"22474:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"22453:3:51","nodeType":"YulIdentifier","src":"22453:3:51"},{"name":"length","nativeSrc":"22458:6:51","nodeType":"YulIdentifier","src":"22458:6:51"}],"functionName":{"name":"add","nativeSrc":"22449:3:51","nodeType":"YulIdentifier","src":"22449:3:51"},"nativeSrc":"22449:16:51","nodeType":"YulFunctionCall","src":"22449:16:51"},{"name":"end","nativeSrc":"22467:3:51","nodeType":"YulIdentifier","src":"22467:3:51"}],"functionName":{"name":"gt","nativeSrc":"22446:2:51","nodeType":"YulIdentifier","src":"22446:2:51"},"nativeSrc":"22446:25:51","nodeType":"YulFunctionCall","src":"22446:25:51"},"nativeSrc":"22443:45:51","nodeType":"YulIf","src":"22443:45:51"},{"expression":{"arguments":[{"name":"src","nativeSrc":"22532:3:51","nodeType":"YulIdentifier","src":"22532:3:51"},{"arguments":[{"name":"memPtr","nativeSrc":"22541:6:51","nodeType":"YulIdentifier","src":"22541:6:51"},{"kind":"number","nativeSrc":"22549:4:51","nodeType":"YulLiteral","src":"22549:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"22537:3:51","nodeType":"YulIdentifier","src":"22537:3:51"},"nativeSrc":"22537:17:51","nodeType":"YulFunctionCall","src":"22537:17:51"},{"name":"length","nativeSrc":"22556:6:51","nodeType":"YulIdentifier","src":"22556:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"22497:34:51","nodeType":"YulIdentifier","src":"22497:34:51"},"nativeSrc":"22497:66:51","nodeType":"YulFunctionCall","src":"22497:66:51"},"nativeSrc":"22497:66:51","nodeType":"YulExpressionStatement","src":"22497:66:51"},{"nativeSrc":"22572:15:51","nodeType":"YulAssignment","src":"22572:15:51","value":{"name":"memPtr","nativeSrc":"22581:6:51","nodeType":"YulIdentifier","src":"22581:6:51"},"variableNames":[{"name":"array","nativeSrc":"22572:5:51","nodeType":"YulIdentifier","src":"22572:5:51"}]}]},"name":"abi_decode_bytes_fromMemory","nativeSrc":"22024:569:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"22061:6:51","nodeType":"YulTypedName","src":"22061:6:51","type":""},{"name":"end","nativeSrc":"22069:3:51","nodeType":"YulTypedName","src":"22069:3:51","type":""}],"returnVariables":[{"name":"array","nativeSrc":"22077:5:51","nodeType":"YulTypedName","src":"22077:5:51","type":""}],"src":"22024:569:51"},{"body":{"nativeSrc":"22656:76:51","nodeType":"YulBlock","src":"22656:76:51","statements":[{"nativeSrc":"22666:22:51","nodeType":"YulAssignment","src":"22666:22:51","value":{"arguments":[{"name":"offset","nativeSrc":"22681:6:51","nodeType":"YulIdentifier","src":"22681:6:51"}],"functionName":{"name":"mload","nativeSrc":"22675:5:51","nodeType":"YulIdentifier","src":"22675:5:51"},"nativeSrc":"22675:13:51","nodeType":"YulFunctionCall","src":"22675:13:51"},"variableNames":[{"name":"value","nativeSrc":"22666:5:51","nodeType":"YulIdentifier","src":"22666:5:51"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"22720:5:51","nodeType":"YulIdentifier","src":"22720:5:51"}],"functionName":{"name":"validator_revert_uint8","nativeSrc":"22697:22:51","nodeType":"YulIdentifier","src":"22697:22:51"},"nativeSrc":"22697:29:51","nodeType":"YulFunctionCall","src":"22697:29:51"},"nativeSrc":"22697:29:51","nodeType":"YulExpressionStatement","src":"22697:29:51"}]},"name":"abi_decode_uint8_fromMemory","nativeSrc":"22598:134:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"22635:6:51","nodeType":"YulTypedName","src":"22635:6:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"22646:5:51","nodeType":"YulTypedName","src":"22646:5:51","type":""}],"src":"22598:134:51"},{"body":{"nativeSrc":"22809:1200:51","nodeType":"YulBlock","src":"22809:1200:51","statements":[{"body":{"nativeSrc":"22853:16:51","nodeType":"YulBlock","src":"22853:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22862:1:51","nodeType":"YulLiteral","src":"22862:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"22865:1:51","nodeType":"YulLiteral","src":"22865:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22855:6:51","nodeType":"YulIdentifier","src":"22855:6:51"},"nativeSrc":"22855:12:51","nodeType":"YulFunctionCall","src":"22855:12:51"},"nativeSrc":"22855:12:51","nodeType":"YulExpressionStatement","src":"22855:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"22830:3:51","nodeType":"YulIdentifier","src":"22830:3:51"},{"name":"headStart","nativeSrc":"22835:9:51","nodeType":"YulIdentifier","src":"22835:9:51"}],"functionName":{"name":"sub","nativeSrc":"22826:3:51","nodeType":"YulIdentifier","src":"22826:3:51"},"nativeSrc":"22826:19:51","nodeType":"YulFunctionCall","src":"22826:19:51"},{"kind":"number","nativeSrc":"22847:4:51","nodeType":"YulLiteral","src":"22847:4:51","type":"","value":"0xc0"}],"functionName":{"name":"slt","nativeSrc":"22822:3:51","nodeType":"YulIdentifier","src":"22822:3:51"},"nativeSrc":"22822:30:51","nodeType":"YulFunctionCall","src":"22822:30:51"},"nativeSrc":"22819:50:51","nodeType":"YulIf","src":"22819:50:51"},{"nativeSrc":"22878:23:51","nodeType":"YulVariableDeclaration","src":"22878:23:51","value":{"arguments":[{"kind":"number","nativeSrc":"22898:2:51","nodeType":"YulLiteral","src":"22898:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"22892:5:51","nodeType":"YulIdentifier","src":"22892:5:51"},"nativeSrc":"22892:9:51","nodeType":"YulFunctionCall","src":"22892:9:51"},"variables":[{"name":"memPtr","nativeSrc":"22882:6:51","nodeType":"YulTypedName","src":"22882:6:51","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"22935:6:51","nodeType":"YulIdentifier","src":"22935:6:51"}],"functionName":{"name":"finalize_allocation_6050","nativeSrc":"22910:24:51","nodeType":"YulIdentifier","src":"22910:24:51"},"nativeSrc":"22910:32:51","nodeType":"YulFunctionCall","src":"22910:32:51"},"nativeSrc":"22910:32:51","nodeType":"YulExpressionStatement","src":"22910:32:51"},{"nativeSrc":"22951:15:51","nodeType":"YulAssignment","src":"22951:15:51","value":{"name":"memPtr","nativeSrc":"22960:6:51","nodeType":"YulIdentifier","src":"22960:6:51"},"variableNames":[{"name":"value","nativeSrc":"22951:5:51","nodeType":"YulIdentifier","src":"22951:5:51"}]},{"nativeSrc":"22975:30:51","nodeType":"YulVariableDeclaration","src":"22975:30:51","value":{"arguments":[{"name":"headStart","nativeSrc":"22995:9:51","nodeType":"YulIdentifier","src":"22995:9:51"}],"functionName":{"name":"mload","nativeSrc":"22989:5:51","nodeType":"YulIdentifier","src":"22989:5:51"},"nativeSrc":"22989:16:51","nodeType":"YulFunctionCall","src":"22989:16:51"},"variables":[{"name":"offset","nativeSrc":"22979:6:51","nodeType":"YulTypedName","src":"22979:6:51","type":""}]},{"body":{"nativeSrc":"23048:16:51","nodeType":"YulBlock","src":"23048:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23057:1:51","nodeType":"YulLiteral","src":"23057:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"23060:1:51","nodeType":"YulLiteral","src":"23060:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23050:6:51","nodeType":"YulIdentifier","src":"23050:6:51"},"nativeSrc":"23050:12:51","nodeType":"YulFunctionCall","src":"23050:12:51"},"nativeSrc":"23050:12:51","nodeType":"YulExpressionStatement","src":"23050:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"23020:6:51","nodeType":"YulIdentifier","src":"23020:6:51"},{"kind":"number","nativeSrc":"23028:18:51","nodeType":"YulLiteral","src":"23028:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"23017:2:51","nodeType":"YulIdentifier","src":"23017:2:51"},"nativeSrc":"23017:30:51","nodeType":"YulFunctionCall","src":"23017:30:51"},"nativeSrc":"23014:50:51","nodeType":"YulIf","src":"23014:50:51"},{"nativeSrc":"23073:32:51","nodeType":"YulVariableDeclaration","src":"23073:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"23087:9:51","nodeType":"YulIdentifier","src":"23087:9:51"},{"name":"offset","nativeSrc":"23098:6:51","nodeType":"YulIdentifier","src":"23098:6:51"}],"functionName":{"name":"add","nativeSrc":"23083:3:51","nodeType":"YulIdentifier","src":"23083:3:51"},"nativeSrc":"23083:22:51","nodeType":"YulFunctionCall","src":"23083:22:51"},"variables":[{"name":"_1","nativeSrc":"23077:2:51","nodeType":"YulTypedName","src":"23077:2:51","type":""}]},{"body":{"nativeSrc":"23139:16:51","nodeType":"YulBlock","src":"23139:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23148:1:51","nodeType":"YulLiteral","src":"23148:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"23151:1:51","nodeType":"YulLiteral","src":"23151:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23141:6:51","nodeType":"YulIdentifier","src":"23141:6:51"},"nativeSrc":"23141:12:51","nodeType":"YulFunctionCall","src":"23141:12:51"},"nativeSrc":"23141:12:51","nodeType":"YulExpressionStatement","src":"23141:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"23125:3:51","nodeType":"YulIdentifier","src":"23125:3:51"},{"name":"_1","nativeSrc":"23130:2:51","nodeType":"YulIdentifier","src":"23130:2:51"}],"functionName":{"name":"sub","nativeSrc":"23121:3:51","nodeType":"YulIdentifier","src":"23121:3:51"},"nativeSrc":"23121:12:51","nodeType":"YulFunctionCall","src":"23121:12:51"},{"kind":"number","nativeSrc":"23135:2:51","nodeType":"YulLiteral","src":"23135:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"23117:3:51","nodeType":"YulIdentifier","src":"23117:3:51"},"nativeSrc":"23117:21:51","nodeType":"YulFunctionCall","src":"23117:21:51"},"nativeSrc":"23114:41:51","nodeType":"YulIf","src":"23114:41:51"},{"nativeSrc":"23164:25:51","nodeType":"YulVariableDeclaration","src":"23164:25:51","value":{"arguments":[{"kind":"number","nativeSrc":"23186:2:51","nodeType":"YulLiteral","src":"23186:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"23180:5:51","nodeType":"YulIdentifier","src":"23180:5:51"},"nativeSrc":"23180:9:51","nodeType":"YulFunctionCall","src":"23180:9:51"},"variables":[{"name":"memPtr_1","nativeSrc":"23168:8:51","nodeType":"YulTypedName","src":"23168:8:51","type":""}]},{"expression":{"arguments":[{"name":"memPtr_1","nativeSrc":"23223:8:51","nodeType":"YulIdentifier","src":"23223:8:51"}],"functionName":{"name":"finalize_allocation_6051","nativeSrc":"23198:24:51","nodeType":"YulIdentifier","src":"23198:24:51"},"nativeSrc":"23198:34:51","nodeType":"YulFunctionCall","src":"23198:34:51"},"nativeSrc":"23198:34:51","nodeType":"YulExpressionStatement","src":"23198:34:51"},{"nativeSrc":"23241:25:51","nodeType":"YulVariableDeclaration","src":"23241:25:51","value":{"arguments":[{"name":"_1","nativeSrc":"23263:2:51","nodeType":"YulIdentifier","src":"23263:2:51"}],"functionName":{"name":"mload","nativeSrc":"23257:5:51","nodeType":"YulIdentifier","src":"23257:5:51"},"nativeSrc":"23257:9:51","nodeType":"YulFunctionCall","src":"23257:9:51"},"variables":[{"name":"offset_1","nativeSrc":"23245:8:51","nodeType":"YulTypedName","src":"23245:8:51","type":""}]},{"body":{"nativeSrc":"23311:16:51","nodeType":"YulBlock","src":"23311:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"23320:1:51","nodeType":"YulLiteral","src":"23320:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"23323:1:51","nodeType":"YulLiteral","src":"23323:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"23313:6:51","nodeType":"YulIdentifier","src":"23313:6:51"},"nativeSrc":"23313:12:51","nodeType":"YulFunctionCall","src":"23313:12:51"},"nativeSrc":"23313:12:51","nodeType":"YulExpressionStatement","src":"23313:12:51"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"23281:8:51","nodeType":"YulIdentifier","src":"23281:8:51"},{"kind":"number","nativeSrc":"23291:18:51","nodeType":"YulLiteral","src":"23291:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"23278:2:51","nodeType":"YulIdentifier","src":"23278:2:51"},"nativeSrc":"23278:32:51","nodeType":"YulFunctionCall","src":"23278:32:51"},"nativeSrc":"23275:52:51","nodeType":"YulIf","src":"23275:52:51"},{"expression":{"arguments":[{"name":"memPtr_1","nativeSrc":"23343:8:51","nodeType":"YulIdentifier","src":"23343:8:51"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"23385:2:51","nodeType":"YulIdentifier","src":"23385:2:51"},{"name":"offset_1","nativeSrc":"23389:8:51","nodeType":"YulIdentifier","src":"23389:8:51"}],"functionName":{"name":"add","nativeSrc":"23381:3:51","nodeType":"YulIdentifier","src":"23381:3:51"},"nativeSrc":"23381:17:51","nodeType":"YulFunctionCall","src":"23381:17:51"},{"name":"end","nativeSrc":"23400:3:51","nodeType":"YulIdentifier","src":"23400:3:51"}],"functionName":{"name":"abi_decode_bytes_fromMemory","nativeSrc":"23353:27:51","nodeType":"YulIdentifier","src":"23353:27:51"},"nativeSrc":"23353:51:51","nodeType":"YulFunctionCall","src":"23353:51:51"}],"functionName":{"name":"mstore","nativeSrc":"23336:6:51","nodeType":"YulIdentifier","src":"23336:6:51"},"nativeSrc":"23336:69:51","nodeType":"YulFunctionCall","src":"23336:69:51"},"nativeSrc":"23336:69:51","nodeType":"YulExpressionStatement","src":"23336:69:51"},{"nativeSrc":"23414:16:51","nodeType":"YulVariableDeclaration","src":"23414:16:51","value":{"kind":"number","nativeSrc":"23429:1:51","nodeType":"YulLiteral","src":"23429:1:51","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"23418:7:51","nodeType":"YulTypedName","src":"23418:7:51","type":""}]},{"nativeSrc":"23439:29:51","nodeType":"YulAssignment","src":"23439:29:51","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"23460:2:51","nodeType":"YulIdentifier","src":"23460:2:51"},{"kind":"number","nativeSrc":"23464:2:51","nodeType":"YulLiteral","src":"23464:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23456:3:51","nodeType":"YulIdentifier","src":"23456:3:51"},"nativeSrc":"23456:11:51","nodeType":"YulFunctionCall","src":"23456:11:51"}],"functionName":{"name":"mload","nativeSrc":"23450:5:51","nodeType":"YulIdentifier","src":"23450:5:51"},"nativeSrc":"23450:18:51","nodeType":"YulFunctionCall","src":"23450:18:51"},"variableNames":[{"name":"value_1","nativeSrc":"23439:7:51","nodeType":"YulIdentifier","src":"23439:7:51"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr_1","nativeSrc":"23488:8:51","nodeType":"YulIdentifier","src":"23488:8:51"},{"kind":"number","nativeSrc":"23498:2:51","nodeType":"YulLiteral","src":"23498:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23484:3:51","nodeType":"YulIdentifier","src":"23484:3:51"},"nativeSrc":"23484:17:51","nodeType":"YulFunctionCall","src":"23484:17:51"},{"name":"value_1","nativeSrc":"23503:7:51","nodeType":"YulIdentifier","src":"23503:7:51"}],"functionName":{"name":"mstore","nativeSrc":"23477:6:51","nodeType":"YulIdentifier","src":"23477:6:51"},"nativeSrc":"23477:34:51","nodeType":"YulFunctionCall","src":"23477:34:51"},"nativeSrc":"23477:34:51","nodeType":"YulExpressionStatement","src":"23477:34:51"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"23527:6:51","nodeType":"YulIdentifier","src":"23527:6:51"},{"name":"memPtr_1","nativeSrc":"23535:8:51","nodeType":"YulIdentifier","src":"23535:8:51"}],"functionName":{"name":"mstore","nativeSrc":"23520:6:51","nodeType":"YulIdentifier","src":"23520:6:51"},"nativeSrc":"23520:24:51","nodeType":"YulFunctionCall","src":"23520:24:51"},"nativeSrc":"23520:24:51","nodeType":"YulExpressionStatement","src":"23520:24:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"23564:6:51","nodeType":"YulIdentifier","src":"23564:6:51"},{"kind":"number","nativeSrc":"23572:2:51","nodeType":"YulLiteral","src":"23572:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23560:3:51","nodeType":"YulIdentifier","src":"23560:3:51"},"nativeSrc":"23560:15:51","nodeType":"YulFunctionCall","src":"23560:15:51"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23609:9:51","nodeType":"YulIdentifier","src":"23609:9:51"},{"kind":"number","nativeSrc":"23620:2:51","nodeType":"YulLiteral","src":"23620:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23605:3:51","nodeType":"YulIdentifier","src":"23605:3:51"},"nativeSrc":"23605:18:51","nodeType":"YulFunctionCall","src":"23605:18:51"}],"functionName":{"name":"abi_decode_uint8_fromMemory","nativeSrc":"23577:27:51","nodeType":"YulIdentifier","src":"23577:27:51"},"nativeSrc":"23577:47:51","nodeType":"YulFunctionCall","src":"23577:47:51"}],"functionName":{"name":"mstore","nativeSrc":"23553:6:51","nodeType":"YulIdentifier","src":"23553:6:51"},"nativeSrc":"23553:72:51","nodeType":"YulFunctionCall","src":"23553:72:51"},"nativeSrc":"23553:72:51","nodeType":"YulExpressionStatement","src":"23553:72:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"23645:6:51","nodeType":"YulIdentifier","src":"23645:6:51"},{"kind":"number","nativeSrc":"23653:2:51","nodeType":"YulLiteral","src":"23653:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23641:3:51","nodeType":"YulIdentifier","src":"23641:3:51"},"nativeSrc":"23641:15:51","nodeType":"YulFunctionCall","src":"23641:15:51"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23690:9:51","nodeType":"YulIdentifier","src":"23690:9:51"},{"kind":"number","nativeSrc":"23701:2:51","nodeType":"YulLiteral","src":"23701:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23686:3:51","nodeType":"YulIdentifier","src":"23686:3:51"},"nativeSrc":"23686:18:51","nodeType":"YulFunctionCall","src":"23686:18:51"}],"functionName":{"name":"abi_decode_uint8_fromMemory","nativeSrc":"23658:27:51","nodeType":"YulIdentifier","src":"23658:27:51"},"nativeSrc":"23658:47:51","nodeType":"YulFunctionCall","src":"23658:47:51"}],"functionName":{"name":"mstore","nativeSrc":"23634:6:51","nodeType":"YulIdentifier","src":"23634:6:51"},"nativeSrc":"23634:72:51","nodeType":"YulFunctionCall","src":"23634:72:51"},"nativeSrc":"23634:72:51","nodeType":"YulExpressionStatement","src":"23634:72:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"23726:6:51","nodeType":"YulIdentifier","src":"23726:6:51"},{"kind":"number","nativeSrc":"23734:2:51","nodeType":"YulLiteral","src":"23734:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23722:3:51","nodeType":"YulIdentifier","src":"23722:3:51"},"nativeSrc":"23722:15:51","nodeType":"YulFunctionCall","src":"23722:15:51"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23771:9:51","nodeType":"YulIdentifier","src":"23771:9:51"},{"kind":"number","nativeSrc":"23782:2:51","nodeType":"YulLiteral","src":"23782:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23767:3:51","nodeType":"YulIdentifier","src":"23767:3:51"},"nativeSrc":"23767:18:51","nodeType":"YulFunctionCall","src":"23767:18:51"}],"functionName":{"name":"abi_decode_uint8_fromMemory","nativeSrc":"23739:27:51","nodeType":"YulIdentifier","src":"23739:27:51"},"nativeSrc":"23739:47:51","nodeType":"YulFunctionCall","src":"23739:47:51"}],"functionName":{"name":"mstore","nativeSrc":"23715:6:51","nodeType":"YulIdentifier","src":"23715:6:51"},"nativeSrc":"23715:72:51","nodeType":"YulFunctionCall","src":"23715:72:51"},"nativeSrc":"23715:72:51","nodeType":"YulExpressionStatement","src":"23715:72:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"23807:6:51","nodeType":"YulIdentifier","src":"23807:6:51"},{"kind":"number","nativeSrc":"23815:3:51","nodeType":"YulLiteral","src":"23815:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"23803:3:51","nodeType":"YulIdentifier","src":"23803:3:51"},"nativeSrc":"23803:16:51","nodeType":"YulFunctionCall","src":"23803:16:51"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23878:9:51","nodeType":"YulIdentifier","src":"23878:9:51"},{"kind":"number","nativeSrc":"23889:3:51","nodeType":"YulLiteral","src":"23889:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"23874:3:51","nodeType":"YulIdentifier","src":"23874:3:51"},"nativeSrc":"23874:19:51","nodeType":"YulFunctionCall","src":"23874:19:51"}],"functionName":{"name":"abi_decode_userDefinedValueType_Timestamp_fromMemory","nativeSrc":"23821:52:51","nodeType":"YulIdentifier","src":"23821:52:51"},"nativeSrc":"23821:73:51","nodeType":"YulFunctionCall","src":"23821:73:51"}],"functionName":{"name":"mstore","nativeSrc":"23796:6:51","nodeType":"YulIdentifier","src":"23796:6:51"},"nativeSrc":"23796:99:51","nodeType":"YulFunctionCall","src":"23796:99:51"},"nativeSrc":"23796:99:51","nodeType":"YulExpressionStatement","src":"23796:99:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"23915:6:51","nodeType":"YulIdentifier","src":"23915:6:51"},{"kind":"number","nativeSrc":"23923:3:51","nodeType":"YulLiteral","src":"23923:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"23911:3:51","nodeType":"YulIdentifier","src":"23911:3:51"},"nativeSrc":"23911:16:51","nodeType":"YulFunctionCall","src":"23911:16:51"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23986:9:51","nodeType":"YulIdentifier","src":"23986:9:51"},{"kind":"number","nativeSrc":"23997:3:51","nodeType":"YulLiteral","src":"23997:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"23982:3:51","nodeType":"YulIdentifier","src":"23982:3:51"},"nativeSrc":"23982:19:51","nodeType":"YulFunctionCall","src":"23982:19:51"}],"functionName":{"name":"abi_decode_userDefinedValueType_Timestamp_fromMemory","nativeSrc":"23929:52:51","nodeType":"YulIdentifier","src":"23929:52:51"},"nativeSrc":"23929:73:51","nodeType":"YulFunctionCall","src":"23929:73:51"}],"functionName":{"name":"mstore","nativeSrc":"23904:6:51","nodeType":"YulIdentifier","src":"23904:6:51"},"nativeSrc":"23904:99:51","nodeType":"YulFunctionCall","src":"23904:99:51"},"nativeSrc":"23904:99:51","nodeType":"YulExpressionStatement","src":"23904:99:51"}]},"name":"abi_decode_struct_CBOR_fromMemory","nativeSrc":"22737:1272:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22780:9:51","nodeType":"YulTypedName","src":"22780:9:51","type":""},{"name":"end","nativeSrc":"22791:3:51","nodeType":"YulTypedName","src":"22791:3:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"22799:5:51","nodeType":"YulTypedName","src":"22799:5:51","type":""}],"src":"22737:1272:51"},{"body":{"nativeSrc":"24124:965:51","nodeType":"YulBlock","src":"24124:965:51","statements":[{"body":{"nativeSrc":"24170:16:51","nodeType":"YulBlock","src":"24170:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24179:1:51","nodeType":"YulLiteral","src":"24179:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"24182:1:51","nodeType":"YulLiteral","src":"24182:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24172:6:51","nodeType":"YulIdentifier","src":"24172:6:51"},"nativeSrc":"24172:12:51","nodeType":"YulFunctionCall","src":"24172:12:51"},"nativeSrc":"24172:12:51","nodeType":"YulExpressionStatement","src":"24172:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"24145:7:51","nodeType":"YulIdentifier","src":"24145:7:51"},{"name":"headStart","nativeSrc":"24154:9:51","nodeType":"YulIdentifier","src":"24154:9:51"}],"functionName":{"name":"sub","nativeSrc":"24141:3:51","nodeType":"YulIdentifier","src":"24141:3:51"},"nativeSrc":"24141:23:51","nodeType":"YulFunctionCall","src":"24141:23:51"},{"kind":"number","nativeSrc":"24166:2:51","nodeType":"YulLiteral","src":"24166:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"24137:3:51","nodeType":"YulIdentifier","src":"24137:3:51"},"nativeSrc":"24137:32:51","nodeType":"YulFunctionCall","src":"24137:32:51"},"nativeSrc":"24134:52:51","nodeType":"YulIf","src":"24134:52:51"},{"nativeSrc":"24195:30:51","nodeType":"YulVariableDeclaration","src":"24195:30:51","value":{"arguments":[{"name":"headStart","nativeSrc":"24215:9:51","nodeType":"YulIdentifier","src":"24215:9:51"}],"functionName":{"name":"mload","nativeSrc":"24209:5:51","nodeType":"YulIdentifier","src":"24209:5:51"},"nativeSrc":"24209:16:51","nodeType":"YulFunctionCall","src":"24209:16:51"},"variables":[{"name":"offset","nativeSrc":"24199:6:51","nodeType":"YulTypedName","src":"24199:6:51","type":""}]},{"body":{"nativeSrc":"24268:16:51","nodeType":"YulBlock","src":"24268:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24277:1:51","nodeType":"YulLiteral","src":"24277:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"24280:1:51","nodeType":"YulLiteral","src":"24280:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24270:6:51","nodeType":"YulIdentifier","src":"24270:6:51"},"nativeSrc":"24270:12:51","nodeType":"YulFunctionCall","src":"24270:12:51"},"nativeSrc":"24270:12:51","nodeType":"YulExpressionStatement","src":"24270:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"24240:6:51","nodeType":"YulIdentifier","src":"24240:6:51"},{"kind":"number","nativeSrc":"24248:18:51","nodeType":"YulLiteral","src":"24248:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"24237:2:51","nodeType":"YulIdentifier","src":"24237:2:51"},"nativeSrc":"24237:30:51","nodeType":"YulFunctionCall","src":"24237:30:51"},"nativeSrc":"24234:50:51","nodeType":"YulIf","src":"24234:50:51"},{"nativeSrc":"24293:32:51","nodeType":"YulVariableDeclaration","src":"24293:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"24307:9:51","nodeType":"YulIdentifier","src":"24307:9:51"},{"name":"offset","nativeSrc":"24318:6:51","nodeType":"YulIdentifier","src":"24318:6:51"}],"functionName":{"name":"add","nativeSrc":"24303:3:51","nodeType":"YulIdentifier","src":"24303:3:51"},"nativeSrc":"24303:22:51","nodeType":"YulFunctionCall","src":"24303:22:51"},"variables":[{"name":"_1","nativeSrc":"24297:2:51","nodeType":"YulTypedName","src":"24297:2:51","type":""}]},{"body":{"nativeSrc":"24365:16:51","nodeType":"YulBlock","src":"24365:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24374:1:51","nodeType":"YulLiteral","src":"24374:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"24377:1:51","nodeType":"YulLiteral","src":"24377:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24367:6:51","nodeType":"YulIdentifier","src":"24367:6:51"},"nativeSrc":"24367:12:51","nodeType":"YulFunctionCall","src":"24367:12:51"},"nativeSrc":"24367:12:51","nodeType":"YulExpressionStatement","src":"24367:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"24345:7:51","nodeType":"YulIdentifier","src":"24345:7:51"},{"name":"_1","nativeSrc":"24354:2:51","nodeType":"YulIdentifier","src":"24354:2:51"}],"functionName":{"name":"sub","nativeSrc":"24341:3:51","nodeType":"YulIdentifier","src":"24341:3:51"},"nativeSrc":"24341:16:51","nodeType":"YulFunctionCall","src":"24341:16:51"},{"kind":"number","nativeSrc":"24359:4:51","nodeType":"YulLiteral","src":"24359:4:51","type":"","value":"0xa0"}],"functionName":{"name":"slt","nativeSrc":"24337:3:51","nodeType":"YulIdentifier","src":"24337:3:51"},"nativeSrc":"24337:27:51","nodeType":"YulFunctionCall","src":"24337:27:51"},"nativeSrc":"24334:47:51","nodeType":"YulIf","src":"24334:47:51"},{"nativeSrc":"24390:23:51","nodeType":"YulVariableDeclaration","src":"24390:23:51","value":{"arguments":[{"kind":"number","nativeSrc":"24410:2:51","nodeType":"YulLiteral","src":"24410:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"24404:5:51","nodeType":"YulIdentifier","src":"24404:5:51"},"nativeSrc":"24404:9:51","nodeType":"YulFunctionCall","src":"24404:9:51"},"variables":[{"name":"memPtr","nativeSrc":"24394:6:51","nodeType":"YulTypedName","src":"24394:6:51","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"24447:6:51","nodeType":"YulIdentifier","src":"24447:6:51"}],"functionName":{"name":"finalize_allocation_6053","nativeSrc":"24422:24:51","nodeType":"YulIdentifier","src":"24422:24:51"},"nativeSrc":"24422:32:51","nodeType":"YulFunctionCall","src":"24422:32:51"},"nativeSrc":"24422:32:51","nodeType":"YulExpressionStatement","src":"24422:32:51"},{"nativeSrc":"24463:22:51","nodeType":"YulVariableDeclaration","src":"24463:22:51","value":{"arguments":[{"name":"_1","nativeSrc":"24482:2:51","nodeType":"YulIdentifier","src":"24482:2:51"}],"functionName":{"name":"mload","nativeSrc":"24476:5:51","nodeType":"YulIdentifier","src":"24476:5:51"},"nativeSrc":"24476:9:51","nodeType":"YulFunctionCall","src":"24476:9:51"},"variables":[{"name":"value","nativeSrc":"24467:5:51","nodeType":"YulTypedName","src":"24467:5:51","type":""}]},{"body":{"nativeSrc":"24520:16:51","nodeType":"YulBlock","src":"24520:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24529:1:51","nodeType":"YulLiteral","src":"24529:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"24532:1:51","nodeType":"YulLiteral","src":"24532:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24522:6:51","nodeType":"YulIdentifier","src":"24522:6:51"},"nativeSrc":"24522:12:51","nodeType":"YulFunctionCall","src":"24522:12:51"},"nativeSrc":"24522:12:51","nodeType":"YulExpressionStatement","src":"24522:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"24507:5:51","nodeType":"YulIdentifier","src":"24507:5:51"},{"kind":"number","nativeSrc":"24514:3:51","nodeType":"YulLiteral","src":"24514:3:51","type":"","value":"256"}],"functionName":{"name":"lt","nativeSrc":"24504:2:51","nodeType":"YulIdentifier","src":"24504:2:51"},"nativeSrc":"24504:14:51","nodeType":"YulFunctionCall","src":"24504:14:51"}],"functionName":{"name":"iszero","nativeSrc":"24497:6:51","nodeType":"YulIdentifier","src":"24497:6:51"},"nativeSrc":"24497:22:51","nodeType":"YulFunctionCall","src":"24497:22:51"},"nativeSrc":"24494:42:51","nodeType":"YulIf","src":"24494:42:51"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"24552:6:51","nodeType":"YulIdentifier","src":"24552:6:51"},{"name":"value","nativeSrc":"24560:5:51","nodeType":"YulIdentifier","src":"24560:5:51"}],"functionName":{"name":"mstore","nativeSrc":"24545:6:51","nodeType":"YulIdentifier","src":"24545:6:51"},"nativeSrc":"24545:21:51","nodeType":"YulFunctionCall","src":"24545:21:51"},"nativeSrc":"24545:21:51","nodeType":"YulExpressionStatement","src":"24545:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"24586:6:51","nodeType":"YulIdentifier","src":"24586:6:51"},{"kind":"number","nativeSrc":"24594:2:51","nodeType":"YulLiteral","src":"24594:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24582:3:51","nodeType":"YulIdentifier","src":"24582:3:51"},"nativeSrc":"24582:15:51","nodeType":"YulFunctionCall","src":"24582:15:51"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"24645:2:51","nodeType":"YulIdentifier","src":"24645:2:51"},{"kind":"number","nativeSrc":"24649:2:51","nodeType":"YulLiteral","src":"24649:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24641:3:51","nodeType":"YulIdentifier","src":"24641:3:51"},"nativeSrc":"24641:11:51","nodeType":"YulFunctionCall","src":"24641:11:51"}],"functionName":{"name":"abi_decode_enum_RadonDataTypes_fromMemory","nativeSrc":"24599:41:51","nodeType":"YulIdentifier","src":"24599:41:51"},"nativeSrc":"24599:54:51","nodeType":"YulFunctionCall","src":"24599:54:51"}],"functionName":{"name":"mstore","nativeSrc":"24575:6:51","nodeType":"YulIdentifier","src":"24575:6:51"},"nativeSrc":"24575:79:51","nodeType":"YulFunctionCall","src":"24575:79:51"},"nativeSrc":"24575:79:51","nodeType":"YulExpressionStatement","src":"24575:79:51"},{"nativeSrc":"24663:16:51","nodeType":"YulVariableDeclaration","src":"24663:16:51","value":{"kind":"number","nativeSrc":"24678:1:51","nodeType":"YulLiteral","src":"24678:1:51","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"24667:7:51","nodeType":"YulTypedName","src":"24667:7:51","type":""}]},{"nativeSrc":"24688:29:51","nodeType":"YulAssignment","src":"24688:29:51","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"24709:2:51","nodeType":"YulIdentifier","src":"24709:2:51"},{"kind":"number","nativeSrc":"24713:2:51","nodeType":"YulLiteral","src":"24713:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24705:3:51","nodeType":"YulIdentifier","src":"24705:3:51"},"nativeSrc":"24705:11:51","nodeType":"YulFunctionCall","src":"24705:11:51"}],"functionName":{"name":"mload","nativeSrc":"24699:5:51","nodeType":"YulIdentifier","src":"24699:5:51"},"nativeSrc":"24699:18:51","nodeType":"YulFunctionCall","src":"24699:18:51"},"variableNames":[{"name":"value_1","nativeSrc":"24688:7:51","nodeType":"YulIdentifier","src":"24688:7:51"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"24737:6:51","nodeType":"YulIdentifier","src":"24737:6:51"},{"kind":"number","nativeSrc":"24745:2:51","nodeType":"YulLiteral","src":"24745:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24733:3:51","nodeType":"YulIdentifier","src":"24733:3:51"},"nativeSrc":"24733:15:51","nodeType":"YulFunctionCall","src":"24733:15:51"},{"name":"value_1","nativeSrc":"24750:7:51","nodeType":"YulIdentifier","src":"24750:7:51"}],"functionName":{"name":"mstore","nativeSrc":"24726:6:51","nodeType":"YulIdentifier","src":"24726:6:51"},"nativeSrc":"24726:32:51","nodeType":"YulFunctionCall","src":"24726:32:51"},"nativeSrc":"24726:32:51","nodeType":"YulExpressionStatement","src":"24726:32:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"24778:6:51","nodeType":"YulIdentifier","src":"24778:6:51"},{"kind":"number","nativeSrc":"24786:2:51","nodeType":"YulLiteral","src":"24786:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"24774:3:51","nodeType":"YulIdentifier","src":"24774:3:51"},"nativeSrc":"24774:15:51","nodeType":"YulFunctionCall","src":"24774:15:51"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"24848:2:51","nodeType":"YulIdentifier","src":"24848:2:51"},{"kind":"number","nativeSrc":"24852:2:51","nodeType":"YulLiteral","src":"24852:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"24844:3:51","nodeType":"YulIdentifier","src":"24844:3:51"},"nativeSrc":"24844:11:51","nodeType":"YulFunctionCall","src":"24844:11:51"}],"functionName":{"name":"abi_decode_userDefinedValueType_Timestamp_fromMemory","nativeSrc":"24791:52:51","nodeType":"YulIdentifier","src":"24791:52:51"},"nativeSrc":"24791:65:51","nodeType":"YulFunctionCall","src":"24791:65:51"}],"functionName":{"name":"mstore","nativeSrc":"24767:6:51","nodeType":"YulIdentifier","src":"24767:6:51"},"nativeSrc":"24767:90:51","nodeType":"YulFunctionCall","src":"24767:90:51"},"nativeSrc":"24767:90:51","nodeType":"YulExpressionStatement","src":"24767:90:51"},{"nativeSrc":"24866:35:51","nodeType":"YulVariableDeclaration","src":"24866:35:51","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"24892:2:51","nodeType":"YulIdentifier","src":"24892:2:51"},{"kind":"number","nativeSrc":"24896:3:51","nodeType":"YulLiteral","src":"24896:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"24888:3:51","nodeType":"YulIdentifier","src":"24888:3:51"},"nativeSrc":"24888:12:51","nodeType":"YulFunctionCall","src":"24888:12:51"}],"functionName":{"name":"mload","nativeSrc":"24882:5:51","nodeType":"YulIdentifier","src":"24882:5:51"},"nativeSrc":"24882:19:51","nodeType":"YulFunctionCall","src":"24882:19:51"},"variables":[{"name":"offset_1","nativeSrc":"24870:8:51","nodeType":"YulTypedName","src":"24870:8:51","type":""}]},{"body":{"nativeSrc":"24946:16:51","nodeType":"YulBlock","src":"24946:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24955:1:51","nodeType":"YulLiteral","src":"24955:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"24958:1:51","nodeType":"YulLiteral","src":"24958:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24948:6:51","nodeType":"YulIdentifier","src":"24948:6:51"},"nativeSrc":"24948:12:51","nodeType":"YulFunctionCall","src":"24948:12:51"},"nativeSrc":"24948:12:51","nodeType":"YulExpressionStatement","src":"24948:12:51"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"24916:8:51","nodeType":"YulIdentifier","src":"24916:8:51"},{"kind":"number","nativeSrc":"24926:18:51","nodeType":"YulLiteral","src":"24926:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"24913:2:51","nodeType":"YulIdentifier","src":"24913:2:51"},"nativeSrc":"24913:32:51","nodeType":"YulFunctionCall","src":"24913:32:51"},"nativeSrc":"24910:52:51","nodeType":"YulIf","src":"24910:52:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"24982:6:51","nodeType":"YulIdentifier","src":"24982:6:51"},{"kind":"number","nativeSrc":"24990:3:51","nodeType":"YulLiteral","src":"24990:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"24978:3:51","nodeType":"YulIdentifier","src":"24978:3:51"},"nativeSrc":"24978:16:51","nodeType":"YulFunctionCall","src":"24978:16:51"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"25034:2:51","nodeType":"YulIdentifier","src":"25034:2:51"},{"name":"offset_1","nativeSrc":"25038:8:51","nodeType":"YulIdentifier","src":"25038:8:51"}],"functionName":{"name":"add","nativeSrc":"25030:3:51","nodeType":"YulIdentifier","src":"25030:3:51"},"nativeSrc":"25030:17:51","nodeType":"YulFunctionCall","src":"25030:17:51"},{"name":"dataEnd","nativeSrc":"25049:7:51","nodeType":"YulIdentifier","src":"25049:7:51"}],"functionName":{"name":"abi_decode_struct_CBOR_fromMemory","nativeSrc":"24996:33:51","nodeType":"YulIdentifier","src":"24996:33:51"},"nativeSrc":"24996:61:51","nodeType":"YulFunctionCall","src":"24996:61:51"}],"functionName":{"name":"mstore","nativeSrc":"24971:6:51","nodeType":"YulIdentifier","src":"24971:6:51"},"nativeSrc":"24971:87:51","nodeType":"YulFunctionCall","src":"24971:87:51"},"nativeSrc":"24971:87:51","nodeType":"YulExpressionStatement","src":"24971:87:51"},{"nativeSrc":"25067:16:51","nodeType":"YulAssignment","src":"25067:16:51","value":{"name":"memPtr","nativeSrc":"25077:6:51","nodeType":"YulIdentifier","src":"25077:6:51"},"variableNames":[{"name":"value0","nativeSrc":"25067:6:51","nodeType":"YulIdentifier","src":"25067:6:51"}]}]},"name":"abi_decode_tuple_t_struct$_DataResult_$13388_memory_ptr_fromMemory","nativeSrc":"24014:1075:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24090:9:51","nodeType":"YulTypedName","src":"24090:9:51","type":""},{"name":"dataEnd","nativeSrc":"24101:7:51","nodeType":"YulTypedName","src":"24101:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"24113:6:51","nodeType":"YulTypedName","src":"24113:6:51","type":""}],"src":"24014:1075:51"},{"body":{"nativeSrc":"25261:1543:51","nodeType":"YulBlock","src":"25261:1543:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25278:9:51","nodeType":"YulIdentifier","src":"25278:9:51"},{"kind":"number","nativeSrc":"25289:2:51","nodeType":"YulLiteral","src":"25289:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"25271:6:51","nodeType":"YulIdentifier","src":"25271:6:51"},"nativeSrc":"25271:21:51","nodeType":"YulFunctionCall","src":"25271:21:51"},"nativeSrc":"25271:21:51","nodeType":"YulExpressionStatement","src":"25271:21:51"},{"nativeSrc":"25301:23:51","nodeType":"YulVariableDeclaration","src":"25301:23:51","value":{"arguments":[{"name":"value0","nativeSrc":"25317:6:51","nodeType":"YulIdentifier","src":"25317:6:51"}],"functionName":{"name":"mload","nativeSrc":"25311:5:51","nodeType":"YulIdentifier","src":"25311:5:51"},"nativeSrc":"25311:13:51","nodeType":"YulFunctionCall","src":"25311:13:51"},"variables":[{"name":"_1","nativeSrc":"25305:2:51","nodeType":"YulTypedName","src":"25305:2:51","type":""}]},{"body":{"nativeSrc":"25356:22:51","nodeType":"YulBlock","src":"25356:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x21","nativeSrc":"25358:16:51","nodeType":"YulIdentifier","src":"25358:16:51"},"nativeSrc":"25358:18:51","nodeType":"YulFunctionCall","src":"25358:18:51"},"nativeSrc":"25358:18:51","nodeType":"YulExpressionStatement","src":"25358:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"25346:2:51","nodeType":"YulIdentifier","src":"25346:2:51"},{"kind":"number","nativeSrc":"25350:3:51","nodeType":"YulLiteral","src":"25350:3:51","type":"","value":"256"}],"functionName":{"name":"lt","nativeSrc":"25343:2:51","nodeType":"YulIdentifier","src":"25343:2:51"},"nativeSrc":"25343:11:51","nodeType":"YulFunctionCall","src":"25343:11:51"}],"functionName":{"name":"iszero","nativeSrc":"25336:6:51","nodeType":"YulIdentifier","src":"25336:6:51"},"nativeSrc":"25336:19:51","nodeType":"YulFunctionCall","src":"25336:19:51"},"nativeSrc":"25333:45:51","nodeType":"YulIf","src":"25333:45:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25398:9:51","nodeType":"YulIdentifier","src":"25398:9:51"},{"kind":"number","nativeSrc":"25409:2:51","nodeType":"YulLiteral","src":"25409:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25394:3:51","nodeType":"YulIdentifier","src":"25394:3:51"},"nativeSrc":"25394:18:51","nodeType":"YulFunctionCall","src":"25394:18:51"},{"name":"_1","nativeSrc":"25414:2:51","nodeType":"YulIdentifier","src":"25414:2:51"}],"functionName":{"name":"mstore","nativeSrc":"25387:6:51","nodeType":"YulIdentifier","src":"25387:6:51"},"nativeSrc":"25387:30:51","nodeType":"YulFunctionCall","src":"25387:30:51"},"nativeSrc":"25387:30:51","nodeType":"YulExpressionStatement","src":"25387:30:51"},{"nativeSrc":"25426:42:51","nodeType":"YulVariableDeclaration","src":"25426:42:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"25456:6:51","nodeType":"YulIdentifier","src":"25456:6:51"},{"kind":"number","nativeSrc":"25464:2:51","nodeType":"YulLiteral","src":"25464:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25452:3:51","nodeType":"YulIdentifier","src":"25452:3:51"},"nativeSrc":"25452:15:51","nodeType":"YulFunctionCall","src":"25452:15:51"}],"functionName":{"name":"mload","nativeSrc":"25446:5:51","nodeType":"YulIdentifier","src":"25446:5:51"},"nativeSrc":"25446:22:51","nodeType":"YulFunctionCall","src":"25446:22:51"},"variables":[{"name":"memberValue0","nativeSrc":"25430:12:51","nodeType":"YulTypedName","src":"25430:12:51","type":""}]},{"body":{"nativeSrc":"25509:22:51","nodeType":"YulBlock","src":"25509:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x21","nativeSrc":"25511:16:51","nodeType":"YulIdentifier","src":"25511:16:51"},"nativeSrc":"25511:18:51","nodeType":"YulFunctionCall","src":"25511:18:51"},"nativeSrc":"25511:18:51","nodeType":"YulExpressionStatement","src":"25511:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"memberValue0","nativeSrc":"25490:12:51","nodeType":"YulIdentifier","src":"25490:12:51"},{"kind":"number","nativeSrc":"25504:2:51","nodeType":"YulLiteral","src":"25504:2:51","type":"","value":"20"}],"functionName":{"name":"lt","nativeSrc":"25487:2:51","nodeType":"YulIdentifier","src":"25487:2:51"},"nativeSrc":"25487:20:51","nodeType":"YulFunctionCall","src":"25487:20:51"}],"functionName":{"name":"iszero","nativeSrc":"25480:6:51","nodeType":"YulIdentifier","src":"25480:6:51"},"nativeSrc":"25480:28:51","nodeType":"YulFunctionCall","src":"25480:28:51"},"nativeSrc":"25477:54:51","nodeType":"YulIf","src":"25477:54:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25551:9:51","nodeType":"YulIdentifier","src":"25551:9:51"},{"kind":"number","nativeSrc":"25562:2:51","nodeType":"YulLiteral","src":"25562:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25547:3:51","nodeType":"YulIdentifier","src":"25547:3:51"},"nativeSrc":"25547:18:51","nodeType":"YulFunctionCall","src":"25547:18:51"},{"name":"memberValue0","nativeSrc":"25567:12:51","nodeType":"YulIdentifier","src":"25567:12:51"}],"functionName":{"name":"mstore","nativeSrc":"25540:6:51","nodeType":"YulIdentifier","src":"25540:6:51"},"nativeSrc":"25540:40:51","nodeType":"YulFunctionCall","src":"25540:40:51"},"nativeSrc":"25540:40:51","nodeType":"YulExpressionStatement","src":"25540:40:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25600:9:51","nodeType":"YulIdentifier","src":"25600:9:51"},{"kind":"number","nativeSrc":"25611:2:51","nodeType":"YulLiteral","src":"25611:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25596:3:51","nodeType":"YulIdentifier","src":"25596:3:51"},"nativeSrc":"25596:18:51","nodeType":"YulFunctionCall","src":"25596:18:51"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"25626:6:51","nodeType":"YulIdentifier","src":"25626:6:51"},{"kind":"number","nativeSrc":"25634:2:51","nodeType":"YulLiteral","src":"25634:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25622:3:51","nodeType":"YulIdentifier","src":"25622:3:51"},"nativeSrc":"25622:15:51","nodeType":"YulFunctionCall","src":"25622:15:51"}],"functionName":{"name":"mload","nativeSrc":"25616:5:51","nodeType":"YulIdentifier","src":"25616:5:51"},"nativeSrc":"25616:22:51","nodeType":"YulFunctionCall","src":"25616:22:51"}],"functionName":{"name":"mstore","nativeSrc":"25589:6:51","nodeType":"YulIdentifier","src":"25589:6:51"},"nativeSrc":"25589:50:51","nodeType":"YulFunctionCall","src":"25589:50:51"},"nativeSrc":"25589:50:51","nodeType":"YulExpressionStatement","src":"25589:50:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25659:9:51","nodeType":"YulIdentifier","src":"25659:9:51"},{"kind":"number","nativeSrc":"25670:3:51","nodeType":"YulLiteral","src":"25670:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"25655:3:51","nodeType":"YulIdentifier","src":"25655:3:51"},"nativeSrc":"25655:19:51","nodeType":"YulFunctionCall","src":"25655:19:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"25690:6:51","nodeType":"YulIdentifier","src":"25690:6:51"},{"kind":"number","nativeSrc":"25698:2:51","nodeType":"YulLiteral","src":"25698:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25686:3:51","nodeType":"YulIdentifier","src":"25686:3:51"},"nativeSrc":"25686:15:51","nodeType":"YulFunctionCall","src":"25686:15:51"}],"functionName":{"name":"mload","nativeSrc":"25680:5:51","nodeType":"YulIdentifier","src":"25680:5:51"},"nativeSrc":"25680:22:51","nodeType":"YulFunctionCall","src":"25680:22:51"},{"kind":"number","nativeSrc":"25704:18:51","nodeType":"YulLiteral","src":"25704:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"25676:3:51","nodeType":"YulIdentifier","src":"25676:3:51"},"nativeSrc":"25676:47:51","nodeType":"YulFunctionCall","src":"25676:47:51"}],"functionName":{"name":"mstore","nativeSrc":"25648:6:51","nodeType":"YulIdentifier","src":"25648:6:51"},"nativeSrc":"25648:76:51","nodeType":"YulFunctionCall","src":"25648:76:51"},"nativeSrc":"25648:76:51","nodeType":"YulExpressionStatement","src":"25648:76:51"},{"nativeSrc":"25733:45:51","nodeType":"YulVariableDeclaration","src":"25733:45:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"25765:6:51","nodeType":"YulIdentifier","src":"25765:6:51"},{"kind":"number","nativeSrc":"25773:3:51","nodeType":"YulLiteral","src":"25773:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"25761:3:51","nodeType":"YulIdentifier","src":"25761:3:51"},"nativeSrc":"25761:16:51","nodeType":"YulFunctionCall","src":"25761:16:51"}],"functionName":{"name":"mload","nativeSrc":"25755:5:51","nodeType":"YulIdentifier","src":"25755:5:51"},"nativeSrc":"25755:23:51","nodeType":"YulFunctionCall","src":"25755:23:51"},"variables":[{"name":"memberValue0_1","nativeSrc":"25737:14:51","nodeType":"YulTypedName","src":"25737:14:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25798:9:51","nodeType":"YulIdentifier","src":"25798:9:51"},{"kind":"number","nativeSrc":"25809:4:51","nodeType":"YulLiteral","src":"25809:4:51","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"25794:3:51","nodeType":"YulIdentifier","src":"25794:3:51"},"nativeSrc":"25794:20:51","nodeType":"YulFunctionCall","src":"25794:20:51"},{"kind":"number","nativeSrc":"25816:4:51","nodeType":"YulLiteral","src":"25816:4:51","type":"","value":"0xa0"}],"functionName":{"name":"mstore","nativeSrc":"25787:6:51","nodeType":"YulIdentifier","src":"25787:6:51"},"nativeSrc":"25787:34:51","nodeType":"YulFunctionCall","src":"25787:34:51"},"nativeSrc":"25787:34:51","nodeType":"YulExpressionStatement","src":"25787:34:51"},{"nativeSrc":"25830:43:51","nodeType":"YulVariableDeclaration","src":"25830:43:51","value":{"arguments":[{"name":"memberValue0_1","nativeSrc":"25858:14:51","nodeType":"YulIdentifier","src":"25858:14:51"}],"functionName":{"name":"mload","nativeSrc":"25852:5:51","nodeType":"YulIdentifier","src":"25852:5:51"},"nativeSrc":"25852:21:51","nodeType":"YulFunctionCall","src":"25852:21:51"},"variables":[{"name":"memberValue0_2","nativeSrc":"25834:14:51","nodeType":"YulTypedName","src":"25834:14:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25893:9:51","nodeType":"YulIdentifier","src":"25893:9:51"},{"kind":"number","nativeSrc":"25904:3:51","nodeType":"YulLiteral","src":"25904:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"25889:3:51","nodeType":"YulIdentifier","src":"25889:3:51"},"nativeSrc":"25889:19:51","nodeType":"YulFunctionCall","src":"25889:19:51"},{"kind":"number","nativeSrc":"25910:3:51","nodeType":"YulLiteral","src":"25910:3:51","type":"","value":"192"}],"functionName":{"name":"mstore","nativeSrc":"25882:6:51","nodeType":"YulIdentifier","src":"25882:6:51"},"nativeSrc":"25882:32:51","nodeType":"YulFunctionCall","src":"25882:32:51"},"nativeSrc":"25882:32:51","nodeType":"YulExpressionStatement","src":"25882:32:51"},{"nativeSrc":"25923:43:51","nodeType":"YulVariableDeclaration","src":"25923:43:51","value":{"arguments":[{"name":"memberValue0_2","nativeSrc":"25951:14:51","nodeType":"YulIdentifier","src":"25951:14:51"}],"functionName":{"name":"mload","nativeSrc":"25945:5:51","nodeType":"YulIdentifier","src":"25945:5:51"},"nativeSrc":"25945:21:51","nodeType":"YulFunctionCall","src":"25945:21:51"},"variables":[{"name":"memberValue0_3","nativeSrc":"25927:14:51","nodeType":"YulTypedName","src":"25927:14:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25986:9:51","nodeType":"YulIdentifier","src":"25986:9:51"},{"kind":"number","nativeSrc":"25997:3:51","nodeType":"YulLiteral","src":"25997:3:51","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"25982:3:51","nodeType":"YulIdentifier","src":"25982:3:51"},"nativeSrc":"25982:19:51","nodeType":"YulFunctionCall","src":"25982:19:51"},{"kind":"number","nativeSrc":"26003:2:51","nodeType":"YulLiteral","src":"26003:2:51","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"25975:6:51","nodeType":"YulIdentifier","src":"25975:6:51"},"nativeSrc":"25975:31:51","nodeType":"YulFunctionCall","src":"25975:31:51"},"nativeSrc":"25975:31:51","nodeType":"YulExpressionStatement","src":"25975:31:51"},{"nativeSrc":"26015:68:51","nodeType":"YulVariableDeclaration","src":"26015:68:51","value":{"arguments":[{"name":"memberValue0_3","nativeSrc":"26047:14:51","nodeType":"YulIdentifier","src":"26047:14:51"},{"arguments":[{"name":"headStart","nativeSrc":"26067:9:51","nodeType":"YulIdentifier","src":"26067:9:51"},{"kind":"number","nativeSrc":"26078:3:51","nodeType":"YulLiteral","src":"26078:3:51","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"26063:3:51","nodeType":"YulIdentifier","src":"26063:3:51"},"nativeSrc":"26063:19:51","nodeType":"YulFunctionCall","src":"26063:19:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"26029:17:51","nodeType":"YulIdentifier","src":"26029:17:51"},"nativeSrc":"26029:54:51","nodeType":"YulFunctionCall","src":"26029:54:51"},"variables":[{"name":"tail_1","nativeSrc":"26019:6:51","nodeType":"YulTypedName","src":"26019:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26103:9:51","nodeType":"YulIdentifier","src":"26103:9:51"},{"kind":"number","nativeSrc":"26114:3:51","nodeType":"YulLiteral","src":"26114:3:51","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"26099:3:51","nodeType":"YulIdentifier","src":"26099:3:51"},"nativeSrc":"26099:19:51","nodeType":"YulFunctionCall","src":"26099:19:51"},{"arguments":[{"arguments":[{"name":"memberValue0_2","nativeSrc":"26130:14:51","nodeType":"YulIdentifier","src":"26130:14:51"},{"kind":"number","nativeSrc":"26146:2:51","nodeType":"YulLiteral","src":"26146:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"26126:3:51","nodeType":"YulIdentifier","src":"26126:3:51"},"nativeSrc":"26126:23:51","nodeType":"YulFunctionCall","src":"26126:23:51"}],"functionName":{"name":"mload","nativeSrc":"26120:5:51","nodeType":"YulIdentifier","src":"26120:5:51"},"nativeSrc":"26120:30:51","nodeType":"YulFunctionCall","src":"26120:30:51"}],"functionName":{"name":"mstore","nativeSrc":"26092:6:51","nodeType":"YulIdentifier","src":"26092:6:51"},"nativeSrc":"26092:59:51","nodeType":"YulFunctionCall","src":"26092:59:51"},"nativeSrc":"26092:59:51","nodeType":"YulExpressionStatement","src":"26092:59:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26171:9:51","nodeType":"YulIdentifier","src":"26171:9:51"},{"kind":"number","nativeSrc":"26182:3:51","nodeType":"YulLiteral","src":"26182:3:51","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"26167:3:51","nodeType":"YulIdentifier","src":"26167:3:51"},"nativeSrc":"26167:19:51","nodeType":"YulFunctionCall","src":"26167:19:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"memberValue0_1","nativeSrc":"26202:14:51","nodeType":"YulIdentifier","src":"26202:14:51"},{"kind":"number","nativeSrc":"26218:2:51","nodeType":"YulLiteral","src":"26218:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"26198:3:51","nodeType":"YulIdentifier","src":"26198:3:51"},"nativeSrc":"26198:23:51","nodeType":"YulFunctionCall","src":"26198:23:51"}],"functionName":{"name":"mload","nativeSrc":"26192:5:51","nodeType":"YulIdentifier","src":"26192:5:51"},"nativeSrc":"26192:30:51","nodeType":"YulFunctionCall","src":"26192:30:51"},{"kind":"number","nativeSrc":"26224:4:51","nodeType":"YulLiteral","src":"26224:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"26188:3:51","nodeType":"YulIdentifier","src":"26188:3:51"},"nativeSrc":"26188:41:51","nodeType":"YulFunctionCall","src":"26188:41:51"}],"functionName":{"name":"mstore","nativeSrc":"26160:6:51","nodeType":"YulIdentifier","src":"26160:6:51"},"nativeSrc":"26160:70:51","nodeType":"YulFunctionCall","src":"26160:70:51"},"nativeSrc":"26160:70:51","nodeType":"YulExpressionStatement","src":"26160:70:51"},{"nativeSrc":"26239:52:51","nodeType":"YulVariableDeclaration","src":"26239:52:51","value":{"arguments":[{"arguments":[{"name":"memberValue0_1","nativeSrc":"26271:14:51","nodeType":"YulIdentifier","src":"26271:14:51"},{"kind":"number","nativeSrc":"26287:2:51","nodeType":"YulLiteral","src":"26287:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"26267:3:51","nodeType":"YulIdentifier","src":"26267:3:51"},"nativeSrc":"26267:23:51","nodeType":"YulFunctionCall","src":"26267:23:51"}],"functionName":{"name":"mload","nativeSrc":"26261:5:51","nodeType":"YulIdentifier","src":"26261:5:51"},"nativeSrc":"26261:30:51","nodeType":"YulFunctionCall","src":"26261:30:51"},"variables":[{"name":"memberValue0_4","nativeSrc":"26243:14:51","nodeType":"YulTypedName","src":"26243:14:51","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_4","nativeSrc":"26317:14:51","nodeType":"YulIdentifier","src":"26317:14:51"},{"arguments":[{"name":"headStart","nativeSrc":"26337:9:51","nodeType":"YulIdentifier","src":"26337:9:51"},{"kind":"number","nativeSrc":"26348:3:51","nodeType":"YulLiteral","src":"26348:3:51","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"26333:3:51","nodeType":"YulIdentifier","src":"26333:3:51"},"nativeSrc":"26333:19:51","nodeType":"YulFunctionCall","src":"26333:19:51"}],"functionName":{"name":"abi_encode_uint8","nativeSrc":"26300:16:51","nodeType":"YulIdentifier","src":"26300:16:51"},"nativeSrc":"26300:53:51","nodeType":"YulFunctionCall","src":"26300:53:51"},"nativeSrc":"26300:53:51","nodeType":"YulExpressionStatement","src":"26300:53:51"},{"nativeSrc":"26362:52:51","nodeType":"YulVariableDeclaration","src":"26362:52:51","value":{"arguments":[{"arguments":[{"name":"memberValue0_1","nativeSrc":"26394:14:51","nodeType":"YulIdentifier","src":"26394:14:51"},{"kind":"number","nativeSrc":"26410:2:51","nodeType":"YulLiteral","src":"26410:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"26390:3:51","nodeType":"YulIdentifier","src":"26390:3:51"},"nativeSrc":"26390:23:51","nodeType":"YulFunctionCall","src":"26390:23:51"}],"functionName":{"name":"mload","nativeSrc":"26384:5:51","nodeType":"YulIdentifier","src":"26384:5:51"},"nativeSrc":"26384:30:51","nodeType":"YulFunctionCall","src":"26384:30:51"},"variables":[{"name":"memberValue0_5","nativeSrc":"26366:14:51","nodeType":"YulTypedName","src":"26366:14:51","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_5","nativeSrc":"26440:14:51","nodeType":"YulIdentifier","src":"26440:14:51"},{"arguments":[{"name":"headStart","nativeSrc":"26460:9:51","nodeType":"YulIdentifier","src":"26460:9:51"},{"kind":"number","nativeSrc":"26471:3:51","nodeType":"YulLiteral","src":"26471:3:51","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"26456:3:51","nodeType":"YulIdentifier","src":"26456:3:51"},"nativeSrc":"26456:19:51","nodeType":"YulFunctionCall","src":"26456:19:51"}],"functionName":{"name":"abi_encode_uint8","nativeSrc":"26423:16:51","nodeType":"YulIdentifier","src":"26423:16:51"},"nativeSrc":"26423:53:51","nodeType":"YulFunctionCall","src":"26423:53:51"},"nativeSrc":"26423:53:51","nodeType":"YulExpressionStatement","src":"26423:53:51"},{"nativeSrc":"26485:53:51","nodeType":"YulVariableDeclaration","src":"26485:53:51","value":{"arguments":[{"arguments":[{"name":"memberValue0_1","nativeSrc":"26517:14:51","nodeType":"YulIdentifier","src":"26517:14:51"},{"kind":"number","nativeSrc":"26533:3:51","nodeType":"YulLiteral","src":"26533:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"26513:3:51","nodeType":"YulIdentifier","src":"26513:3:51"},"nativeSrc":"26513:24:51","nodeType":"YulFunctionCall","src":"26513:24:51"}],"functionName":{"name":"mload","nativeSrc":"26507:5:51","nodeType":"YulIdentifier","src":"26507:5:51"},"nativeSrc":"26507:31:51","nodeType":"YulFunctionCall","src":"26507:31:51"},"variables":[{"name":"memberValue0_6","nativeSrc":"26489:14:51","nodeType":"YulTypedName","src":"26489:14:51","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_6","nativeSrc":"26589:14:51","nodeType":"YulIdentifier","src":"26589:14:51"},{"arguments":[{"name":"headStart","nativeSrc":"26609:9:51","nodeType":"YulIdentifier","src":"26609:9:51"},{"kind":"number","nativeSrc":"26620:3:51","nodeType":"YulLiteral","src":"26620:3:51","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"26605:3:51","nodeType":"YulIdentifier","src":"26605:3:51"},"nativeSrc":"26605:19:51","nodeType":"YulFunctionCall","src":"26605:19:51"}],"functionName":{"name":"abi_encode_userDefinedValueType_Timestamp","nativeSrc":"26547:41:51","nodeType":"YulIdentifier","src":"26547:41:51"},"nativeSrc":"26547:78:51","nodeType":"YulFunctionCall","src":"26547:78:51"},"nativeSrc":"26547:78:51","nodeType":"YulExpressionStatement","src":"26547:78:51"},{"nativeSrc":"26634:54:51","nodeType":"YulVariableDeclaration","src":"26634:54:51","value":{"arguments":[{"arguments":[{"name":"memberValue0_1","nativeSrc":"26666:14:51","nodeType":"YulIdentifier","src":"26666:14:51"},{"kind":"number","nativeSrc":"26682:4:51","nodeType":"YulLiteral","src":"26682:4:51","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"26662:3:51","nodeType":"YulIdentifier","src":"26662:3:51"},"nativeSrc":"26662:25:51","nodeType":"YulFunctionCall","src":"26662:25:51"}],"functionName":{"name":"mload","nativeSrc":"26656:5:51","nodeType":"YulIdentifier","src":"26656:5:51"},"nativeSrc":"26656:32:51","nodeType":"YulFunctionCall","src":"26656:32:51"},"variables":[{"name":"memberValue0_7","nativeSrc":"26638:14:51","nodeType":"YulTypedName","src":"26638:14:51","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_7","nativeSrc":"26739:14:51","nodeType":"YulIdentifier","src":"26739:14:51"},{"arguments":[{"name":"headStart","nativeSrc":"26759:9:51","nodeType":"YulIdentifier","src":"26759:9:51"},{"kind":"number","nativeSrc":"26770:3:51","nodeType":"YulLiteral","src":"26770:3:51","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"26755:3:51","nodeType":"YulIdentifier","src":"26755:3:51"},"nativeSrc":"26755:19:51","nodeType":"YulFunctionCall","src":"26755:19:51"}],"functionName":{"name":"abi_encode_userDefinedValueType_Timestamp","nativeSrc":"26697:41:51","nodeType":"YulIdentifier","src":"26697:41:51"},"nativeSrc":"26697:78:51","nodeType":"YulFunctionCall","src":"26697:78:51"},"nativeSrc":"26697:78:51","nodeType":"YulExpressionStatement","src":"26697:78:51"},{"nativeSrc":"26784:14:51","nodeType":"YulAssignment","src":"26784:14:51","value":{"name":"tail_1","nativeSrc":"26792:6:51","nodeType":"YulIdentifier","src":"26792:6:51"},"variableNames":[{"name":"tail","nativeSrc":"26784:4:51","nodeType":"YulIdentifier","src":"26784:4:51"}]}]},"name":"abi_encode_tuple_t_struct$_DataResult_$13388_memory_ptr__to_t_struct$_DataResult_$13388_memory_ptr__fromStack_library_reversed","nativeSrc":"25094:1710:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25230:9:51","nodeType":"YulTypedName","src":"25230:9:51","type":""},{"name":"value0","nativeSrc":"25241:6:51","nodeType":"YulTypedName","src":"25241:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25252:4:51","nodeType":"YulTypedName","src":"25252:4:51","type":""}],"src":"25094:1710:51"},{"body":{"nativeSrc":"26889:169:51","nodeType":"YulBlock","src":"26889:169:51","statements":[{"body":{"nativeSrc":"26935:16:51","nodeType":"YulBlock","src":"26935:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26944:1:51","nodeType":"YulLiteral","src":"26944:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"26947:1:51","nodeType":"YulLiteral","src":"26947:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"26937:6:51","nodeType":"YulIdentifier","src":"26937:6:51"},"nativeSrc":"26937:12:51","nodeType":"YulFunctionCall","src":"26937:12:51"},"nativeSrc":"26937:12:51","nodeType":"YulExpressionStatement","src":"26937:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"26910:7:51","nodeType":"YulIdentifier","src":"26910:7:51"},{"name":"headStart","nativeSrc":"26919:9:51","nodeType":"YulIdentifier","src":"26919:9:51"}],"functionName":{"name":"sub","nativeSrc":"26906:3:51","nodeType":"YulIdentifier","src":"26906:3:51"},"nativeSrc":"26906:23:51","nodeType":"YulFunctionCall","src":"26906:23:51"},{"kind":"number","nativeSrc":"26931:2:51","nodeType":"YulLiteral","src":"26931:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"26902:3:51","nodeType":"YulIdentifier","src":"26902:3:51"},"nativeSrc":"26902:32:51","nodeType":"YulFunctionCall","src":"26902:32:51"},"nativeSrc":"26899:52:51","nodeType":"YulIf","src":"26899:52:51"},{"nativeSrc":"26960:29:51","nodeType":"YulVariableDeclaration","src":"26960:29:51","value":{"arguments":[{"name":"headStart","nativeSrc":"26979:9:51","nodeType":"YulIdentifier","src":"26979:9:51"}],"functionName":{"name":"mload","nativeSrc":"26973:5:51","nodeType":"YulIdentifier","src":"26973:5:51"},"nativeSrc":"26973:16:51","nodeType":"YulFunctionCall","src":"26973:16:51"},"variables":[{"name":"value","nativeSrc":"26964:5:51","nodeType":"YulTypedName","src":"26964:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"27022:5:51","nodeType":"YulIdentifier","src":"27022:5:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"26998:23:51","nodeType":"YulIdentifier","src":"26998:23:51"},"nativeSrc":"26998:30:51","nodeType":"YulFunctionCall","src":"26998:30:51"},"nativeSrc":"26998:30:51","nodeType":"YulExpressionStatement","src":"26998:30:51"},{"nativeSrc":"27037:15:51","nodeType":"YulAssignment","src":"27037:15:51","value":{"name":"value","nativeSrc":"27047:5:51","nodeType":"YulIdentifier","src":"27047:5:51"},"variableNames":[{"name":"value0","nativeSrc":"27037:6:51","nodeType":"YulIdentifier","src":"27037:6:51"}]}]},"name":"abi_decode_tuple_t_uint64_fromMemory","nativeSrc":"26809:249:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26855:9:51","nodeType":"YulTypedName","src":"26855:9:51","type":""},{"name":"dataEnd","nativeSrc":"26866:7:51","nodeType":"YulTypedName","src":"26866:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"26878:6:51","nodeType":"YulTypedName","src":"26878:6:51","type":""}],"src":"26809:249:51"},{"body":{"nativeSrc":"27106:136:51","nodeType":"YulBlock","src":"27106:136:51","statements":[{"body":{"nativeSrc":"27151:85:51","nodeType":"YulBlock","src":"27151:85:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"27180:1:51","nodeType":"YulLiteral","src":"27180:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"27183:1:51","nodeType":"YulLiteral","src":"27183:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"27186:1:51","nodeType":"YulLiteral","src":"27186:1:51","type":"","value":"4"}],"functionName":{"name":"returndatacopy","nativeSrc":"27165:14:51","nodeType":"YulIdentifier","src":"27165:14:51"},"nativeSrc":"27165:23:51","nodeType":"YulFunctionCall","src":"27165:23:51"},"nativeSrc":"27165:23:51","nodeType":"YulExpressionStatement","src":"27165:23:51"},{"nativeSrc":"27201:25:51","nodeType":"YulAssignment","src":"27201:25:51","value":{"arguments":[{"kind":"number","nativeSrc":"27212:3:51","nodeType":"YulLiteral","src":"27212:3:51","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"27223:1:51","nodeType":"YulLiteral","src":"27223:1:51","type":"","value":"0"}],"functionName":{"name":"mload","nativeSrc":"27217:5:51","nodeType":"YulIdentifier","src":"27217:5:51"},"nativeSrc":"27217:8:51","nodeType":"YulFunctionCall","src":"27217:8:51"}],"functionName":{"name":"shr","nativeSrc":"27208:3:51","nodeType":"YulIdentifier","src":"27208:3:51"},"nativeSrc":"27208:18:51","nodeType":"YulFunctionCall","src":"27208:18:51"},"variableNames":[{"name":"sig","nativeSrc":"27201:3:51","nodeType":"YulIdentifier","src":"27201:3:51"}]}]},"condition":{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"27122:14:51","nodeType":"YulIdentifier","src":"27122:14:51"},"nativeSrc":"27122:16:51","nodeType":"YulFunctionCall","src":"27122:16:51"},{"kind":"number","nativeSrc":"27140:1:51","nodeType":"YulLiteral","src":"27140:1:51","type":"","value":"3"}],"functionName":{"name":"gt","nativeSrc":"27119:2:51","nodeType":"YulIdentifier","src":"27119:2:51"},"nativeSrc":"27119:23:51","nodeType":"YulFunctionCall","src":"27119:23:51"},"nativeSrc":"27116:120:51","nodeType":"YulIf","src":"27116:120:51"}]},"name":"return_data_selector","nativeSrc":"27063:179:51","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"sig","nativeSrc":"27098:3:51","nodeType":"YulTypedName","src":"27098:3:51","type":""}],"src":"27063:179:51"},{"body":{"nativeSrc":"27294:581:51","nodeType":"YulBlock","src":"27294:581:51","statements":[{"body":{"nativeSrc":"27334:9:51","nodeType":"YulBlock","src":"27334:9:51","statements":[{"nativeSrc":"27336:5:51","nodeType":"YulLeave","src":"27336:5:51"}]},"condition":{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"27310:14:51","nodeType":"YulIdentifier","src":"27310:14:51"},"nativeSrc":"27310:16:51","nodeType":"YulFunctionCall","src":"27310:16:51"},{"kind":"number","nativeSrc":"27328:4:51","nodeType":"YulLiteral","src":"27328:4:51","type":"","value":"0x44"}],"functionName":{"name":"lt","nativeSrc":"27307:2:51","nodeType":"YulIdentifier","src":"27307:2:51"},"nativeSrc":"27307:26:51","nodeType":"YulFunctionCall","src":"27307:26:51"},"nativeSrc":"27304:39:51","nodeType":"YulIf","src":"27304:39:51"},{"nativeSrc":"27352:21:51","nodeType":"YulVariableDeclaration","src":"27352:21:51","value":{"arguments":[{"kind":"number","nativeSrc":"27370:2:51","nodeType":"YulLiteral","src":"27370:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"27364:5:51","nodeType":"YulIdentifier","src":"27364:5:51"},"nativeSrc":"27364:9:51","nodeType":"YulFunctionCall","src":"27364:9:51"},"variables":[{"name":"data","nativeSrc":"27356:4:51","nodeType":"YulTypedName","src":"27356:4:51","type":""}]},{"expression":{"arguments":[{"name":"data","nativeSrc":"27397:4:51","nodeType":"YulIdentifier","src":"27397:4:51"},{"kind":"number","nativeSrc":"27403:1:51","nodeType":"YulLiteral","src":"27403:1:51","type":"","value":"4"},{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"27410:14:51","nodeType":"YulIdentifier","src":"27410:14:51"},"nativeSrc":"27410:16:51","nodeType":"YulFunctionCall","src":"27410:16:51"},{"arguments":[{"kind":"number","nativeSrc":"27432:1:51","nodeType":"YulLiteral","src":"27432:1:51","type":"","value":"3"}],"functionName":{"name":"not","nativeSrc":"27428:3:51","nodeType":"YulIdentifier","src":"27428:3:51"},"nativeSrc":"27428:6:51","nodeType":"YulFunctionCall","src":"27428:6:51"}],"functionName":{"name":"add","nativeSrc":"27406:3:51","nodeType":"YulIdentifier","src":"27406:3:51"},"nativeSrc":"27406:29:51","nodeType":"YulFunctionCall","src":"27406:29:51"}],"functionName":{"name":"returndatacopy","nativeSrc":"27382:14:51","nodeType":"YulIdentifier","src":"27382:14:51"},"nativeSrc":"27382:54:51","nodeType":"YulFunctionCall","src":"27382:54:51"},"nativeSrc":"27382:54:51","nodeType":"YulExpressionStatement","src":"27382:54:51"},{"nativeSrc":"27445:25:51","nodeType":"YulVariableDeclaration","src":"27445:25:51","value":{"arguments":[{"name":"data","nativeSrc":"27465:4:51","nodeType":"YulIdentifier","src":"27465:4:51"}],"functionName":{"name":"mload","nativeSrc":"27459:5:51","nodeType":"YulIdentifier","src":"27459:5:51"},"nativeSrc":"27459:11:51","nodeType":"YulFunctionCall","src":"27459:11:51"},"variables":[{"name":"offset","nativeSrc":"27449:6:51","nodeType":"YulTypedName","src":"27449:6:51","type":""}]},{"body":{"nativeSrc":"27558:9:51","nodeType":"YulBlock","src":"27558:9:51","statements":[{"nativeSrc":"27560:5:51","nodeType":"YulLeave","src":"27560:5:51"}]},"condition":{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"27488:6:51","nodeType":"YulIdentifier","src":"27488:6:51"},{"kind":"number","nativeSrc":"27496:18:51","nodeType":"YulLiteral","src":"27496:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"27485:2:51","nodeType":"YulIdentifier","src":"27485:2:51"},"nativeSrc":"27485:30:51","nodeType":"YulFunctionCall","src":"27485:30:51"},{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"27524:6:51","nodeType":"YulIdentifier","src":"27524:6:51"},{"kind":"number","nativeSrc":"27532:4:51","nodeType":"YulLiteral","src":"27532:4:51","type":"","value":"0x24"}],"functionName":{"name":"add","nativeSrc":"27520:3:51","nodeType":"YulIdentifier","src":"27520:3:51"},"nativeSrc":"27520:17:51","nodeType":"YulFunctionCall","src":"27520:17:51"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"27539:14:51","nodeType":"YulIdentifier","src":"27539:14:51"},"nativeSrc":"27539:16:51","nodeType":"YulFunctionCall","src":"27539:16:51"}],"functionName":{"name":"gt","nativeSrc":"27517:2:51","nodeType":"YulIdentifier","src":"27517:2:51"},"nativeSrc":"27517:39:51","nodeType":"YulFunctionCall","src":"27517:39:51"}],"functionName":{"name":"or","nativeSrc":"27482:2:51","nodeType":"YulIdentifier","src":"27482:2:51"},"nativeSrc":"27482:75:51","nodeType":"YulFunctionCall","src":"27482:75:51"},"nativeSrc":"27479:88:51","nodeType":"YulIf","src":"27479:88:51"},{"nativeSrc":"27576:28:51","nodeType":"YulVariableDeclaration","src":"27576:28:51","value":{"arguments":[{"name":"data","nativeSrc":"27591:4:51","nodeType":"YulIdentifier","src":"27591:4:51"},{"name":"offset","nativeSrc":"27597:6:51","nodeType":"YulIdentifier","src":"27597:6:51"}],"functionName":{"name":"add","nativeSrc":"27587:3:51","nodeType":"YulIdentifier","src":"27587:3:51"},"nativeSrc":"27587:17:51","nodeType":"YulFunctionCall","src":"27587:17:51"},"variables":[{"name":"msg","nativeSrc":"27580:3:51","nodeType":"YulTypedName","src":"27580:3:51","type":""}]},{"nativeSrc":"27613:24:51","nodeType":"YulVariableDeclaration","src":"27613:24:51","value":{"arguments":[{"name":"msg","nativeSrc":"27633:3:51","nodeType":"YulIdentifier","src":"27633:3:51"}],"functionName":{"name":"mload","nativeSrc":"27627:5:51","nodeType":"YulIdentifier","src":"27627:5:51"},"nativeSrc":"27627:10:51","nodeType":"YulFunctionCall","src":"27627:10:51"},"variables":[{"name":"length","nativeSrc":"27617:6:51","nodeType":"YulTypedName","src":"27617:6:51","type":""}]},{"body":{"nativeSrc":"27680:9:51","nodeType":"YulBlock","src":"27680:9:51","statements":[{"nativeSrc":"27682:5:51","nodeType":"YulLeave","src":"27682:5:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"27652:6:51","nodeType":"YulIdentifier","src":"27652:6:51"},{"kind":"number","nativeSrc":"27660:18:51","nodeType":"YulLiteral","src":"27660:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"27649:2:51","nodeType":"YulIdentifier","src":"27649:2:51"},"nativeSrc":"27649:30:51","nodeType":"YulFunctionCall","src":"27649:30:51"},"nativeSrc":"27646:43:51","nodeType":"YulIf","src":"27646:43:51"},{"body":{"nativeSrc":"27775:9:51","nodeType":"YulBlock","src":"27775:9:51","statements":[{"nativeSrc":"27777:5:51","nodeType":"YulLeave","src":"27777:5:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"msg","nativeSrc":"27712:3:51","nodeType":"YulIdentifier","src":"27712:3:51"},{"name":"length","nativeSrc":"27717:6:51","nodeType":"YulIdentifier","src":"27717:6:51"}],"functionName":{"name":"add","nativeSrc":"27708:3:51","nodeType":"YulIdentifier","src":"27708:3:51"},"nativeSrc":"27708:16:51","nodeType":"YulFunctionCall","src":"27708:16:51"},{"kind":"number","nativeSrc":"27726:4:51","nodeType":"YulLiteral","src":"27726:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"27704:3:51","nodeType":"YulIdentifier","src":"27704:3:51"},"nativeSrc":"27704:27:51","nodeType":"YulFunctionCall","src":"27704:27:51"},{"arguments":[{"arguments":[{"name":"data","nativeSrc":"27741:4:51","nodeType":"YulIdentifier","src":"27741:4:51"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"27747:14:51","nodeType":"YulIdentifier","src":"27747:14:51"},"nativeSrc":"27747:16:51","nodeType":"YulFunctionCall","src":"27747:16:51"}],"functionName":{"name":"add","nativeSrc":"27737:3:51","nodeType":"YulIdentifier","src":"27737:3:51"},"nativeSrc":"27737:27:51","nodeType":"YulFunctionCall","src":"27737:27:51"},{"arguments":[{"kind":"number","nativeSrc":"27770:1:51","nodeType":"YulLiteral","src":"27770:1:51","type":"","value":"3"}],"functionName":{"name":"not","nativeSrc":"27766:3:51","nodeType":"YulIdentifier","src":"27766:3:51"},"nativeSrc":"27766:6:51","nodeType":"YulFunctionCall","src":"27766:6:51"}],"functionName":{"name":"add","nativeSrc":"27733:3:51","nodeType":"YulIdentifier","src":"27733:3:51"},"nativeSrc":"27733:40:51","nodeType":"YulFunctionCall","src":"27733:40:51"}],"functionName":{"name":"gt","nativeSrc":"27701:2:51","nodeType":"YulIdentifier","src":"27701:2:51"},"nativeSrc":"27701:73:51","nodeType":"YulFunctionCall","src":"27701:73:51"},"nativeSrc":"27698:86:51","nodeType":"YulIf","src":"27698:86:51"},{"expression":{"arguments":[{"name":"data","nativeSrc":"27813:4:51","nodeType":"YulIdentifier","src":"27813:4:51"},{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"27827:6:51","nodeType":"YulIdentifier","src":"27827:6:51"},{"name":"length","nativeSrc":"27835:6:51","nodeType":"YulIdentifier","src":"27835:6:51"}],"functionName":{"name":"add","nativeSrc":"27823:3:51","nodeType":"YulIdentifier","src":"27823:3:51"},"nativeSrc":"27823:19:51","nodeType":"YulFunctionCall","src":"27823:19:51"},{"kind":"number","nativeSrc":"27844:4:51","nodeType":"YulLiteral","src":"27844:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"27819:3:51","nodeType":"YulIdentifier","src":"27819:3:51"},"nativeSrc":"27819:30:51","nodeType":"YulFunctionCall","src":"27819:30:51"}],"functionName":{"name":"finalize_allocation","nativeSrc":"27793:19:51","nodeType":"YulIdentifier","src":"27793:19:51"},"nativeSrc":"27793:57:51","nodeType":"YulFunctionCall","src":"27793:57:51"},"nativeSrc":"27793:57:51","nodeType":"YulExpressionStatement","src":"27793:57:51"},{"nativeSrc":"27859:10:51","nodeType":"YulAssignment","src":"27859:10:51","value":{"name":"msg","nativeSrc":"27866:3:51","nodeType":"YulIdentifier","src":"27866:3:51"},"variableNames":[{"name":"ret","nativeSrc":"27859:3:51","nodeType":"YulIdentifier","src":"27859:3:51"}]}]},"name":"try_decode_error_message","nativeSrc":"27247:628:51","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"ret","nativeSrc":"27286:3:51","nodeType":"YulTypedName","src":"27286:3:51","type":""}],"src":"27247:628:51"},{"body":{"nativeSrc":"28103:212:51","nodeType":"YulBlock","src":"28103:212:51","statements":[{"nativeSrc":"28113:26:51","nodeType":"YulAssignment","src":"28113:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"28125:9:51","nodeType":"YulIdentifier","src":"28125:9:51"},{"kind":"number","nativeSrc":"28136:2:51","nodeType":"YulLiteral","src":"28136:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"28121:3:51","nodeType":"YulIdentifier","src":"28121:3:51"},"nativeSrc":"28121:18:51","nodeType":"YulFunctionCall","src":"28121:18:51"},"variableNames":[{"name":"tail","nativeSrc":"28113:4:51","nodeType":"YulIdentifier","src":"28113:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28155:9:51","nodeType":"YulIdentifier","src":"28155:9:51"},{"arguments":[{"name":"value0","nativeSrc":"28170:6:51","nodeType":"YulIdentifier","src":"28170:6:51"},{"kind":"number","nativeSrc":"28178:18:51","nodeType":"YulLiteral","src":"28178:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"28166:3:51","nodeType":"YulIdentifier","src":"28166:3:51"},"nativeSrc":"28166:31:51","nodeType":"YulFunctionCall","src":"28166:31:51"}],"functionName":{"name":"mstore","nativeSrc":"28148:6:51","nodeType":"YulIdentifier","src":"28148:6:51"},"nativeSrc":"28148:50:51","nodeType":"YulFunctionCall","src":"28148:50:51"},"nativeSrc":"28148:50:51","nodeType":"YulExpressionStatement","src":"28148:50:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28218:9:51","nodeType":"YulIdentifier","src":"28218:9:51"},{"kind":"number","nativeSrc":"28229:2:51","nodeType":"YulLiteral","src":"28229:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28214:3:51","nodeType":"YulIdentifier","src":"28214:3:51"},"nativeSrc":"28214:18:51","nodeType":"YulFunctionCall","src":"28214:18:51"},{"arguments":[{"name":"value1","nativeSrc":"28238:6:51","nodeType":"YulIdentifier","src":"28238:6:51"},{"kind":"number","nativeSrc":"28246:18:51","nodeType":"YulLiteral","src":"28246:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"28234:3:51","nodeType":"YulIdentifier","src":"28234:3:51"},"nativeSrc":"28234:31:51","nodeType":"YulFunctionCall","src":"28234:31:51"}],"functionName":{"name":"mstore","nativeSrc":"28207:6:51","nodeType":"YulIdentifier","src":"28207:6:51"},"nativeSrc":"28207:59:51","nodeType":"YulFunctionCall","src":"28207:59:51"},"nativeSrc":"28207:59:51","nodeType":"YulExpressionStatement","src":"28207:59:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28286:9:51","nodeType":"YulIdentifier","src":"28286:9:51"},{"kind":"number","nativeSrc":"28297:2:51","nodeType":"YulLiteral","src":"28297:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28282:3:51","nodeType":"YulIdentifier","src":"28282:3:51"},"nativeSrc":"28282:18:51","nodeType":"YulFunctionCall","src":"28282:18:51"},{"name":"value2","nativeSrc":"28302:6:51","nodeType":"YulIdentifier","src":"28302:6:51"}],"functionName":{"name":"mstore","nativeSrc":"28275:6:51","nodeType":"YulIdentifier","src":"28275:6:51"},"nativeSrc":"28275:34:51","nodeType":"YulFunctionCall","src":"28275:34:51"},"nativeSrc":"28275:34:51","nodeType":"YulExpressionStatement","src":"28275:34:51"}]},"name":"abi_encode_tuple_t_uint64_t_userDefinedValueType$_Timestamp_$13254_t_userDefinedValueType$_TransactionHash_$13256__to_t_uint256_t_uint64_t_bytes32__fromStack_reversed","nativeSrc":"27880:435:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28056:9:51","nodeType":"YulTypedName","src":"28056:9:51","type":""},{"name":"value2","nativeSrc":"28067:6:51","nodeType":"YulTypedName","src":"28067:6:51","type":""},{"name":"value1","nativeSrc":"28075:6:51","nodeType":"YulTypedName","src":"28075:6:51","type":""},{"name":"value0","nativeSrc":"28083:6:51","nodeType":"YulTypedName","src":"28083:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28094:4:51","nodeType":"YulTypedName","src":"28094:4:51","type":""}],"src":"27880:435:51"},{"body":{"nativeSrc":"28389:176:51","nodeType":"YulBlock","src":"28389:176:51","statements":[{"body":{"nativeSrc":"28435:16:51","nodeType":"YulBlock","src":"28435:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"28444:1:51","nodeType":"YulLiteral","src":"28444:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"28447:1:51","nodeType":"YulLiteral","src":"28447:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"28437:6:51","nodeType":"YulIdentifier","src":"28437:6:51"},"nativeSrc":"28437:12:51","nodeType":"YulFunctionCall","src":"28437:12:51"},"nativeSrc":"28437:12:51","nodeType":"YulExpressionStatement","src":"28437:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"28410:7:51","nodeType":"YulIdentifier","src":"28410:7:51"},{"name":"headStart","nativeSrc":"28419:9:51","nodeType":"YulIdentifier","src":"28419:9:51"}],"functionName":{"name":"sub","nativeSrc":"28406:3:51","nodeType":"YulIdentifier","src":"28406:3:51"},"nativeSrc":"28406:23:51","nodeType":"YulFunctionCall","src":"28406:23:51"},{"kind":"number","nativeSrc":"28431:2:51","nodeType":"YulLiteral","src":"28431:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"28402:3:51","nodeType":"YulIdentifier","src":"28402:3:51"},"nativeSrc":"28402:32:51","nodeType":"YulFunctionCall","src":"28402:32:51"},"nativeSrc":"28399:52:51","nodeType":"YulIf","src":"28399:52:51"},{"nativeSrc":"28460:36:51","nodeType":"YulVariableDeclaration","src":"28460:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"28486:9:51","nodeType":"YulIdentifier","src":"28486:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"28473:12:51","nodeType":"YulIdentifier","src":"28473:12:51"},"nativeSrc":"28473:23:51","nodeType":"YulFunctionCall","src":"28473:23:51"},"variables":[{"name":"value","nativeSrc":"28464:5:51","nodeType":"YulTypedName","src":"28464:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"28529:5:51","nodeType":"YulIdentifier","src":"28529:5:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"28505:23:51","nodeType":"YulIdentifier","src":"28505:23:51"},"nativeSrc":"28505:30:51","nodeType":"YulFunctionCall","src":"28505:30:51"},"nativeSrc":"28505:30:51","nodeType":"YulExpressionStatement","src":"28505:30:51"},{"nativeSrc":"28544:15:51","nodeType":"YulAssignment","src":"28544:15:51","value":{"name":"value","nativeSrc":"28554:5:51","nodeType":"YulIdentifier","src":"28554:5:51"},"variableNames":[{"name":"value0","nativeSrc":"28544:6:51","nodeType":"YulIdentifier","src":"28544:6:51"}]}]},"name":"abi_decode_tuple_t_uint64","nativeSrc":"28320:245:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28355:9:51","nodeType":"YulTypedName","src":"28355:9:51","type":""},{"name":"dataEnd","nativeSrc":"28366:7:51","nodeType":"YulTypedName","src":"28366:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"28378:6:51","nodeType":"YulTypedName","src":"28378:6:51","type":""}],"src":"28320:245:51"},{"body":{"nativeSrc":"28614:75:51","nodeType":"YulBlock","src":"28614:75:51","statements":[{"body":{"nativeSrc":"28667:16:51","nodeType":"YulBlock","src":"28667:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"28676:1:51","nodeType":"YulLiteral","src":"28676:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"28679:1:51","nodeType":"YulLiteral","src":"28679:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"28669:6:51","nodeType":"YulIdentifier","src":"28669:6:51"},"nativeSrc":"28669:12:51","nodeType":"YulFunctionCall","src":"28669:12:51"},"nativeSrc":"28669:12:51","nodeType":"YulExpressionStatement","src":"28669:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"28637:5:51","nodeType":"YulIdentifier","src":"28637:5:51"},{"arguments":[{"name":"value","nativeSrc":"28648:5:51","nodeType":"YulIdentifier","src":"28648:5:51"},{"kind":"number","nativeSrc":"28655:8:51","nodeType":"YulLiteral","src":"28655:8:51","type":"","value":"0xffffff"}],"functionName":{"name":"and","nativeSrc":"28644:3:51","nodeType":"YulIdentifier","src":"28644:3:51"},"nativeSrc":"28644:20:51","nodeType":"YulFunctionCall","src":"28644:20:51"}],"functionName":{"name":"eq","nativeSrc":"28634:2:51","nodeType":"YulIdentifier","src":"28634:2:51"},"nativeSrc":"28634:31:51","nodeType":"YulFunctionCall","src":"28634:31:51"}],"functionName":{"name":"iszero","nativeSrc":"28627:6:51","nodeType":"YulIdentifier","src":"28627:6:51"},"nativeSrc":"28627:39:51","nodeType":"YulFunctionCall","src":"28627:39:51"},"nativeSrc":"28624:59:51","nodeType":"YulIf","src":"28624:59:51"}]},"name":"validator_revert_uint24","nativeSrc":"28570:119:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"28603:5:51","nodeType":"YulTypedName","src":"28603:5:51","type":""}],"src":"28570:119:51"},{"body":{"nativeSrc":"28763:176:51","nodeType":"YulBlock","src":"28763:176:51","statements":[{"body":{"nativeSrc":"28809:16:51","nodeType":"YulBlock","src":"28809:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"28818:1:51","nodeType":"YulLiteral","src":"28818:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"28821:1:51","nodeType":"YulLiteral","src":"28821:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"28811:6:51","nodeType":"YulIdentifier","src":"28811:6:51"},"nativeSrc":"28811:12:51","nodeType":"YulFunctionCall","src":"28811:12:51"},"nativeSrc":"28811:12:51","nodeType":"YulExpressionStatement","src":"28811:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"28784:7:51","nodeType":"YulIdentifier","src":"28784:7:51"},{"name":"headStart","nativeSrc":"28793:9:51","nodeType":"YulIdentifier","src":"28793:9:51"}],"functionName":{"name":"sub","nativeSrc":"28780:3:51","nodeType":"YulIdentifier","src":"28780:3:51"},"nativeSrc":"28780:23:51","nodeType":"YulFunctionCall","src":"28780:23:51"},{"kind":"number","nativeSrc":"28805:2:51","nodeType":"YulLiteral","src":"28805:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"28776:3:51","nodeType":"YulIdentifier","src":"28776:3:51"},"nativeSrc":"28776:32:51","nodeType":"YulFunctionCall","src":"28776:32:51"},"nativeSrc":"28773:52:51","nodeType":"YulIf","src":"28773:52:51"},{"nativeSrc":"28834:36:51","nodeType":"YulVariableDeclaration","src":"28834:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"28860:9:51","nodeType":"YulIdentifier","src":"28860:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"28847:12:51","nodeType":"YulIdentifier","src":"28847:12:51"},"nativeSrc":"28847:23:51","nodeType":"YulFunctionCall","src":"28847:23:51"},"variables":[{"name":"value","nativeSrc":"28838:5:51","nodeType":"YulTypedName","src":"28838:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"28903:5:51","nodeType":"YulIdentifier","src":"28903:5:51"}],"functionName":{"name":"validator_revert_uint24","nativeSrc":"28879:23:51","nodeType":"YulIdentifier","src":"28879:23:51"},"nativeSrc":"28879:30:51","nodeType":"YulFunctionCall","src":"28879:30:51"},"nativeSrc":"28879:30:51","nodeType":"YulExpressionStatement","src":"28879:30:51"},{"nativeSrc":"28918:15:51","nodeType":"YulAssignment","src":"28918:15:51","value":{"name":"value","nativeSrc":"28928:5:51","nodeType":"YulIdentifier","src":"28928:5:51"},"variableNames":[{"name":"value0","nativeSrc":"28918:6:51","nodeType":"YulIdentifier","src":"28918:6:51"}]}]},"name":"abi_decode_tuple_t_uint24","nativeSrc":"28694:245:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28729:9:51","nodeType":"YulTypedName","src":"28729:9:51","type":""},{"name":"dataEnd","nativeSrc":"28740:7:51","nodeType":"YulTypedName","src":"28740:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"28752:6:51","nodeType":"YulTypedName","src":"28752:6:51","type":""}],"src":"28694:245:51"},{"body":{"nativeSrc":"28976:95:51","nodeType":"YulBlock","src":"28976:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"28993:1:51","nodeType":"YulLiteral","src":"28993:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"29000:3:51","nodeType":"YulLiteral","src":"29000:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"29005:10:51","nodeType":"YulLiteral","src":"29005:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"28996:3:51","nodeType":"YulIdentifier","src":"28996:3:51"},"nativeSrc":"28996:20:51","nodeType":"YulFunctionCall","src":"28996:20:51"}],"functionName":{"name":"mstore","nativeSrc":"28986:6:51","nodeType":"YulIdentifier","src":"28986:6:51"},"nativeSrc":"28986:31:51","nodeType":"YulFunctionCall","src":"28986:31:51"},"nativeSrc":"28986:31:51","nodeType":"YulExpressionStatement","src":"28986:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"29033:1:51","nodeType":"YulLiteral","src":"29033:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"29036:4:51","nodeType":"YulLiteral","src":"29036:4:51","type":"","value":"0x01"}],"functionName":{"name":"mstore","nativeSrc":"29026:6:51","nodeType":"YulIdentifier","src":"29026:6:51"},"nativeSrc":"29026:15:51","nodeType":"YulFunctionCall","src":"29026:15:51"},"nativeSrc":"29026:15:51","nodeType":"YulExpressionStatement","src":"29026:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"29057:1:51","nodeType":"YulLiteral","src":"29057:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"29060:4:51","nodeType":"YulLiteral","src":"29060:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"29050:6:51","nodeType":"YulIdentifier","src":"29050:6:51"},"nativeSrc":"29050:15:51","nodeType":"YulFunctionCall","src":"29050:15:51"},"nativeSrc":"29050:15:51","nodeType":"YulExpressionStatement","src":"29050:15:51"}]},"name":"panic_error_0x01","nativeSrc":"28944:127:51","nodeType":"YulFunctionDefinition","src":"28944:127:51"},{"body":{"nativeSrc":"29224:946:51","nodeType":"YulBlock","src":"29224:946:51","statements":[{"nativeSrc":"29234:34:51","nodeType":"YulVariableDeclaration","src":"29234:34:51","value":{"arguments":[{"name":"value","nativeSrc":"29262:5:51","nodeType":"YulIdentifier","src":"29262:5:51"}],"functionName":{"name":"calldataload","nativeSrc":"29249:12:51","nodeType":"YulIdentifier","src":"29249:12:51"},"nativeSrc":"29249:19:51","nodeType":"YulFunctionCall","src":"29249:19:51"},"variables":[{"name":"value_1","nativeSrc":"29238:7:51","nodeType":"YulTypedName","src":"29238:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"29301:7:51","nodeType":"YulIdentifier","src":"29301:7:51"}],"functionName":{"name":"validator_revert_uint16","nativeSrc":"29277:23:51","nodeType":"YulIdentifier","src":"29277:23:51"},"nativeSrc":"29277:32:51","nodeType":"YulFunctionCall","src":"29277:32:51"},"nativeSrc":"29277:32:51","nodeType":"YulExpressionStatement","src":"29277:32:51"},{"nativeSrc":"29318:30:51","nodeType":"YulVariableDeclaration","src":"29318:30:51","value":{"arguments":[{"name":"value_1","nativeSrc":"29332:7:51","nodeType":"YulIdentifier","src":"29332:7:51"},{"kind":"number","nativeSrc":"29341:6:51","nodeType":"YulLiteral","src":"29341:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"29328:3:51","nodeType":"YulIdentifier","src":"29328:3:51"},"nativeSrc":"29328:20:51","nodeType":"YulFunctionCall","src":"29328:20:51"},"variables":[{"name":"_1","nativeSrc":"29322:2:51","nodeType":"YulTypedName","src":"29322:2:51","type":""}]},{"nativeSrc":"29357:21:51","nodeType":"YulVariableDeclaration","src":"29357:21:51","value":{"arguments":[{"name":"slot","nativeSrc":"29373:4:51","nodeType":"YulIdentifier","src":"29373:4:51"}],"functionName":{"name":"sload","nativeSrc":"29367:5:51","nodeType":"YulIdentifier","src":"29367:5:51"},"nativeSrc":"29367:11:51","nodeType":"YulFunctionCall","src":"29367:11:51"},"variables":[{"name":"_2","nativeSrc":"29361:2:51","nodeType":"YulTypedName","src":"29361:2:51","type":""}]},{"expression":{"arguments":[{"name":"slot","nativeSrc":"29394:4:51","nodeType":"YulIdentifier","src":"29394:4:51"},{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"29407:2:51","nodeType":"YulIdentifier","src":"29407:2:51"},{"arguments":[{"kind":"number","nativeSrc":"29415:5:51","nodeType":"YulLiteral","src":"29415:5:51","type":"","value":"65535"}],"functionName":{"name":"not","nativeSrc":"29411:3:51","nodeType":"YulIdentifier","src":"29411:3:51"},"nativeSrc":"29411:10:51","nodeType":"YulFunctionCall","src":"29411:10:51"}],"functionName":{"name":"and","nativeSrc":"29403:3:51","nodeType":"YulIdentifier","src":"29403:3:51"},"nativeSrc":"29403:19:51","nodeType":"YulFunctionCall","src":"29403:19:51"},{"name":"_1","nativeSrc":"29424:2:51","nodeType":"YulIdentifier","src":"29424:2:51"}],"functionName":{"name":"or","nativeSrc":"29400:2:51","nodeType":"YulIdentifier","src":"29400:2:51"},"nativeSrc":"29400:27:51","nodeType":"YulFunctionCall","src":"29400:27:51"}],"functionName":{"name":"sstore","nativeSrc":"29387:6:51","nodeType":"YulIdentifier","src":"29387:6:51"},"nativeSrc":"29387:41:51","nodeType":"YulFunctionCall","src":"29387:41:51"},"nativeSrc":"29387:41:51","nodeType":"YulExpressionStatement","src":"29387:41:51"},{"nativeSrc":"29437:43:51","nodeType":"YulVariableDeclaration","src":"29437:43:51","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"29469:5:51","nodeType":"YulIdentifier","src":"29469:5:51"},{"kind":"number","nativeSrc":"29476:2:51","nodeType":"YulLiteral","src":"29476:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29465:3:51","nodeType":"YulIdentifier","src":"29465:3:51"},"nativeSrc":"29465:14:51","nodeType":"YulFunctionCall","src":"29465:14:51"}],"functionName":{"name":"calldataload","nativeSrc":"29452:12:51","nodeType":"YulIdentifier","src":"29452:12:51"},"nativeSrc":"29452:28:51","nodeType":"YulFunctionCall","src":"29452:28:51"},"variables":[{"name":"value_2","nativeSrc":"29441:7:51","nodeType":"YulTypedName","src":"29441:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"29513:7:51","nodeType":"YulIdentifier","src":"29513:7:51"}],"functionName":{"name":"validator_revert_uint16","nativeSrc":"29489:23:51","nodeType":"YulIdentifier","src":"29489:23:51"},"nativeSrc":"29489:32:51","nodeType":"YulFunctionCall","src":"29489:32:51"},"nativeSrc":"29489:32:51","nodeType":"YulExpressionStatement","src":"29489:32:51"},{"nativeSrc":"29530:49:51","nodeType":"YulVariableDeclaration","src":"29530:49:51","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29554:2:51","nodeType":"YulLiteral","src":"29554:2:51","type":"","value":"16"},{"name":"value_2","nativeSrc":"29558:7:51","nodeType":"YulIdentifier","src":"29558:7:51"}],"functionName":{"name":"shl","nativeSrc":"29550:3:51","nodeType":"YulIdentifier","src":"29550:3:51"},"nativeSrc":"29550:16:51","nodeType":"YulFunctionCall","src":"29550:16:51"},{"kind":"number","nativeSrc":"29568:10:51","nodeType":"YulLiteral","src":"29568:10:51","type":"","value":"0xffff0000"}],"functionName":{"name":"and","nativeSrc":"29546:3:51","nodeType":"YulIdentifier","src":"29546:3:51"},"nativeSrc":"29546:33:51","nodeType":"YulFunctionCall","src":"29546:33:51"},"variables":[{"name":"toInsert","nativeSrc":"29534:8:51","nodeType":"YulTypedName","src":"29534:8:51","type":""}]},{"expression":{"arguments":[{"name":"slot","nativeSrc":"29595:4:51","nodeType":"YulIdentifier","src":"29595:4:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"29611:2:51","nodeType":"YulIdentifier","src":"29611:2:51"},{"arguments":[{"kind":"number","nativeSrc":"29619:10:51","nodeType":"YulLiteral","src":"29619:10:51","type":"","value":"0xffffffff"}],"functionName":{"name":"not","nativeSrc":"29615:3:51","nodeType":"YulIdentifier","src":"29615:3:51"},"nativeSrc":"29615:15:51","nodeType":"YulFunctionCall","src":"29615:15:51"}],"functionName":{"name":"and","nativeSrc":"29607:3:51","nodeType":"YulIdentifier","src":"29607:3:51"},"nativeSrc":"29607:24:51","nodeType":"YulFunctionCall","src":"29607:24:51"},{"name":"_1","nativeSrc":"29633:2:51","nodeType":"YulIdentifier","src":"29633:2:51"}],"functionName":{"name":"or","nativeSrc":"29604:2:51","nodeType":"YulIdentifier","src":"29604:2:51"},"nativeSrc":"29604:32:51","nodeType":"YulFunctionCall","src":"29604:32:51"},{"name":"toInsert","nativeSrc":"29638:8:51","nodeType":"YulIdentifier","src":"29638:8:51"}],"functionName":{"name":"or","nativeSrc":"29601:2:51","nodeType":"YulIdentifier","src":"29601:2:51"},"nativeSrc":"29601:46:51","nodeType":"YulFunctionCall","src":"29601:46:51"}],"functionName":{"name":"sstore","nativeSrc":"29588:6:51","nodeType":"YulIdentifier","src":"29588:6:51"},"nativeSrc":"29588:60:51","nodeType":"YulFunctionCall","src":"29588:60:51"},"nativeSrc":"29588:60:51","nodeType":"YulExpressionStatement","src":"29588:60:51"},{"nativeSrc":"29657:43:51","nodeType":"YulVariableDeclaration","src":"29657:43:51","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"29689:5:51","nodeType":"YulIdentifier","src":"29689:5:51"},{"kind":"number","nativeSrc":"29696:2:51","nodeType":"YulLiteral","src":"29696:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29685:3:51","nodeType":"YulIdentifier","src":"29685:3:51"},"nativeSrc":"29685:14:51","nodeType":"YulFunctionCall","src":"29685:14:51"}],"functionName":{"name":"calldataload","nativeSrc":"29672:12:51","nodeType":"YulIdentifier","src":"29672:12:51"},"nativeSrc":"29672:28:51","nodeType":"YulFunctionCall","src":"29672:28:51"},"variables":[{"name":"value_3","nativeSrc":"29661:7:51","nodeType":"YulTypedName","src":"29661:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"29733:7:51","nodeType":"YulIdentifier","src":"29733:7:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"29709:23:51","nodeType":"YulIdentifier","src":"29709:23:51"},"nativeSrc":"29709:32:51","nodeType":"YulFunctionCall","src":"29709:32:51"},"nativeSrc":"29709:32:51","nodeType":"YulExpressionStatement","src":"29709:32:51"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"29757:4:51","nodeType":"YulIdentifier","src":"29757:4:51"},{"arguments":[{"arguments":[{"name":"toInsert","nativeSrc":"29769:8:51","nodeType":"YulIdentifier","src":"29769:8:51"},{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"29786:2:51","nodeType":"YulIdentifier","src":"29786:2:51"},{"arguments":[{"kind":"number","nativeSrc":"29794:26:51","nodeType":"YulLiteral","src":"29794:26:51","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"29790:3:51","nodeType":"YulIdentifier","src":"29790:3:51"},"nativeSrc":"29790:31:51","nodeType":"YulFunctionCall","src":"29790:31:51"}],"functionName":{"name":"and","nativeSrc":"29782:3:51","nodeType":"YulIdentifier","src":"29782:3:51"},"nativeSrc":"29782:40:51","nodeType":"YulFunctionCall","src":"29782:40:51"},{"name":"_1","nativeSrc":"29824:2:51","nodeType":"YulIdentifier","src":"29824:2:51"}],"functionName":{"name":"or","nativeSrc":"29779:2:51","nodeType":"YulIdentifier","src":"29779:2:51"},"nativeSrc":"29779:48:51","nodeType":"YulFunctionCall","src":"29779:48:51"}],"functionName":{"name":"or","nativeSrc":"29766:2:51","nodeType":"YulIdentifier","src":"29766:2:51"},"nativeSrc":"29766:62:51","nodeType":"YulFunctionCall","src":"29766:62:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29838:2:51","nodeType":"YulLiteral","src":"29838:2:51","type":"","value":"32"},{"name":"value_3","nativeSrc":"29842:7:51","nodeType":"YulIdentifier","src":"29842:7:51"}],"functionName":{"name":"shl","nativeSrc":"29834:3:51","nodeType":"YulIdentifier","src":"29834:3:51"},"nativeSrc":"29834:16:51","nodeType":"YulFunctionCall","src":"29834:16:51"},{"kind":"number","nativeSrc":"29852:26:51","nodeType":"YulLiteral","src":"29852:26:51","type":"","value":"0xffffffffffffffff00000000"}],"functionName":{"name":"and","nativeSrc":"29830:3:51","nodeType":"YulIdentifier","src":"29830:3:51"},"nativeSrc":"29830:49:51","nodeType":"YulFunctionCall","src":"29830:49:51"}],"functionName":{"name":"or","nativeSrc":"29763:2:51","nodeType":"YulIdentifier","src":"29763:2:51"},"nativeSrc":"29763:117:51","nodeType":"YulFunctionCall","src":"29763:117:51"}],"functionName":{"name":"sstore","nativeSrc":"29750:6:51","nodeType":"YulIdentifier","src":"29750:6:51"},"nativeSrc":"29750:131:51","nodeType":"YulFunctionCall","src":"29750:131:51"},"nativeSrc":"29750:131:51","nodeType":"YulExpressionStatement","src":"29750:131:51"},{"nativeSrc":"29890:20:51","nodeType":"YulVariableDeclaration","src":"29890:20:51","value":{"kind":"number","nativeSrc":"29909:1:51","nodeType":"YulLiteral","src":"29909:1:51","type":"","value":"0"},"variables":[{"name":"returnValue","nativeSrc":"29894:11:51","nodeType":"YulTypedName","src":"29894:11:51","type":""}]},{"nativeSrc":"29919:43:51","nodeType":"YulVariableDeclaration","src":"29919:43:51","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"29951:5:51","nodeType":"YulIdentifier","src":"29951:5:51"},{"kind":"number","nativeSrc":"29958:2:51","nodeType":"YulLiteral","src":"29958:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"29947:3:51","nodeType":"YulIdentifier","src":"29947:3:51"},"nativeSrc":"29947:14:51","nodeType":"YulFunctionCall","src":"29947:14:51"}],"functionName":{"name":"calldataload","nativeSrc":"29934:12:51","nodeType":"YulIdentifier","src":"29934:12:51"},"nativeSrc":"29934:28:51","nodeType":"YulFunctionCall","src":"29934:28:51"},"variables":[{"name":"value_4","nativeSrc":"29923:7:51","nodeType":"YulTypedName","src":"29923:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"29995:7:51","nodeType":"YulIdentifier","src":"29995:7:51"}],"functionName":{"name":"validator_revert_uint24","nativeSrc":"29971:23:51","nodeType":"YulIdentifier","src":"29971:23:51"},"nativeSrc":"29971:32:51","nodeType":"YulFunctionCall","src":"29971:32:51"},"nativeSrc":"29971:32:51","nodeType":"YulExpressionStatement","src":"29971:32:51"},{"nativeSrc":"30012:22:51","nodeType":"YulAssignment","src":"30012:22:51","value":{"name":"value_4","nativeSrc":"30027:7:51","nodeType":"YulIdentifier","src":"30027:7:51"},"variableNames":[{"name":"returnValue","nativeSrc":"30012:11:51","nodeType":"YulIdentifier","src":"30012:11:51"}]},{"nativeSrc":"30043:21:51","nodeType":"YulVariableDeclaration","src":"30043:21:51","value":{"arguments":[{"name":"slot","nativeSrc":"30059:4:51","nodeType":"YulIdentifier","src":"30059:4:51"}],"functionName":{"name":"sload","nativeSrc":"30053:5:51","nodeType":"YulIdentifier","src":"30053:5:51"},"nativeSrc":"30053:11:51","nodeType":"YulFunctionCall","src":"30053:11:51"},"variables":[{"name":"_3","nativeSrc":"30047:2:51","nodeType":"YulTypedName","src":"30047:2:51","type":""}]},{"expression":{"arguments":[{"name":"slot","nativeSrc":"30080:4:51","nodeType":"YulIdentifier","src":"30080:4:51"},{"arguments":[{"arguments":[{"name":"_3","nativeSrc":"30093:2:51","nodeType":"YulIdentifier","src":"30093:2:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30105:2:51","nodeType":"YulLiteral","src":"30105:2:51","type":"","value":"96"},{"kind":"number","nativeSrc":"30109:8:51","nodeType":"YulLiteral","src":"30109:8:51","type":"","value":"16777215"}],"functionName":{"name":"shl","nativeSrc":"30101:3:51","nodeType":"YulIdentifier","src":"30101:3:51"},"nativeSrc":"30101:17:51","nodeType":"YulFunctionCall","src":"30101:17:51"}],"functionName":{"name":"not","nativeSrc":"30097:3:51","nodeType":"YulIdentifier","src":"30097:3:51"},"nativeSrc":"30097:22:51","nodeType":"YulFunctionCall","src":"30097:22:51"}],"functionName":{"name":"and","nativeSrc":"30089:3:51","nodeType":"YulIdentifier","src":"30089:3:51"},"nativeSrc":"30089:31:51","nodeType":"YulFunctionCall","src":"30089:31:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30130:2:51","nodeType":"YulLiteral","src":"30130:2:51","type":"","value":"96"},{"name":"value_4","nativeSrc":"30134:7:51","nodeType":"YulIdentifier","src":"30134:7:51"}],"functionName":{"name":"shl","nativeSrc":"30126:3:51","nodeType":"YulIdentifier","src":"30126:3:51"},"nativeSrc":"30126:16:51","nodeType":"YulFunctionCall","src":"30126:16:51"},{"arguments":[{"kind":"number","nativeSrc":"30148:2:51","nodeType":"YulLiteral","src":"30148:2:51","type":"","value":"96"},{"kind":"number","nativeSrc":"30152:8:51","nodeType":"YulLiteral","src":"30152:8:51","type":"","value":"16777215"}],"functionName":{"name":"shl","nativeSrc":"30144:3:51","nodeType":"YulIdentifier","src":"30144:3:51"},"nativeSrc":"30144:17:51","nodeType":"YulFunctionCall","src":"30144:17:51"}],"functionName":{"name":"and","nativeSrc":"30122:3:51","nodeType":"YulIdentifier","src":"30122:3:51"},"nativeSrc":"30122:40:51","nodeType":"YulFunctionCall","src":"30122:40:51"}],"functionName":{"name":"or","nativeSrc":"30086:2:51","nodeType":"YulIdentifier","src":"30086:2:51"},"nativeSrc":"30086:77:51","nodeType":"YulFunctionCall","src":"30086:77:51"}],"functionName":{"name":"sstore","nativeSrc":"30073:6:51","nodeType":"YulIdentifier","src":"30073:6:51"},"nativeSrc":"30073:91:51","nodeType":"YulFunctionCall","src":"30073:91:51"},"nativeSrc":"30073:91:51","nodeType":"YulExpressionStatement","src":"30073:91:51"}]},"name":"update_storage_value_offset_0_t_struct$_WitOracleSettings_$7941_calldata_ptr_to_t_struct$_WitOracleSettings_$7941_storage","nativeSrc":"29076:1094:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"29207:4:51","nodeType":"YulTypedName","src":"29207:4:51","type":""},{"name":"value","nativeSrc":"29213:5:51","nodeType":"YulTypedName","src":"29213:5:51","type":""}],"src":"29076:1094:51"},{"body":{"nativeSrc":"30349:168:51","nodeType":"YulBlock","src":"30349:168:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30366:9:51","nodeType":"YulIdentifier","src":"30366:9:51"},{"kind":"number","nativeSrc":"30377:2:51","nodeType":"YulLiteral","src":"30377:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"30359:6:51","nodeType":"YulIdentifier","src":"30359:6:51"},"nativeSrc":"30359:21:51","nodeType":"YulFunctionCall","src":"30359:21:51"},"nativeSrc":"30359:21:51","nodeType":"YulExpressionStatement","src":"30359:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30400:9:51","nodeType":"YulIdentifier","src":"30400:9:51"},{"kind":"number","nativeSrc":"30411:2:51","nodeType":"YulLiteral","src":"30411:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30396:3:51","nodeType":"YulIdentifier","src":"30396:3:51"},"nativeSrc":"30396:18:51","nodeType":"YulFunctionCall","src":"30396:18:51"},{"kind":"number","nativeSrc":"30416:2:51","nodeType":"YulLiteral","src":"30416:2:51","type":"","value":"18"}],"functionName":{"name":"mstore","nativeSrc":"30389:6:51","nodeType":"YulIdentifier","src":"30389:6:51"},"nativeSrc":"30389:30:51","nodeType":"YulFunctionCall","src":"30389:30:51"},"nativeSrc":"30389:30:51","nodeType":"YulExpressionStatement","src":"30389:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30439:9:51","nodeType":"YulIdentifier","src":"30439:9:51"},{"kind":"number","nativeSrc":"30450:2:51","nodeType":"YulLiteral","src":"30450:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30435:3:51","nodeType":"YulIdentifier","src":"30435:3:51"},"nativeSrc":"30435:18:51","nodeType":"YulFunctionCall","src":"30435:18:51"},{"hexValue":"6e6f7420656e6f7567682062616c616e6365","kind":"string","nativeSrc":"30455:20:51","nodeType":"YulLiteral","src":"30455:20:51","type":"","value":"not enough balance"}],"functionName":{"name":"mstore","nativeSrc":"30428:6:51","nodeType":"YulIdentifier","src":"30428:6:51"},"nativeSrc":"30428:48:51","nodeType":"YulFunctionCall","src":"30428:48:51"},"nativeSrc":"30428:48:51","nodeType":"YulExpressionStatement","src":"30428:48:51"},{"nativeSrc":"30485:26:51","nodeType":"YulAssignment","src":"30485:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"30497:9:51","nodeType":"YulIdentifier","src":"30497:9:51"},{"kind":"number","nativeSrc":"30508:2:51","nodeType":"YulLiteral","src":"30508:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"30493:3:51","nodeType":"YulIdentifier","src":"30493:3:51"},"nativeSrc":"30493:18:51","nodeType":"YulFunctionCall","src":"30493:18:51"},"variableNames":[{"name":"tail","nativeSrc":"30485:4:51","nodeType":"YulIdentifier","src":"30485:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_596712763af5ad819c1a1c8db05ac93e50918d28937626717ff5e1d919b4454a__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"30175:342:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30326:9:51","nodeType":"YulTypedName","src":"30326:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30340:4:51","nodeType":"YulTypedName","src":"30340:4:51","type":""}],"src":"30175:342:51"},{"body":{"nativeSrc":"30696:173:51","nodeType":"YulBlock","src":"30696:173:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30713:9:51","nodeType":"YulIdentifier","src":"30713:9:51"},{"kind":"number","nativeSrc":"30724:2:51","nodeType":"YulLiteral","src":"30724:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"30706:6:51","nodeType":"YulIdentifier","src":"30706:6:51"},"nativeSrc":"30706:21:51","nodeType":"YulFunctionCall","src":"30706:21:51"},"nativeSrc":"30706:21:51","nodeType":"YulExpressionStatement","src":"30706:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30747:9:51","nodeType":"YulIdentifier","src":"30747:9:51"},{"kind":"number","nativeSrc":"30758:2:51","nodeType":"YulLiteral","src":"30758:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30743:3:51","nodeType":"YulIdentifier","src":"30743:3:51"},"nativeSrc":"30743:18:51","nodeType":"YulFunctionCall","src":"30743:18:51"},{"kind":"number","nativeSrc":"30763:2:51","nodeType":"YulLiteral","src":"30763:2:51","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"30736:6:51","nodeType":"YulIdentifier","src":"30736:6:51"},"nativeSrc":"30736:30:51","nodeType":"YulFunctionCall","src":"30736:30:51"},"nativeSrc":"30736:30:51","nodeType":"YulExpressionStatement","src":"30736:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30786:9:51","nodeType":"YulIdentifier","src":"30786:9:51"},{"kind":"number","nativeSrc":"30797:2:51","nodeType":"YulLiteral","src":"30797:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30782:3:51","nodeType":"YulIdentifier","src":"30782:3:51"},"nativeSrc":"30782:18:51","nodeType":"YulFunctionCall","src":"30782:18:51"},{"hexValue":"63616e6e6f7420756e777261702074686174206d756368","kind":"string","nativeSrc":"30802:25:51","nodeType":"YulLiteral","src":"30802:25:51","type":"","value":"cannot unwrap that much"}],"functionName":{"name":"mstore","nativeSrc":"30775:6:51","nodeType":"YulIdentifier","src":"30775:6:51"},"nativeSrc":"30775:53:51","nodeType":"YulFunctionCall","src":"30775:53:51"},"nativeSrc":"30775:53:51","nodeType":"YulExpressionStatement","src":"30775:53:51"},{"nativeSrc":"30837:26:51","nodeType":"YulAssignment","src":"30837:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"30849:9:51","nodeType":"YulIdentifier","src":"30849:9:51"},{"kind":"number","nativeSrc":"30860:2:51","nodeType":"YulLiteral","src":"30860:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"30845:3:51","nodeType":"YulIdentifier","src":"30845:3:51"},"nativeSrc":"30845:18:51","nodeType":"YulFunctionCall","src":"30845:18:51"},"variableNames":[{"name":"tail","nativeSrc":"30837:4:51","nodeType":"YulIdentifier","src":"30837:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_c2f7d7791943b6f0be2f5c4696e74b461af6db49d575243d9759641d2894e1d5__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"30522:347:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30673:9:51","nodeType":"YulTypedName","src":"30673:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30687:4:51","nodeType":"YulTypedName","src":"30687:4:51","type":""}],"src":"30522:347:51"},{"body":{"nativeSrc":"31048:167:51","nodeType":"YulBlock","src":"31048:167:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31065:9:51","nodeType":"YulIdentifier","src":"31065:9:51"},{"kind":"number","nativeSrc":"31076:2:51","nodeType":"YulLiteral","src":"31076:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"31058:6:51","nodeType":"YulIdentifier","src":"31058:6:51"},"nativeSrc":"31058:21:51","nodeType":"YulFunctionCall","src":"31058:21:51"},"nativeSrc":"31058:21:51","nodeType":"YulExpressionStatement","src":"31058:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31099:9:51","nodeType":"YulIdentifier","src":"31099:9:51"},{"kind":"number","nativeSrc":"31110:2:51","nodeType":"YulLiteral","src":"31110:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31095:3:51","nodeType":"YulIdentifier","src":"31095:3:51"},"nativeSrc":"31095:18:51","nodeType":"YulFunctionCall","src":"31095:18:51"},{"kind":"number","nativeSrc":"31115:2:51","nodeType":"YulLiteral","src":"31115:2:51","type":"","value":"17"}],"functionName":{"name":"mstore","nativeSrc":"31088:6:51","nodeType":"YulIdentifier","src":"31088:6:51"},"nativeSrc":"31088:30:51","nodeType":"YulFunctionCall","src":"31088:30:51"},"nativeSrc":"31088:30:51","nodeType":"YulExpressionStatement","src":"31088:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31138:9:51","nodeType":"YulIdentifier","src":"31138:9:51"},{"kind":"number","nativeSrc":"31149:2:51","nodeType":"YulLiteral","src":"31149:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31134:3:51","nodeType":"YulIdentifier","src":"31134:3:51"},"nativeSrc":"31134:18:51","nodeType":"YulFunctionCall","src":"31134:18:51"},{"hexValue":"696e76616c696420726563697069656e74","kind":"string","nativeSrc":"31154:19:51","nodeType":"YulLiteral","src":"31154:19:51","type":"","value":"invalid recipient"}],"functionName":{"name":"mstore","nativeSrc":"31127:6:51","nodeType":"YulIdentifier","src":"31127:6:51"},"nativeSrc":"31127:47:51","nodeType":"YulFunctionCall","src":"31127:47:51"},"nativeSrc":"31127:47:51","nodeType":"YulExpressionStatement","src":"31127:47:51"},{"nativeSrc":"31183:26:51","nodeType":"YulAssignment","src":"31183:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"31195:9:51","nodeType":"YulIdentifier","src":"31195:9:51"},{"kind":"number","nativeSrc":"31206:2:51","nodeType":"YulLiteral","src":"31206:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"31191:3:51","nodeType":"YulIdentifier","src":"31191:3:51"},"nativeSrc":"31191:18:51","nodeType":"YulFunctionCall","src":"31191:18:51"},"variableNames":[{"name":"tail","nativeSrc":"31183:4:51","nodeType":"YulIdentifier","src":"31183:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_80c95633eb4d36a63978e9d13e657c438c0d395a23eb33de58bf1d9758a73228__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"30874:341:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31025:9:51","nodeType":"YulTypedName","src":"31025:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31039:4:51","nodeType":"YulTypedName","src":"31039:4:51","type":""}],"src":"30874:341:51"},{"body":{"nativeSrc":"31252:95:51","nodeType":"YulBlock","src":"31252:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"31269:1:51","nodeType":"YulLiteral","src":"31269:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"31276:3:51","nodeType":"YulLiteral","src":"31276:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"31281:10:51","nodeType":"YulLiteral","src":"31281:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"31272:3:51","nodeType":"YulIdentifier","src":"31272:3:51"},"nativeSrc":"31272:20:51","nodeType":"YulFunctionCall","src":"31272:20:51"}],"functionName":{"name":"mstore","nativeSrc":"31262:6:51","nodeType":"YulIdentifier","src":"31262:6:51"},"nativeSrc":"31262:31:51","nodeType":"YulFunctionCall","src":"31262:31:51"},"nativeSrc":"31262:31:51","nodeType":"YulExpressionStatement","src":"31262:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"31309:1:51","nodeType":"YulLiteral","src":"31309:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"31312:4:51","nodeType":"YulLiteral","src":"31312:4:51","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"31302:6:51","nodeType":"YulIdentifier","src":"31302:6:51"},"nativeSrc":"31302:15:51","nodeType":"YulFunctionCall","src":"31302:15:51"},"nativeSrc":"31302:15:51","nodeType":"YulExpressionStatement","src":"31302:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"31333:1:51","nodeType":"YulLiteral","src":"31333:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"31336:4:51","nodeType":"YulLiteral","src":"31336:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"31326:6:51","nodeType":"YulIdentifier","src":"31326:6:51"},"nativeSrc":"31326:15:51","nodeType":"YulFunctionCall","src":"31326:15:51"},"nativeSrc":"31326:15:51","nodeType":"YulExpressionStatement","src":"31326:15:51"}]},"name":"panic_error_0x11","nativeSrc":"31220:127:51","nodeType":"YulFunctionDefinition","src":"31220:127:51"},{"body":{"nativeSrc":"31400:146:51","nodeType":"YulBlock","src":"31400:146:51","statements":[{"nativeSrc":"31410:67:51","nodeType":"YulAssignment","src":"31410:67:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"31426:1:51","nodeType":"YulIdentifier","src":"31426:1:51"},{"kind":"number","nativeSrc":"31429:18:51","nodeType":"YulLiteral","src":"31429:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"31422:3:51","nodeType":"YulIdentifier","src":"31422:3:51"},"nativeSrc":"31422:26:51","nodeType":"YulFunctionCall","src":"31422:26:51"},{"arguments":[{"name":"y","nativeSrc":"31454:1:51","nodeType":"YulIdentifier","src":"31454:1:51"},{"kind":"number","nativeSrc":"31457:18:51","nodeType":"YulLiteral","src":"31457:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"31450:3:51","nodeType":"YulIdentifier","src":"31450:3:51"},"nativeSrc":"31450:26:51","nodeType":"YulFunctionCall","src":"31450:26:51"}],"functionName":{"name":"sub","nativeSrc":"31418:3:51","nodeType":"YulIdentifier","src":"31418:3:51"},"nativeSrc":"31418:59:51","nodeType":"YulFunctionCall","src":"31418:59:51"},"variableNames":[{"name":"diff","nativeSrc":"31410:4:51","nodeType":"YulIdentifier","src":"31410:4:51"}]},{"body":{"nativeSrc":"31518:22:51","nodeType":"YulBlock","src":"31518:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"31520:16:51","nodeType":"YulIdentifier","src":"31520:16:51"},"nativeSrc":"31520:18:51","nodeType":"YulFunctionCall","src":"31520:18:51"},"nativeSrc":"31520:18:51","nodeType":"YulExpressionStatement","src":"31520:18:51"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"31492:4:51","nodeType":"YulIdentifier","src":"31492:4:51"},{"kind":"number","nativeSrc":"31498:18:51","nodeType":"YulLiteral","src":"31498:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"31489:2:51","nodeType":"YulIdentifier","src":"31489:2:51"},"nativeSrc":"31489:28:51","nodeType":"YulFunctionCall","src":"31489:28:51"},"nativeSrc":"31486:54:51","nodeType":"YulIf","src":"31486:54:51"}]},"name":"checked_sub_t_uint64","nativeSrc":"31352:194:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"31382:1:51","nodeType":"YulTypedName","src":"31382:1:51","type":""},{"name":"y","nativeSrc":"31385:1:51","nodeType":"YulTypedName","src":"31385:1:51","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"31391:4:51","nodeType":"YulTypedName","src":"31391:4:51","type":""}],"src":"31352:194:51"},{"body":{"nativeSrc":"31597:158:51","nodeType":"YulBlock","src":"31597:158:51","statements":[{"nativeSrc":"31607:45:51","nodeType":"YulVariableDeclaration","src":"31607:45:51","value":{"arguments":[{"name":"value","nativeSrc":"31626:5:51","nodeType":"YulIdentifier","src":"31626:5:51"},{"kind":"number","nativeSrc":"31633:18:51","nodeType":"YulLiteral","src":"31633:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"31622:3:51","nodeType":"YulIdentifier","src":"31622:3:51"},"nativeSrc":"31622:30:51","nodeType":"YulFunctionCall","src":"31622:30:51"},"variables":[{"name":"value_1","nativeSrc":"31611:7:51","nodeType":"YulTypedName","src":"31611:7:51","type":""}]},{"body":{"nativeSrc":"31696:22:51","nodeType":"YulBlock","src":"31696:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"31698:16:51","nodeType":"YulIdentifier","src":"31698:16:51"},"nativeSrc":"31698:18:51","nodeType":"YulFunctionCall","src":"31698:18:51"},"nativeSrc":"31698:18:51","nodeType":"YulExpressionStatement","src":"31698:18:51"}]},"condition":{"arguments":[{"name":"value_1","nativeSrc":"31667:7:51","nodeType":"YulIdentifier","src":"31667:7:51"},{"kind":"number","nativeSrc":"31676:18:51","nodeType":"YulLiteral","src":"31676:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"eq","nativeSrc":"31664:2:51","nodeType":"YulIdentifier","src":"31664:2:51"},"nativeSrc":"31664:31:51","nodeType":"YulFunctionCall","src":"31664:31:51"},"nativeSrc":"31661:57:51","nodeType":"YulIf","src":"31661:57:51"},{"nativeSrc":"31727:22:51","nodeType":"YulAssignment","src":"31727:22:51","value":{"arguments":[{"name":"value_1","nativeSrc":"31738:7:51","nodeType":"YulIdentifier","src":"31738:7:51"},{"kind":"number","nativeSrc":"31747:1:51","nodeType":"YulLiteral","src":"31747:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"31734:3:51","nodeType":"YulIdentifier","src":"31734:3:51"},"nativeSrc":"31734:15:51","nodeType":"YulFunctionCall","src":"31734:15:51"},"variableNames":[{"name":"ret","nativeSrc":"31727:3:51","nodeType":"YulIdentifier","src":"31727:3:51"}]}]},"name":"increment_t_uint64","nativeSrc":"31551:204:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"31579:5:51","nodeType":"YulTypedName","src":"31579:5:51","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"31589:3:51","nodeType":"YulTypedName","src":"31589:3:51","type":""}],"src":"31551:204:51"},{"body":{"nativeSrc":"31974:297:51","nodeType":"YulBlock","src":"31974:297:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31991:9:51","nodeType":"YulIdentifier","src":"31991:9:51"},{"arguments":[{"name":"value0","nativeSrc":"32006:6:51","nodeType":"YulIdentifier","src":"32006:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"32022:3:51","nodeType":"YulLiteral","src":"32022:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"32027:1:51","nodeType":"YulLiteral","src":"32027:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"32018:3:51","nodeType":"YulIdentifier","src":"32018:3:51"},"nativeSrc":"32018:11:51","nodeType":"YulFunctionCall","src":"32018:11:51"},{"kind":"number","nativeSrc":"32031:1:51","nodeType":"YulLiteral","src":"32031:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"32014:3:51","nodeType":"YulIdentifier","src":"32014:3:51"},"nativeSrc":"32014:19:51","nodeType":"YulFunctionCall","src":"32014:19:51"}],"functionName":{"name":"and","nativeSrc":"32002:3:51","nodeType":"YulIdentifier","src":"32002:3:51"},"nativeSrc":"32002:32:51","nodeType":"YulFunctionCall","src":"32002:32:51"}],"functionName":{"name":"mstore","nativeSrc":"31984:6:51","nodeType":"YulIdentifier","src":"31984:6:51"},"nativeSrc":"31984:51:51","nodeType":"YulFunctionCall","src":"31984:51:51"},"nativeSrc":"31984:51:51","nodeType":"YulExpressionStatement","src":"31984:51:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32055:9:51","nodeType":"YulIdentifier","src":"32055:9:51"},{"kind":"number","nativeSrc":"32066:2:51","nodeType":"YulLiteral","src":"32066:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32051:3:51","nodeType":"YulIdentifier","src":"32051:3:51"},"nativeSrc":"32051:18:51","nodeType":"YulFunctionCall","src":"32051:18:51"},{"kind":"number","nativeSrc":"32071:3:51","nodeType":"YulLiteral","src":"32071:3:51","type":"","value":"128"}],"functionName":{"name":"mstore","nativeSrc":"32044:6:51","nodeType":"YulIdentifier","src":"32044:6:51"},"nativeSrc":"32044:31:51","nodeType":"YulFunctionCall","src":"32044:31:51"},"nativeSrc":"32044:31:51","nodeType":"YulExpressionStatement","src":"32044:31:51"},{"nativeSrc":"32084:70:51","nodeType":"YulAssignment","src":"32084:70:51","value":{"arguments":[{"name":"value1","nativeSrc":"32118:6:51","nodeType":"YulIdentifier","src":"32118:6:51"},{"name":"value2","nativeSrc":"32126:6:51","nodeType":"YulIdentifier","src":"32126:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"32138:9:51","nodeType":"YulIdentifier","src":"32138:9:51"},{"kind":"number","nativeSrc":"32149:3:51","nodeType":"YulLiteral","src":"32149:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"32134:3:51","nodeType":"YulIdentifier","src":"32134:3:51"},"nativeSrc":"32134:19:51","nodeType":"YulFunctionCall","src":"32134:19:51"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"32092:25:51","nodeType":"YulIdentifier","src":"32092:25:51"},"nativeSrc":"32092:62:51","nodeType":"YulFunctionCall","src":"32092:62:51"},"variableNames":[{"name":"tail","nativeSrc":"32084:4:51","nodeType":"YulIdentifier","src":"32084:4:51"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32174:9:51","nodeType":"YulIdentifier","src":"32174:9:51"},{"kind":"number","nativeSrc":"32185:2:51","nodeType":"YulLiteral","src":"32185:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"32170:3:51","nodeType":"YulIdentifier","src":"32170:3:51"},"nativeSrc":"32170:18:51","nodeType":"YulFunctionCall","src":"32170:18:51"},{"arguments":[{"name":"value3","nativeSrc":"32194:6:51","nodeType":"YulIdentifier","src":"32194:6:51"},{"kind":"number","nativeSrc":"32202:18:51","nodeType":"YulLiteral","src":"32202:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"32190:3:51","nodeType":"YulIdentifier","src":"32190:3:51"},"nativeSrc":"32190:31:51","nodeType":"YulFunctionCall","src":"32190:31:51"}],"functionName":{"name":"mstore","nativeSrc":"32163:6:51","nodeType":"YulIdentifier","src":"32163:6:51"},"nativeSrc":"32163:59:51","nodeType":"YulFunctionCall","src":"32163:59:51"},"nativeSrc":"32163:59:51","nodeType":"YulExpressionStatement","src":"32163:59:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32242:9:51","nodeType":"YulIdentifier","src":"32242:9:51"},{"kind":"number","nativeSrc":"32253:2:51","nodeType":"YulLiteral","src":"32253:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"32238:3:51","nodeType":"YulIdentifier","src":"32238:3:51"},"nativeSrc":"32238:18:51","nodeType":"YulFunctionCall","src":"32238:18:51"},{"name":"value4","nativeSrc":"32258:6:51","nodeType":"YulIdentifier","src":"32258:6:51"}],"functionName":{"name":"mstore","nativeSrc":"32231:6:51","nodeType":"YulIdentifier","src":"32231:6:51"},"nativeSrc":"32231:34:51","nodeType":"YulFunctionCall","src":"32231:34:51"},"nativeSrc":"32231:34:51","nodeType":"YulExpressionStatement","src":"32231:34:51"}]},"name":"abi_encode_tuple_t_address_t_string_calldata_ptr_t_uint64_t_uint256__to_t_address_t_string_memory_ptr_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"31760:511:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31911:9:51","nodeType":"YulTypedName","src":"31911:9:51","type":""},{"name":"value4","nativeSrc":"31922:6:51","nodeType":"YulTypedName","src":"31922:6:51","type":""},{"name":"value3","nativeSrc":"31930:6:51","nodeType":"YulTypedName","src":"31930:6:51","type":""},{"name":"value2","nativeSrc":"31938:6:51","nodeType":"YulTypedName","src":"31938:6:51","type":""},{"name":"value1","nativeSrc":"31946:6:51","nodeType":"YulTypedName","src":"31946:6:51","type":""},{"name":"value0","nativeSrc":"31954:6:51","nodeType":"YulTypedName","src":"31954:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31965:4:51","nodeType":"YulTypedName","src":"31965:4:51","type":""}],"src":"31760:511:51"},{"body":{"nativeSrc":"32374:179:51","nodeType":"YulBlock","src":"32374:179:51","statements":[{"body":{"nativeSrc":"32420:16:51","nodeType":"YulBlock","src":"32420:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32429:1:51","nodeType":"YulLiteral","src":"32429:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"32432:1:51","nodeType":"YulLiteral","src":"32432:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"32422:6:51","nodeType":"YulIdentifier","src":"32422:6:51"},"nativeSrc":"32422:12:51","nodeType":"YulFunctionCall","src":"32422:12:51"},"nativeSrc":"32422:12:51","nodeType":"YulExpressionStatement","src":"32422:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"32395:7:51","nodeType":"YulIdentifier","src":"32395:7:51"},{"name":"headStart","nativeSrc":"32404:9:51","nodeType":"YulIdentifier","src":"32404:9:51"}],"functionName":{"name":"sub","nativeSrc":"32391:3:51","nodeType":"YulIdentifier","src":"32391:3:51"},"nativeSrc":"32391:23:51","nodeType":"YulFunctionCall","src":"32391:23:51"},{"kind":"number","nativeSrc":"32416:2:51","nodeType":"YulLiteral","src":"32416:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"32387:3:51","nodeType":"YulIdentifier","src":"32387:3:51"},"nativeSrc":"32387:32:51","nodeType":"YulFunctionCall","src":"32387:32:51"},"nativeSrc":"32384:52:51","nodeType":"YulIf","src":"32384:52:51"},{"nativeSrc":"32445:29:51","nodeType":"YulVariableDeclaration","src":"32445:29:51","value":{"arguments":[{"name":"headStart","nativeSrc":"32464:9:51","nodeType":"YulIdentifier","src":"32464:9:51"}],"functionName":{"name":"mload","nativeSrc":"32458:5:51","nodeType":"YulIdentifier","src":"32458:5:51"},"nativeSrc":"32458:16:51","nodeType":"YulFunctionCall","src":"32458:16:51"},"variables":[{"name":"value","nativeSrc":"32449:5:51","nodeType":"YulTypedName","src":"32449:5:51","type":""}]},{"body":{"nativeSrc":"32507:16:51","nodeType":"YulBlock","src":"32507:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32516:1:51","nodeType":"YulLiteral","src":"32516:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"32519:1:51","nodeType":"YulLiteral","src":"32519:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"32509:6:51","nodeType":"YulIdentifier","src":"32509:6:51"},"nativeSrc":"32509:12:51","nodeType":"YulFunctionCall","src":"32509:12:51"},"nativeSrc":"32509:12:51","nodeType":"YulExpressionStatement","src":"32509:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"32496:5:51","nodeType":"YulIdentifier","src":"32496:5:51"},{"kind":"number","nativeSrc":"32503:1:51","nodeType":"YulLiteral","src":"32503:1:51","type":"","value":"7"}],"functionName":{"name":"lt","nativeSrc":"32493:2:51","nodeType":"YulIdentifier","src":"32493:2:51"},"nativeSrc":"32493:12:51","nodeType":"YulFunctionCall","src":"32493:12:51"}],"functionName":{"name":"iszero","nativeSrc":"32486:6:51","nodeType":"YulIdentifier","src":"32486:6:51"},"nativeSrc":"32486:20:51","nodeType":"YulFunctionCall","src":"32486:20:51"},"nativeSrc":"32483:40:51","nodeType":"YulIf","src":"32483:40:51"},{"nativeSrc":"32532:15:51","nodeType":"YulAssignment","src":"32532:15:51","value":{"name":"value","nativeSrc":"32542:5:51","nodeType":"YulIdentifier","src":"32542:5:51"},"variableNames":[{"name":"value0","nativeSrc":"32532:6:51","nodeType":"YulIdentifier","src":"32532:6:51"}]}]},"name":"abi_decode_tuple_t_enum$_QueryStatus_$13430_fromMemory","nativeSrc":"32276:277:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32340:9:51","nodeType":"YulTypedName","src":"32340:9:51","type":""},{"name":"dataEnd","nativeSrc":"32351:7:51","nodeType":"YulTypedName","src":"32351:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"32363:6:51","nodeType":"YulTypedName","src":"32363:6:51","type":""}],"src":"32276:277:51"},{"body":{"nativeSrc":"32590:95:51","nodeType":"YulBlock","src":"32590:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32607:1:51","nodeType":"YulLiteral","src":"32607:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"32614:3:51","nodeType":"YulLiteral","src":"32614:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"32619:10:51","nodeType":"YulLiteral","src":"32619:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"32610:3:51","nodeType":"YulIdentifier","src":"32610:3:51"},"nativeSrc":"32610:20:51","nodeType":"YulFunctionCall","src":"32610:20:51"}],"functionName":{"name":"mstore","nativeSrc":"32600:6:51","nodeType":"YulIdentifier","src":"32600:6:51"},"nativeSrc":"32600:31:51","nodeType":"YulFunctionCall","src":"32600:31:51"},"nativeSrc":"32600:31:51","nodeType":"YulExpressionStatement","src":"32600:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"32647:1:51","nodeType":"YulLiteral","src":"32647:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"32650:4:51","nodeType":"YulLiteral","src":"32650:4:51","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"32640:6:51","nodeType":"YulIdentifier","src":"32640:6:51"},"nativeSrc":"32640:15:51","nodeType":"YulFunctionCall","src":"32640:15:51"},"nativeSrc":"32640:15:51","nodeType":"YulExpressionStatement","src":"32640:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"32671:1:51","nodeType":"YulLiteral","src":"32671:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"32674:4:51","nodeType":"YulLiteral","src":"32674:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"32664:6:51","nodeType":"YulIdentifier","src":"32664:6:51"},"nativeSrc":"32664:15:51","nodeType":"YulFunctionCall","src":"32664:15:51"},"nativeSrc":"32664:15:51","nodeType":"YulExpressionStatement","src":"32664:15:51"}]},"name":"panic_error_0x32","nativeSrc":"32558:127:51","nodeType":"YulFunctionDefinition","src":"32558:127:51"},{"body":{"nativeSrc":"32804:170:51","nodeType":"YulBlock","src":"32804:170:51","statements":[{"body":{"nativeSrc":"32850:16:51","nodeType":"YulBlock","src":"32850:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32859:1:51","nodeType":"YulLiteral","src":"32859:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"32862:1:51","nodeType":"YulLiteral","src":"32862:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"32852:6:51","nodeType":"YulIdentifier","src":"32852:6:51"},"nativeSrc":"32852:12:51","nodeType":"YulFunctionCall","src":"32852:12:51"},"nativeSrc":"32852:12:51","nodeType":"YulExpressionStatement","src":"32852:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"32825:7:51","nodeType":"YulIdentifier","src":"32825:7:51"},{"name":"headStart","nativeSrc":"32834:9:51","nodeType":"YulIdentifier","src":"32834:9:51"}],"functionName":{"name":"sub","nativeSrc":"32821:3:51","nodeType":"YulIdentifier","src":"32821:3:51"},"nativeSrc":"32821:23:51","nodeType":"YulFunctionCall","src":"32821:23:51"},{"kind":"number","nativeSrc":"32846:2:51","nodeType":"YulLiteral","src":"32846:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"32817:3:51","nodeType":"YulIdentifier","src":"32817:3:51"},"nativeSrc":"32817:32:51","nodeType":"YulFunctionCall","src":"32817:32:51"},"nativeSrc":"32814:52:51","nodeType":"YulIf","src":"32814:52:51"},{"nativeSrc":"32875:29:51","nodeType":"YulVariableDeclaration","src":"32875:29:51","value":{"arguments":[{"name":"headStart","nativeSrc":"32894:9:51","nodeType":"YulIdentifier","src":"32894:9:51"}],"functionName":{"name":"mload","nativeSrc":"32888:5:51","nodeType":"YulIdentifier","src":"32888:5:51"},"nativeSrc":"32888:16:51","nodeType":"YulFunctionCall","src":"32888:16:51"},"variables":[{"name":"value","nativeSrc":"32879:5:51","nodeType":"YulTypedName","src":"32879:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"32938:5:51","nodeType":"YulIdentifier","src":"32938:5:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"32913:24:51","nodeType":"YulIdentifier","src":"32913:24:51"},"nativeSrc":"32913:31:51","nodeType":"YulFunctionCall","src":"32913:31:51"},"nativeSrc":"32913:31:51","nodeType":"YulExpressionStatement","src":"32913:31:51"},{"nativeSrc":"32953:15:51","nodeType":"YulAssignment","src":"32953:15:51","value":{"name":"value","nativeSrc":"32963:5:51","nodeType":"YulIdentifier","src":"32963:5:51"},"variableNames":[{"name":"value0","nativeSrc":"32953:6:51","nodeType":"YulIdentifier","src":"32953:6:51"}]}]},"name":"abi_decode_tuple_t_contract$_IWitOracleRadonRegistry_$10616_fromMemory","nativeSrc":"32690:284:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32770:9:51","nodeType":"YulTypedName","src":"32770:9:51","type":""},{"name":"dataEnd","nativeSrc":"32781:7:51","nodeType":"YulTypedName","src":"32781:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"32793:6:51","nodeType":"YulTypedName","src":"32793:6:51","type":""}],"src":"32690:284:51"},{"body":{"nativeSrc":"33069:245:51","nodeType":"YulBlock","src":"33069:245:51","statements":[{"body":{"nativeSrc":"33115:16:51","nodeType":"YulBlock","src":"33115:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33124:1:51","nodeType":"YulLiteral","src":"33124:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"33127:1:51","nodeType":"YulLiteral","src":"33127:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"33117:6:51","nodeType":"YulIdentifier","src":"33117:6:51"},"nativeSrc":"33117:12:51","nodeType":"YulFunctionCall","src":"33117:12:51"},"nativeSrc":"33117:12:51","nodeType":"YulExpressionStatement","src":"33117:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"33090:7:51","nodeType":"YulIdentifier","src":"33090:7:51"},{"name":"headStart","nativeSrc":"33099:9:51","nodeType":"YulIdentifier","src":"33099:9:51"}],"functionName":{"name":"sub","nativeSrc":"33086:3:51","nodeType":"YulIdentifier","src":"33086:3:51"},"nativeSrc":"33086:23:51","nodeType":"YulFunctionCall","src":"33086:23:51"},{"kind":"number","nativeSrc":"33111:2:51","nodeType":"YulLiteral","src":"33111:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"33082:3:51","nodeType":"YulIdentifier","src":"33082:3:51"},"nativeSrc":"33082:32:51","nodeType":"YulFunctionCall","src":"33082:32:51"},"nativeSrc":"33079:52:51","nodeType":"YulIf","src":"33079:52:51"},{"nativeSrc":"33140:30:51","nodeType":"YulVariableDeclaration","src":"33140:30:51","value":{"arguments":[{"name":"headStart","nativeSrc":"33160:9:51","nodeType":"YulIdentifier","src":"33160:9:51"}],"functionName":{"name":"mload","nativeSrc":"33154:5:51","nodeType":"YulIdentifier","src":"33154:5:51"},"nativeSrc":"33154:16:51","nodeType":"YulFunctionCall","src":"33154:16:51"},"variables":[{"name":"offset","nativeSrc":"33144:6:51","nodeType":"YulTypedName","src":"33144:6:51","type":""}]},{"body":{"nativeSrc":"33213:16:51","nodeType":"YulBlock","src":"33213:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"33222:1:51","nodeType":"YulLiteral","src":"33222:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"33225:1:51","nodeType":"YulLiteral","src":"33225:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"33215:6:51","nodeType":"YulIdentifier","src":"33215:6:51"},"nativeSrc":"33215:12:51","nodeType":"YulFunctionCall","src":"33215:12:51"},"nativeSrc":"33215:12:51","nodeType":"YulExpressionStatement","src":"33215:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"33185:6:51","nodeType":"YulIdentifier","src":"33185:6:51"},{"kind":"number","nativeSrc":"33193:18:51","nodeType":"YulLiteral","src":"33193:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"33182:2:51","nodeType":"YulIdentifier","src":"33182:2:51"},"nativeSrc":"33182:30:51","nodeType":"YulFunctionCall","src":"33182:30:51"},"nativeSrc":"33179:50:51","nodeType":"YulIf","src":"33179:50:51"},{"nativeSrc":"33238:70:51","nodeType":"YulAssignment","src":"33238:70:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33280:9:51","nodeType":"YulIdentifier","src":"33280:9:51"},{"name":"offset","nativeSrc":"33291:6:51","nodeType":"YulIdentifier","src":"33291:6:51"}],"functionName":{"name":"add","nativeSrc":"33276:3:51","nodeType":"YulIdentifier","src":"33276:3:51"},"nativeSrc":"33276:22:51","nodeType":"YulFunctionCall","src":"33276:22:51"},{"name":"dataEnd","nativeSrc":"33300:7:51","nodeType":"YulIdentifier","src":"33300:7:51"}],"functionName":{"name":"abi_decode_bytes_fromMemory","nativeSrc":"33248:27:51","nodeType":"YulIdentifier","src":"33248:27:51"},"nativeSrc":"33248:60:51","nodeType":"YulFunctionCall","src":"33248:60:51"},"variableNames":[{"name":"value0","nativeSrc":"33238:6:51","nodeType":"YulIdentifier","src":"33238:6:51"}]}]},"name":"abi_decode_tuple_t_bytes_memory_ptr_fromMemory","nativeSrc":"32979:335:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"33035:9:51","nodeType":"YulTypedName","src":"33035:9:51","type":""},{"name":"dataEnd","nativeSrc":"33046:7:51","nodeType":"YulTypedName","src":"33046:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"33058:6:51","nodeType":"YulTypedName","src":"33058:6:51","type":""}],"src":"32979:335:51"},{"body":{"nativeSrc":"33560:346:51","nodeType":"YulBlock","src":"33560:346:51","statements":[{"nativeSrc":"33570:27:51","nodeType":"YulAssignment","src":"33570:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"33582:9:51","nodeType":"YulIdentifier","src":"33582:9:51"},{"kind":"number","nativeSrc":"33593:3:51","nodeType":"YulLiteral","src":"33593:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"33578:3:51","nodeType":"YulIdentifier","src":"33578:3:51"},"nativeSrc":"33578:19:51","nodeType":"YulFunctionCall","src":"33578:19:51"},"variableNames":[{"name":"tail","nativeSrc":"33570:4:51","nodeType":"YulIdentifier","src":"33570:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"33613:9:51","nodeType":"YulIdentifier","src":"33613:9:51"},{"name":"value0","nativeSrc":"33624:6:51","nodeType":"YulIdentifier","src":"33624:6:51"}],"functionName":{"name":"mstore","nativeSrc":"33606:6:51","nodeType":"YulIdentifier","src":"33606:6:51"},"nativeSrc":"33606:25:51","nodeType":"YulFunctionCall","src":"33606:25:51"},"nativeSrc":"33606:25:51","nodeType":"YulExpressionStatement","src":"33606:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33651:9:51","nodeType":"YulIdentifier","src":"33651:9:51"},{"kind":"number","nativeSrc":"33662:2:51","nodeType":"YulLiteral","src":"33662:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33647:3:51","nodeType":"YulIdentifier","src":"33647:3:51"},"nativeSrc":"33647:18:51","nodeType":"YulFunctionCall","src":"33647:18:51"},{"arguments":[{"name":"value1","nativeSrc":"33671:6:51","nodeType":"YulIdentifier","src":"33671:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"33687:3:51","nodeType":"YulLiteral","src":"33687:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"33692:1:51","nodeType":"YulLiteral","src":"33692:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"33683:3:51","nodeType":"YulIdentifier","src":"33683:3:51"},"nativeSrc":"33683:11:51","nodeType":"YulFunctionCall","src":"33683:11:51"},{"kind":"number","nativeSrc":"33696:1:51","nodeType":"YulLiteral","src":"33696:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"33679:3:51","nodeType":"YulIdentifier","src":"33679:3:51"},"nativeSrc":"33679:19:51","nodeType":"YulFunctionCall","src":"33679:19:51"}],"functionName":{"name":"and","nativeSrc":"33667:3:51","nodeType":"YulIdentifier","src":"33667:3:51"},"nativeSrc":"33667:32:51","nodeType":"YulFunctionCall","src":"33667:32:51"}],"functionName":{"name":"mstore","nativeSrc":"33640:6:51","nodeType":"YulIdentifier","src":"33640:6:51"},"nativeSrc":"33640:60:51","nodeType":"YulFunctionCall","src":"33640:60:51"},"nativeSrc":"33640:60:51","nodeType":"YulExpressionStatement","src":"33640:60:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33720:9:51","nodeType":"YulIdentifier","src":"33720:9:51"},{"kind":"number","nativeSrc":"33731:2:51","nodeType":"YulLiteral","src":"33731:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"33716:3:51","nodeType":"YulIdentifier","src":"33716:3:51"},"nativeSrc":"33716:18:51","nodeType":"YulFunctionCall","src":"33716:18:51"},{"arguments":[{"name":"value2","nativeSrc":"33740:6:51","nodeType":"YulIdentifier","src":"33740:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"33756:3:51","nodeType":"YulLiteral","src":"33756:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"33761:1:51","nodeType":"YulLiteral","src":"33761:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"33752:3:51","nodeType":"YulIdentifier","src":"33752:3:51"},"nativeSrc":"33752:11:51","nodeType":"YulFunctionCall","src":"33752:11:51"},{"kind":"number","nativeSrc":"33765:1:51","nodeType":"YulLiteral","src":"33765:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"33748:3:51","nodeType":"YulIdentifier","src":"33748:3:51"},"nativeSrc":"33748:19:51","nodeType":"YulFunctionCall","src":"33748:19:51"}],"functionName":{"name":"and","nativeSrc":"33736:3:51","nodeType":"YulIdentifier","src":"33736:3:51"},"nativeSrc":"33736:32:51","nodeType":"YulFunctionCall","src":"33736:32:51"}],"functionName":{"name":"mstore","nativeSrc":"33709:6:51","nodeType":"YulIdentifier","src":"33709:6:51"},"nativeSrc":"33709:60:51","nodeType":"YulFunctionCall","src":"33709:60:51"},"nativeSrc":"33709:60:51","nodeType":"YulExpressionStatement","src":"33709:60:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33789:9:51","nodeType":"YulIdentifier","src":"33789:9:51"},{"kind":"number","nativeSrc":"33800:2:51","nodeType":"YulLiteral","src":"33800:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"33785:3:51","nodeType":"YulIdentifier","src":"33785:3:51"},"nativeSrc":"33785:18:51","nodeType":"YulFunctionCall","src":"33785:18:51"},{"name":"value3","nativeSrc":"33805:6:51","nodeType":"YulIdentifier","src":"33805:6:51"}],"functionName":{"name":"mstore","nativeSrc":"33778:6:51","nodeType":"YulIdentifier","src":"33778:6:51"},"nativeSrc":"33778:34:51","nodeType":"YulFunctionCall","src":"33778:34:51"},"nativeSrc":"33778:34:51","nodeType":"YulExpressionStatement","src":"33778:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33832:9:51","nodeType":"YulIdentifier","src":"33832:9:51"},{"kind":"number","nativeSrc":"33843:3:51","nodeType":"YulLiteral","src":"33843:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"33828:3:51","nodeType":"YulIdentifier","src":"33828:3:51"},"nativeSrc":"33828:19:51","nodeType":"YulFunctionCall","src":"33828:19:51"},{"name":"value4","nativeSrc":"33849:6:51","nodeType":"YulIdentifier","src":"33849:6:51"}],"functionName":{"name":"mstore","nativeSrc":"33821:6:51","nodeType":"YulIdentifier","src":"33821:6:51"},"nativeSrc":"33821:35:51","nodeType":"YulFunctionCall","src":"33821:35:51"},"nativeSrc":"33821:35:51","nodeType":"YulExpressionStatement","src":"33821:35:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33876:9:51","nodeType":"YulIdentifier","src":"33876:9:51"},{"kind":"number","nativeSrc":"33887:3:51","nodeType":"YulLiteral","src":"33887:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"33872:3:51","nodeType":"YulIdentifier","src":"33872:3:51"},"nativeSrc":"33872:19:51","nodeType":"YulFunctionCall","src":"33872:19:51"},{"name":"value5","nativeSrc":"33893:6:51","nodeType":"YulIdentifier","src":"33893:6:51"}],"functionName":{"name":"mstore","nativeSrc":"33865:6:51","nodeType":"YulIdentifier","src":"33865:6:51"},"nativeSrc":"33865:35:51","nodeType":"YulFunctionCall","src":"33865:35:51"},"nativeSrc":"33865:35:51","nodeType":"YulExpressionStatement","src":"33865:35:51"}]},"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","nativeSrc":"33319:587:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"33489:9:51","nodeType":"YulTypedName","src":"33489:9:51","type":""},{"name":"value5","nativeSrc":"33500:6:51","nodeType":"YulTypedName","src":"33500:6:51","type":""},{"name":"value4","nativeSrc":"33508:6:51","nodeType":"YulTypedName","src":"33508:6:51","type":""},{"name":"value3","nativeSrc":"33516:6:51","nodeType":"YulTypedName","src":"33516:6:51","type":""},{"name":"value2","nativeSrc":"33524:6:51","nodeType":"YulTypedName","src":"33524:6:51","type":""},{"name":"value1","nativeSrc":"33532:6:51","nodeType":"YulTypedName","src":"33532:6:51","type":""},{"name":"value0","nativeSrc":"33540:6:51","nodeType":"YulTypedName","src":"33540:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"33551:4:51","nodeType":"YulTypedName","src":"33551:4:51","type":""}],"src":"33319:587:51"},{"body":{"nativeSrc":"34040:171:51","nodeType":"YulBlock","src":"34040:171:51","statements":[{"nativeSrc":"34050:26:51","nodeType":"YulAssignment","src":"34050:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"34062:9:51","nodeType":"YulIdentifier","src":"34062:9:51"},{"kind":"number","nativeSrc":"34073:2:51","nodeType":"YulLiteral","src":"34073:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"34058:3:51","nodeType":"YulIdentifier","src":"34058:3:51"},"nativeSrc":"34058:18:51","nodeType":"YulFunctionCall","src":"34058:18:51"},"variableNames":[{"name":"tail","nativeSrc":"34050:4:51","nodeType":"YulIdentifier","src":"34050:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"34092:9:51","nodeType":"YulIdentifier","src":"34092:9:51"},{"arguments":[{"name":"value0","nativeSrc":"34107:6:51","nodeType":"YulIdentifier","src":"34107:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34123:3:51","nodeType":"YulLiteral","src":"34123:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"34128:1:51","nodeType":"YulLiteral","src":"34128:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"34119:3:51","nodeType":"YulIdentifier","src":"34119:3:51"},"nativeSrc":"34119:11:51","nodeType":"YulFunctionCall","src":"34119:11:51"},{"kind":"number","nativeSrc":"34132:1:51","nodeType":"YulLiteral","src":"34132:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"34115:3:51","nodeType":"YulIdentifier","src":"34115:3:51"},"nativeSrc":"34115:19:51","nodeType":"YulFunctionCall","src":"34115:19:51"}],"functionName":{"name":"and","nativeSrc":"34103:3:51","nodeType":"YulIdentifier","src":"34103:3:51"},"nativeSrc":"34103:32:51","nodeType":"YulFunctionCall","src":"34103:32:51"}],"functionName":{"name":"mstore","nativeSrc":"34085:6:51","nodeType":"YulIdentifier","src":"34085:6:51"},"nativeSrc":"34085:51:51","nodeType":"YulFunctionCall","src":"34085:51:51"},"nativeSrc":"34085:51:51","nodeType":"YulExpressionStatement","src":"34085:51:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34156:9:51","nodeType":"YulIdentifier","src":"34156:9:51"},{"kind":"number","nativeSrc":"34167:2:51","nodeType":"YulLiteral","src":"34167:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"34152:3:51","nodeType":"YulIdentifier","src":"34152:3:51"},"nativeSrc":"34152:18:51","nodeType":"YulFunctionCall","src":"34152:18:51"},{"arguments":[{"name":"value1","nativeSrc":"34176:6:51","nodeType":"YulIdentifier","src":"34176:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34192:3:51","nodeType":"YulLiteral","src":"34192:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"34197:1:51","nodeType":"YulLiteral","src":"34197:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"34188:3:51","nodeType":"YulIdentifier","src":"34188:3:51"},"nativeSrc":"34188:11:51","nodeType":"YulFunctionCall","src":"34188:11:51"},{"kind":"number","nativeSrc":"34201:1:51","nodeType":"YulLiteral","src":"34201:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"34184:3:51","nodeType":"YulIdentifier","src":"34184:3:51"},"nativeSrc":"34184:19:51","nodeType":"YulFunctionCall","src":"34184:19:51"}],"functionName":{"name":"and","nativeSrc":"34172:3:51","nodeType":"YulIdentifier","src":"34172:3:51"},"nativeSrc":"34172:32:51","nodeType":"YulFunctionCall","src":"34172:32:51"}],"functionName":{"name":"mstore","nativeSrc":"34145:6:51","nodeType":"YulIdentifier","src":"34145:6:51"},"nativeSrc":"34145:60:51","nodeType":"YulFunctionCall","src":"34145:60:51"},"nativeSrc":"34145:60:51","nodeType":"YulExpressionStatement","src":"34145:60:51"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"33911:300:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34001:9:51","nodeType":"YulTypedName","src":"34001:9:51","type":""},{"name":"value1","nativeSrc":"34012:6:51","nodeType":"YulTypedName","src":"34012:6:51","type":""},{"name":"value0","nativeSrc":"34020:6:51","nodeType":"YulTypedName","src":"34020:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"34031:4:51","nodeType":"YulTypedName","src":"34031:4:51","type":""}],"src":"33911:300:51"},{"body":{"nativeSrc":"34381:158:51","nodeType":"YulBlock","src":"34381:158:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"34398:9:51","nodeType":"YulIdentifier","src":"34398:9:51"},{"name":"value0","nativeSrc":"34409:6:51","nodeType":"YulIdentifier","src":"34409:6:51"}],"functionName":{"name":"mstore","nativeSrc":"34391:6:51","nodeType":"YulIdentifier","src":"34391:6:51"},"nativeSrc":"34391:25:51","nodeType":"YulFunctionCall","src":"34391:25:51"},"nativeSrc":"34391:25:51","nodeType":"YulExpressionStatement","src":"34391:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34436:9:51","nodeType":"YulIdentifier","src":"34436:9:51"},{"kind":"number","nativeSrc":"34447:2:51","nodeType":"YulLiteral","src":"34447:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"34432:3:51","nodeType":"YulIdentifier","src":"34432:3:51"},"nativeSrc":"34432:18:51","nodeType":"YulFunctionCall","src":"34432:18:51"},{"kind":"number","nativeSrc":"34452:2:51","nodeType":"YulLiteral","src":"34452:2:51","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"34425:6:51","nodeType":"YulIdentifier","src":"34425:6:51"},"nativeSrc":"34425:30:51","nodeType":"YulFunctionCall","src":"34425:30:51"},"nativeSrc":"34425:30:51","nodeType":"YulExpressionStatement","src":"34425:30:51"},{"nativeSrc":"34464:69:51","nodeType":"YulAssignment","src":"34464:69:51","value":{"arguments":[{"name":"value1","nativeSrc":"34498:6:51","nodeType":"YulIdentifier","src":"34498:6:51"},{"name":"value2","nativeSrc":"34506:6:51","nodeType":"YulIdentifier","src":"34506:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"34518:9:51","nodeType":"YulIdentifier","src":"34518:9:51"},{"kind":"number","nativeSrc":"34529:2:51","nodeType":"YulLiteral","src":"34529:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"34514:3:51","nodeType":"YulIdentifier","src":"34514:3:51"},"nativeSrc":"34514:18:51","nodeType":"YulFunctionCall","src":"34514:18:51"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"34472:25:51","nodeType":"YulIdentifier","src":"34472:25:51"},"nativeSrc":"34472:61:51","nodeType":"YulFunctionCall","src":"34472:61:51"},"variableNames":[{"name":"tail","nativeSrc":"34464:4:51","nodeType":"YulIdentifier","src":"34464:4:51"}]}]},"name":"abi_encode_tuple_t_uint256_t_bytes_calldata_ptr__to_t_uint256_t_bytes_memory_ptr__fromStack_library_reversed","nativeSrc":"34216:323:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34334:9:51","nodeType":"YulTypedName","src":"34334:9:51","type":""},{"name":"value2","nativeSrc":"34345:6:51","nodeType":"YulTypedName","src":"34345:6:51","type":""},{"name":"value1","nativeSrc":"34353:6:51","nodeType":"YulTypedName","src":"34353:6:51","type":""},{"name":"value0","nativeSrc":"34361:6:51","nodeType":"YulTypedName","src":"34361:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"34372:4:51","nodeType":"YulTypedName","src":"34372:4:51","type":""}],"src":"34216:323:51"},{"body":{"nativeSrc":"34749:762:51","nodeType":"YulBlock","src":"34749:762:51","statements":[{"body":{"nativeSrc":"34796:16:51","nodeType":"YulBlock","src":"34796:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"34805:1:51","nodeType":"YulLiteral","src":"34805:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"34808:1:51","nodeType":"YulLiteral","src":"34808:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"34798:6:51","nodeType":"YulIdentifier","src":"34798:6:51"},"nativeSrc":"34798:12:51","nodeType":"YulFunctionCall","src":"34798:12:51"},"nativeSrc":"34798:12:51","nodeType":"YulExpressionStatement","src":"34798:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"34770:7:51","nodeType":"YulIdentifier","src":"34770:7:51"},{"name":"headStart","nativeSrc":"34779:9:51","nodeType":"YulIdentifier","src":"34779:9:51"}],"functionName":{"name":"sub","nativeSrc":"34766:3:51","nodeType":"YulIdentifier","src":"34766:3:51"},"nativeSrc":"34766:23:51","nodeType":"YulFunctionCall","src":"34766:23:51"},{"kind":"number","nativeSrc":"34791:3:51","nodeType":"YulLiteral","src":"34791:3:51","type":"","value":"160"}],"functionName":{"name":"slt","nativeSrc":"34762:3:51","nodeType":"YulIdentifier","src":"34762:3:51"},"nativeSrc":"34762:33:51","nodeType":"YulFunctionCall","src":"34762:33:51"},"nativeSrc":"34759:53:51","nodeType":"YulIf","src":"34759:53:51"},{"nativeSrc":"34821:14:51","nodeType":"YulVariableDeclaration","src":"34821:14:51","value":{"kind":"number","nativeSrc":"34834:1:51","nodeType":"YulLiteral","src":"34834:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"34825:5:51","nodeType":"YulTypedName","src":"34825:5:51","type":""}]},{"nativeSrc":"34844:25:51","nodeType":"YulAssignment","src":"34844:25:51","value":{"arguments":[{"name":"headStart","nativeSrc":"34859:9:51","nodeType":"YulIdentifier","src":"34859:9:51"}],"functionName":{"name":"mload","nativeSrc":"34853:5:51","nodeType":"YulIdentifier","src":"34853:5:51"},"nativeSrc":"34853:16:51","nodeType":"YulFunctionCall","src":"34853:16:51"},"variableNames":[{"name":"value","nativeSrc":"34844:5:51","nodeType":"YulIdentifier","src":"34844:5:51"}]},{"nativeSrc":"34878:15:51","nodeType":"YulAssignment","src":"34878:15:51","value":{"name":"value","nativeSrc":"34888:5:51","nodeType":"YulIdentifier","src":"34888:5:51"},"variableNames":[{"name":"value0","nativeSrc":"34878:6:51","nodeType":"YulIdentifier","src":"34878:6:51"}]},{"nativeSrc":"34902:39:51","nodeType":"YulVariableDeclaration","src":"34902:39:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34926:9:51","nodeType":"YulIdentifier","src":"34926:9:51"},{"kind":"number","nativeSrc":"34937:2:51","nodeType":"YulLiteral","src":"34937:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"34922:3:51","nodeType":"YulIdentifier","src":"34922:3:51"},"nativeSrc":"34922:18:51","nodeType":"YulFunctionCall","src":"34922:18:51"}],"functionName":{"name":"mload","nativeSrc":"34916:5:51","nodeType":"YulIdentifier","src":"34916:5:51"},"nativeSrc":"34916:25:51","nodeType":"YulFunctionCall","src":"34916:25:51"},"variables":[{"name":"offset","nativeSrc":"34906:6:51","nodeType":"YulTypedName","src":"34906:6:51","type":""}]},{"body":{"nativeSrc":"34984:16:51","nodeType":"YulBlock","src":"34984:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"34993:1:51","nodeType":"YulLiteral","src":"34993:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"34996:1:51","nodeType":"YulLiteral","src":"34996:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"34986:6:51","nodeType":"YulIdentifier","src":"34986:6:51"},"nativeSrc":"34986:12:51","nodeType":"YulFunctionCall","src":"34986:12:51"},"nativeSrc":"34986:12:51","nodeType":"YulExpressionStatement","src":"34986:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"34956:6:51","nodeType":"YulIdentifier","src":"34956:6:51"},{"kind":"number","nativeSrc":"34964:18:51","nodeType":"YulLiteral","src":"34964:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"34953:2:51","nodeType":"YulIdentifier","src":"34953:2:51"},"nativeSrc":"34953:30:51","nodeType":"YulFunctionCall","src":"34953:30:51"},"nativeSrc":"34950:50:51","nodeType":"YulIf","src":"34950:50:51"},{"nativeSrc":"35009:70:51","nodeType":"YulAssignment","src":"35009:70:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35051:9:51","nodeType":"YulIdentifier","src":"35051:9:51"},{"name":"offset","nativeSrc":"35062:6:51","nodeType":"YulIdentifier","src":"35062:6:51"}],"functionName":{"name":"add","nativeSrc":"35047:3:51","nodeType":"YulIdentifier","src":"35047:3:51"},"nativeSrc":"35047:22:51","nodeType":"YulFunctionCall","src":"35047:22:51"},{"name":"dataEnd","nativeSrc":"35071:7:51","nodeType":"YulIdentifier","src":"35071:7:51"}],"functionName":{"name":"abi_decode_bytes_fromMemory","nativeSrc":"35019:27:51","nodeType":"YulIdentifier","src":"35019:27:51"},"nativeSrc":"35019:60:51","nodeType":"YulFunctionCall","src":"35019:60:51"},"variableNames":[{"name":"value1","nativeSrc":"35009:6:51","nodeType":"YulIdentifier","src":"35009:6:51"}]},{"nativeSrc":"35088:41:51","nodeType":"YulVariableDeclaration","src":"35088:41:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35114:9:51","nodeType":"YulIdentifier","src":"35114:9:51"},{"kind":"number","nativeSrc":"35125:2:51","nodeType":"YulLiteral","src":"35125:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35110:3:51","nodeType":"YulIdentifier","src":"35110:3:51"},"nativeSrc":"35110:18:51","nodeType":"YulFunctionCall","src":"35110:18:51"}],"functionName":{"name":"mload","nativeSrc":"35104:5:51","nodeType":"YulIdentifier","src":"35104:5:51"},"nativeSrc":"35104:25:51","nodeType":"YulFunctionCall","src":"35104:25:51"},"variables":[{"name":"offset_1","nativeSrc":"35092:8:51","nodeType":"YulTypedName","src":"35092:8:51","type":""}]},{"body":{"nativeSrc":"35174:16:51","nodeType":"YulBlock","src":"35174:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"35183:1:51","nodeType":"YulLiteral","src":"35183:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"35186:1:51","nodeType":"YulLiteral","src":"35186:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"35176:6:51","nodeType":"YulIdentifier","src":"35176:6:51"},"nativeSrc":"35176:12:51","nodeType":"YulFunctionCall","src":"35176:12:51"},"nativeSrc":"35176:12:51","nodeType":"YulExpressionStatement","src":"35176:12:51"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"35144:8:51","nodeType":"YulIdentifier","src":"35144:8:51"},{"kind":"number","nativeSrc":"35154:18:51","nodeType":"YulLiteral","src":"35154:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"35141:2:51","nodeType":"YulIdentifier","src":"35141:2:51"},"nativeSrc":"35141:32:51","nodeType":"YulFunctionCall","src":"35141:32:51"},"nativeSrc":"35138:52:51","nodeType":"YulIf","src":"35138:52:51"},{"nativeSrc":"35199:72:51","nodeType":"YulAssignment","src":"35199:72:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35241:9:51","nodeType":"YulIdentifier","src":"35241:9:51"},{"name":"offset_1","nativeSrc":"35252:8:51","nodeType":"YulIdentifier","src":"35252:8:51"}],"functionName":{"name":"add","nativeSrc":"35237:3:51","nodeType":"YulIdentifier","src":"35237:3:51"},"nativeSrc":"35237:24:51","nodeType":"YulFunctionCall","src":"35237:24:51"},{"name":"dataEnd","nativeSrc":"35263:7:51","nodeType":"YulIdentifier","src":"35263:7:51"}],"functionName":{"name":"abi_decode_bytes_fromMemory","nativeSrc":"35209:27:51","nodeType":"YulIdentifier","src":"35209:27:51"},"nativeSrc":"35209:62:51","nodeType":"YulFunctionCall","src":"35209:62:51"},"variableNames":[{"name":"value2","nativeSrc":"35199:6:51","nodeType":"YulIdentifier","src":"35199:6:51"}]},{"nativeSrc":"35280:40:51","nodeType":"YulVariableDeclaration","src":"35280:40:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35305:9:51","nodeType":"YulIdentifier","src":"35305:9:51"},{"kind":"number","nativeSrc":"35316:2:51","nodeType":"YulLiteral","src":"35316:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35301:3:51","nodeType":"YulIdentifier","src":"35301:3:51"},"nativeSrc":"35301:18:51","nodeType":"YulFunctionCall","src":"35301:18:51"}],"functionName":{"name":"mload","nativeSrc":"35295:5:51","nodeType":"YulIdentifier","src":"35295:5:51"},"nativeSrc":"35295:25:51","nodeType":"YulFunctionCall","src":"35295:25:51"},"variables":[{"name":"value_1","nativeSrc":"35284:7:51","nodeType":"YulTypedName","src":"35284:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"35354:7:51","nodeType":"YulIdentifier","src":"35354:7:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"35329:24:51","nodeType":"YulIdentifier","src":"35329:24:51"},"nativeSrc":"35329:33:51","nodeType":"YulFunctionCall","src":"35329:33:51"},"nativeSrc":"35329:33:51","nodeType":"YulExpressionStatement","src":"35329:33:51"},{"nativeSrc":"35371:17:51","nodeType":"YulAssignment","src":"35371:17:51","value":{"name":"value_1","nativeSrc":"35381:7:51","nodeType":"YulIdentifier","src":"35381:7:51"},"variableNames":[{"name":"value3","nativeSrc":"35371:6:51","nodeType":"YulIdentifier","src":"35371:6:51"}]},{"nativeSrc":"35397:41:51","nodeType":"YulVariableDeclaration","src":"35397:41:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35422:9:51","nodeType":"YulIdentifier","src":"35422:9:51"},{"kind":"number","nativeSrc":"35433:3:51","nodeType":"YulLiteral","src":"35433:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"35418:3:51","nodeType":"YulIdentifier","src":"35418:3:51"},"nativeSrc":"35418:19:51","nodeType":"YulFunctionCall","src":"35418:19:51"}],"functionName":{"name":"mload","nativeSrc":"35412:5:51","nodeType":"YulIdentifier","src":"35412:5:51"},"nativeSrc":"35412:26:51","nodeType":"YulFunctionCall","src":"35412:26:51"},"variables":[{"name":"value_2","nativeSrc":"35401:7:51","nodeType":"YulTypedName","src":"35401:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"35471:7:51","nodeType":"YulIdentifier","src":"35471:7:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"35447:23:51","nodeType":"YulIdentifier","src":"35447:23:51"},"nativeSrc":"35447:32:51","nodeType":"YulFunctionCall","src":"35447:32:51"},"nativeSrc":"35447:32:51","nodeType":"YulExpressionStatement","src":"35447:32:51"},{"nativeSrc":"35488:17:51","nodeType":"YulAssignment","src":"35488:17:51","value":{"name":"value_2","nativeSrc":"35498:7:51","nodeType":"YulIdentifier","src":"35498:7:51"},"variableNames":[{"name":"value4","nativeSrc":"35488:6:51","nodeType":"YulIdentifier","src":"35488:6:51"}]}]},"name":"abi_decode_tuple_t_userDefinedValueType$_TransactionHash_$13256t_string_memory_ptrt_string_memory_ptrt_addresst_uint64_fromMemory","nativeSrc":"34544:967:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34683:9:51","nodeType":"YulTypedName","src":"34683:9:51","type":""},{"name":"dataEnd","nativeSrc":"34694:7:51","nodeType":"YulTypedName","src":"34694:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"34706:6:51","nodeType":"YulTypedName","src":"34706:6:51","type":""},{"name":"value1","nativeSrc":"34714:6:51","nodeType":"YulTypedName","src":"34714:6:51","type":""},{"name":"value2","nativeSrc":"34722:6:51","nodeType":"YulTypedName","src":"34722:6:51","type":""},{"name":"value3","nativeSrc":"34730:6:51","nodeType":"YulTypedName","src":"34730:6:51","type":""},{"name":"value4","nativeSrc":"34738:6:51","nodeType":"YulTypedName","src":"34738:6:51","type":""}],"src":"34544:967:51"},{"body":{"nativeSrc":"35757:281:51","nodeType":"YulBlock","src":"35757:281:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35774:9:51","nodeType":"YulIdentifier","src":"35774:9:51"},{"kind":"number","nativeSrc":"35785:3:51","nodeType":"YulLiteral","src":"35785:3:51","type":"","value":"128"}],"functionName":{"name":"mstore","nativeSrc":"35767:6:51","nodeType":"YulIdentifier","src":"35767:6:51"},"nativeSrc":"35767:22:51","nodeType":"YulFunctionCall","src":"35767:22:51"},"nativeSrc":"35767:22:51","nodeType":"YulExpressionStatement","src":"35767:22:51"},{"nativeSrc":"35798:54:51","nodeType":"YulAssignment","src":"35798:54:51","value":{"arguments":[{"name":"value0","nativeSrc":"35824:6:51","nodeType":"YulIdentifier","src":"35824:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"35836:9:51","nodeType":"YulIdentifier","src":"35836:9:51"},{"kind":"number","nativeSrc":"35847:3:51","nodeType":"YulLiteral","src":"35847:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"35832:3:51","nodeType":"YulIdentifier","src":"35832:3:51"},"nativeSrc":"35832:19:51","nodeType":"YulFunctionCall","src":"35832:19:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"35806:17:51","nodeType":"YulIdentifier","src":"35806:17:51"},"nativeSrc":"35806:46:51","nodeType":"YulFunctionCall","src":"35806:46:51"},"variableNames":[{"name":"tail","nativeSrc":"35798:4:51","nodeType":"YulIdentifier","src":"35798:4:51"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35872:9:51","nodeType":"YulIdentifier","src":"35872:9:51"},{"kind":"number","nativeSrc":"35883:2:51","nodeType":"YulLiteral","src":"35883:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35868:3:51","nodeType":"YulIdentifier","src":"35868:3:51"},"nativeSrc":"35868:18:51","nodeType":"YulFunctionCall","src":"35868:18:51"},{"arguments":[{"name":"value1","nativeSrc":"35892:6:51","nodeType":"YulIdentifier","src":"35892:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"35908:3:51","nodeType":"YulLiteral","src":"35908:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"35913:1:51","nodeType":"YulLiteral","src":"35913:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"35904:3:51","nodeType":"YulIdentifier","src":"35904:3:51"},"nativeSrc":"35904:11:51","nodeType":"YulFunctionCall","src":"35904:11:51"},{"kind":"number","nativeSrc":"35917:1:51","nodeType":"YulLiteral","src":"35917:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"35900:3:51","nodeType":"YulIdentifier","src":"35900:3:51"},"nativeSrc":"35900:19:51","nodeType":"YulFunctionCall","src":"35900:19:51"}],"functionName":{"name":"and","nativeSrc":"35888:3:51","nodeType":"YulIdentifier","src":"35888:3:51"},"nativeSrc":"35888:32:51","nodeType":"YulFunctionCall","src":"35888:32:51"}],"functionName":{"name":"mstore","nativeSrc":"35861:6:51","nodeType":"YulIdentifier","src":"35861:6:51"},"nativeSrc":"35861:60:51","nodeType":"YulFunctionCall","src":"35861:60:51"},"nativeSrc":"35861:60:51","nodeType":"YulExpressionStatement","src":"35861:60:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35941:9:51","nodeType":"YulIdentifier","src":"35941:9:51"},{"kind":"number","nativeSrc":"35952:2:51","nodeType":"YulLiteral","src":"35952:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35937:3:51","nodeType":"YulIdentifier","src":"35937:3:51"},"nativeSrc":"35937:18:51","nodeType":"YulFunctionCall","src":"35937:18:51"},{"arguments":[{"name":"value2","nativeSrc":"35961:6:51","nodeType":"YulIdentifier","src":"35961:6:51"},{"kind":"number","nativeSrc":"35969:18:51","nodeType":"YulLiteral","src":"35969:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"35957:3:51","nodeType":"YulIdentifier","src":"35957:3:51"},"nativeSrc":"35957:31:51","nodeType":"YulFunctionCall","src":"35957:31:51"}],"functionName":{"name":"mstore","nativeSrc":"35930:6:51","nodeType":"YulIdentifier","src":"35930:6:51"},"nativeSrc":"35930:59:51","nodeType":"YulFunctionCall","src":"35930:59:51"},"nativeSrc":"35930:59:51","nodeType":"YulExpressionStatement","src":"35930:59:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36009:9:51","nodeType":"YulIdentifier","src":"36009:9:51"},{"kind":"number","nativeSrc":"36020:2:51","nodeType":"YulLiteral","src":"36020:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"36005:3:51","nodeType":"YulIdentifier","src":"36005:3:51"},"nativeSrc":"36005:18:51","nodeType":"YulFunctionCall","src":"36005:18:51"},{"name":"value3","nativeSrc":"36025:6:51","nodeType":"YulIdentifier","src":"36025:6:51"}],"functionName":{"name":"mstore","nativeSrc":"35998:6:51","nodeType":"YulIdentifier","src":"35998:6:51"},"nativeSrc":"35998:34:51","nodeType":"YulFunctionCall","src":"35998:34:51"},"nativeSrc":"35998:34:51","nodeType":"YulExpressionStatement","src":"35998:34:51"}]},"name":"abi_encode_tuple_t_string_memory_ptr_t_address_t_uint64_t_userDefinedValueType$_TransactionHash_$13256__to_t_string_memory_ptr_t_address_t_uint256_t_bytes32__fromStack_reversed","nativeSrc":"35516:522:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35702:9:51","nodeType":"YulTypedName","src":"35702:9:51","type":""},{"name":"value3","nativeSrc":"35713:6:51","nodeType":"YulTypedName","src":"35713:6:51","type":""},{"name":"value2","nativeSrc":"35721:6:51","nodeType":"YulTypedName","src":"35721:6:51","type":""},{"name":"value1","nativeSrc":"35729:6:51","nodeType":"YulTypedName","src":"35729:6:51","type":""},{"name":"value0","nativeSrc":"35737:6:51","nodeType":"YulTypedName","src":"35737:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35748:4:51","nodeType":"YulTypedName","src":"35748:4:51","type":""}],"src":"35516:522:51"},{"body":{"nativeSrc":"36075:95:51","nodeType":"YulBlock","src":"36075:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"36092:1:51","nodeType":"YulLiteral","src":"36092:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"36099:3:51","nodeType":"YulLiteral","src":"36099:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"36104:10:51","nodeType":"YulLiteral","src":"36104:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"36095:3:51","nodeType":"YulIdentifier","src":"36095:3:51"},"nativeSrc":"36095:20:51","nodeType":"YulFunctionCall","src":"36095:20:51"}],"functionName":{"name":"mstore","nativeSrc":"36085:6:51","nodeType":"YulIdentifier","src":"36085:6:51"},"nativeSrc":"36085:31:51","nodeType":"YulFunctionCall","src":"36085:31:51"},"nativeSrc":"36085:31:51","nodeType":"YulExpressionStatement","src":"36085:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"36132:1:51","nodeType":"YulLiteral","src":"36132:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"36135:4:51","nodeType":"YulLiteral","src":"36135:4:51","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"36125:6:51","nodeType":"YulIdentifier","src":"36125:6:51"},"nativeSrc":"36125:15:51","nodeType":"YulFunctionCall","src":"36125:15:51"},"nativeSrc":"36125:15:51","nodeType":"YulExpressionStatement","src":"36125:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"36156:1:51","nodeType":"YulLiteral","src":"36156:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"36159:4:51","nodeType":"YulLiteral","src":"36159:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"36149:6:51","nodeType":"YulIdentifier","src":"36149:6:51"},"nativeSrc":"36149:15:51","nodeType":"YulFunctionCall","src":"36149:15:51"},"nativeSrc":"36149:15:51","nodeType":"YulExpressionStatement","src":"36149:15:51"}]},"name":"panic_error_0x12","nativeSrc":"36043:127:51","nodeType":"YulFunctionDefinition","src":"36043:127:51"},{"body":{"nativeSrc":"36220:125:51","nodeType":"YulBlock","src":"36220:125:51","statements":[{"nativeSrc":"36230:25:51","nodeType":"YulVariableDeclaration","src":"36230:25:51","value":{"arguments":[{"name":"y","nativeSrc":"36245:1:51","nodeType":"YulIdentifier","src":"36245:1:51"},{"kind":"number","nativeSrc":"36248:6:51","nodeType":"YulLiteral","src":"36248:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"36241:3:51","nodeType":"YulIdentifier","src":"36241:3:51"},"nativeSrc":"36241:14:51","nodeType":"YulFunctionCall","src":"36241:14:51"},"variables":[{"name":"y_1","nativeSrc":"36234:3:51","nodeType":"YulTypedName","src":"36234:3:51","type":""}]},{"body":{"nativeSrc":"36279:22:51","nodeType":"YulBlock","src":"36279:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"36281:16:51","nodeType":"YulIdentifier","src":"36281:16:51"},"nativeSrc":"36281:18:51","nodeType":"YulFunctionCall","src":"36281:18:51"},"nativeSrc":"36281:18:51","nodeType":"YulExpressionStatement","src":"36281:18:51"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"36274:3:51","nodeType":"YulIdentifier","src":"36274:3:51"}],"functionName":{"name":"iszero","nativeSrc":"36267:6:51","nodeType":"YulIdentifier","src":"36267:6:51"},"nativeSrc":"36267:11:51","nodeType":"YulFunctionCall","src":"36267:11:51"},"nativeSrc":"36264:37:51","nodeType":"YulIf","src":"36264:37:51"},{"nativeSrc":"36310:29:51","nodeType":"YulAssignment","src":"36310:29:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"36323:1:51","nodeType":"YulIdentifier","src":"36323:1:51"},{"kind":"number","nativeSrc":"36326:6:51","nodeType":"YulLiteral","src":"36326:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"36319:3:51","nodeType":"YulIdentifier","src":"36319:3:51"},"nativeSrc":"36319:14:51","nodeType":"YulFunctionCall","src":"36319:14:51"},{"name":"y_1","nativeSrc":"36335:3:51","nodeType":"YulIdentifier","src":"36335:3:51"}],"functionName":{"name":"div","nativeSrc":"36315:3:51","nodeType":"YulIdentifier","src":"36315:3:51"},"nativeSrc":"36315:24:51","nodeType":"YulFunctionCall","src":"36315:24:51"},"variableNames":[{"name":"r","nativeSrc":"36310:1:51","nodeType":"YulIdentifier","src":"36310:1:51"}]}]},"name":"checked_div_t_uint16","nativeSrc":"36175:170:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"36205:1:51","nodeType":"YulTypedName","src":"36205:1:51","type":""},{"name":"y","nativeSrc":"36208:1:51","nodeType":"YulTypedName","src":"36208:1:51","type":""}],"returnVariables":[{"name":"r","nativeSrc":"36214:1:51","nodeType":"YulTypedName","src":"36214:1:51","type":""}],"src":"36175:170:51"},{"body":{"nativeSrc":"36458:101:51","nodeType":"YulBlock","src":"36458:101:51","statements":[{"nativeSrc":"36468:26:51","nodeType":"YulAssignment","src":"36468:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"36480:9:51","nodeType":"YulIdentifier","src":"36480:9:51"},{"kind":"number","nativeSrc":"36491:2:51","nodeType":"YulLiteral","src":"36491:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"36476:3:51","nodeType":"YulIdentifier","src":"36476:3:51"},"nativeSrc":"36476:18:51","nodeType":"YulFunctionCall","src":"36476:18:51"},"variableNames":[{"name":"tail","nativeSrc":"36468:4:51","nodeType":"YulIdentifier","src":"36468:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36510:9:51","nodeType":"YulIdentifier","src":"36510:9:51"},{"arguments":[{"name":"value0","nativeSrc":"36525:6:51","nodeType":"YulIdentifier","src":"36525:6:51"},{"kind":"number","nativeSrc":"36533:18:51","nodeType":"YulLiteral","src":"36533:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"36521:3:51","nodeType":"YulIdentifier","src":"36521:3:51"},"nativeSrc":"36521:31:51","nodeType":"YulFunctionCall","src":"36521:31:51"}],"functionName":{"name":"mstore","nativeSrc":"36503:6:51","nodeType":"YulIdentifier","src":"36503:6:51"},"nativeSrc":"36503:50:51","nodeType":"YulFunctionCall","src":"36503:50:51"},"nativeSrc":"36503:50:51","nodeType":"YulExpressionStatement","src":"36503:50:51"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"36350:209:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36427:9:51","nodeType":"YulTypedName","src":"36427:9:51","type":""},{"name":"value0","nativeSrc":"36438:6:51","nodeType":"YulTypedName","src":"36438:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"36449:4:51","nodeType":"YulTypedName","src":"36449:4:51","type":""}],"src":"36350:209:51"},{"body":{"nativeSrc":"36721:188:51","nodeType":"YulBlock","src":"36721:188:51","statements":[{"nativeSrc":"36731:26:51","nodeType":"YulAssignment","src":"36731:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"36743:9:51","nodeType":"YulIdentifier","src":"36743:9:51"},{"kind":"number","nativeSrc":"36754:2:51","nodeType":"YulLiteral","src":"36754:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"36739:3:51","nodeType":"YulIdentifier","src":"36739:3:51"},"nativeSrc":"36739:18:51","nodeType":"YulFunctionCall","src":"36739:18:51"},"variableNames":[{"name":"tail","nativeSrc":"36731:4:51","nodeType":"YulIdentifier","src":"36731:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36773:9:51","nodeType":"YulIdentifier","src":"36773:9:51"},{"arguments":[{"name":"value0","nativeSrc":"36788:6:51","nodeType":"YulIdentifier","src":"36788:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"36804:3:51","nodeType":"YulLiteral","src":"36804:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"36809:1:51","nodeType":"YulLiteral","src":"36809:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"36800:3:51","nodeType":"YulIdentifier","src":"36800:3:51"},"nativeSrc":"36800:11:51","nodeType":"YulFunctionCall","src":"36800:11:51"},{"kind":"number","nativeSrc":"36813:1:51","nodeType":"YulLiteral","src":"36813:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"36796:3:51","nodeType":"YulIdentifier","src":"36796:3:51"},"nativeSrc":"36796:19:51","nodeType":"YulFunctionCall","src":"36796:19:51"}],"functionName":{"name":"and","nativeSrc":"36784:3:51","nodeType":"YulIdentifier","src":"36784:3:51"},"nativeSrc":"36784:32:51","nodeType":"YulFunctionCall","src":"36784:32:51"}],"functionName":{"name":"mstore","nativeSrc":"36766:6:51","nodeType":"YulIdentifier","src":"36766:6:51"},"nativeSrc":"36766:51:51","nodeType":"YulFunctionCall","src":"36766:51:51"},"nativeSrc":"36766:51:51","nodeType":"YulExpressionStatement","src":"36766:51:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36837:9:51","nodeType":"YulIdentifier","src":"36837:9:51"},{"kind":"number","nativeSrc":"36848:2:51","nodeType":"YulLiteral","src":"36848:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"36833:3:51","nodeType":"YulIdentifier","src":"36833:3:51"},"nativeSrc":"36833:18:51","nodeType":"YulFunctionCall","src":"36833:18:51"},{"name":"value1","nativeSrc":"36853:6:51","nodeType":"YulIdentifier","src":"36853:6:51"}],"functionName":{"name":"mstore","nativeSrc":"36826:6:51","nodeType":"YulIdentifier","src":"36826:6:51"},"nativeSrc":"36826:34:51","nodeType":"YulFunctionCall","src":"36826:34:51"},"nativeSrc":"36826:34:51","nodeType":"YulExpressionStatement","src":"36826:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36880:9:51","nodeType":"YulIdentifier","src":"36880:9:51"},{"kind":"number","nativeSrc":"36891:2:51","nodeType":"YulLiteral","src":"36891:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"36876:3:51","nodeType":"YulIdentifier","src":"36876:3:51"},"nativeSrc":"36876:18:51","nodeType":"YulFunctionCall","src":"36876:18:51"},{"name":"value2","nativeSrc":"36896:6:51","nodeType":"YulIdentifier","src":"36896:6:51"}],"functionName":{"name":"mstore","nativeSrc":"36869:6:51","nodeType":"YulIdentifier","src":"36869:6:51"},"nativeSrc":"36869:34:51","nodeType":"YulFunctionCall","src":"36869:34:51"},"nativeSrc":"36869:34:51","nodeType":"YulExpressionStatement","src":"36869:34:51"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"36564:345:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36674:9:51","nodeType":"YulTypedName","src":"36674:9:51","type":""},{"name":"value2","nativeSrc":"36685:6:51","nodeType":"YulTypedName","src":"36685:6:51","type":""},{"name":"value1","nativeSrc":"36693:6:51","nodeType":"YulTypedName","src":"36693:6:51","type":""},{"name":"value0","nativeSrc":"36701:6:51","nodeType":"YulTypedName","src":"36701:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"36712:4:51","nodeType":"YulTypedName","src":"36712:4:51","type":""}],"src":"36564:345:51"},{"body":{"nativeSrc":"37154:204:51","nodeType":"YulBlock","src":"37154:204:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"37171:3:51","nodeType":"YulIdentifier","src":"37171:3:51"},{"hexValue":"577261707065645749543a20","kind":"string","nativeSrc":"37176:14:51","nodeType":"YulLiteral","src":"37176:14:51","type":"","value":"WrappedWIT: "}],"functionName":{"name":"mstore","nativeSrc":"37164:6:51","nodeType":"YulIdentifier","src":"37164:6:51"},"nativeSrc":"37164:27:51","nodeType":"YulFunctionCall","src":"37164:27:51"},"nativeSrc":"37164:27:51","nodeType":"YulExpressionStatement","src":"37164:27:51"},{"nativeSrc":"37200:27:51","nodeType":"YulVariableDeclaration","src":"37200:27:51","value":{"arguments":[{"name":"value0","nativeSrc":"37220:6:51","nodeType":"YulIdentifier","src":"37220:6:51"}],"functionName":{"name":"mload","nativeSrc":"37214:5:51","nodeType":"YulIdentifier","src":"37214:5:51"},"nativeSrc":"37214:13:51","nodeType":"YulFunctionCall","src":"37214:13:51"},"variables":[{"name":"length","nativeSrc":"37204:6:51","nodeType":"YulTypedName","src":"37204:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"37275:6:51","nodeType":"YulIdentifier","src":"37275:6:51"},{"kind":"number","nativeSrc":"37283:4:51","nodeType":"YulLiteral","src":"37283:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"37271:3:51","nodeType":"YulIdentifier","src":"37271:3:51"},"nativeSrc":"37271:17:51","nodeType":"YulFunctionCall","src":"37271:17:51"},{"arguments":[{"name":"pos","nativeSrc":"37294:3:51","nodeType":"YulIdentifier","src":"37294:3:51"},{"kind":"number","nativeSrc":"37299:2:51","nodeType":"YulLiteral","src":"37299:2:51","type":"","value":"12"}],"functionName":{"name":"add","nativeSrc":"37290:3:51","nodeType":"YulIdentifier","src":"37290:3:51"},"nativeSrc":"37290:12:51","nodeType":"YulFunctionCall","src":"37290:12:51"},{"name":"length","nativeSrc":"37304:6:51","nodeType":"YulIdentifier","src":"37304:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"37236:34:51","nodeType":"YulIdentifier","src":"37236:34:51"},"nativeSrc":"37236:75:51","nodeType":"YulFunctionCall","src":"37236:75:51"},"nativeSrc":"37236:75:51","nodeType":"YulExpressionStatement","src":"37236:75:51"},{"nativeSrc":"37320:32:51","nodeType":"YulAssignment","src":"37320:32:51","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"37335:3:51","nodeType":"YulIdentifier","src":"37335:3:51"},{"name":"length","nativeSrc":"37340:6:51","nodeType":"YulIdentifier","src":"37340:6:51"}],"functionName":{"name":"add","nativeSrc":"37331:3:51","nodeType":"YulIdentifier","src":"37331:3:51"},"nativeSrc":"37331:16:51","nodeType":"YulFunctionCall","src":"37331:16:51"},{"kind":"number","nativeSrc":"37349:2:51","nodeType":"YulLiteral","src":"37349:2:51","type":"","value":"12"}],"functionName":{"name":"add","nativeSrc":"37327:3:51","nodeType":"YulIdentifier","src":"37327:3:51"},"nativeSrc":"37327:25:51","nodeType":"YulFunctionCall","src":"37327:25:51"},"variableNames":[{"name":"end","nativeSrc":"37320:3:51","nodeType":"YulIdentifier","src":"37320:3:51"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_6464deb7a08899e125b23ae34c4cefa9ab1fa68b40b002bbb3ffd32198544726_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"36914:444:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"37130:3:51","nodeType":"YulTypedName","src":"37130:3:51","type":""},{"name":"value0","nativeSrc":"37135:6:51","nodeType":"YulTypedName","src":"37135:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"37146:3:51","nodeType":"YulTypedName","src":"37146:3:51","type":""}],"src":"36914:444:51"},{"body":{"nativeSrc":"37537:172:51","nodeType":"YulBlock","src":"37537:172:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"37554:9:51","nodeType":"YulIdentifier","src":"37554:9:51"},{"kind":"number","nativeSrc":"37565:2:51","nodeType":"YulLiteral","src":"37565:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"37547:6:51","nodeType":"YulIdentifier","src":"37547:6:51"},"nativeSrc":"37547:21:51","nodeType":"YulFunctionCall","src":"37547:21:51"},"nativeSrc":"37547:21:51","nodeType":"YulExpressionStatement","src":"37547:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37588:9:51","nodeType":"YulIdentifier","src":"37588:9:51"},{"kind":"number","nativeSrc":"37599:2:51","nodeType":"YulLiteral","src":"37599:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"37584:3:51","nodeType":"YulIdentifier","src":"37584:3:51"},"nativeSrc":"37584:18:51","nodeType":"YulFunctionCall","src":"37584:18:51"},{"kind":"number","nativeSrc":"37604:2:51","nodeType":"YulLiteral","src":"37604:2:51","type":"","value":"22"}],"functionName":{"name":"mstore","nativeSrc":"37577:6:51","nodeType":"YulIdentifier","src":"37577:6:51"},"nativeSrc":"37577:30:51","nodeType":"YulFunctionCall","src":"37577:30:51"},"nativeSrc":"37577:30:51","nodeType":"YulExpressionStatement","src":"37577:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37627:9:51","nodeType":"YulIdentifier","src":"37627:9:51"},{"kind":"number","nativeSrc":"37638:2:51","nodeType":"YulLiteral","src":"37638:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"37623:3:51","nodeType":"YulIdentifier","src":"37623:3:51"},"nativeSrc":"37623:18:51","nodeType":"YulFunctionCall","src":"37623:18:51"},{"hexValue":"4265636833323a20696e76616c6964206c656e677468","kind":"string","nativeSrc":"37643:24:51","nodeType":"YulLiteral","src":"37643:24:51","type":"","value":"Bech32: invalid length"}],"functionName":{"name":"mstore","nativeSrc":"37616:6:51","nodeType":"YulIdentifier","src":"37616:6:51"},"nativeSrc":"37616:52:51","nodeType":"YulFunctionCall","src":"37616:52:51"},"nativeSrc":"37616:52:51","nodeType":"YulExpressionStatement","src":"37616:52:51"},{"nativeSrc":"37677:26:51","nodeType":"YulAssignment","src":"37677:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"37689:9:51","nodeType":"YulIdentifier","src":"37689:9:51"},{"kind":"number","nativeSrc":"37700:2:51","nodeType":"YulLiteral","src":"37700:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"37685:3:51","nodeType":"YulIdentifier","src":"37685:3:51"},"nativeSrc":"37685:18:51","nodeType":"YulFunctionCall","src":"37685:18:51"},"variableNames":[{"name":"tail","nativeSrc":"37677:4:51","nodeType":"YulIdentifier","src":"37677:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_804d16c791056572535f8e2036ddf984da7d771fd478e9d9544d867a673dae25__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"37363:346:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37514:9:51","nodeType":"YulTypedName","src":"37514:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"37528:4:51","nodeType":"YulTypedName","src":"37528:4:51","type":""}],"src":"37363:346:51"},{"body":{"nativeSrc":"37888:172:51","nodeType":"YulBlock","src":"37888:172:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"37905:9:51","nodeType":"YulIdentifier","src":"37905:9:51"},{"kind":"number","nativeSrc":"37916:2:51","nodeType":"YulLiteral","src":"37916:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"37898:6:51","nodeType":"YulIdentifier","src":"37898:6:51"},"nativeSrc":"37898:21:51","nodeType":"YulFunctionCall","src":"37898:21:51"},"nativeSrc":"37898:21:51","nodeType":"YulExpressionStatement","src":"37898:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37939:9:51","nodeType":"YulIdentifier","src":"37939:9:51"},{"kind":"number","nativeSrc":"37950:2:51","nodeType":"YulLiteral","src":"37950:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"37935:3:51","nodeType":"YulIdentifier","src":"37935:3:51"},"nativeSrc":"37935:18:51","nodeType":"YulFunctionCall","src":"37935:18:51"},{"kind":"number","nativeSrc":"37955:2:51","nodeType":"YulLiteral","src":"37955:2:51","type":"","value":"22"}],"functionName":{"name":"mstore","nativeSrc":"37928:6:51","nodeType":"YulIdentifier","src":"37928:6:51"},"nativeSrc":"37928:30:51","nodeType":"YulFunctionCall","src":"37928:30:51"},"nativeSrc":"37928:30:51","nodeType":"YulExpressionStatement","src":"37928:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37978:9:51","nodeType":"YulIdentifier","src":"37978:9:51"},{"kind":"number","nativeSrc":"37989:2:51","nodeType":"YulLiteral","src":"37989:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"37974:3:51","nodeType":"YulIdentifier","src":"37974:3:51"},"nativeSrc":"37974:18:51","nodeType":"YulFunctionCall","src":"37974:18:51"},{"hexValue":"756e61636365707461626c6520756e77726170706572","kind":"string","nativeSrc":"37994:24:51","nodeType":"YulLiteral","src":"37994:24:51","type":"","value":"unacceptable unwrapper"}],"functionName":{"name":"mstore","nativeSrc":"37967:6:51","nodeType":"YulIdentifier","src":"37967:6:51"},"nativeSrc":"37967:52:51","nodeType":"YulFunctionCall","src":"37967:52:51"},"nativeSrc":"37967:52:51","nodeType":"YulExpressionStatement","src":"37967:52:51"},{"nativeSrc":"38028:26:51","nodeType":"YulAssignment","src":"38028:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"38040:9:51","nodeType":"YulIdentifier","src":"38040:9:51"},{"kind":"number","nativeSrc":"38051:2:51","nodeType":"YulLiteral","src":"38051:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"38036:3:51","nodeType":"YulIdentifier","src":"38036:3:51"},"nativeSrc":"38036:18:51","nodeType":"YulFunctionCall","src":"38036:18:51"},"variableNames":[{"name":"tail","nativeSrc":"38028:4:51","nodeType":"YulIdentifier","src":"38028:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_fd568fffd58e4623e9037429de35dafd51a2e3c636d36cf6c06518f7d2565153__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"37714:346:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37865:9:51","nodeType":"YulTypedName","src":"37865:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"37879:4:51","nodeType":"YulTypedName","src":"37879:4:51","type":""}],"src":"37714:346:51"},{"body":{"nativeSrc":"38192:134:51","nodeType":"YulBlock","src":"38192:134:51","statements":[{"nativeSrc":"38202:26:51","nodeType":"YulAssignment","src":"38202:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"38214:9:51","nodeType":"YulIdentifier","src":"38214:9:51"},{"kind":"number","nativeSrc":"38225:2:51","nodeType":"YulLiteral","src":"38225:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"38210:3:51","nodeType":"YulIdentifier","src":"38210:3:51"},"nativeSrc":"38210:18:51","nodeType":"YulFunctionCall","src":"38210:18:51"},"variableNames":[{"name":"tail","nativeSrc":"38202:4:51","nodeType":"YulIdentifier","src":"38202:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"38244:9:51","nodeType":"YulIdentifier","src":"38244:9:51"},{"name":"value0","nativeSrc":"38255:6:51","nodeType":"YulIdentifier","src":"38255:6:51"}],"functionName":{"name":"mstore","nativeSrc":"38237:6:51","nodeType":"YulIdentifier","src":"38237:6:51"},"nativeSrc":"38237:25:51","nodeType":"YulFunctionCall","src":"38237:25:51"},"nativeSrc":"38237:25:51","nodeType":"YulExpressionStatement","src":"38237:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38282:9:51","nodeType":"YulIdentifier","src":"38282:9:51"},{"kind":"number","nativeSrc":"38293:2:51","nodeType":"YulLiteral","src":"38293:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"38278:3:51","nodeType":"YulIdentifier","src":"38278:3:51"},"nativeSrc":"38278:18:51","nodeType":"YulFunctionCall","src":"38278:18:51"},{"arguments":[{"name":"value1","nativeSrc":"38302:6:51","nodeType":"YulIdentifier","src":"38302:6:51"},{"kind":"number","nativeSrc":"38310:8:51","nodeType":"YulLiteral","src":"38310:8:51","type":"","value":"0xffffff"}],"functionName":{"name":"and","nativeSrc":"38298:3:51","nodeType":"YulIdentifier","src":"38298:3:51"},"nativeSrc":"38298:21:51","nodeType":"YulFunctionCall","src":"38298:21:51"}],"functionName":{"name":"mstore","nativeSrc":"38271:6:51","nodeType":"YulIdentifier","src":"38271:6:51"},"nativeSrc":"38271:49:51","nodeType":"YulFunctionCall","src":"38271:49:51"},"nativeSrc":"38271:49:51","nodeType":"YulExpressionStatement","src":"38271:49:51"}]},"name":"abi_encode_tuple_t_uint256_t_uint24__to_t_uint256_t_uint24__fromStack_reversed","nativeSrc":"38065:261:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38153:9:51","nodeType":"YulTypedName","src":"38153:9:51","type":""},{"name":"value1","nativeSrc":"38164:6:51","nodeType":"YulTypedName","src":"38164:6:51","type":""},{"name":"value0","nativeSrc":"38172:6:51","nodeType":"YulTypedName","src":"38172:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"38183:4:51","nodeType":"YulTypedName","src":"38183:4:51","type":""}],"src":"38065:261:51"},{"body":{"nativeSrc":"38379:77:51","nodeType":"YulBlock","src":"38379:77:51","statements":[{"nativeSrc":"38389:16:51","nodeType":"YulAssignment","src":"38389:16:51","value":{"arguments":[{"name":"x","nativeSrc":"38400:1:51","nodeType":"YulIdentifier","src":"38400:1:51"},{"name":"y","nativeSrc":"38403:1:51","nodeType":"YulIdentifier","src":"38403:1:51"}],"functionName":{"name":"add","nativeSrc":"38396:3:51","nodeType":"YulIdentifier","src":"38396:3:51"},"nativeSrc":"38396:9:51","nodeType":"YulFunctionCall","src":"38396:9:51"},"variableNames":[{"name":"sum","nativeSrc":"38389:3:51","nodeType":"YulIdentifier","src":"38389:3:51"}]},{"body":{"nativeSrc":"38428:22:51","nodeType":"YulBlock","src":"38428:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"38430:16:51","nodeType":"YulIdentifier","src":"38430:16:51"},"nativeSrc":"38430:18:51","nodeType":"YulFunctionCall","src":"38430:18:51"},"nativeSrc":"38430:18:51","nodeType":"YulExpressionStatement","src":"38430:18:51"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"38420:1:51","nodeType":"YulIdentifier","src":"38420:1:51"},{"name":"sum","nativeSrc":"38423:3:51","nodeType":"YulIdentifier","src":"38423:3:51"}],"functionName":{"name":"gt","nativeSrc":"38417:2:51","nodeType":"YulIdentifier","src":"38417:2:51"},"nativeSrc":"38417:10:51","nodeType":"YulFunctionCall","src":"38417:10:51"},"nativeSrc":"38414:36:51","nodeType":"YulIf","src":"38414:36:51"}]},"name":"checked_add_t_uint256","nativeSrc":"38331:125:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"38362:1:51","nodeType":"YulTypedName","src":"38362:1:51","type":""},{"name":"y","nativeSrc":"38365:1:51","nodeType":"YulTypedName","src":"38365:1:51","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"38371:3:51","nodeType":"YulTypedName","src":"38371:3:51","type":""}],"src":"38331:125:51"},{"body":{"nativeSrc":"38513:116:51","nodeType":"YulBlock","src":"38513:116:51","statements":[{"nativeSrc":"38523:20:51","nodeType":"YulAssignment","src":"38523:20:51","value":{"arguments":[{"name":"x","nativeSrc":"38538:1:51","nodeType":"YulIdentifier","src":"38538:1:51"},{"name":"y","nativeSrc":"38541:1:51","nodeType":"YulIdentifier","src":"38541:1:51"}],"functionName":{"name":"mul","nativeSrc":"38534:3:51","nodeType":"YulIdentifier","src":"38534:3:51"},"nativeSrc":"38534:9:51","nodeType":"YulFunctionCall","src":"38534:9:51"},"variableNames":[{"name":"product","nativeSrc":"38523:7:51","nodeType":"YulIdentifier","src":"38523:7:51"}]},{"body":{"nativeSrc":"38601:22:51","nodeType":"YulBlock","src":"38601:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"38603:16:51","nodeType":"YulIdentifier","src":"38603:16:51"},"nativeSrc":"38603:18:51","nodeType":"YulFunctionCall","src":"38603:18:51"},"nativeSrc":"38603:18:51","nodeType":"YulExpressionStatement","src":"38603:18:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"38572:1:51","nodeType":"YulIdentifier","src":"38572:1:51"}],"functionName":{"name":"iszero","nativeSrc":"38565:6:51","nodeType":"YulIdentifier","src":"38565:6:51"},"nativeSrc":"38565:9:51","nodeType":"YulFunctionCall","src":"38565:9:51"},{"arguments":[{"name":"y","nativeSrc":"38579:1:51","nodeType":"YulIdentifier","src":"38579:1:51"},{"arguments":[{"name":"product","nativeSrc":"38586:7:51","nodeType":"YulIdentifier","src":"38586:7:51"},{"name":"x","nativeSrc":"38595:1:51","nodeType":"YulIdentifier","src":"38595:1:51"}],"functionName":{"name":"div","nativeSrc":"38582:3:51","nodeType":"YulIdentifier","src":"38582:3:51"},"nativeSrc":"38582:15:51","nodeType":"YulFunctionCall","src":"38582:15:51"}],"functionName":{"name":"eq","nativeSrc":"38576:2:51","nodeType":"YulIdentifier","src":"38576:2:51"},"nativeSrc":"38576:22:51","nodeType":"YulFunctionCall","src":"38576:22:51"}],"functionName":{"name":"or","nativeSrc":"38562:2:51","nodeType":"YulIdentifier","src":"38562:2:51"},"nativeSrc":"38562:37:51","nodeType":"YulFunctionCall","src":"38562:37:51"}],"functionName":{"name":"iszero","nativeSrc":"38555:6:51","nodeType":"YulIdentifier","src":"38555:6:51"},"nativeSrc":"38555:45:51","nodeType":"YulFunctionCall","src":"38555:45:51"},"nativeSrc":"38552:71:51","nodeType":"YulIf","src":"38552:71:51"}]},"name":"checked_mul_t_uint256","nativeSrc":"38461:168:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"38492:1:51","nodeType":"YulTypedName","src":"38492:1:51","type":""},{"name":"y","nativeSrc":"38495:1:51","nodeType":"YulTypedName","src":"38495:1:51","type":""}],"returnVariables":[{"name":"product","nativeSrc":"38501:7:51","nodeType":"YulTypedName","src":"38501:7:51","type":""}],"src":"38461:168:51"},{"body":{"nativeSrc":"38680:74:51","nodeType":"YulBlock","src":"38680:74:51","statements":[{"body":{"nativeSrc":"38703:22:51","nodeType":"YulBlock","src":"38703:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"38705:16:51","nodeType":"YulIdentifier","src":"38705:16:51"},"nativeSrc":"38705:18:51","nodeType":"YulFunctionCall","src":"38705:18:51"},"nativeSrc":"38705:18:51","nodeType":"YulExpressionStatement","src":"38705:18:51"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"38700:1:51","nodeType":"YulIdentifier","src":"38700:1:51"}],"functionName":{"name":"iszero","nativeSrc":"38693:6:51","nodeType":"YulIdentifier","src":"38693:6:51"},"nativeSrc":"38693:9:51","nodeType":"YulFunctionCall","src":"38693:9:51"},"nativeSrc":"38690:35:51","nodeType":"YulIf","src":"38690:35:51"},{"nativeSrc":"38734:14:51","nodeType":"YulAssignment","src":"38734:14:51","value":{"arguments":[{"name":"x","nativeSrc":"38743:1:51","nodeType":"YulIdentifier","src":"38743:1:51"},{"name":"y","nativeSrc":"38746:1:51","nodeType":"YulIdentifier","src":"38746:1:51"}],"functionName":{"name":"div","nativeSrc":"38739:3:51","nodeType":"YulIdentifier","src":"38739:3:51"},"nativeSrc":"38739:9:51","nodeType":"YulFunctionCall","src":"38739:9:51"},"variableNames":[{"name":"r","nativeSrc":"38734:1:51","nodeType":"YulIdentifier","src":"38734:1:51"}]}]},"name":"checked_div_t_uint256","nativeSrc":"38634:120:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"38665:1:51","nodeType":"YulTypedName","src":"38665:1:51","type":""},{"name":"y","nativeSrc":"38668:1:51","nodeType":"YulTypedName","src":"38668:1:51","type":""}],"returnVariables":[{"name":"r","nativeSrc":"38674:1:51","nodeType":"YulTypedName","src":"38674:1:51","type":""}],"src":"38634:120:51"},{"body":{"nativeSrc":"39028:234:51","nodeType":"YulBlock","src":"39028:234:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"39045:9:51","nodeType":"YulIdentifier","src":"39045:9:51"},{"kind":"number","nativeSrc":"39056:2:51","nodeType":"YulLiteral","src":"39056:2:51","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"39038:6:51","nodeType":"YulIdentifier","src":"39038:6:51"},"nativeSrc":"39038:21:51","nodeType":"YulFunctionCall","src":"39038:21:51"},"nativeSrc":"39038:21:51","nodeType":"YulExpressionStatement","src":"39038:21:51"},{"nativeSrc":"39068:69:51","nodeType":"YulVariableDeclaration","src":"39068:69:51","value":{"arguments":[{"name":"value0","nativeSrc":"39110:6:51","nodeType":"YulIdentifier","src":"39110:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"39122:9:51","nodeType":"YulIdentifier","src":"39122:9:51"},{"kind":"number","nativeSrc":"39133:2:51","nodeType":"YulLiteral","src":"39133:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"39118:3:51","nodeType":"YulIdentifier","src":"39118:3:51"},"nativeSrc":"39118:18:51","nodeType":"YulFunctionCall","src":"39118:18:51"}],"functionName":{"name":"abi_encode_array_string_dyn","nativeSrc":"39082:27:51","nodeType":"YulIdentifier","src":"39082:27:51"},"nativeSrc":"39082:55:51","nodeType":"YulFunctionCall","src":"39082:55:51"},"variables":[{"name":"tail_1","nativeSrc":"39072:6:51","nodeType":"YulTypedName","src":"39072:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39157:9:51","nodeType":"YulIdentifier","src":"39157:9:51"},{"kind":"number","nativeSrc":"39168:2:51","nodeType":"YulLiteral","src":"39168:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"39153:3:51","nodeType":"YulIdentifier","src":"39153:3:51"},"nativeSrc":"39153:18:51","nodeType":"YulFunctionCall","src":"39153:18:51"},{"arguments":[{"name":"tail_1","nativeSrc":"39177:6:51","nodeType":"YulIdentifier","src":"39177:6:51"},{"name":"headStart","nativeSrc":"39185:9:51","nodeType":"YulIdentifier","src":"39185:9:51"}],"functionName":{"name":"sub","nativeSrc":"39173:3:51","nodeType":"YulIdentifier","src":"39173:3:51"},"nativeSrc":"39173:22:51","nodeType":"YulFunctionCall","src":"39173:22:51"}],"functionName":{"name":"mstore","nativeSrc":"39146:6:51","nodeType":"YulIdentifier","src":"39146:6:51"},"nativeSrc":"39146:50:51","nodeType":"YulFunctionCall","src":"39146:50:51"},"nativeSrc":"39146:50:51","nodeType":"YulExpressionStatement","src":"39146:50:51"},{"nativeSrc":"39205:51:51","nodeType":"YulAssignment","src":"39205:51:51","value":{"arguments":[{"name":"value1","nativeSrc":"39241:6:51","nodeType":"YulIdentifier","src":"39241:6:51"},{"name":"tail_1","nativeSrc":"39249:6:51","nodeType":"YulIdentifier","src":"39249:6:51"}],"functionName":{"name":"abi_encode_array_string_dyn","nativeSrc":"39213:27:51","nodeType":"YulIdentifier","src":"39213:27:51"},"nativeSrc":"39213:43:51","nodeType":"YulFunctionCall","src":"39213:43:51"},"variableNames":[{"name":"tail","nativeSrc":"39205:4:51","nodeType":"YulIdentifier","src":"39205:4:51"}]}]},"name":"abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"38759:503:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38989:9:51","nodeType":"YulTypedName","src":"38989:9:51","type":""},{"name":"value1","nativeSrc":"39000:6:51","nodeType":"YulTypedName","src":"39000:6:51","type":""},{"name":"value0","nativeSrc":"39008:6:51","nodeType":"YulTypedName","src":"39008:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39019:4:51","nodeType":"YulTypedName","src":"39019:4:51","type":""}],"src":"38759:503:51"},{"body":{"nativeSrc":"39379:149:51","nodeType":"YulBlock","src":"39379:149:51","statements":[{"body":{"nativeSrc":"39425:16:51","nodeType":"YulBlock","src":"39425:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"39434:1:51","nodeType":"YulLiteral","src":"39434:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"39437:1:51","nodeType":"YulLiteral","src":"39437:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"39427:6:51","nodeType":"YulIdentifier","src":"39427:6:51"},"nativeSrc":"39427:12:51","nodeType":"YulFunctionCall","src":"39427:12:51"},"nativeSrc":"39427:12:51","nodeType":"YulExpressionStatement","src":"39427:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"39400:7:51","nodeType":"YulIdentifier","src":"39400:7:51"},{"name":"headStart","nativeSrc":"39409:9:51","nodeType":"YulIdentifier","src":"39409:9:51"}],"functionName":{"name":"sub","nativeSrc":"39396:3:51","nodeType":"YulIdentifier","src":"39396:3:51"},"nativeSrc":"39396:23:51","nodeType":"YulFunctionCall","src":"39396:23:51"},{"kind":"number","nativeSrc":"39421:2:51","nodeType":"YulLiteral","src":"39421:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"39392:3:51","nodeType":"YulIdentifier","src":"39392:3:51"},"nativeSrc":"39392:32:51","nodeType":"YulFunctionCall","src":"39392:32:51"},"nativeSrc":"39389:52:51","nodeType":"YulIf","src":"39389:52:51"},{"nativeSrc":"39450:14:51","nodeType":"YulVariableDeclaration","src":"39450:14:51","value":{"kind":"number","nativeSrc":"39463:1:51","nodeType":"YulLiteral","src":"39463:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"39454:5:51","nodeType":"YulTypedName","src":"39454:5:51","type":""}]},{"nativeSrc":"39473:25:51","nodeType":"YulAssignment","src":"39473:25:51","value":{"arguments":[{"name":"headStart","nativeSrc":"39488:9:51","nodeType":"YulIdentifier","src":"39488:9:51"}],"functionName":{"name":"mload","nativeSrc":"39482:5:51","nodeType":"YulIdentifier","src":"39482:5:51"},"nativeSrc":"39482:16:51","nodeType":"YulFunctionCall","src":"39482:16:51"},"variableNames":[{"name":"value","nativeSrc":"39473:5:51","nodeType":"YulIdentifier","src":"39473:5:51"}]},{"nativeSrc":"39507:15:51","nodeType":"YulAssignment","src":"39507:15:51","value":{"name":"value","nativeSrc":"39517:5:51","nodeType":"YulIdentifier","src":"39517:5:51"},"variableNames":[{"name":"value0","nativeSrc":"39507:6:51","nodeType":"YulIdentifier","src":"39507:6:51"}]}]},"name":"abi_decode_tuple_t_userDefinedValueType$_RadonHash_$13250_fromMemory","nativeSrc":"39267:261:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39345:9:51","nodeType":"YulTypedName","src":"39345:9:51","type":""},{"name":"dataEnd","nativeSrc":"39356:7:51","nodeType":"YulTypedName","src":"39356:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"39368:6:51","nodeType":"YulTypedName","src":"39368:6:51","type":""}],"src":"39267:261:51"},{"body":{"nativeSrc":"39652:110:51","nodeType":"YulBlock","src":"39652:110:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"39669:3:51","nodeType":"YulIdentifier","src":"39669:3:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"39682:2:51","nodeType":"YulLiteral","src":"39682:2:51","type":"","value":"96"},{"name":"value0","nativeSrc":"39686:6:51","nodeType":"YulIdentifier","src":"39686:6:51"}],"functionName":{"name":"shl","nativeSrc":"39678:3:51","nodeType":"YulIdentifier","src":"39678:3:51"},"nativeSrc":"39678:15:51","nodeType":"YulFunctionCall","src":"39678:15:51"},{"arguments":[{"kind":"number","nativeSrc":"39699:26:51","nodeType":"YulLiteral","src":"39699:26:51","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"39695:3:51","nodeType":"YulIdentifier","src":"39695:3:51"},"nativeSrc":"39695:31:51","nodeType":"YulFunctionCall","src":"39695:31:51"}],"functionName":{"name":"and","nativeSrc":"39674:3:51","nodeType":"YulIdentifier","src":"39674:3:51"},"nativeSrc":"39674:53:51","nodeType":"YulFunctionCall","src":"39674:53:51"}],"functionName":{"name":"mstore","nativeSrc":"39662:6:51","nodeType":"YulIdentifier","src":"39662:6:51"},"nativeSrc":"39662:66:51","nodeType":"YulFunctionCall","src":"39662:66:51"},"nativeSrc":"39662:66:51","nodeType":"YulExpressionStatement","src":"39662:66:51"},{"nativeSrc":"39737:19:51","nodeType":"YulAssignment","src":"39737:19:51","value":{"arguments":[{"name":"pos","nativeSrc":"39748:3:51","nodeType":"YulIdentifier","src":"39748:3:51"},{"kind":"number","nativeSrc":"39753:2:51","nodeType":"YulLiteral","src":"39753:2:51","type":"","value":"20"}],"functionName":{"name":"add","nativeSrc":"39744:3:51","nodeType":"YulIdentifier","src":"39744:3:51"},"nativeSrc":"39744:12:51","nodeType":"YulFunctionCall","src":"39744:12:51"},"variableNames":[{"name":"end","nativeSrc":"39737:3:51","nodeType":"YulIdentifier","src":"39737:3:51"}]}]},"name":"abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed","nativeSrc":"39533:229:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"39628:3:51","nodeType":"YulTypedName","src":"39628:3:51","type":""},{"name":"value0","nativeSrc":"39633:6:51","nodeType":"YulTypedName","src":"39633:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"39644:3:51","nodeType":"YulTypedName","src":"39644:3:51","type":""}],"src":"39533:229:51"},{"body":{"nativeSrc":"39980:276:51","nodeType":"YulBlock","src":"39980:276:51","statements":[{"nativeSrc":"39990:27:51","nodeType":"YulAssignment","src":"39990:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"40002:9:51","nodeType":"YulIdentifier","src":"40002:9:51"},{"kind":"number","nativeSrc":"40013:3:51","nodeType":"YulLiteral","src":"40013:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"39998:3:51","nodeType":"YulIdentifier","src":"39998:3:51"},"nativeSrc":"39998:19:51","nodeType":"YulFunctionCall","src":"39998:19:51"},"variableNames":[{"name":"tail","nativeSrc":"39990:4:51","nodeType":"YulIdentifier","src":"39990:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"40033:9:51","nodeType":"YulIdentifier","src":"40033:9:51"},{"name":"value0","nativeSrc":"40044:6:51","nodeType":"YulIdentifier","src":"40044:6:51"}],"functionName":{"name":"mstore","nativeSrc":"40026:6:51","nodeType":"YulIdentifier","src":"40026:6:51"},"nativeSrc":"40026:25:51","nodeType":"YulFunctionCall","src":"40026:25:51"},"nativeSrc":"40026:25:51","nodeType":"YulExpressionStatement","src":"40026:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40071:9:51","nodeType":"YulIdentifier","src":"40071:9:51"},{"kind":"number","nativeSrc":"40082:2:51","nodeType":"YulLiteral","src":"40082:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"40067:3:51","nodeType":"YulIdentifier","src":"40067:3:51"},"nativeSrc":"40067:18:51","nodeType":"YulFunctionCall","src":"40067:18:51"},{"name":"value1","nativeSrc":"40087:6:51","nodeType":"YulIdentifier","src":"40087:6:51"}],"functionName":{"name":"mstore","nativeSrc":"40060:6:51","nodeType":"YulIdentifier","src":"40060:6:51"},"nativeSrc":"40060:34:51","nodeType":"YulFunctionCall","src":"40060:34:51"},"nativeSrc":"40060:34:51","nodeType":"YulExpressionStatement","src":"40060:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40114:9:51","nodeType":"YulIdentifier","src":"40114:9:51"},{"kind":"number","nativeSrc":"40125:2:51","nodeType":"YulLiteral","src":"40125:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"40110:3:51","nodeType":"YulIdentifier","src":"40110:3:51"},"nativeSrc":"40110:18:51","nodeType":"YulFunctionCall","src":"40110:18:51"},{"name":"value2","nativeSrc":"40130:6:51","nodeType":"YulIdentifier","src":"40130:6:51"}],"functionName":{"name":"mstore","nativeSrc":"40103:6:51","nodeType":"YulIdentifier","src":"40103:6:51"},"nativeSrc":"40103:34:51","nodeType":"YulFunctionCall","src":"40103:34:51"},"nativeSrc":"40103:34:51","nodeType":"YulExpressionStatement","src":"40103:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40157:9:51","nodeType":"YulIdentifier","src":"40157:9:51"},{"kind":"number","nativeSrc":"40168:2:51","nodeType":"YulLiteral","src":"40168:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"40153:3:51","nodeType":"YulIdentifier","src":"40153:3:51"},"nativeSrc":"40153:18:51","nodeType":"YulFunctionCall","src":"40153:18:51"},{"name":"value3","nativeSrc":"40173:6:51","nodeType":"YulIdentifier","src":"40173:6:51"}],"functionName":{"name":"mstore","nativeSrc":"40146:6:51","nodeType":"YulIdentifier","src":"40146:6:51"},"nativeSrc":"40146:34:51","nodeType":"YulFunctionCall","src":"40146:34:51"},"nativeSrc":"40146:34:51","nodeType":"YulExpressionStatement","src":"40146:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40200:9:51","nodeType":"YulIdentifier","src":"40200:9:51"},{"kind":"number","nativeSrc":"40211:3:51","nodeType":"YulLiteral","src":"40211:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"40196:3:51","nodeType":"YulIdentifier","src":"40196:3:51"},"nativeSrc":"40196:19:51","nodeType":"YulFunctionCall","src":"40196:19:51"},{"arguments":[{"name":"value4","nativeSrc":"40221:6:51","nodeType":"YulIdentifier","src":"40221:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40237:3:51","nodeType":"YulLiteral","src":"40237:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"40242:1:51","nodeType":"YulLiteral","src":"40242:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"40233:3:51","nodeType":"YulIdentifier","src":"40233:3:51"},"nativeSrc":"40233:11:51","nodeType":"YulFunctionCall","src":"40233:11:51"},{"kind":"number","nativeSrc":"40246:1:51","nodeType":"YulLiteral","src":"40246:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"40229:3:51","nodeType":"YulIdentifier","src":"40229:3:51"},"nativeSrc":"40229:19:51","nodeType":"YulFunctionCall","src":"40229:19:51"}],"functionName":{"name":"and","nativeSrc":"40217:3:51","nodeType":"YulIdentifier","src":"40217:3:51"},"nativeSrc":"40217:32:51","nodeType":"YulFunctionCall","src":"40217:32:51"}],"functionName":{"name":"mstore","nativeSrc":"40189:6:51","nodeType":"YulIdentifier","src":"40189:6:51"},"nativeSrc":"40189:61:51","nodeType":"YulFunctionCall","src":"40189:61:51"},"nativeSrc":"40189:61:51","nodeType":"YulExpressionStatement","src":"40189:61:51"}]},"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","nativeSrc":"39767:489:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39917:9:51","nodeType":"YulTypedName","src":"39917:9:51","type":""},{"name":"value4","nativeSrc":"39928:6:51","nodeType":"YulTypedName","src":"39928:6:51","type":""},{"name":"value3","nativeSrc":"39936:6:51","nodeType":"YulTypedName","src":"39936:6:51","type":""},{"name":"value2","nativeSrc":"39944:6:51","nodeType":"YulTypedName","src":"39944:6:51","type":""},{"name":"value1","nativeSrc":"39952:6:51","nodeType":"YulTypedName","src":"39952:6:51","type":""},{"name":"value0","nativeSrc":"39960:6:51","nodeType":"YulTypedName","src":"39960:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39971:4:51","nodeType":"YulTypedName","src":"39971:4:51","type":""}],"src":"39767:489:51"},{"body":{"nativeSrc":"40400:150:51","nodeType":"YulBlock","src":"40400:150:51","statements":[{"nativeSrc":"40410:27:51","nodeType":"YulVariableDeclaration","src":"40410:27:51","value":{"arguments":[{"name":"value0","nativeSrc":"40430:6:51","nodeType":"YulIdentifier","src":"40430:6:51"}],"functionName":{"name":"mload","nativeSrc":"40424:5:51","nodeType":"YulIdentifier","src":"40424:5:51"},"nativeSrc":"40424:13:51","nodeType":"YulFunctionCall","src":"40424:13:51"},"variables":[{"name":"length","nativeSrc":"40414:6:51","nodeType":"YulTypedName","src":"40414:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"40485:6:51","nodeType":"YulIdentifier","src":"40485:6:51"},{"kind":"number","nativeSrc":"40493:4:51","nodeType":"YulLiteral","src":"40493:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"40481:3:51","nodeType":"YulIdentifier","src":"40481:3:51"},"nativeSrc":"40481:17:51","nodeType":"YulFunctionCall","src":"40481:17:51"},{"name":"pos","nativeSrc":"40500:3:51","nodeType":"YulIdentifier","src":"40500:3:51"},{"name":"length","nativeSrc":"40505:6:51","nodeType":"YulIdentifier","src":"40505:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"40446:34:51","nodeType":"YulIdentifier","src":"40446:34:51"},"nativeSrc":"40446:66:51","nodeType":"YulFunctionCall","src":"40446:66:51"},"nativeSrc":"40446:66:51","nodeType":"YulExpressionStatement","src":"40446:66:51"},{"nativeSrc":"40521:23:51","nodeType":"YulAssignment","src":"40521:23:51","value":{"arguments":[{"name":"pos","nativeSrc":"40532:3:51","nodeType":"YulIdentifier","src":"40532:3:51"},{"name":"length","nativeSrc":"40537:6:51","nodeType":"YulIdentifier","src":"40537:6:51"}],"functionName":{"name":"add","nativeSrc":"40528:3:51","nodeType":"YulIdentifier","src":"40528:3:51"},"nativeSrc":"40528:16:51","nodeType":"YulFunctionCall","src":"40528:16:51"},"variableNames":[{"name":"end","nativeSrc":"40521:3:51","nodeType":"YulIdentifier","src":"40521:3:51"}]}]},"name":"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"40261:289:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"40376:3:51","nodeType":"YulTypedName","src":"40376:3:51","type":""},{"name":"value0","nativeSrc":"40381:6:51","nodeType":"YulTypedName","src":"40381:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"40392:3:51","nodeType":"YulTypedName","src":"40392:3:51","type":""}],"src":"40261:289:51"},{"body":{"nativeSrc":"40736:217:51","nodeType":"YulBlock","src":"40736:217:51","statements":[{"nativeSrc":"40746:27:51","nodeType":"YulAssignment","src":"40746:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"40758:9:51","nodeType":"YulIdentifier","src":"40758:9:51"},{"kind":"number","nativeSrc":"40769:3:51","nodeType":"YulLiteral","src":"40769:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"40754:3:51","nodeType":"YulIdentifier","src":"40754:3:51"},"nativeSrc":"40754:19:51","nodeType":"YulFunctionCall","src":"40754:19:51"},"variableNames":[{"name":"tail","nativeSrc":"40746:4:51","nodeType":"YulIdentifier","src":"40746:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"40789:9:51","nodeType":"YulIdentifier","src":"40789:9:51"},{"name":"value0","nativeSrc":"40800:6:51","nodeType":"YulIdentifier","src":"40800:6:51"}],"functionName":{"name":"mstore","nativeSrc":"40782:6:51","nodeType":"YulIdentifier","src":"40782:6:51"},"nativeSrc":"40782:25:51","nodeType":"YulFunctionCall","src":"40782:25:51"},"nativeSrc":"40782:25:51","nodeType":"YulExpressionStatement","src":"40782:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40827:9:51","nodeType":"YulIdentifier","src":"40827:9:51"},{"kind":"number","nativeSrc":"40838:2:51","nodeType":"YulLiteral","src":"40838:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"40823:3:51","nodeType":"YulIdentifier","src":"40823:3:51"},"nativeSrc":"40823:18:51","nodeType":"YulFunctionCall","src":"40823:18:51"},{"arguments":[{"name":"value1","nativeSrc":"40847:6:51","nodeType":"YulIdentifier","src":"40847:6:51"},{"kind":"number","nativeSrc":"40855:4:51","nodeType":"YulLiteral","src":"40855:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"40843:3:51","nodeType":"YulIdentifier","src":"40843:3:51"},"nativeSrc":"40843:17:51","nodeType":"YulFunctionCall","src":"40843:17:51"}],"functionName":{"name":"mstore","nativeSrc":"40816:6:51","nodeType":"YulIdentifier","src":"40816:6:51"},"nativeSrc":"40816:45:51","nodeType":"YulFunctionCall","src":"40816:45:51"},"nativeSrc":"40816:45:51","nodeType":"YulExpressionStatement","src":"40816:45:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40881:9:51","nodeType":"YulIdentifier","src":"40881:9:51"},{"kind":"number","nativeSrc":"40892:2:51","nodeType":"YulLiteral","src":"40892:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"40877:3:51","nodeType":"YulIdentifier","src":"40877:3:51"},"nativeSrc":"40877:18:51","nodeType":"YulFunctionCall","src":"40877:18:51"},{"name":"value2","nativeSrc":"40897:6:51","nodeType":"YulIdentifier","src":"40897:6:51"}],"functionName":{"name":"mstore","nativeSrc":"40870:6:51","nodeType":"YulIdentifier","src":"40870:6:51"},"nativeSrc":"40870:34:51","nodeType":"YulFunctionCall","src":"40870:34:51"},"nativeSrc":"40870:34:51","nodeType":"YulExpressionStatement","src":"40870:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40924:9:51","nodeType":"YulIdentifier","src":"40924:9:51"},{"kind":"number","nativeSrc":"40935:2:51","nodeType":"YulLiteral","src":"40935:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"40920:3:51","nodeType":"YulIdentifier","src":"40920:3:51"},"nativeSrc":"40920:18:51","nodeType":"YulFunctionCall","src":"40920:18:51"},{"name":"value3","nativeSrc":"40940:6:51","nodeType":"YulIdentifier","src":"40940:6:51"}],"functionName":{"name":"mstore","nativeSrc":"40913:6:51","nodeType":"YulIdentifier","src":"40913:6:51"},"nativeSrc":"40913:34:51","nodeType":"YulFunctionCall","src":"40913:34:51"},"nativeSrc":"40913:34:51","nodeType":"YulExpressionStatement","src":"40913:34:51"}]},"name":"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"40555:398:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"40681:9:51","nodeType":"YulTypedName","src":"40681:9:51","type":""},{"name":"value3","nativeSrc":"40692:6:51","nodeType":"YulTypedName","src":"40692:6:51","type":""},{"name":"value2","nativeSrc":"40700:6:51","nodeType":"YulTypedName","src":"40700:6:51","type":""},{"name":"value1","nativeSrc":"40708:6:51","nodeType":"YulTypedName","src":"40708:6:51","type":""},{"name":"value0","nativeSrc":"40716:6:51","nodeType":"YulTypedName","src":"40716:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"40727:4:51","nodeType":"YulTypedName","src":"40727:4:51","type":""}],"src":"40555:398:51"},{"body":{"nativeSrc":"41132:179:51","nodeType":"YulBlock","src":"41132:179:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"41149:9:51","nodeType":"YulIdentifier","src":"41149:9:51"},{"kind":"number","nativeSrc":"41160:2:51","nodeType":"YulLiteral","src":"41160:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"41142:6:51","nodeType":"YulIdentifier","src":"41142:6:51"},"nativeSrc":"41142:21:51","nodeType":"YulFunctionCall","src":"41142:21:51"},"nativeSrc":"41142:21:51","nodeType":"YulExpressionStatement","src":"41142:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41183:9:51","nodeType":"YulIdentifier","src":"41183:9:51"},{"kind":"number","nativeSrc":"41194:2:51","nodeType":"YulLiteral","src":"41194:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"41179:3:51","nodeType":"YulIdentifier","src":"41179:3:51"},"nativeSrc":"41179:18:51","nodeType":"YulFunctionCall","src":"41179:18:51"},{"kind":"number","nativeSrc":"41199:2:51","nodeType":"YulLiteral","src":"41199:2:51","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"41172:6:51","nodeType":"YulIdentifier","src":"41172:6:51"},"nativeSrc":"41172:30:51","nodeType":"YulFunctionCall","src":"41172:30:51"},"nativeSrc":"41172:30:51","nodeType":"YulExpressionStatement","src":"41172:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41222:9:51","nodeType":"YulIdentifier","src":"41222:9:51"},{"kind":"number","nativeSrc":"41233:2:51","nodeType":"YulLiteral","src":"41233:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"41218:3:51","nodeType":"YulIdentifier","src":"41218:3:51"},"nativeSrc":"41218:18:51","nodeType":"YulFunctionCall","src":"41218:18:51"},{"hexValue":"4265636833323a20696e76616c696420737472696e67206c656e677468","kind":"string","nativeSrc":"41238:31:51","nodeType":"YulLiteral","src":"41238:31:51","type":"","value":"Bech32: invalid string length"}],"functionName":{"name":"mstore","nativeSrc":"41211:6:51","nodeType":"YulIdentifier","src":"41211:6:51"},"nativeSrc":"41211:59:51","nodeType":"YulFunctionCall","src":"41211:59:51"},"nativeSrc":"41211:59:51","nodeType":"YulExpressionStatement","src":"41211:59:51"},{"nativeSrc":"41279:26:51","nodeType":"YulAssignment","src":"41279:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"41291:9:51","nodeType":"YulIdentifier","src":"41291:9:51"},{"kind":"number","nativeSrc":"41302:2:51","nodeType":"YulLiteral","src":"41302:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"41287:3:51","nodeType":"YulIdentifier","src":"41287:3:51"},"nativeSrc":"41287:18:51","nodeType":"YulFunctionCall","src":"41287:18:51"},"variableNames":[{"name":"tail","nativeSrc":"41279:4:51","nodeType":"YulIdentifier","src":"41279:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_fbafcdcf532b64f842ae9e16c3ebe22680908b0bd1d2499a181aa780163d1903__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"40958:353:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41109:9:51","nodeType":"YulTypedName","src":"41109:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"41123:4:51","nodeType":"YulTypedName","src":"41123:4:51","type":""}],"src":"40958:353:51"},{"body":{"nativeSrc":"41490:168:51","nodeType":"YulBlock","src":"41490:168:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"41507:9:51","nodeType":"YulIdentifier","src":"41507:9:51"},{"kind":"number","nativeSrc":"41518:2:51","nodeType":"YulLiteral","src":"41518:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"41500:6:51","nodeType":"YulIdentifier","src":"41500:6:51"},"nativeSrc":"41500:21:51","nodeType":"YulFunctionCall","src":"41500:21:51"},"nativeSrc":"41500:21:51","nodeType":"YulExpressionStatement","src":"41500:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41541:9:51","nodeType":"YulIdentifier","src":"41541:9:51"},{"kind":"number","nativeSrc":"41552:2:51","nodeType":"YulLiteral","src":"41552:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"41537:3:51","nodeType":"YulIdentifier","src":"41537:3:51"},"nativeSrc":"41537:18:51","nodeType":"YulFunctionCall","src":"41537:18:51"},{"kind":"number","nativeSrc":"41557:2:51","nodeType":"YulLiteral","src":"41557:2:51","type":"","value":"18"}],"functionName":{"name":"mstore","nativeSrc":"41530:6:51","nodeType":"YulIdentifier","src":"41530:6:51"},"nativeSrc":"41530:30:51","nodeType":"YulFunctionCall","src":"41530:30:51"},"nativeSrc":"41530:30:51","nodeType":"YulExpressionStatement","src":"41530:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41580:9:51","nodeType":"YulIdentifier","src":"41580:9:51"},{"kind":"number","nativeSrc":"41591:2:51","nodeType":"YulLiteral","src":"41591:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"41576:3:51","nodeType":"YulIdentifier","src":"41576:3:51"},"nativeSrc":"41576:18:51","nodeType":"YulFunctionCall","src":"41576:18:51"},{"hexValue":"4265636833323a2077726f6e672063686172","kind":"string","nativeSrc":"41596:20:51","nodeType":"YulLiteral","src":"41596:20:51","type":"","value":"Bech32: wrong char"}],"functionName":{"name":"mstore","nativeSrc":"41569:6:51","nodeType":"YulIdentifier","src":"41569:6:51"},"nativeSrc":"41569:48:51","nodeType":"YulFunctionCall","src":"41569:48:51"},"nativeSrc":"41569:48:51","nodeType":"YulExpressionStatement","src":"41569:48:51"},{"nativeSrc":"41626:26:51","nodeType":"YulAssignment","src":"41626:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"41638:9:51","nodeType":"YulIdentifier","src":"41638:9:51"},{"kind":"number","nativeSrc":"41649:2:51","nodeType":"YulLiteral","src":"41649:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"41634:3:51","nodeType":"YulIdentifier","src":"41634:3:51"},"nativeSrc":"41634:18:51","nodeType":"YulFunctionCall","src":"41634:18:51"},"variableNames":[{"name":"tail","nativeSrc":"41626:4:51","nodeType":"YulIdentifier","src":"41626:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_53dc06d622ffc4876df233985214fd280a387287ffe9d0e519654cae6b62b983__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"41316:342:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41467:9:51","nodeType":"YulTypedName","src":"41467:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"41481:4:51","nodeType":"YulTypedName","src":"41481:4:51","type":""}],"src":"41316:342:51"},{"body":{"nativeSrc":"41837:172:51","nodeType":"YulBlock","src":"41837:172:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"41854:9:51","nodeType":"YulIdentifier","src":"41854:9:51"},{"kind":"number","nativeSrc":"41865:2:51","nodeType":"YulLiteral","src":"41865:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"41847:6:51","nodeType":"YulIdentifier","src":"41847:6:51"},"nativeSrc":"41847:21:51","nodeType":"YulFunctionCall","src":"41847:21:51"},"nativeSrc":"41847:21:51","nodeType":"YulExpressionStatement","src":"41847:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41888:9:51","nodeType":"YulIdentifier","src":"41888:9:51"},{"kind":"number","nativeSrc":"41899:2:51","nodeType":"YulLiteral","src":"41899:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"41884:3:51","nodeType":"YulIdentifier","src":"41884:3:51"},"nativeSrc":"41884:18:51","nodeType":"YulFunctionCall","src":"41884:18:51"},{"kind":"number","nativeSrc":"41904:2:51","nodeType":"YulLiteral","src":"41904:2:51","type":"","value":"22"}],"functionName":{"name":"mstore","nativeSrc":"41877:6:51","nodeType":"YulIdentifier","src":"41877:6:51"},"nativeSrc":"41877:30:51","nodeType":"YulFunctionCall","src":"41877:30:51"},"nativeSrc":"41877:30:51","nodeType":"YulExpressionStatement","src":"41877:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41927:9:51","nodeType":"YulIdentifier","src":"41927:9:51"},{"kind":"number","nativeSrc":"41938:2:51","nodeType":"YulLiteral","src":"41938:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"41923:3:51","nodeType":"YulIdentifier","src":"41923:3:51"},"nativeSrc":"41923:18:51","nodeType":"YulFunctionCall","src":"41923:18:51"},{"hexValue":"4265636833323a2077726f6e6720706f73206f662031","kind":"string","nativeSrc":"41943:24:51","nodeType":"YulLiteral","src":"41943:24:51","type":"","value":"Bech32: wrong pos of 1"}],"functionName":{"name":"mstore","nativeSrc":"41916:6:51","nodeType":"YulIdentifier","src":"41916:6:51"},"nativeSrc":"41916:52:51","nodeType":"YulFunctionCall","src":"41916:52:51"},"nativeSrc":"41916:52:51","nodeType":"YulExpressionStatement","src":"41916:52:51"},{"nativeSrc":"41977:26:51","nodeType":"YulAssignment","src":"41977:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"41989:9:51","nodeType":"YulIdentifier","src":"41989:9:51"},{"kind":"number","nativeSrc":"42000:2:51","nodeType":"YulLiteral","src":"42000:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"41985:3:51","nodeType":"YulIdentifier","src":"41985:3:51"},"nativeSrc":"41985:18:51","nodeType":"YulFunctionCall","src":"41985:18:51"},"variableNames":[{"name":"tail","nativeSrc":"41977:4:51","nodeType":"YulIdentifier","src":"41977:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_0d3bbdc5952ddfc25bafa340466db68d17d1faf42dd154469a20b429a3742415__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"41663:346:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41814:9:51","nodeType":"YulTypedName","src":"41814:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"41828:4:51","nodeType":"YulTypedName","src":"41828:4:51","type":""}],"src":"41663:346:51"},{"body":{"nativeSrc":"42188:178:51","nodeType":"YulBlock","src":"42188:178:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"42205:9:51","nodeType":"YulIdentifier","src":"42205:9:51"},{"kind":"number","nativeSrc":"42216:2:51","nodeType":"YulLiteral","src":"42216:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"42198:6:51","nodeType":"YulIdentifier","src":"42198:6:51"},"nativeSrc":"42198:21:51","nodeType":"YulFunctionCall","src":"42198:21:51"},"nativeSrc":"42198:21:51","nodeType":"YulExpressionStatement","src":"42198:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42239:9:51","nodeType":"YulIdentifier","src":"42239:9:51"},{"kind":"number","nativeSrc":"42250:2:51","nodeType":"YulLiteral","src":"42250:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"42235:3:51","nodeType":"YulIdentifier","src":"42235:3:51"},"nativeSrc":"42235:18:51","nodeType":"YulFunctionCall","src":"42235:18:51"},{"kind":"number","nativeSrc":"42255:2:51","nodeType":"YulLiteral","src":"42255:2:51","type":"","value":"28"}],"functionName":{"name":"mstore","nativeSrc":"42228:6:51","nodeType":"YulIdentifier","src":"42228:6:51"},"nativeSrc":"42228:30:51","nodeType":"YulFunctionCall","src":"42228:30:51"},"nativeSrc":"42228:30:51","nodeType":"YulExpressionStatement","src":"42228:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42278:9:51","nodeType":"YulIdentifier","src":"42278:9:51"},{"kind":"number","nativeSrc":"42289:2:51","nodeType":"YulLiteral","src":"42289:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"42274:3:51","nodeType":"YulIdentifier","src":"42274:3:51"},"nativeSrc":"42274:18:51","nodeType":"YulFunctionCall","src":"42274:18:51"},{"hexValue":"4265636833323a2062797465206e6f7420696e20616c706861626574","kind":"string","nativeSrc":"42294:30:51","nodeType":"YulLiteral","src":"42294:30:51","type":"","value":"Bech32: byte not in alphabet"}],"functionName":{"name":"mstore","nativeSrc":"42267:6:51","nodeType":"YulIdentifier","src":"42267:6:51"},"nativeSrc":"42267:58:51","nodeType":"YulFunctionCall","src":"42267:58:51"},"nativeSrc":"42267:58:51","nodeType":"YulExpressionStatement","src":"42267:58:51"},{"nativeSrc":"42334:26:51","nodeType":"YulAssignment","src":"42334:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"42346:9:51","nodeType":"YulIdentifier","src":"42346:9:51"},{"kind":"number","nativeSrc":"42357:2:51","nodeType":"YulLiteral","src":"42357:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"42342:3:51","nodeType":"YulIdentifier","src":"42342:3:51"},"nativeSrc":"42342:18:51","nodeType":"YulFunctionCall","src":"42342:18:51"},"variableNames":[{"name":"tail","nativeSrc":"42334:4:51","nodeType":"YulIdentifier","src":"42334:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_6a2cf2966ea32b348a1a2f630ac8faca290d4a2ab07de89caf8dae5717c1d46d__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"42014:352:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"42165:9:51","nodeType":"YulTypedName","src":"42165:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"42179:4:51","nodeType":"YulTypedName","src":"42179:4:51","type":""}],"src":"42014:352:51"},{"body":{"nativeSrc":"42545:172:51","nodeType":"YulBlock","src":"42545:172:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"42562:9:51","nodeType":"YulIdentifier","src":"42562:9:51"},{"kind":"number","nativeSrc":"42573:2:51","nodeType":"YulLiteral","src":"42573:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"42555:6:51","nodeType":"YulIdentifier","src":"42555:6:51"},"nativeSrc":"42555:21:51","nodeType":"YulFunctionCall","src":"42555:21:51"},"nativeSrc":"42555:21:51","nodeType":"YulExpressionStatement","src":"42555:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42596:9:51","nodeType":"YulIdentifier","src":"42596:9:51"},{"kind":"number","nativeSrc":"42607:2:51","nodeType":"YulLiteral","src":"42607:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"42592:3:51","nodeType":"YulIdentifier","src":"42592:3:51"},"nativeSrc":"42592:18:51","nodeType":"YulFunctionCall","src":"42592:18:51"},{"kind":"number","nativeSrc":"42612:2:51","nodeType":"YulLiteral","src":"42612:2:51","type":"","value":"22"}],"functionName":{"name":"mstore","nativeSrc":"42585:6:51","nodeType":"YulIdentifier","src":"42585:6:51"},"nativeSrc":"42585:30:51","nodeType":"YulFunctionCall","src":"42585:30:51"},"nativeSrc":"42585:30:51","nodeType":"YulExpressionStatement","src":"42585:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42635:9:51","nodeType":"YulIdentifier","src":"42635:9:51"},{"kind":"number","nativeSrc":"42646:2:51","nodeType":"YulLiteral","src":"42646:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"42631:3:51","nodeType":"YulIdentifier","src":"42631:3:51"},"nativeSrc":"42631:18:51","nodeType":"YulFunctionCall","src":"42631:18:51"},{"hexValue":"4265636833323a2077726f6e6720636865636b73756d","kind":"string","nativeSrc":"42651:24:51","nodeType":"YulLiteral","src":"42651:24:51","type":"","value":"Bech32: wrong checksum"}],"functionName":{"name":"mstore","nativeSrc":"42624:6:51","nodeType":"YulIdentifier","src":"42624:6:51"},"nativeSrc":"42624:52:51","nodeType":"YulFunctionCall","src":"42624:52:51"},"nativeSrc":"42624:52:51","nodeType":"YulExpressionStatement","src":"42624:52:51"},{"nativeSrc":"42685:26:51","nodeType":"YulAssignment","src":"42685:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"42697:9:51","nodeType":"YulIdentifier","src":"42697:9:51"},{"kind":"number","nativeSrc":"42708:2:51","nodeType":"YulLiteral","src":"42708:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"42693:3:51","nodeType":"YulIdentifier","src":"42693:3:51"},"nativeSrc":"42693:18:51","nodeType":"YulFunctionCall","src":"42693:18:51"},"variableNames":[{"name":"tail","nativeSrc":"42685:4:51","nodeType":"YulIdentifier","src":"42685:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_8925955b412698449f23fd1db0ca5278ae982350c0d6a43502b6059204e31edc__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"42371:346:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"42522:9:51","nodeType":"YulTypedName","src":"42522:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"42536:4:51","nodeType":"YulTypedName","src":"42536:4:51","type":""}],"src":"42371:346:51"},{"body":{"nativeSrc":"42896:170:51","nodeType":"YulBlock","src":"42896:170:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"42913:9:51","nodeType":"YulIdentifier","src":"42913:9:51"},{"kind":"number","nativeSrc":"42924:2:51","nodeType":"YulLiteral","src":"42924:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"42906:6:51","nodeType":"YulIdentifier","src":"42906:6:51"},"nativeSrc":"42906:21:51","nodeType":"YulFunctionCall","src":"42906:21:51"},"nativeSrc":"42906:21:51","nodeType":"YulExpressionStatement","src":"42906:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42947:9:51","nodeType":"YulIdentifier","src":"42947:9:51"},{"kind":"number","nativeSrc":"42958:2:51","nodeType":"YulLiteral","src":"42958:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"42943:3:51","nodeType":"YulIdentifier","src":"42943:3:51"},"nativeSrc":"42943:18:51","nodeType":"YulFunctionCall","src":"42943:18:51"},{"kind":"number","nativeSrc":"42963:2:51","nodeType":"YulLiteral","src":"42963:2:51","type":"","value":"20"}],"functionName":{"name":"mstore","nativeSrc":"42936:6:51","nodeType":"YulIdentifier","src":"42936:6:51"},"nativeSrc":"42936:30:51","nodeType":"YulFunctionCall","src":"42936:30:51"},"nativeSrc":"42936:30:51","nodeType":"YulExpressionStatement","src":"42936:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42986:9:51","nodeType":"YulIdentifier","src":"42986:9:51"},{"kind":"number","nativeSrc":"42997:2:51","nodeType":"YulLiteral","src":"42997:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"42982:3:51","nodeType":"YulIdentifier","src":"42982:3:51"},"nativeSrc":"42982:18:51","nodeType":"YulFunctionCall","src":"42982:18:51"},{"hexValue":"4265636833323a20687270206d69736d61746368","kind":"string","nativeSrc":"43002:22:51","nodeType":"YulLiteral","src":"43002:22:51","type":"","value":"Bech32: hrp mismatch"}],"functionName":{"name":"mstore","nativeSrc":"42975:6:51","nodeType":"YulIdentifier","src":"42975:6:51"},"nativeSrc":"42975:50:51","nodeType":"YulFunctionCall","src":"42975:50:51"},"nativeSrc":"42975:50:51","nodeType":"YulExpressionStatement","src":"42975:50:51"},{"nativeSrc":"43034:26:51","nodeType":"YulAssignment","src":"43034:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"43046:9:51","nodeType":"YulIdentifier","src":"43046:9:51"},{"kind":"number","nativeSrc":"43057:2:51","nodeType":"YulLiteral","src":"43057:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"43042:3:51","nodeType":"YulIdentifier","src":"43042:3:51"},"nativeSrc":"43042:18:51","nodeType":"YulFunctionCall","src":"43042:18:51"},"variableNames":[{"name":"tail","nativeSrc":"43034:4:51","nodeType":"YulIdentifier","src":"43034:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_cc3b15adba6692e0236e3ef91314dd5f2f6b9fc7d497a8d9fca03d4d32ef0086__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"42722:344:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"42873:9:51","nodeType":"YulTypedName","src":"42873:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"42887:4:51","nodeType":"YulTypedName","src":"42887:4:51","type":""}],"src":"42722:344:51"},{"body":{"nativeSrc":"43245:177:51","nodeType":"YulBlock","src":"43245:177:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"43262:9:51","nodeType":"YulIdentifier","src":"43262:9:51"},{"kind":"number","nativeSrc":"43273:2:51","nodeType":"YulLiteral","src":"43273:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"43255:6:51","nodeType":"YulIdentifier","src":"43255:6:51"},"nativeSrc":"43255:21:51","nodeType":"YulFunctionCall","src":"43255:21:51"},"nativeSrc":"43255:21:51","nodeType":"YulExpressionStatement","src":"43255:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"43296:9:51","nodeType":"YulIdentifier","src":"43296:9:51"},{"kind":"number","nativeSrc":"43307:2:51","nodeType":"YulLiteral","src":"43307:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"43292:3:51","nodeType":"YulIdentifier","src":"43292:3:51"},"nativeSrc":"43292:18:51","nodeType":"YulFunctionCall","src":"43292:18:51"},{"kind":"number","nativeSrc":"43312:2:51","nodeType":"YulLiteral","src":"43312:2:51","type":"","value":"27"}],"functionName":{"name":"mstore","nativeSrc":"43285:6:51","nodeType":"YulIdentifier","src":"43285:6:51"},"nativeSrc":"43285:30:51","nodeType":"YulFunctionCall","src":"43285:30:51"},"nativeSrc":"43285:30:51","nodeType":"YulExpressionStatement","src":"43285:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"43335:9:51","nodeType":"YulIdentifier","src":"43335:9:51"},{"kind":"number","nativeSrc":"43346:2:51","nodeType":"YulLiteral","src":"43346:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"43331:3:51","nodeType":"YulIdentifier","src":"43331:3:51"},"nativeSrc":"43331:18:51","nodeType":"YulFunctionCall","src":"43331:18:51"},{"hexValue":"4265636833323a20696e76616c69642064617461206c656e677468","kind":"string","nativeSrc":"43351:29:51","nodeType":"YulLiteral","src":"43351:29:51","type":"","value":"Bech32: invalid data length"}],"functionName":{"name":"mstore","nativeSrc":"43324:6:51","nodeType":"YulIdentifier","src":"43324:6:51"},"nativeSrc":"43324:57:51","nodeType":"YulFunctionCall","src":"43324:57:51"},"nativeSrc":"43324:57:51","nodeType":"YulExpressionStatement","src":"43324:57:51"},{"nativeSrc":"43390:26:51","nodeType":"YulAssignment","src":"43390:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"43402:9:51","nodeType":"YulIdentifier","src":"43402:9:51"},{"kind":"number","nativeSrc":"43413:2:51","nodeType":"YulLiteral","src":"43413:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"43398:3:51","nodeType":"YulIdentifier","src":"43398:3:51"},"nativeSrc":"43398:18:51","nodeType":"YulFunctionCall","src":"43398:18:51"},"variableNames":[{"name":"tail","nativeSrc":"43390:4:51","nodeType":"YulIdentifier","src":"43390:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_e61d0d29c666259da088b9a4a3c73f42db070a7c6e4ed8d249944652ec7c2cf8__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"43071:351:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"43222:9:51","nodeType":"YulTypedName","src":"43222:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"43236:4:51","nodeType":"YulTypedName","src":"43236:4:51","type":""}],"src":"43071:351:51"},{"body":{"nativeSrc":"43473:142:51","nodeType":"YulBlock","src":"43473:142:51","statements":[{"nativeSrc":"43483:37:51","nodeType":"YulVariableDeclaration","src":"43483:37:51","value":{"arguments":[{"name":"value","nativeSrc":"43502:5:51","nodeType":"YulIdentifier","src":"43502:5:51"},{"kind":"number","nativeSrc":"43509:10:51","nodeType":"YulLiteral","src":"43509:10:51","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"43498:3:51","nodeType":"YulIdentifier","src":"43498:3:51"},"nativeSrc":"43498:22:51","nodeType":"YulFunctionCall","src":"43498:22:51"},"variables":[{"name":"value_1","nativeSrc":"43487:7:51","nodeType":"YulTypedName","src":"43487:7:51","type":""}]},{"body":{"nativeSrc":"43556:22:51","nodeType":"YulBlock","src":"43556:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"43558:16:51","nodeType":"YulIdentifier","src":"43558:16:51"},"nativeSrc":"43558:18:51","nodeType":"YulFunctionCall","src":"43558:18:51"},"nativeSrc":"43558:18:51","nodeType":"YulExpressionStatement","src":"43558:18:51"}]},"condition":{"arguments":[{"name":"value_1","nativeSrc":"43535:7:51","nodeType":"YulIdentifier","src":"43535:7:51"},{"kind":"number","nativeSrc":"43544:10:51","nodeType":"YulLiteral","src":"43544:10:51","type":"","value":"0xffffffff"}],"functionName":{"name":"eq","nativeSrc":"43532:2:51","nodeType":"YulIdentifier","src":"43532:2:51"},"nativeSrc":"43532:23:51","nodeType":"YulFunctionCall","src":"43532:23:51"},"nativeSrc":"43529:49:51","nodeType":"YulIf","src":"43529:49:51"},{"nativeSrc":"43587:22:51","nodeType":"YulAssignment","src":"43587:22:51","value":{"arguments":[{"name":"value_1","nativeSrc":"43598:7:51","nodeType":"YulIdentifier","src":"43598:7:51"},{"kind":"number","nativeSrc":"43607:1:51","nodeType":"YulLiteral","src":"43607:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"43594:3:51","nodeType":"YulIdentifier","src":"43594:3:51"},"nativeSrc":"43594:15:51","nodeType":"YulFunctionCall","src":"43594:15:51"},"variableNames":[{"name":"ret","nativeSrc":"43587:3:51","nodeType":"YulIdentifier","src":"43587:3:51"}]}]},"name":"increment_t_uint32","nativeSrc":"43427:188:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"43455:5:51","nodeType":"YulTypedName","src":"43455:5:51","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"43465:3:51","nodeType":"YulTypedName","src":"43465:3:51","type":""}],"src":"43427:188:51"},{"body":{"nativeSrc":"43669:79:51","nodeType":"YulBlock","src":"43669:79:51","statements":[{"nativeSrc":"43679:17:51","nodeType":"YulAssignment","src":"43679:17:51","value":{"arguments":[{"name":"x","nativeSrc":"43691:1:51","nodeType":"YulIdentifier","src":"43691:1:51"},{"name":"y","nativeSrc":"43694:1:51","nodeType":"YulIdentifier","src":"43694:1:51"}],"functionName":{"name":"sub","nativeSrc":"43687:3:51","nodeType":"YulIdentifier","src":"43687:3:51"},"nativeSrc":"43687:9:51","nodeType":"YulFunctionCall","src":"43687:9:51"},"variableNames":[{"name":"diff","nativeSrc":"43679:4:51","nodeType":"YulIdentifier","src":"43679:4:51"}]},{"body":{"nativeSrc":"43720:22:51","nodeType":"YulBlock","src":"43720:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"43722:16:51","nodeType":"YulIdentifier","src":"43722:16:51"},"nativeSrc":"43722:18:51","nodeType":"YulFunctionCall","src":"43722:18:51"},"nativeSrc":"43722:18:51","nodeType":"YulExpressionStatement","src":"43722:18:51"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"43711:4:51","nodeType":"YulIdentifier","src":"43711:4:51"},{"name":"x","nativeSrc":"43717:1:51","nodeType":"YulIdentifier","src":"43717:1:51"}],"functionName":{"name":"gt","nativeSrc":"43708:2:51","nodeType":"YulIdentifier","src":"43708:2:51"},"nativeSrc":"43708:11:51","nodeType":"YulFunctionCall","src":"43708:11:51"},"nativeSrc":"43705:37:51","nodeType":"YulIf","src":"43705:37:51"}]},"name":"checked_sub_t_uint256","nativeSrc":"43620:128:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"43651:1:51","nodeType":"YulTypedName","src":"43651:1:51","type":""},{"name":"y","nativeSrc":"43654:1:51","nodeType":"YulTypedName","src":"43654:1:51","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"43660:4:51","nodeType":"YulTypedName","src":"43660:4:51","type":""}],"src":"43620:128:51"},{"body":{"nativeSrc":"43927:244:51","nodeType":"YulBlock","src":"43927:244:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"43944:9:51","nodeType":"YulIdentifier","src":"43944:9:51"},{"kind":"number","nativeSrc":"43955:2:51","nodeType":"YulLiteral","src":"43955:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"43937:6:51","nodeType":"YulIdentifier","src":"43937:6:51"},"nativeSrc":"43937:21:51","nodeType":"YulFunctionCall","src":"43937:21:51"},"nativeSrc":"43937:21:51","nodeType":"YulExpressionStatement","src":"43937:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"43978:9:51","nodeType":"YulIdentifier","src":"43978:9:51"},{"kind":"number","nativeSrc":"43989:2:51","nodeType":"YulLiteral","src":"43989:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"43974:3:51","nodeType":"YulIdentifier","src":"43974:3:51"},"nativeSrc":"43974:18:51","nodeType":"YulFunctionCall","src":"43974:18:51"},{"kind":"number","nativeSrc":"43994:2:51","nodeType":"YulLiteral","src":"43994:2:51","type":"","value":"54"}],"functionName":{"name":"mstore","nativeSrc":"43967:6:51","nodeType":"YulIdentifier","src":"43967:6:51"},"nativeSrc":"43967:30:51","nodeType":"YulFunctionCall","src":"43967:30:51"},"nativeSrc":"43967:30:51","nodeType":"YulExpressionStatement","src":"43967:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"44017:9:51","nodeType":"YulIdentifier","src":"44017:9:51"},{"kind":"number","nativeSrc":"44028:2:51","nodeType":"YulLiteral","src":"44028:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"44013:3:51","nodeType":"YulIdentifier","src":"44013:3:51"},"nativeSrc":"44013:18:51","nodeType":"YulFunctionCall","src":"44013:18:51"},{"hexValue":"4265636833323a2076616c7565206d757374206265206e6f6e2d6e6567617469","kind":"string","nativeSrc":"44033:34:51","nodeType":"YulLiteral","src":"44033:34:51","type":"","value":"Bech32: value must be non-negati"}],"functionName":{"name":"mstore","nativeSrc":"44006:6:51","nodeType":"YulIdentifier","src":"44006:6:51"},"nativeSrc":"44006:62:51","nodeType":"YulFunctionCall","src":"44006:62:51"},"nativeSrc":"44006:62:51","nodeType":"YulExpressionStatement","src":"44006:62:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"44088:9:51","nodeType":"YulIdentifier","src":"44088:9:51"},{"kind":"number","nativeSrc":"44099:2:51","nodeType":"YulLiteral","src":"44099:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"44084:3:51","nodeType":"YulIdentifier","src":"44084:3:51"},"nativeSrc":"44084:18:51","nodeType":"YulFunctionCall","src":"44084:18:51"},{"hexValue":"766520616e642066697420696e2066726f6d62697473","kind":"string","nativeSrc":"44104:24:51","nodeType":"YulLiteral","src":"44104:24:51","type":"","value":"ve and fit in frombits"}],"functionName":{"name":"mstore","nativeSrc":"44077:6:51","nodeType":"YulIdentifier","src":"44077:6:51"},"nativeSrc":"44077:52:51","nodeType":"YulFunctionCall","src":"44077:52:51"},"nativeSrc":"44077:52:51","nodeType":"YulExpressionStatement","src":"44077:52:51"},{"nativeSrc":"44138:27:51","nodeType":"YulAssignment","src":"44138:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"44150:9:51","nodeType":"YulIdentifier","src":"44150:9:51"},{"kind":"number","nativeSrc":"44161:3:51","nodeType":"YulLiteral","src":"44161:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"44146:3:51","nodeType":"YulIdentifier","src":"44146:3:51"},"nativeSrc":"44146:19:51","nodeType":"YulFunctionCall","src":"44146:19:51"},"variableNames":[{"name":"tail","nativeSrc":"44138:4:51","nodeType":"YulIdentifier","src":"44138:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_c3d844aee3a847f0e164a11470dfaf03e0661e60bf8b0718b82a475dc4773582__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"43753:418:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"43904:9:51","nodeType":"YulTypedName","src":"43904:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"43918:4:51","nodeType":"YulTypedName","src":"43918:4:51","type":""}],"src":"43753:418:51"},{"body":{"nativeSrc":"44339:235:51","nodeType":"YulBlock","src":"44339:235:51","statements":[{"nativeSrc":"44349:27:51","nodeType":"YulVariableDeclaration","src":"44349:27:51","value":{"arguments":[{"name":"value0","nativeSrc":"44369:6:51","nodeType":"YulIdentifier","src":"44369:6:51"}],"functionName":{"name":"mload","nativeSrc":"44363:5:51","nodeType":"YulIdentifier","src":"44363:5:51"},"nativeSrc":"44363:13:51","nodeType":"YulFunctionCall","src":"44363:13:51"},"variables":[{"name":"length","nativeSrc":"44353:6:51","nodeType":"YulTypedName","src":"44353:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"44424:6:51","nodeType":"YulIdentifier","src":"44424:6:51"},{"kind":"number","nativeSrc":"44432:4:51","nodeType":"YulLiteral","src":"44432:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"44420:3:51","nodeType":"YulIdentifier","src":"44420:3:51"},"nativeSrc":"44420:17:51","nodeType":"YulFunctionCall","src":"44420:17:51"},{"name":"pos","nativeSrc":"44439:3:51","nodeType":"YulIdentifier","src":"44439:3:51"},{"name":"length","nativeSrc":"44444:6:51","nodeType":"YulIdentifier","src":"44444:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"44385:34:51","nodeType":"YulIdentifier","src":"44385:34:51"},"nativeSrc":"44385:66:51","nodeType":"YulFunctionCall","src":"44385:66:51"},"nativeSrc":"44385:66:51","nodeType":"YulExpressionStatement","src":"44385:66:51"},{"nativeSrc":"44460:29:51","nodeType":"YulVariableDeclaration","src":"44460:29:51","value":{"arguments":[{"name":"pos","nativeSrc":"44477:3:51","nodeType":"YulIdentifier","src":"44477:3:51"},{"name":"length","nativeSrc":"44482:6:51","nodeType":"YulIdentifier","src":"44482:6:51"}],"functionName":{"name":"add","nativeSrc":"44473:3:51","nodeType":"YulIdentifier","src":"44473:3:51"},"nativeSrc":"44473:16:51","nodeType":"YulFunctionCall","src":"44473:16:51"},"variables":[{"name":"end_1","nativeSrc":"44464:5:51","nodeType":"YulTypedName","src":"44464:5:51","type":""}]},{"expression":{"arguments":[{"name":"end_1","nativeSrc":"44505:5:51","nodeType":"YulIdentifier","src":"44505:5:51"},{"arguments":[{"name":"value1","nativeSrc":"44516:6:51","nodeType":"YulIdentifier","src":"44516:6:51"},{"arguments":[{"kind":"number","nativeSrc":"44528:3:51","nodeType":"YulLiteral","src":"44528:3:51","type":"","value":"248"},{"kind":"number","nativeSrc":"44533:3:51","nodeType":"YulLiteral","src":"44533:3:51","type":"","value":"255"}],"functionName":{"name":"shl","nativeSrc":"44524:3:51","nodeType":"YulIdentifier","src":"44524:3:51"},"nativeSrc":"44524:13:51","nodeType":"YulFunctionCall","src":"44524:13:51"}],"functionName":{"name":"and","nativeSrc":"44512:3:51","nodeType":"YulIdentifier","src":"44512:3:51"},"nativeSrc":"44512:26:51","nodeType":"YulFunctionCall","src":"44512:26:51"}],"functionName":{"name":"mstore","nativeSrc":"44498:6:51","nodeType":"YulIdentifier","src":"44498:6:51"},"nativeSrc":"44498:41:51","nodeType":"YulFunctionCall","src":"44498:41:51"},"nativeSrc":"44498:41:51","nodeType":"YulExpressionStatement","src":"44498:41:51"},{"nativeSrc":"44548:20:51","nodeType":"YulAssignment","src":"44548:20:51","value":{"arguments":[{"name":"end_1","nativeSrc":"44559:5:51","nodeType":"YulIdentifier","src":"44559:5:51"},{"kind":"number","nativeSrc":"44566:1:51","nodeType":"YulLiteral","src":"44566:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"44555:3:51","nodeType":"YulIdentifier","src":"44555:3:51"},"nativeSrc":"44555:13:51","nodeType":"YulFunctionCall","src":"44555:13:51"},"variableNames":[{"name":"end","nativeSrc":"44548:3:51","nodeType":"YulIdentifier","src":"44548:3:51"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr_t_bytes1__to_t_bytes_memory_ptr_t_bytes1__nonPadded_inplace_fromStack_reversed","nativeSrc":"44176:398:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"44307:3:51","nodeType":"YulTypedName","src":"44307:3:51","type":""},{"name":"value1","nativeSrc":"44312:6:51","nodeType":"YulTypedName","src":"44312:6:51","type":""},{"name":"value0","nativeSrc":"44320:6:51","nodeType":"YulTypedName","src":"44320:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"44331:3:51","nodeType":"YulTypedName","src":"44331:3:51","type":""}],"src":"44176:398:51"},{"body":{"nativeSrc":"44753:227:51","nodeType":"YulBlock","src":"44753:227:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"44770:9:51","nodeType":"YulIdentifier","src":"44770:9:51"},{"kind":"number","nativeSrc":"44781:2:51","nodeType":"YulLiteral","src":"44781:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"44763:6:51","nodeType":"YulIdentifier","src":"44763:6:51"},"nativeSrc":"44763:21:51","nodeType":"YulFunctionCall","src":"44763:21:51"},"nativeSrc":"44763:21:51","nodeType":"YulExpressionStatement","src":"44763:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"44804:9:51","nodeType":"YulIdentifier","src":"44804:9:51"},{"kind":"number","nativeSrc":"44815:2:51","nodeType":"YulLiteral","src":"44815:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"44800:3:51","nodeType":"YulIdentifier","src":"44800:3:51"},"nativeSrc":"44800:18:51","nodeType":"YulFunctionCall","src":"44800:18:51"},{"kind":"number","nativeSrc":"44820:2:51","nodeType":"YulLiteral","src":"44820:2:51","type":"","value":"37"}],"functionName":{"name":"mstore","nativeSrc":"44793:6:51","nodeType":"YulIdentifier","src":"44793:6:51"},"nativeSrc":"44793:30:51","nodeType":"YulFunctionCall","src":"44793:30:51"},"nativeSrc":"44793:30:51","nodeType":"YulExpressionStatement","src":"44793:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"44843:9:51","nodeType":"YulIdentifier","src":"44843:9:51"},{"kind":"number","nativeSrc":"44854:2:51","nodeType":"YulLiteral","src":"44854:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"44839:3:51","nodeType":"YulIdentifier","src":"44839:3:51"},"nativeSrc":"44839:18:51","nodeType":"YulFunctionCall","src":"44839:18:51"},{"hexValue":"4265636833323a20696e76616c69642070616464696e67206f722076616c7565","kind":"string","nativeSrc":"44859:34:51","nodeType":"YulLiteral","src":"44859:34:51","type":"","value":"Bech32: invalid padding or value"}],"functionName":{"name":"mstore","nativeSrc":"44832:6:51","nodeType":"YulIdentifier","src":"44832:6:51"},"nativeSrc":"44832:62:51","nodeType":"YulFunctionCall","src":"44832:62:51"},"nativeSrc":"44832:62:51","nodeType":"YulExpressionStatement","src":"44832:62:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"44914:9:51","nodeType":"YulIdentifier","src":"44914:9:51"},{"kind":"number","nativeSrc":"44925:2:51","nodeType":"YulLiteral","src":"44925:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"44910:3:51","nodeType":"YulIdentifier","src":"44910:3:51"},"nativeSrc":"44910:18:51","nodeType":"YulFunctionCall","src":"44910:18:51"},{"hexValue":"2073697a65","kind":"string","nativeSrc":"44930:7:51","nodeType":"YulLiteral","src":"44930:7:51","type":"","value":" size"}],"functionName":{"name":"mstore","nativeSrc":"44903:6:51","nodeType":"YulIdentifier","src":"44903:6:51"},"nativeSrc":"44903:35:51","nodeType":"YulFunctionCall","src":"44903:35:51"},"nativeSrc":"44903:35:51","nodeType":"YulExpressionStatement","src":"44903:35:51"},{"nativeSrc":"44947:27:51","nodeType":"YulAssignment","src":"44947:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"44959:9:51","nodeType":"YulIdentifier","src":"44959:9:51"},{"kind":"number","nativeSrc":"44970:3:51","nodeType":"YulLiteral","src":"44970:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"44955:3:51","nodeType":"YulIdentifier","src":"44955:3:51"},"nativeSrc":"44955:19:51","nodeType":"YulFunctionCall","src":"44955:19:51"},"variableNames":[{"name":"tail","nativeSrc":"44947:4:51","nodeType":"YulIdentifier","src":"44947:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_e94f6be74a97f1cb3bd761cbce886a47861edc099a5ca2546d140eebfb9c3780__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"44579:401:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"44730:9:51","nodeType":"YulTypedName","src":"44730:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"44744:4:51","nodeType":"YulTypedName","src":"44744:4:51","type":""}],"src":"44579:401:51"},{"body":{"nativeSrc":"45041:65:51","nodeType":"YulBlock","src":"45041:65:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"45058:1:51","nodeType":"YulLiteral","src":"45058:1:51","type":"","value":"0"},{"name":"ptr","nativeSrc":"45061:3:51","nodeType":"YulIdentifier","src":"45061:3:51"}],"functionName":{"name":"mstore","nativeSrc":"45051:6:51","nodeType":"YulIdentifier","src":"45051:6:51"},"nativeSrc":"45051:14:51","nodeType":"YulFunctionCall","src":"45051:14:51"},"nativeSrc":"45051:14:51","nodeType":"YulExpressionStatement","src":"45051:14:51"},{"nativeSrc":"45074:26:51","nodeType":"YulAssignment","src":"45074:26:51","value":{"arguments":[{"kind":"number","nativeSrc":"45092:1:51","nodeType":"YulLiteral","src":"45092:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"45095:4:51","nodeType":"YulLiteral","src":"45095:4:51","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"45082:9:51","nodeType":"YulIdentifier","src":"45082:9:51"},"nativeSrc":"45082:18:51","nodeType":"YulFunctionCall","src":"45082:18:51"},"variableNames":[{"name":"data","nativeSrc":"45074:4:51","nodeType":"YulIdentifier","src":"45074:4:51"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"44985:121:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"45024:3:51","nodeType":"YulTypedName","src":"45024:3:51","type":""}],"returnVariables":[{"name":"data","nativeSrc":"45032:4:51","nodeType":"YulTypedName","src":"45032:4:51","type":""}],"src":"44985:121:51"},{"body":{"nativeSrc":"45192:437:51","nodeType":"YulBlock","src":"45192:437:51","statements":[{"body":{"nativeSrc":"45225:398:51","nodeType":"YulBlock","src":"45225:398:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"45246:1:51","nodeType":"YulLiteral","src":"45246:1:51","type":"","value":"0"},{"name":"array","nativeSrc":"45249:5:51","nodeType":"YulIdentifier","src":"45249:5:51"}],"functionName":{"name":"mstore","nativeSrc":"45239:6:51","nodeType":"YulIdentifier","src":"45239:6:51"},"nativeSrc":"45239:16:51","nodeType":"YulFunctionCall","src":"45239:16:51"},"nativeSrc":"45239:16:51","nodeType":"YulExpressionStatement","src":"45239:16:51"},{"nativeSrc":"45268:30:51","nodeType":"YulVariableDeclaration","src":"45268:30:51","value":{"arguments":[{"kind":"number","nativeSrc":"45290:1:51","nodeType":"YulLiteral","src":"45290:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"45293:4:51","nodeType":"YulLiteral","src":"45293:4:51","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"45280:9:51","nodeType":"YulIdentifier","src":"45280:9:51"},"nativeSrc":"45280:18:51","nodeType":"YulFunctionCall","src":"45280:18:51"},"variables":[{"name":"data","nativeSrc":"45272:4:51","nodeType":"YulTypedName","src":"45272:4:51","type":""}]},{"nativeSrc":"45311:57:51","nodeType":"YulVariableDeclaration","src":"45311:57:51","value":{"arguments":[{"name":"data","nativeSrc":"45334:4:51","nodeType":"YulIdentifier","src":"45334:4:51"},{"arguments":[{"kind":"number","nativeSrc":"45344:1:51","nodeType":"YulLiteral","src":"45344:1:51","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"45351:10:51","nodeType":"YulIdentifier","src":"45351:10:51"},{"kind":"number","nativeSrc":"45363:2:51","nodeType":"YulLiteral","src":"45363:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"45347:3:51","nodeType":"YulIdentifier","src":"45347:3:51"},"nativeSrc":"45347:19:51","nodeType":"YulFunctionCall","src":"45347:19:51"}],"functionName":{"name":"shr","nativeSrc":"45340:3:51","nodeType":"YulIdentifier","src":"45340:3:51"},"nativeSrc":"45340:27:51","nodeType":"YulFunctionCall","src":"45340:27:51"}],"functionName":{"name":"add","nativeSrc":"45330:3:51","nodeType":"YulIdentifier","src":"45330:3:51"},"nativeSrc":"45330:38:51","nodeType":"YulFunctionCall","src":"45330:38:51"},"variables":[{"name":"deleteStart","nativeSrc":"45315:11:51","nodeType":"YulTypedName","src":"45315:11:51","type":""}]},{"body":{"nativeSrc":"45405:23:51","nodeType":"YulBlock","src":"45405:23:51","statements":[{"nativeSrc":"45407:19:51","nodeType":"YulAssignment","src":"45407:19:51","value":{"name":"data","nativeSrc":"45422:4:51","nodeType":"YulIdentifier","src":"45422:4:51"},"variableNames":[{"name":"deleteStart","nativeSrc":"45407:11:51","nodeType":"YulIdentifier","src":"45407:11:51"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"45387:10:51","nodeType":"YulIdentifier","src":"45387:10:51"},{"kind":"number","nativeSrc":"45399:4:51","nodeType":"YulLiteral","src":"45399:4:51","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"45384:2:51","nodeType":"YulIdentifier","src":"45384:2:51"},"nativeSrc":"45384:20:51","nodeType":"YulFunctionCall","src":"45384:20:51"},"nativeSrc":"45381:47:51","nodeType":"YulIf","src":"45381:47:51"},{"nativeSrc":"45441:41:51","nodeType":"YulVariableDeclaration","src":"45441:41:51","value":{"arguments":[{"name":"data","nativeSrc":"45455:4:51","nodeType":"YulIdentifier","src":"45455:4:51"},{"arguments":[{"kind":"number","nativeSrc":"45465:1:51","nodeType":"YulLiteral","src":"45465:1:51","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"45472:3:51","nodeType":"YulIdentifier","src":"45472:3:51"},{"kind":"number","nativeSrc":"45477:2:51","nodeType":"YulLiteral","src":"45477:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"45468:3:51","nodeType":"YulIdentifier","src":"45468:3:51"},"nativeSrc":"45468:12:51","nodeType":"YulFunctionCall","src":"45468:12:51"}],"functionName":{"name":"shr","nativeSrc":"45461:3:51","nodeType":"YulIdentifier","src":"45461:3:51"},"nativeSrc":"45461:20:51","nodeType":"YulFunctionCall","src":"45461:20:51"}],"functionName":{"name":"add","nativeSrc":"45451:3:51","nodeType":"YulIdentifier","src":"45451:3:51"},"nativeSrc":"45451:31:51","nodeType":"YulFunctionCall","src":"45451:31:51"},"variables":[{"name":"_1","nativeSrc":"45445:2:51","nodeType":"YulTypedName","src":"45445:2:51","type":""}]},{"nativeSrc":"45495:24:51","nodeType":"YulVariableDeclaration","src":"45495:24:51","value":{"name":"deleteStart","nativeSrc":"45508:11:51","nodeType":"YulIdentifier","src":"45508:11:51"},"variables":[{"name":"start","nativeSrc":"45499:5:51","nodeType":"YulTypedName","src":"45499:5:51","type":""}]},{"body":{"nativeSrc":"45593:20:51","nodeType":"YulBlock","src":"45593:20:51","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"45602:5:51","nodeType":"YulIdentifier","src":"45602:5:51"},{"kind":"number","nativeSrc":"45609:1:51","nodeType":"YulLiteral","src":"45609:1:51","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"45595:6:51","nodeType":"YulIdentifier","src":"45595:6:51"},"nativeSrc":"45595:16:51","nodeType":"YulFunctionCall","src":"45595:16:51"},"nativeSrc":"45595:16:51","nodeType":"YulExpressionStatement","src":"45595:16:51"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"45543:5:51","nodeType":"YulIdentifier","src":"45543:5:51"},{"name":"_1","nativeSrc":"45550:2:51","nodeType":"YulIdentifier","src":"45550:2:51"}],"functionName":{"name":"lt","nativeSrc":"45540:2:51","nodeType":"YulIdentifier","src":"45540:2:51"},"nativeSrc":"45540:13:51","nodeType":"YulFunctionCall","src":"45540:13:51"},"nativeSrc":"45532:81:51","nodeType":"YulForLoop","post":{"nativeSrc":"45554:26:51","nodeType":"YulBlock","src":"45554:26:51","statements":[{"nativeSrc":"45556:22:51","nodeType":"YulAssignment","src":"45556:22:51","value":{"arguments":[{"name":"start","nativeSrc":"45569:5:51","nodeType":"YulIdentifier","src":"45569:5:51"},{"kind":"number","nativeSrc":"45576:1:51","nodeType":"YulLiteral","src":"45576:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"45565:3:51","nodeType":"YulIdentifier","src":"45565:3:51"},"nativeSrc":"45565:13:51","nodeType":"YulFunctionCall","src":"45565:13:51"},"variableNames":[{"name":"start","nativeSrc":"45556:5:51","nodeType":"YulIdentifier","src":"45556:5:51"}]}]},"pre":{"nativeSrc":"45536:3:51","nodeType":"YulBlock","src":"45536:3:51","statements":[]},"src":"45532:81:51"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"45208:3:51","nodeType":"YulIdentifier","src":"45208:3:51"},{"kind":"number","nativeSrc":"45213:2:51","nodeType":"YulLiteral","src":"45213:2:51","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"45205:2:51","nodeType":"YulIdentifier","src":"45205:2:51"},"nativeSrc":"45205:11:51","nodeType":"YulFunctionCall","src":"45205:11:51"},"nativeSrc":"45202:421:51","nodeType":"YulIf","src":"45202:421:51"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"45111:518:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"45164:5:51","nodeType":"YulTypedName","src":"45164:5:51","type":""},{"name":"len","nativeSrc":"45171:3:51","nodeType":"YulTypedName","src":"45171:3:51","type":""},{"name":"startIndex","nativeSrc":"45176:10:51","nodeType":"YulTypedName","src":"45176:10:51","type":""}],"src":"45111:518:51"},{"body":{"nativeSrc":"45719:81:51","nodeType":"YulBlock","src":"45719:81:51","statements":[{"nativeSrc":"45729:65:51","nodeType":"YulAssignment","src":"45729:65:51","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"45744:4:51","nodeType":"YulIdentifier","src":"45744:4:51"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"45762:1:51","nodeType":"YulLiteral","src":"45762:1:51","type":"","value":"3"},{"name":"len","nativeSrc":"45765:3:51","nodeType":"YulIdentifier","src":"45765:3:51"}],"functionName":{"name":"shl","nativeSrc":"45758:3:51","nodeType":"YulIdentifier","src":"45758:3:51"},"nativeSrc":"45758:11:51","nodeType":"YulFunctionCall","src":"45758:11:51"},{"arguments":[{"kind":"number","nativeSrc":"45775:1:51","nodeType":"YulLiteral","src":"45775:1:51","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"45771:3:51","nodeType":"YulIdentifier","src":"45771:3:51"},"nativeSrc":"45771:6:51","nodeType":"YulFunctionCall","src":"45771:6:51"}],"functionName":{"name":"shr","nativeSrc":"45754:3:51","nodeType":"YulIdentifier","src":"45754:3:51"},"nativeSrc":"45754:24:51","nodeType":"YulFunctionCall","src":"45754:24:51"}],"functionName":{"name":"not","nativeSrc":"45750:3:51","nodeType":"YulIdentifier","src":"45750:3:51"},"nativeSrc":"45750:29:51","nodeType":"YulFunctionCall","src":"45750:29:51"}],"functionName":{"name":"and","nativeSrc":"45740:3:51","nodeType":"YulIdentifier","src":"45740:3:51"},"nativeSrc":"45740:40:51","nodeType":"YulFunctionCall","src":"45740:40:51"},{"arguments":[{"kind":"number","nativeSrc":"45786:1:51","nodeType":"YulLiteral","src":"45786:1:51","type":"","value":"1"},{"name":"len","nativeSrc":"45789:3:51","nodeType":"YulIdentifier","src":"45789:3:51"}],"functionName":{"name":"shl","nativeSrc":"45782:3:51","nodeType":"YulIdentifier","src":"45782:3:51"},"nativeSrc":"45782:11:51","nodeType":"YulFunctionCall","src":"45782:11:51"}],"functionName":{"name":"or","nativeSrc":"45737:2:51","nodeType":"YulIdentifier","src":"45737:2:51"},"nativeSrc":"45737:57:51","nodeType":"YulFunctionCall","src":"45737:57:51"},"variableNames":[{"name":"used","nativeSrc":"45729:4:51","nodeType":"YulIdentifier","src":"45729:4:51"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"45634:166:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"45696:4:51","nodeType":"YulTypedName","src":"45696:4:51","type":""},{"name":"len","nativeSrc":"45702:3:51","nodeType":"YulTypedName","src":"45702:3:51","type":""}],"returnVariables":[{"name":"used","nativeSrc":"45710:4:51","nodeType":"YulTypedName","src":"45710:4:51","type":""}],"src":"45634:166:51"},{"body":{"nativeSrc":"45901:1203:51","nodeType":"YulBlock","src":"45901:1203:51","statements":[{"nativeSrc":"45911:24:51","nodeType":"YulVariableDeclaration","src":"45911:24:51","value":{"arguments":[{"name":"src","nativeSrc":"45931:3:51","nodeType":"YulIdentifier","src":"45931:3:51"}],"functionName":{"name":"mload","nativeSrc":"45925:5:51","nodeType":"YulIdentifier","src":"45925:5:51"},"nativeSrc":"45925:10:51","nodeType":"YulFunctionCall","src":"45925:10:51"},"variables":[{"name":"newLen","nativeSrc":"45915:6:51","nodeType":"YulTypedName","src":"45915:6:51","type":""}]},{"body":{"nativeSrc":"45978:22:51","nodeType":"YulBlock","src":"45978:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"45980:16:51","nodeType":"YulIdentifier","src":"45980:16:51"},"nativeSrc":"45980:18:51","nodeType":"YulFunctionCall","src":"45980:18:51"},"nativeSrc":"45980:18:51","nodeType":"YulExpressionStatement","src":"45980:18:51"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"45950:6:51","nodeType":"YulIdentifier","src":"45950:6:51"},{"kind":"number","nativeSrc":"45958:18:51","nodeType":"YulLiteral","src":"45958:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"45947:2:51","nodeType":"YulIdentifier","src":"45947:2:51"},"nativeSrc":"45947:30:51","nodeType":"YulFunctionCall","src":"45947:30:51"},"nativeSrc":"45944:56:51","nodeType":"YulIf","src":"45944:56:51"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"46053:4:51","nodeType":"YulIdentifier","src":"46053:4:51"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"46091:4:51","nodeType":"YulIdentifier","src":"46091:4:51"}],"functionName":{"name":"sload","nativeSrc":"46085:5:51","nodeType":"YulIdentifier","src":"46085:5:51"},"nativeSrc":"46085:11:51","nodeType":"YulFunctionCall","src":"46085:11:51"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"46059:25:51","nodeType":"YulIdentifier","src":"46059:25:51"},"nativeSrc":"46059:38:51","nodeType":"YulFunctionCall","src":"46059:38:51"},{"name":"newLen","nativeSrc":"46099:6:51","nodeType":"YulIdentifier","src":"46099:6:51"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"46009:43:51","nodeType":"YulIdentifier","src":"46009:43:51"},"nativeSrc":"46009:97:51","nodeType":"YulFunctionCall","src":"46009:97:51"},"nativeSrc":"46009:97:51","nodeType":"YulExpressionStatement","src":"46009:97:51"},{"nativeSrc":"46115:18:51","nodeType":"YulVariableDeclaration","src":"46115:18:51","value":{"kind":"number","nativeSrc":"46132:1:51","nodeType":"YulLiteral","src":"46132:1:51","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"46119:9:51","nodeType":"YulTypedName","src":"46119:9:51","type":""}]},{"nativeSrc":"46142:17:51","nodeType":"YulAssignment","src":"46142:17:51","value":{"kind":"number","nativeSrc":"46155:4:51","nodeType":"YulLiteral","src":"46155:4:51","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"46142:9:51","nodeType":"YulIdentifier","src":"46142:9:51"}]},{"cases":[{"body":{"nativeSrc":"46205:642:51","nodeType":"YulBlock","src":"46205:642:51","statements":[{"nativeSrc":"46219:35:51","nodeType":"YulVariableDeclaration","src":"46219:35:51","value":{"arguments":[{"name":"newLen","nativeSrc":"46238:6:51","nodeType":"YulIdentifier","src":"46238:6:51"},{"arguments":[{"kind":"number","nativeSrc":"46250:2:51","nodeType":"YulLiteral","src":"46250:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"46246:3:51","nodeType":"YulIdentifier","src":"46246:3:51"},"nativeSrc":"46246:7:51","nodeType":"YulFunctionCall","src":"46246:7:51"}],"functionName":{"name":"and","nativeSrc":"46234:3:51","nodeType":"YulIdentifier","src":"46234:3:51"},"nativeSrc":"46234:20:51","nodeType":"YulFunctionCall","src":"46234:20:51"},"variables":[{"name":"loopEnd","nativeSrc":"46223:7:51","nodeType":"YulTypedName","src":"46223:7:51","type":""}]},{"nativeSrc":"46267:49:51","nodeType":"YulVariableDeclaration","src":"46267:49:51","value":{"arguments":[{"name":"slot","nativeSrc":"46311:4:51","nodeType":"YulIdentifier","src":"46311:4:51"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"46281:29:51","nodeType":"YulIdentifier","src":"46281:29:51"},"nativeSrc":"46281:35:51","nodeType":"YulFunctionCall","src":"46281:35:51"},"variables":[{"name":"dstPtr","nativeSrc":"46271:6:51","nodeType":"YulTypedName","src":"46271:6:51","type":""}]},{"nativeSrc":"46329:10:51","nodeType":"YulVariableDeclaration","src":"46329:10:51","value":{"kind":"number","nativeSrc":"46338:1:51","nodeType":"YulLiteral","src":"46338:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"46333:1:51","nodeType":"YulTypedName","src":"46333:1:51","type":""}]},{"body":{"nativeSrc":"46409:165:51","nodeType":"YulBlock","src":"46409:165:51","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"46434:6:51","nodeType":"YulIdentifier","src":"46434:6:51"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"46452:3:51","nodeType":"YulIdentifier","src":"46452:3:51"},{"name":"srcOffset","nativeSrc":"46457:9:51","nodeType":"YulIdentifier","src":"46457:9:51"}],"functionName":{"name":"add","nativeSrc":"46448:3:51","nodeType":"YulIdentifier","src":"46448:3:51"},"nativeSrc":"46448:19:51","nodeType":"YulFunctionCall","src":"46448:19:51"}],"functionName":{"name":"mload","nativeSrc":"46442:5:51","nodeType":"YulIdentifier","src":"46442:5:51"},"nativeSrc":"46442:26:51","nodeType":"YulFunctionCall","src":"46442:26:51"}],"functionName":{"name":"sstore","nativeSrc":"46427:6:51","nodeType":"YulIdentifier","src":"46427:6:51"},"nativeSrc":"46427:42:51","nodeType":"YulFunctionCall","src":"46427:42:51"},"nativeSrc":"46427:42:51","nodeType":"YulExpressionStatement","src":"46427:42:51"},{"nativeSrc":"46486:24:51","nodeType":"YulAssignment","src":"46486:24:51","value":{"arguments":[{"name":"dstPtr","nativeSrc":"46500:6:51","nodeType":"YulIdentifier","src":"46500:6:51"},{"kind":"number","nativeSrc":"46508:1:51","nodeType":"YulLiteral","src":"46508:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"46496:3:51","nodeType":"YulIdentifier","src":"46496:3:51"},"nativeSrc":"46496:14:51","nodeType":"YulFunctionCall","src":"46496:14:51"},"variableNames":[{"name":"dstPtr","nativeSrc":"46486:6:51","nodeType":"YulIdentifier","src":"46486:6:51"}]},{"nativeSrc":"46527:33:51","nodeType":"YulAssignment","src":"46527:33:51","value":{"arguments":[{"name":"srcOffset","nativeSrc":"46544:9:51","nodeType":"YulIdentifier","src":"46544:9:51"},{"kind":"number","nativeSrc":"46555:4:51","nodeType":"YulLiteral","src":"46555:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"46540:3:51","nodeType":"YulIdentifier","src":"46540:3:51"},"nativeSrc":"46540:20:51","nodeType":"YulFunctionCall","src":"46540:20:51"},"variableNames":[{"name":"srcOffset","nativeSrc":"46527:9:51","nodeType":"YulIdentifier","src":"46527:9:51"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"46363:1:51","nodeType":"YulIdentifier","src":"46363:1:51"},{"name":"loopEnd","nativeSrc":"46366:7:51","nodeType":"YulIdentifier","src":"46366:7:51"}],"functionName":{"name":"lt","nativeSrc":"46360:2:51","nodeType":"YulIdentifier","src":"46360:2:51"},"nativeSrc":"46360:14:51","nodeType":"YulFunctionCall","src":"46360:14:51"},"nativeSrc":"46352:222:51","nodeType":"YulForLoop","post":{"nativeSrc":"46375:21:51","nodeType":"YulBlock","src":"46375:21:51","statements":[{"nativeSrc":"46377:17:51","nodeType":"YulAssignment","src":"46377:17:51","value":{"arguments":[{"name":"i","nativeSrc":"46386:1:51","nodeType":"YulIdentifier","src":"46386:1:51"},{"kind":"number","nativeSrc":"46389:4:51","nodeType":"YulLiteral","src":"46389:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"46382:3:51","nodeType":"YulIdentifier","src":"46382:3:51"},"nativeSrc":"46382:12:51","nodeType":"YulFunctionCall","src":"46382:12:51"},"variableNames":[{"name":"i","nativeSrc":"46377:1:51","nodeType":"YulIdentifier","src":"46377:1:51"}]}]},"pre":{"nativeSrc":"46356:3:51","nodeType":"YulBlock","src":"46356:3:51","statements":[]},"src":"46352:222:51"},{"body":{"nativeSrc":"46622:166:51","nodeType":"YulBlock","src":"46622:166:51","statements":[{"nativeSrc":"46640:43:51","nodeType":"YulVariableDeclaration","src":"46640:43:51","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"46667:3:51","nodeType":"YulIdentifier","src":"46667:3:51"},{"name":"srcOffset","nativeSrc":"46672:9:51","nodeType":"YulIdentifier","src":"46672:9:51"}],"functionName":{"name":"add","nativeSrc":"46663:3:51","nodeType":"YulIdentifier","src":"46663:3:51"},"nativeSrc":"46663:19:51","nodeType":"YulFunctionCall","src":"46663:19:51"}],"functionName":{"name":"mload","nativeSrc":"46657:5:51","nodeType":"YulIdentifier","src":"46657:5:51"},"nativeSrc":"46657:26:51","nodeType":"YulFunctionCall","src":"46657:26:51"},"variables":[{"name":"lastValue","nativeSrc":"46644:9:51","nodeType":"YulTypedName","src":"46644:9:51","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"46707:6:51","nodeType":"YulIdentifier","src":"46707:6:51"},{"arguments":[{"name":"lastValue","nativeSrc":"46719:9:51","nodeType":"YulIdentifier","src":"46719:9:51"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"46746:1:51","nodeType":"YulLiteral","src":"46746:1:51","type":"","value":"3"},{"name":"newLen","nativeSrc":"46749:6:51","nodeType":"YulIdentifier","src":"46749:6:51"}],"functionName":{"name":"shl","nativeSrc":"46742:3:51","nodeType":"YulIdentifier","src":"46742:3:51"},"nativeSrc":"46742:14:51","nodeType":"YulFunctionCall","src":"46742:14:51"},{"kind":"number","nativeSrc":"46758:3:51","nodeType":"YulLiteral","src":"46758:3:51","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"46738:3:51","nodeType":"YulIdentifier","src":"46738:3:51"},"nativeSrc":"46738:24:51","nodeType":"YulFunctionCall","src":"46738:24:51"},{"arguments":[{"kind":"number","nativeSrc":"46768:1:51","nodeType":"YulLiteral","src":"46768:1:51","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"46764:3:51","nodeType":"YulIdentifier","src":"46764:3:51"},"nativeSrc":"46764:6:51","nodeType":"YulFunctionCall","src":"46764:6:51"}],"functionName":{"name":"shr","nativeSrc":"46734:3:51","nodeType":"YulIdentifier","src":"46734:3:51"},"nativeSrc":"46734:37:51","nodeType":"YulFunctionCall","src":"46734:37:51"}],"functionName":{"name":"not","nativeSrc":"46730:3:51","nodeType":"YulIdentifier","src":"46730:3:51"},"nativeSrc":"46730:42:51","nodeType":"YulFunctionCall","src":"46730:42:51"}],"functionName":{"name":"and","nativeSrc":"46715:3:51","nodeType":"YulIdentifier","src":"46715:3:51"},"nativeSrc":"46715:58:51","nodeType":"YulFunctionCall","src":"46715:58:51"}],"functionName":{"name":"sstore","nativeSrc":"46700:6:51","nodeType":"YulIdentifier","src":"46700:6:51"},"nativeSrc":"46700:74:51","nodeType":"YulFunctionCall","src":"46700:74:51"},"nativeSrc":"46700:74:51","nodeType":"YulExpressionStatement","src":"46700:74:51"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"46593:7:51","nodeType":"YulIdentifier","src":"46593:7:51"},{"name":"newLen","nativeSrc":"46602:6:51","nodeType":"YulIdentifier","src":"46602:6:51"}],"functionName":{"name":"lt","nativeSrc":"46590:2:51","nodeType":"YulIdentifier","src":"46590:2:51"},"nativeSrc":"46590:19:51","nodeType":"YulFunctionCall","src":"46590:19:51"},"nativeSrc":"46587:201:51","nodeType":"YulIf","src":"46587:201:51"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"46808:4:51","nodeType":"YulIdentifier","src":"46808:4:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"46822:1:51","nodeType":"YulLiteral","src":"46822:1:51","type":"","value":"1"},{"name":"newLen","nativeSrc":"46825:6:51","nodeType":"YulIdentifier","src":"46825:6:51"}],"functionName":{"name":"shl","nativeSrc":"46818:3:51","nodeType":"YulIdentifier","src":"46818:3:51"},"nativeSrc":"46818:14:51","nodeType":"YulFunctionCall","src":"46818:14:51"},{"kind":"number","nativeSrc":"46834:1:51","nodeType":"YulLiteral","src":"46834:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"46814:3:51","nodeType":"YulIdentifier","src":"46814:3:51"},"nativeSrc":"46814:22:51","nodeType":"YulFunctionCall","src":"46814:22:51"}],"functionName":{"name":"sstore","nativeSrc":"46801:6:51","nodeType":"YulIdentifier","src":"46801:6:51"},"nativeSrc":"46801:36:51","nodeType":"YulFunctionCall","src":"46801:36:51"},"nativeSrc":"46801:36:51","nodeType":"YulExpressionStatement","src":"46801:36:51"}]},"nativeSrc":"46198:649:51","nodeType":"YulCase","src":"46198:649:51","value":{"kind":"number","nativeSrc":"46203:1:51","nodeType":"YulLiteral","src":"46203:1:51","type":"","value":"1"}},{"body":{"nativeSrc":"46864:234:51","nodeType":"YulBlock","src":"46864:234:51","statements":[{"nativeSrc":"46878:14:51","nodeType":"YulVariableDeclaration","src":"46878:14:51","value":{"kind":"number","nativeSrc":"46891:1:51","nodeType":"YulLiteral","src":"46891:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"46882:5:51","nodeType":"YulTypedName","src":"46882:5:51","type":""}]},{"body":{"nativeSrc":"46927:67:51","nodeType":"YulBlock","src":"46927:67:51","statements":[{"nativeSrc":"46945:35:51","nodeType":"YulAssignment","src":"46945:35:51","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"46964:3:51","nodeType":"YulIdentifier","src":"46964:3:51"},{"name":"srcOffset","nativeSrc":"46969:9:51","nodeType":"YulIdentifier","src":"46969:9:51"}],"functionName":{"name":"add","nativeSrc":"46960:3:51","nodeType":"YulIdentifier","src":"46960:3:51"},"nativeSrc":"46960:19:51","nodeType":"YulFunctionCall","src":"46960:19:51"}],"functionName":{"name":"mload","nativeSrc":"46954:5:51","nodeType":"YulIdentifier","src":"46954:5:51"},"nativeSrc":"46954:26:51","nodeType":"YulFunctionCall","src":"46954:26:51"},"variableNames":[{"name":"value","nativeSrc":"46945:5:51","nodeType":"YulIdentifier","src":"46945:5:51"}]}]},"condition":{"name":"newLen","nativeSrc":"46908:6:51","nodeType":"YulIdentifier","src":"46908:6:51"},"nativeSrc":"46905:89:51","nodeType":"YulIf","src":"46905:89:51"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"47014:4:51","nodeType":"YulIdentifier","src":"47014:4:51"},{"arguments":[{"name":"value","nativeSrc":"47073:5:51","nodeType":"YulIdentifier","src":"47073:5:51"},{"name":"newLen","nativeSrc":"47080:6:51","nodeType":"YulIdentifier","src":"47080:6:51"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"47020:52:51","nodeType":"YulIdentifier","src":"47020:52:51"},"nativeSrc":"47020:67:51","nodeType":"YulFunctionCall","src":"47020:67:51"}],"functionName":{"name":"sstore","nativeSrc":"47007:6:51","nodeType":"YulIdentifier","src":"47007:6:51"},"nativeSrc":"47007:81:51","nodeType":"YulFunctionCall","src":"47007:81:51"},"nativeSrc":"47007:81:51","nodeType":"YulExpressionStatement","src":"47007:81:51"}]},"nativeSrc":"46856:242:51","nodeType":"YulCase","src":"46856:242:51","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"46178:6:51","nodeType":"YulIdentifier","src":"46178:6:51"},{"kind":"number","nativeSrc":"46186:2:51","nodeType":"YulLiteral","src":"46186:2:51","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"46175:2:51","nodeType":"YulIdentifier","src":"46175:2:51"},"nativeSrc":"46175:14:51","nodeType":"YulFunctionCall","src":"46175:14:51"},"nativeSrc":"46168:930:51","nodeType":"YulSwitch","src":"46168:930:51"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"45805:1299:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"45886:4:51","nodeType":"YulTypedName","src":"45886:4:51","type":""},{"name":"src","nativeSrc":"45892:3:51","nodeType":"YulTypedName","src":"45892:3:51","type":""}],"src":"45805:1299:51"}]},"contents":"{\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, sub(shl(160, 1), 1)))\n    }\n    function abi_decode_tuple_t_bytes4(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, shl(224, 0xffffffff)))) { revert(0, 0) }\n        value0 := value\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 copy_memory_to_memory_with_cleanup(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        mstore(add(dst, length), 0)\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory_with_cleanup(add(value, 0x20), add(pos, 0x20), length)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_string_memory_ptr__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 validator_revert_address(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\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        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_contract$_WitOracle_$9915__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_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\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        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_contract$_IWitOracleRadonRequestModal_$10761__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_userDefinedValueType_Timestamp(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_userDefinedValueType$_Timestamp_$13254__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_encode_uint8(value, pos)\n    { mstore(pos, and(value, 0xff)) }\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_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\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_userDefinedValueType$_TransactionHash_$13256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\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_tuple_t_struct$_DataPushReport_$13371_calldata_ptrt_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if slt(sub(dataEnd, _1), 224) { revert(0, 0) }\n        value0 := _1\n        let offset_1 := calldataload(add(headStart, 32))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset_1), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_decode_tuple_t_struct$_WitOracleSettings_$7941_calldata_ptr(headStart, dataEnd) -> value0\n    {\n        let _1 := slt(sub(dataEnd, headStart), 128)\n        if _1 { revert(0, 0) }\n        _1 := 0\n        value0 := headStart\n    }\n    function abi_encode_array_string_dyn(value, pos) -> end\n    {\n        let pos_1 := pos\n        let length := mload(value)\n        mstore(pos, length)\n        pos := add(pos, 0x20)\n        let tail := add(add(pos_1, shl(5, length)), 0x20)\n        let srcPtr := add(value, 0x20)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail, pos_1), not(31)))\n            tail := abi_encode_string(mload(srcPtr), tail)\n            srcPtr := add(srcPtr, 0x20)\n            pos := add(pos, 0x20)\n        }\n        end := tail\n    }\n    function abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_array_string_dyn(value0, add(headStart, 32))\n    }\n    function abi_encode_tuple_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, shl(248, 255)))\n        mstore(add(headStart, 32), 224)\n        let tail_1 := abi_encode_string(value1, add(headStart, 224))\n        mstore(add(headStart, 64), sub(tail_1, headStart))\n        let tail_2 := abi_encode_string(value2, tail_1)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 160), value5)\n        mstore(add(headStart, 192), sub(tail_2, headStart))\n        let pos := tail_2\n        let length := mload(value6)\n        mstore(tail_2, length)\n        pos := add(tail_2, 32)\n        let srcPtr := add(value6, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, 32)\n            srcPtr := add(srcPtr, 32)\n        }\n        tail := pos\n    }\n    function abi_encode_tuple_t_struct$_WitOracleSettings_$7941_memory_ptr__to_t_struct$_WitOracleSettings_$7941_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 128)\n        mstore(headStart, and(mload(value0), 0xffff))\n        mstore(add(headStart, 0x20), and(mload(add(value0, 0x20)), 0xffff))\n        mstore(add(headStart, 0x40), and(mload(add(value0, 0x40)), 0xffffffffffffffff))\n        mstore(add(headStart, 0x60), and(mload(add(value0, 0x60)), 0xffffff))\n    }\n    function validator_revert_uint64(value)\n    {\n        if iszero(eq(value, and(value, 0xffffffffffffffff))) { revert(0, 0) }\n    }\n    function abi_decode_uint64(offset) -> value\n    {\n        value := calldataload(offset)\n        validator_revert_uint64(value)\n    }\n    function abi_decode_tuple_t_uint64t_string_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint64(value)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function abi_encode_enum_WrappingStatus(value, pos)\n    {\n        if iszero(lt(value, 4)) { panic_error_0x21() }\n        mstore(pos, value)\n    }\n    function abi_encode_tuple_t_enum$_WrappingStatus_$7946__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        abi_encode_enum_WrappingStatus(value0, headStart)\n    }\n    function abi_decode_tuple_t_array$_t_userDefinedValueType$_TransactionHash_$13256_$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 _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if gt(add(add(_1, shl(5, length)), 32), dataEnd) { revert(0, 0) }\n        value0 := add(_1, 32)\n        value1 := length\n    }\n    function abi_encode_tuple_t_array$_t_enum$_WrappingStatus_$7946_$dyn_memory_ptr__to_t_array$_t_uint8_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        let tail_1 := add(headStart, 32)\n        mstore(headStart, 32)\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, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            abi_encode_enum_WrappingStatus(mload(srcPtr), pos)\n            pos := add(pos, 32)\n            srcPtr := add(srcPtr, 32)\n        }\n        tail := pos\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_string(value0, add(headStart, 32))\n    }\n    function abi_decode_tuple_t_string_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_bytes_calldata(add(headStart, offset), dataEnd)\n        value0 := value0_1\n        value1 := value1_1\n    }\n    function validator_revert_uint8(value)\n    {\n        if iszero(eq(value, and(value, 0xff))) { revert(0, 0) }\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        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 value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := calldataload(add(headStart, 128))\n        validator_revert_uint8(value_4)\n        value4 := value_4\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 160))\n        value5 := value_5\n        let value_6 := 0\n        value_6 := calldataload(add(headStart, 192))\n        value6 := value_6\n    }\n    function abi_decode_tuple_t_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\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_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function finalize_allocation_6050(memPtr)\n    {\n        let newFreePtr := add(memPtr, 0xc0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function finalize_allocation_6051(memPtr)\n    {\n        let newFreePtr := add(memPtr, 64)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function finalize_allocation_6053(memPtr)\n    {\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 finalize_allocation(memPtr, size)\n    {\n        let newFreePtr := add(memPtr, and(add(size, 31), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function array_allocation_size_string(length) -> size\n    {\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        size := add(and(add(length, 31), not(31)), 0x20)\n    }\n    function abi_decode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr(headStart, dataEnd) -> value0\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 _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let _2 := shl(5, length)\n        let memPtr := mload(64)\n        finalize_allocation(memPtr, add(_2, 32))\n        let dst := memPtr\n        mstore(memPtr, length)\n        dst := add(memPtr, 32)\n        let srcEnd := add(add(_1, _2), 32)\n        if gt(srcEnd, dataEnd) { revert(0, 0) }\n        let src := add(_1, 32)\n        for { } lt(src, srcEnd) { src := add(src, 32) }\n        {\n            let innerOffset := calldataload(src)\n            if gt(innerOffset, 0xffffffffffffffff) { revert(0, 0) }\n            let _3 := add(_1, innerOffset)\n            if iszero(slt(add(_3, 63), dataEnd)) { revert(0, 0) }\n            let length_1 := calldataload(add(_3, 32))\n            let _4 := array_allocation_size_string(length_1)\n            let memPtr_1 := mload(64)\n            finalize_allocation(memPtr_1, _4)\n            mstore(memPtr_1, length_1)\n            if gt(add(add(add(_3, length_1), 32), 32), dataEnd) { revert(0, 0) }\n            calldatacopy(add(memPtr_1, 32), add(_3, 64), length_1)\n            mstore(add(add(memPtr_1, length_1), 32), 0)\n            mstore(dst, memPtr_1)\n            dst := add(dst, 32)\n        }\n        value0 := memPtr\n    }\n    function abi_decode_tuple_t_addresst_string_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\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 offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_encode_tuple_t_userDefinedValueType$_RadonHash_$13250__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\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 abi_encode_tuple_t_contract$_WitOracle_$9915_t_contract$_IWitOracleRadonRequestModal_$10761_t_userDefinedValueType$_TransactionHash_$13256__to_t_address_t_address_t_bytes32__fromStack_library_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := mload(headStart)\n        value0 := value\n    }\n    function abi_encode_tuple_t_stringliteral_fc1d79576d9c1e03d6ff90e81fd853c5eac89b9ed9cb54114db3e1e1ab962297__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 14)\n        mstore(add(headStart, 64), \"already minted\")\n        tail := add(headStart, 96)\n    }\n    function validator_revert_uint16(value)\n    {\n        if iszero(eq(value, and(value, 0xffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_uint16(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint16(value)\n        value0 := value\n    }\n    function calldata_access_bytes_calldata(base_ref, ptr) -> value, length\n    {\n        let rel_offset_of_tail := calldataload(ptr)\n        if iszero(slt(rel_offset_of_tail, add(sub(calldatasize(), base_ref), not(30)))) { revert(0, 0) }\n        let value_1 := add(rel_offset_of_tail, base_ref)\n        length := calldataload(value_1)\n        value := add(value_1, 0x20)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if sgt(value, sub(calldatasize(), length)) { revert(0, 0) }\n    }\n    function abi_encode_bytes_calldata(start, length, pos) -> end\n    {\n        mstore(pos, length)\n        calldatacopy(add(pos, 0x20), start, length)\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n    }\n    function abi_encode_tuple_t_struct$_DataPushReport_$13371_calldata_ptr_t_bytes_calldata_ptr__to_t_struct$_DataPushReport_$13371_memory_ptr_t_bytes_memory_ptr__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let value := 0\n        value := calldataload(value0)\n        mstore(add(headStart, 64), value)\n        let value_1 := 0\n        value_1 := calldataload(add(value0, 0x20))\n        mstore(add(headStart, 96), value_1)\n        let value_2 := calldataload(add(value0, 64))\n        validator_revert_uint16(value_2)\n        mstore(add(headStart, 128), and(value_2, 0xffff))\n        let value_3 := calldataload(add(value0, 96))\n        validator_revert_uint16(value_3)\n        mstore(add(headStart, 160), and(value_3, 0xffff))\n        let value_4 := calldataload(add(value0, 128))\n        validator_revert_uint64(value_4)\n        mstore(add(headStart, 192), and(value_4, 0xffffffffffffffff))\n        let memberValue0 := abi_decode_uint64(add(value0, 160))\n        abi_encode_userDefinedValueType_Timestamp(memberValue0, add(headStart, 0xe0))\n        let memberValue0_1, memberValue1 := calldata_access_bytes_calldata(value0, add(value0, 192))\n        mstore(add(headStart, 256), 0xe0)\n        let end := abi_encode_bytes_calldata(memberValue0_1, memberValue1, add(headStart, 288))\n        mstore(add(headStart, 0x20), sub(end, headStart))\n        tail := abi_encode_bytes_calldata(value1, value2, end)\n    }\n    function abi_decode_enum_RadonDataTypes_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        if iszero(lt(value, 20)) { revert(0, 0) }\n    }\n    function abi_decode_userDefinedValueType_Timestamp_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint64(value)\n    }\n    function abi_decode_bytes_fromMemory(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let length := mload(offset)\n        let src := add(offset, 0x20)\n        let array_1 := 0\n        let _1 := array_allocation_size_string(length)\n        let memPtr := mload(64)\n        finalize_allocation(memPtr, _1)\n        array_1 := memPtr\n        mstore(memPtr, length)\n        if gt(add(src, length), end) { revert(0, 0) }\n        copy_memory_to_memory_with_cleanup(src, add(memPtr, 0x20), length)\n        array := memPtr\n    }\n    function abi_decode_uint8_fromMemory(offset) -> value\n    {\n        value := mload(offset)\n        validator_revert_uint8(value)\n    }\n    function abi_decode_struct_CBOR_fromMemory(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0xc0) { revert(0, 0) }\n        let memPtr := mload(64)\n        finalize_allocation_6050(memPtr)\n        value := memPtr\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if slt(sub(end, _1), 64) { revert(0, 0) }\n        let memPtr_1 := mload(64)\n        finalize_allocation_6051(memPtr_1)\n        let offset_1 := mload(_1)\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        mstore(memPtr_1, abi_decode_bytes_fromMemory(add(_1, offset_1), end))\n        let value_1 := 0\n        value_1 := mload(add(_1, 32))\n        mstore(add(memPtr_1, 32), value_1)\n        mstore(memPtr, memPtr_1)\n        mstore(add(memPtr, 32), abi_decode_uint8_fromMemory(add(headStart, 32)))\n        mstore(add(memPtr, 64), abi_decode_uint8_fromMemory(add(headStart, 64)))\n        mstore(add(memPtr, 96), abi_decode_uint8_fromMemory(add(headStart, 96)))\n        mstore(add(memPtr, 128), abi_decode_userDefinedValueType_Timestamp_fromMemory(add(headStart, 128)))\n        mstore(add(memPtr, 160), abi_decode_userDefinedValueType_Timestamp_fromMemory(add(headStart, 160)))\n    }\n    function abi_decode_tuple_t_struct$_DataResult_$13388_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if slt(sub(dataEnd, _1), 0xa0) { revert(0, 0) }\n        let memPtr := mload(64)\n        finalize_allocation_6053(memPtr)\n        let value := mload(_1)\n        if iszero(lt(value, 256)) { revert(0, 0) }\n        mstore(memPtr, value)\n        mstore(add(memPtr, 32), abi_decode_enum_RadonDataTypes_fromMemory(add(_1, 32)))\n        let value_1 := 0\n        value_1 := mload(add(_1, 64))\n        mstore(add(memPtr, 64), value_1)\n        mstore(add(memPtr, 96), abi_decode_userDefinedValueType_Timestamp_fromMemory(add(_1, 96)))\n        let offset_1 := mload(add(_1, 128))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        mstore(add(memPtr, 128), abi_decode_struct_CBOR_fromMemory(add(_1, offset_1), dataEnd))\n        value0 := memPtr\n    }\n    function abi_encode_tuple_t_struct$_DataResult_$13388_memory_ptr__to_t_struct$_DataResult_$13388_memory_ptr__fromStack_library_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        let _1 := mload(value0)\n        if iszero(lt(_1, 256)) { panic_error_0x21() }\n        mstore(add(headStart, 32), _1)\n        let memberValue0 := mload(add(value0, 32))\n        if iszero(lt(memberValue0, 20)) { panic_error_0x21() }\n        mstore(add(headStart, 64), memberValue0)\n        mstore(add(headStart, 96), mload(add(value0, 64)))\n        mstore(add(headStart, 128), and(mload(add(value0, 96)), 0xffffffffffffffff))\n        let memberValue0_1 := mload(add(value0, 128))\n        mstore(add(headStart, 0xa0), 0xa0)\n        let memberValue0_2 := mload(memberValue0_1)\n        mstore(add(headStart, 192), 192)\n        let memberValue0_3 := mload(memberValue0_2)\n        mstore(add(headStart, 384), 64)\n        let tail_1 := abi_encode_string(memberValue0_3, add(headStart, 448))\n        mstore(add(headStart, 416), mload(add(memberValue0_2, 32)))\n        mstore(add(headStart, 224), and(mload(add(memberValue0_1, 32)), 0xff))\n        let memberValue0_4 := mload(add(memberValue0_1, 64))\n        abi_encode_uint8(memberValue0_4, add(headStart, 256))\n        let memberValue0_5 := mload(add(memberValue0_1, 96))\n        abi_encode_uint8(memberValue0_5, add(headStart, 288))\n        let memberValue0_6 := mload(add(memberValue0_1, 128))\n        abi_encode_userDefinedValueType_Timestamp(memberValue0_6, add(headStart, 320))\n        let memberValue0_7 := mload(add(memberValue0_1, 0xa0))\n        abi_encode_userDefinedValueType_Timestamp(memberValue0_7, add(headStart, 352))\n        tail := tail_1\n    }\n    function abi_decode_tuple_t_uint64_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_uint64(value)\n        value0 := value\n    }\n    function return_data_selector() -> sig\n    {\n        if gt(returndatasize(), 3)\n        {\n            returndatacopy(0, 0, 4)\n            sig := shr(224, mload(0))\n        }\n    }\n    function try_decode_error_message() -> ret\n    {\n        if lt(returndatasize(), 0x44) { leave }\n        let data := mload(64)\n        returndatacopy(data, 4, add(returndatasize(), not(3)))\n        let offset := mload(data)\n        if or(gt(offset, 0xffffffffffffffff), gt(add(offset, 0x24), returndatasize())) { leave }\n        let msg := add(data, offset)\n        let length := mload(msg)\n        if gt(length, 0xffffffffffffffff) { leave }\n        if gt(add(add(msg, length), 0x20), add(add(data, returndatasize()), not(3))) { leave }\n        finalize_allocation(data, add(add(offset, length), 0x20))\n        ret := msg\n    }\n    function abi_encode_tuple_t_uint64_t_userDefinedValueType$_Timestamp_$13254_t_userDefinedValueType$_TransactionHash_$13256__to_t_uint256_t_uint64_t_bytes32__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffff))\n        mstore(add(headStart, 64), value2)\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        validator_revert_uint64(value)\n        value0 := value\n    }\n    function validator_revert_uint24(value)\n    {\n        if iszero(eq(value, and(value, 0xffffff))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_uint24(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_uint24(value)\n        value0 := value\n    }\n    function panic_error_0x01()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x01)\n        revert(0, 0x24)\n    }\n    function update_storage_value_offset_0_t_struct$_WitOracleSettings_$7941_calldata_ptr_to_t_struct$_WitOracleSettings_$7941_storage(slot, value)\n    {\n        let value_1 := calldataload(value)\n        validator_revert_uint16(value_1)\n        let _1 := and(value_1, 0xffff)\n        let _2 := sload(slot)\n        sstore(slot, or(and(_2, not(65535)), _1))\n        let value_2 := calldataload(add(value, 32))\n        validator_revert_uint16(value_2)\n        let toInsert := and(shl(16, value_2), 0xffff0000)\n        sstore(slot, or(or(and(_2, not(0xffffffff)), _1), toInsert))\n        let value_3 := calldataload(add(value, 64))\n        validator_revert_uint64(value_3)\n        sstore(slot, or(or(toInsert, or(and(_2, not(0xffffffffffffffffffffffff)), _1)), and(shl(32, value_3), 0xffffffffffffffff00000000)))\n        let returnValue := 0\n        let value_4 := calldataload(add(value, 96))\n        validator_revert_uint24(value_4)\n        returnValue := value_4\n        let _3 := sload(slot)\n        sstore(slot, or(and(_3, not(shl(96, 16777215))), and(shl(96, value_4), shl(96, 16777215))))\n    }\n    function abi_encode_tuple_t_stringliteral_596712763af5ad819c1a1c8db05ac93e50918d28937626717ff5e1d919b4454a__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), \"not enough balance\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c2f7d7791943b6f0be2f5c4696e74b461af6db49d575243d9759641d2894e1d5__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), \"cannot unwrap that much\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_80c95633eb4d36a63978e9d13e657c438c0d395a23eb33de58bf1d9758a73228__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 17)\n        mstore(add(headStart, 64), \"invalid recipient\")\n        tail := add(headStart, 96)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_uint64(x, y) -> diff\n    {\n        diff := sub(and(x, 0xffffffffffffffff), and(y, 0xffffffffffffffff))\n        if gt(diff, 0xffffffffffffffff) { panic_error_0x11() }\n    }\n    function increment_t_uint64(value) -> ret\n    {\n        let value_1 := and(value, 0xffffffffffffffff)\n        if eq(value_1, 0xffffffffffffffff) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function abi_encode_tuple_t_address_t_string_calldata_ptr_t_uint64_t_uint256__to_t_address_t_string_memory_ptr_t_uint256_t_uint256__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), 128)\n        tail := abi_encode_bytes_calldata(value1, value2, add(headStart, 128))\n        mstore(add(headStart, 64), and(value3, 0xffffffffffffffff))\n        mstore(add(headStart, 96), value4)\n    }\n    function abi_decode_tuple_t_enum$_QueryStatus_$13430_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := mload(headStart)\n        if iszero(lt(value, 7)) { revert(0, 0) }\n        value0 := value\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function abi_decode_tuple_t_contract$_IWitOracleRadonRegistry_$10616_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_bytes_memory_ptr_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let offset := mload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        value0 := abi_decode_bytes_fromMemory(add(headStart, offset), dataEnd)\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        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 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_address_t_address__to_t_address_t_address__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), and(value1, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint256_t_bytes_calldata_ptr__to_t_uint256_t_bytes_memory_ptr__fromStack_library_reversed(headStart, value2, value1, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 64)\n        tail := abi_encode_bytes_calldata(value1, value2, add(headStart, 64))\n    }\n    function abi_decode_tuple_t_userDefinedValueType$_TransactionHash_$13256t_string_memory_ptrt_string_memory_ptrt_addresst_uint64_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        let value := 0\n        value := mload(headStart)\n        value0 := value\n        let offset := mload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        value1 := abi_decode_bytes_fromMemory(add(headStart, offset), dataEnd)\n        let offset_1 := mload(add(headStart, 64))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        value2 := abi_decode_bytes_fromMemory(add(headStart, offset_1), dataEnd)\n        let value_1 := mload(add(headStart, 96))\n        validator_revert_address(value_1)\n        value3 := value_1\n        let value_2 := mload(add(headStart, 128))\n        validator_revert_uint64(value_2)\n        value4 := value_2\n    }\n    function abi_encode_tuple_t_string_memory_ptr_t_address_t_uint64_t_userDefinedValueType$_TransactionHash_$13256__to_t_string_memory_ptr_t_address_t_uint256_t_bytes32__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, 128)\n        tail := abi_encode_string(value0, add(headStart, 128))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, 0xffffffffffffffff))\n        mstore(add(headStart, 96), value3)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function checked_div_t_uint16(x, y) -> r\n    {\n        let y_1 := and(y, 0xffff)\n        if iszero(y_1) { panic_error_0x12() }\n        r := div(and(x, 0xffff), y_1)\n    }\n    function abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_packed_t_stringliteral_6464deb7a08899e125b23ae34c4cefa9ab1fa68b40b002bbb3ffd32198544726_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        mstore(pos, \"WrappedWIT: \")\n        let length := mload(value0)\n        copy_memory_to_memory_with_cleanup(add(value0, 0x20), add(pos, 12), length)\n        end := add(add(pos, length), 12)\n    }\n    function abi_encode_tuple_t_stringliteral_804d16c791056572535f8e2036ddf984da7d771fd478e9d9544d867a673dae25__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), \"Bech32: invalid length\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_fd568fffd58e4623e9037429de35dafd51a2e3c636d36cf6c06518f7d2565153__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), \"unacceptable unwrapper\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint256_t_uint24__to_t_uint256_t_uint24__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, 0xffffff))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        product := mul(x, y)\n        if iszero(or(iszero(x), eq(y, div(product, x)))) { panic_error_0x11() }\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 abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, 64)\n        let tail_1 := abi_encode_array_string_dyn(value0, add(headStart, 64))\n        mstore(add(headStart, 32), sub(tail_1, headStart))\n        tail := abi_encode_array_string_dyn(value1, tail_1)\n    }\n    function abi_decode_tuple_t_userDefinedValueType$_RadonHash_$13250_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := mload(headStart)\n        value0 := value\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), not(0xffffffffffffffffffffffff)))\n        end := add(pos, 20)\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_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory_with_cleanup(add(value0, 0x20), pos, length)\n        end := add(pos, length)\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_stringliteral_fbafcdcf532b64f842ae9e16c3ebe22680908b0bd1d2499a181aa780163d1903__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), \"Bech32: invalid string length\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_53dc06d622ffc4876df233985214fd280a387287ffe9d0e519654cae6b62b983__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), \"Bech32: wrong char\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_0d3bbdc5952ddfc25bafa340466db68d17d1faf42dd154469a20b429a3742415__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), \"Bech32: wrong pos of 1\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6a2cf2966ea32b348a1a2f630ac8faca290d4a2ab07de89caf8dae5717c1d46d__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), \"Bech32: byte not in alphabet\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8925955b412698449f23fd1db0ca5278ae982350c0d6a43502b6059204e31edc__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), \"Bech32: wrong checksum\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_cc3b15adba6692e0236e3ef91314dd5f2f6b9fc7d497a8d9fca03d4d32ef0086__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), \"Bech32: hrp mismatch\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e61d0d29c666259da088b9a4a3c73f42db070a7c6e4ed8d249944652ec7c2cf8__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), \"Bech32: invalid data length\")\n        tail := add(headStart, 96)\n    }\n    function increment_t_uint32(value) -> ret\n    {\n        let value_1 := and(value, 0xffffffff)\n        if eq(value_1, 0xffffffff) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_stringliteral_c3d844aee3a847f0e164a11470dfaf03e0661e60bf8b0718b82a475dc4773582__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), \"Bech32: value must be non-negati\")\n        mstore(add(headStart, 96), \"ve and fit in frombits\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_packed_t_bytes_memory_ptr_t_bytes1__to_t_bytes_memory_ptr_t_bytes1__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory_with_cleanup(add(value0, 0x20), pos, length)\n        let end_1 := add(pos, length)\n        mstore(end_1, and(value1, shl(248, 255)))\n        end := add(end_1, 1)\n    }\n    function abi_encode_tuple_t_stringliteral_e94f6be74a97f1cb3bd761cbce886a47861edc099a5ca2546d140eebfb9c3780__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), \"Bech32: invalid padding or value\")\n        mstore(add(headStart, 96), \" size\")\n        tail := add(headStart, 128)\n    }\n    function array_dataslot_string_storage(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\n    }\n    function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n    {\n        if gt(len, 31)\n        {\n            mstore(0, array)\n            let data := keccak256(0, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _1 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _1) { start := add(start, 1) }\n            { sstore(start, 0) }\n        }\n    }\n    function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n    {\n        used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n    }\n    function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n    {\n        let newLen := mload(src)\n        if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n        let srcOffset := 0\n        srcOffset := 0x20\n        switch gt(newLen, 31)\n        case 1 {\n            let loopEnd := and(newLen, not(31))\n            let dstPtr := array_dataslot_string_storage(slot)\n            let i := 0\n            for { } lt(i, loopEnd) { i := add(i, 0x20) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, newLen)\n            {\n                let lastValue := mload(add(src, srcOffset))\n                sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, newLen), 1))\n        }\n        default {\n            let value := 0\n            if newLen\n            {\n                value := mload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n        }\n    }\n}","id":51,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"3881":[{"length":32,"start":8747}],"3883":[{"length":32,"start":8705}],"3885":[{"length":32,"start":8663}],"3887":[{"length":32,"start":8828}],"3889":[{"length":32,"start":8868}],"3892":[{"length":32,"start":9078}],"3895":[{"length":32,"start":9123}],"8151":[{"length":32,"start":802},{"length":32,"start":1161},{"length":32,"start":2829},{"length":32,"start":3319},{"length":32,"start":5500},{"length":32,"start":5872},{"length":32,"start":6625},{"length":32,"start":7131}],"8154":[{"length":32,"start":972},{"length":32,"start":10206}],"8157":[{"length":32,"start":2175},{"length":32,"start":2869}],"8160":[{"length":32,"start":4847},{"length":32,"start":6141}],"8162":[{"length":32,"start":6947},{"length":32,"start":9341}]},"linkReferences":{"contracts/WrappedWITLib.sol":{"WrappedWITLib":[{"length":20,"start":2918},{"length":20,"start":3465},{"length":20,"start":6726}]}},"object":"6080604052600436106102675760003560e01c806377cc7a3a11610144578063acb734bb116100b6578063dd62ed3e1161007a578063dd62ed3e146107c7578063ddb2bf5c1461080d578063ea9e96a61461082d578063f399e22e1461084d578063f69a00b61461086d578063fec53a14146108a157600080fd5b8063acb734bb1461073d578063b3f120a114610752578063c65a20f014610767578063d505accf14610787578063d6f29e81146107a757600080fd5b806391f4f96c1161010857806391f4f96c1461067957806395d89b411461068e578063a41942a4146106a3578063a53cb851146106c3578063a9059cbb146106f0578063aa22dc331461071057600080fd5b806377cc7a3a1461058e5780637ecebe00146105ae57806384b0196e146105ce578063873234cf146105f65780638a510f271461065957600080fd5b806330315dc4116101dd5780635f029ebe116101a15780635f029ebe146104ce5780636aaa54cf146104e15780636d0d6a7e146104f65780636df0627e1461051657806370a082311461053657806371d41eb31461056c57600080fd5b806330315dc41461040e578063313ce5671461043b5780633644e5151461045757806347a10e561461046c578063520a5495146104b957600080fd5b8063147040de1161022f578063147040de1461034457806318160ddd1461035957806318bf50771461037857806323b872dd1461039a57806327ae6883146103ba5780632b8c49e3146103ee57600080fd5b806301367f731461026c57806301ffc9a71461029e57806306fdde03146102ce578063095ea7b3146102f05780631014d37514610310575b600080fd5b34801561027857600080fd5b506102816108b6565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156102aa57600080fd5b506102be6102b9366004613d2a565b6108cf565b6040519015158152602001610295565b3480156102da57600080fd5b506102e3610906565b6040516102959190613da4565b3480156102fc57600080fd5b506102be61030b366004613dcc565b610998565b34801561031c57600080fd5b506102817f000000000000000000000000000000000000000000000000000000000000000081565b34801561035057600080fd5b506102e36109b0565b34801561036557600080fd5b506002545b604051908152602001610295565b34801561038457600080fd5b50610398610393366004613dcc565b6109dd565b005b3480156103a657600080fd5b506102be6103b5366004613df8565b610a35565b3480156103c657600080fd5b506102817f000000000000000000000000000000000000000000000000000000000000000081565b3480156103fa57600080fd5b50610398610409366004613dcc565b610a59565b34801561041a57600080fd5b50610423610aa9565b6040516001600160401b039091168152602001610295565b34801561044757600080fd5b5060405160098152602001610295565b34801561046357600080fd5b5061036a610ac9565b34801561047857600080fd5b506102be610487366004613e39565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b3480156104c557600080fd5b5061036a610ad3565b61036a6104dc366004613e56565b610af6565b3480156104ed57600080fd5b5061036a610c12565b34801561050257600080fd5b50610398610511366004613eb7565b610c35565b34801561052257600080fd5b50610398610531366004613f28565b610f15565b34801561054257600080fd5b5061036a610551366004613e39565b6001600160a01b031660009081526020819052604090205490565b34801561057857600080fd5b50610581610ff5565b6040516102959190613f93565b34801561059a57600080fd5b5061036a6105a9366004613e56565b6110d7565b3480156105ba57600080fd5b5061036a6105c9366004613e39565b6110f5565b3480156105da57600080fd5b506105e3611113565b6040516102959796959493929190613fa6565b34801561060257600080fd5b5061060b611159565b6040516102959190600060808201905061ffff835116825261ffff60208401511660208301526001600160401b03604084015116604083015262ffffff606084015116606083015292915050565b34801561066557600080fd5b5061036a61067436600461405e565b6111d8565b34801561068557600080fd5b5061036a611436565b34801561069a57600080fd5b506102e3611452565b3480156106af57600080fd5b506103986106be366004613e39565b611461565b3480156106cf57600080fd5b506106e36106de366004613e56565b611522565b60405161029591906140a8565b3480156106fc57600080fd5b506102be61070b366004613dcc565b61161c565b34801561071c57600080fd5b5061073061072b3660046140b6565b61162a565b604051610295919061412b565b34801561074957600080fd5b506102e36116ec565b34801561075e57600080fd5b506102e36117ed565b34801561077357600080fd5b50610398610782366004614176565b611826565b34801561079357600080fd5b506103986107a23660046141c6565b6118a2565b3480156107b357600080fd5b506103986107c2366004614237565b6119dc565b3480156107d357600080fd5b5061036a6107e2366004614269565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561081957600080fd5b5061036a610828366004613e56565b611bd4565b34801561083957600080fd5b5061039861084836600461436e565b611c00565b34801561085957600080fd5b5061039861086836600461448b565b611c85565b34801561087957600080fd5b506102817f000000000000000000000000000000000000000000000000000000000000000081565b3480156108ad57600080fd5b5061036a611fc2565b60006108c0611fd5565b546001600160a01b0316919050565b60006001600160e01b03198216630cccc66560e21b148061090057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060038054610915906144ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610941906144ab565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b5050505050905090565b6000336109a6818585611ff9565b5060019392505050565b60606109d8600146146109c1611fd5565b6002015460601b6001600160601b03191690612006565b905090565b6109e633612057565b6109f08282612086565b60405181815233906001600160a01b038416907fde22baff038e3a3e08407cbdf617deed74e869a7ba517df611e33131c6e6ea04906020015b60405180910390a35050565b600033610a438582856120bc565b610a4e858585612135565b506001949350505050565b610a6233612057565b610a6c8282612194565b60405181815233906001600160a01b038416907fb90795a66650155983e242cac3e1ac1a4dc26f8ed2987f3ce416a34e00111fd490602001610a29565b6000610ab3611fd5565b54600160c01b90046001600160401b0316919050565b60006109d86121ca565b6000610add611fd5565b60010154600160401b90046001600160401b0316919050565b604051633752120b60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301527f00000000000000000000000000000000000000000000000000000000000000001660248201526044810182905260009073__$928ef700fe09700756683be525388ce8a3$__90633752120b90606401602060405180830381865af4158015610ba0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc491906144df565b90506000198103610c0d5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b60448201526064015b60405180910390fd5b919050565b6000610c1c611fd5565b60010154600160801b90046001600160401b0316919050565b610c92610c40611fd5565b6003015461ffff16610c586080860160608701614508565b61ffff16101560405180604001604052806016815260200175696e73756666696369656e74207769746e657373657360501b8152506122f8565b610cdd610cad610ca0611fd5565b6005015460208601351490565b604051806040016040528060128152602001710d2dcecc2d8d2c840e4c2c8dedc40d0c2e6d60731b8152506122f8565b604051633686b53f60e11b81526000906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636d0d6a7e90610d3090879087908790600401614593565b6000604051808303816000875af1158015610d4f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d7791908101906147aa565b6040516367c4440f60e01b815290915073__$928ef700fe09700756683be525388ce8a3$__906367c4440f90610db1908490600401614861565b602060405180830381865af4925050508015610dea575060408051601f3d908101601f19168201909252610de79181019061494e565b60015b610e5e57610df661496b565b806308c379a003610e245750610e0a614986565b80610e155750610e26565b610e1e81612302565b50610f0f565b505b3d808015610e50576040519150601f19603f3d011682016040523d82523d6000602084013e610e55565b606091505b50610e1e612339565b60608083015160408085015181516001600160401b0380871682529093166020840152908201527f8a01b18bdca3d556adc5e6a85f562b83d2c1933f166e93421ff507cfccb09a07910160405180910390a180610eb9611fd5565b600101805467ffffffffffffffff19166001600160401b03929092169190911790556060820151610ee8611fd5565b80546001600160401b0392909216600160c01b026001600160c01b03909216919091179055505b50505050565b610f1d611fd5565b546001600160a01b0316336001600160a01b031614610f4e576040516282b42960e81b815260040160405180910390fd5b6003610f5d6020830183614508565b61ffff1610158015610f8357506032610f7c6040830160208401614508565b61ffff1611155b8015610fab5750630bebc200610f9f6060830160408401614a09565b6001600160401b031610155b8015610fce575062033450610fc66080830160608401614a37565b62ffffff1610155b610fda57610fda614a54565b80610fe3611fd5565b600301610ff08282614a6a565b505050565b6060610fff611fd5565b600401805480602002602001604051908101604052809291908181526020016000905b828210156110ce578382906000526020600020018054611041906144ab565b80601f016020809104026020016040519081016040528092919081815260200182805461106d906144ab565b80156110ba5780601f1061108f576101008083540402835291602001916110ba565b820191906000526020600020905b81548152906001019060200180831161109d57829003601f168201915b505050505081526020019060010190611022565b50505050905090565b60006110e1611fd5565b600092835260060160205250604090205490565b6001600160a01b038116600090815260076020526040812054610900565b60006060806000806000606061112761236f565b61112f61239c565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b604080516080810182526000808252602082018190529181018290526060810191909152611185611fd5565b604080516080810182526003929092015461ffff808216845262010000820416602084015264010000000081046001600160401b031691830191909152600160601b900462ffffff166060820152919050565b60006001600160401b0384166111ed33610551565b10156112305760405162461bcd60e51b81526020600482015260126024820152716e6f7420656e6f7567682062616c616e636560701b6044820152606401610c04565b600061123a611fd5565b600101546001600160401b039081169150851681101561129c5760405162461bcd60e51b815260206004820152601760248201527f63616e6e6f7420756e777261702074686174206d7563680000000000000000006044820152606401610c04565b60006112e285858080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250504660011491506123c99050565b90506001600160601b03197f00000000000000000000000000000000000000000000000000000000000000008116908216036113545760405162461bcd60e51b81526020600482015260116024820152701a5b9d985b1a59081c9958da5c1a595b9d607a1b6044820152606401610c04565b61135e8683614b32565b611366611fd5565b600101805467ffffffffffffffff19166001600160401b039283161790556113919033908816612194565b611399611fd5565b60010180546008906113ba90600160401b90046001600160401b0316614b51565b91906101000a8154816001600160401b0302191690836001600160401b0316021790556001600160401b031692507f0ac1547df8510f30b54430e0e4e1e93ce326490aec9cebf0f78b8faa55dc1ded6114103390565b86868987604051611425959493929190614b7c565b60405180910390a150509392505050565b6000611440611fd5565b600101546001600160401b0316919050565b606060048054610915906144ab565b611469611fd5565b546001600160a01b0316336001600160a01b03161461149a576040516282b42960e81b815260040160405180910390fd5b6001600160a01b0381166114b0576114b0614a54565b806001600160a01b03166114c2611fd5565b546040516001600160a01b03909116907fc63757acc12b39558fe5b88c5393e4b0353ffddaae3a2d07e121a8fc62d39c3790600090a380611501611fd5565b80546001600160a01b0319166001600160a01b039290921691909117905550565b60008061152d611fd5565b6000848152600691909101602052604081205491508190036115525750600092915050565b60001981036115645750600392915050565b6001604051631bc1eaf360e21b8152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690636f07abcc90602401602060405180830381865afa1580156115cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ef9190614bbe565b60068111156116005761160061407e565b1461160c57600261160f565b60015b9392505050565b50919050565b6000336109a6818585612135565b6060816001600160401b03811115611644576116446142a2565b60405190808252806020026020018201604052801561166d578160200160208202803683370190505b50905060005b828110156116e55761169c84848381811061169057611690614bdf565b90506020020135611522565b8282815181106116ae576116ae614bdf565b602002602001019060038111156116c7576116c761407e565b908160038111156116da576116da61407e565b905250600101611673565b5092915050565b60607f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316637b1039996040518163ffffffff1660e01b8152600401602060405180830381865afa15801561174c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117709190614bf5565b6001600160a01b0316638a227764611786611fd5565b600501546040518263ffffffff1660e01b81526004016117a891815260200190565b600060405180830381865afa1580156117c5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526109d89190810190614c12565b60606109d86001600160601b03197f00000000000000000000000000000000000000000000000000000000000000001646600114612006565b61182e611fd5565b546001600160a01b0316336001600160a01b03161461185f576040516282b42960e81b815260040160405180910390fd5b61189e82828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061247b92505050565b5050565b834211156118c65760405163313c898160e11b815260048101859052602401610c04565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886119138c6001600160a01b0316600090815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061196e82612635565b9050600061197e82878787612662565b9050896001600160a01b0316816001600160a01b0316146119c5576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401610c04565b6119d08a8a8a611ff9565b50505050505050505050565b611a377f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146040518060400160405280600e81526020016d696e76616c6964206f7261636c6560901b8152506122f8565b604051635d933eb760e01b815273__$928ef700fe09700756683be525388ce8a3$__90635d933eb790611a7290869086908690600401614c4e565b600060405180830381865af4925050508015611ab057506040513d6000823e601f3d908101601f19168201604052611aad9190810190614c68565b60015b611b1e57611abc61496b565b806308c379a003611ae45750611ad0614986565b80611adb5750611ae6565b610f0f81612302565b505b3d808015611b10576040519150601f19603f3d011682016040523d82523d6000602084013e611b15565b606091505b50610f0f612339565b611b7a7f00000000000000000000000000000000000000000000000000000000000000008580519060200120146040518060400160405280601181526020017034b73b30b634b21031bab9ba37b234b0b760791b8152506122f8565b611b8d82826001600160401b0316612086565b7fbae099c209765c02c309f0fac06aec3ac516a3cc60d09f1a3da4b52d673d28a383838388604051611bc29493929190614d02565b60405180910390a15050505050505050565b60006109007f000000000000000000000000000000000000000000000000000000000000000083612690565b611c08611fd5565b546001600160a01b0316336001600160a01b031614611c39576040516282b42960e81b815260040160405180910390fd5b6000815111611c4a57611c4a614a54565b80611c53611fd5565b6004019080519060200190611c69929190613c6d565b50611c8281611c7d600146146109c1611fd5565b612753565b50565b6000611c8f612869565b805490915060ff600160401b82041615906001600160401b0316600081158015611cb65750825b90506000826001600160401b03166001148015611cd25750303b155b905081158015611ce0575080155b15611cfe5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611d2857845460ff60401b1916600160401b1785555b87611d31611fd5565b80546001600160a01b0319166001600160a01b03928316179055604051908916906000907fc63757acc12b39558fe5b88c5393e4b0353ffddaae3a2d07e121a8fc62d39c37908290a3604051806080016040528060014614611d94576003611d97565b600c5b61ffff168152602001611dac600a6032614d59565b61ffff168152630bebc200602082015262033450604090910152611dce611fd5565b8151600391909101805460208085015160408087015160609097015162ffffff16600160601b0262ffffff60601b196001600160401b0390981664010000000002979097166effffffffffffffffffffff000000001961ffff938416620100000263ffffffff19909616939097169290921793909317949094169390931793909317905581516001808252818401909352600092909182015b6060815260200190600190039081611e6757905050905060014614611ec1576040518060400160405280601d81526020017f68747470733a2f2f7270632d746573746e65742e7769746e65742e696f000000815250611ef8565b6040518060400160405280601881526020017f68747470733a2f2f7270632d30312e7769746e65742e696f00000000000000008152505b81600081518110611f0b57611f0b614bdf565b602002602001018190525080611f1f611fd5565b6004019080519060200190611f35929190613c6d565b50611f7588888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061247b92505050565b508315611fb857845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611bc2565b5050505050505050565b6000611fcc611fd5565b60050154905090565b7f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58f990565b610ff08383836001612892565b606061160f8360601c8361203657604051806040016040528060048152602001631d1dda5d60e21b815250612967565b604051806040016040528060038152602001621dda5d60ea1b815250612967565b6001600160a01b0381166028602160991b0114611c82576040516282b42960e81b815260040160405180910390fd5b6001600160a01b0382166120b05760405163ec442f0560e01b815260006004820152602401610c04565b61189e6000838361299b565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811015610f0f578181101561212657604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610c04565b610f0f84848484036000612892565b6001600160a01b03831661215f57604051634b637e8f60e11b815260006004820152602401610c04565b6001600160a01b0382166121895760405163ec442f0560e01b815260006004820152602401610c04565b610ff083838361299b565b6001600160a01b0382166121be57604051634b637e8f60e11b815260006004820152602401610c04565b61189e8260008361299b565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561222357507f000000000000000000000000000000000000000000000000000000000000000046145b1561224d57507f000000000000000000000000000000000000000000000000000000000000000090565b6109d8604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b90565b8161189e5761189e815b806040516020016123139190614d7d565b60408051601f198184030181529082905262461bcd60e51b8252610c0491600401613da4565b61236d604051806040016040528060138152602001723ab73430b7323632b21032bc31b2b83a34b7b760691b815250612302565b565b60606109d87f00000000000000000000000000000000000000000000000000000000000000006005612ac5565b60606109d87f00000000000000000000000000000000000000000000000000000000000000006006612ac5565b6000816123d757602b6123da565b602a5b60ff168351146124255760405162461bcd60e51b8152602060048201526016602482015275084cac6d066647440d2dcecc2d8d2c840d8cadccee8d60531b6044820152606401610c04565b612471838361245057604051806040016040528060048152602001631d1dda5d60e21b815250612b70565b604051806040016040528060038152602001621dda5d60ea1b815250612b70565b60601b9392505050565b7f00000000000000000000000000000000000000000000000000000000000000008180519060200120036124ea5760405162461bcd60e51b81526020600482015260166024820152753ab730b1b1b2b83a30b13632903ab73bb930b83832b960511b6044820152606401610c04565b7faf2313438cf7747b4740d0822c1e7683638361ace0daa8f1c4d5a15d57f4ef04816040516125199190613da4565b60405180910390a161252e81600146146123c9565b612536611fd5565b60020180546001600160a01b03191660609290921c919091179055611c8261255c611fd5565b600401805480602002602001604051908101604052809291908181526020016000905b8282101561262b57838290600052602060002001805461259e906144ab565b80601f01602080910402602001604051908101604052809291908181526020018280546125ca906144ab565b80156126175780601f106125ec57610100808354040283529160200191612617565b820191906000526020600020905b8154815290600101906020018083116125fa57829003601f168201915b50505050508152602001906001019061257f565b5050505082612753565b60006109006126426121ca565b8360405161190160f01b8152600281019290925260228201526042902090565b60008060008061267488888888612bf2565b9250925092506126848282612cc1565b50909695505050505050565b6040516305e742ef60e01b81526004810182905262035b6060248201526000906064906001600160a01b038516906305e742ef90604401602060405180830381865afa1580156126e4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270891906144df565b7f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58fc5461273f9062010000900461ffff166064614db1565b6127499190614dc4565b61160f9190614ddb565b60408051600280825260608201909252600091816020015b606081526020019060019003908161276b57905050905061278a6117ed565b8160008151811061279d5761279d614bdf565b602002602001018190525081816001815181106127bc576127bc614bdf565b6020908102919091010152604051633c389c6f60e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063f0e271bc906128159084908790600401614def565b6020604051808303816000875af1158015612834573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061285891906144df565b612860611fd5565b60050155505050565b6000807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00610900565b6001600160a01b0384166128bc5760405163e602df0560e01b815260006004820152602401610c04565b6001600160a01b0383166128e657604051634a1406b160e11b815260006004820152602401610c04565b6001600160a01b0380851660009081526001602090815260408083209387168352929052208290558015610f0f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161295991815260200190565b60405180910390a350505050565b604051606083811b6001600160601b03191660208301529061160f9060340160405160208183030381529060405283612d7a565b6001600160a01b0383166129c65780600260008282546129bb9190614db1565b90915550612a389050565b6001600160a01b03831660009081526020819052604090205481811015612a195760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610c04565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216612a5457600280548290039055612a73565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612ab891815260200190565b60405180910390a3505050565b606060ff8314612adf57612ad883612dc8565b9050610900565b818054612aeb906144ab565b80601f0160208091040260200160405190810160405280929190818152602001828054612b17906144ab565b8015612b645780601f10612b3957610100808354040283529160200191612b64565b820191906000526020600020905b815481529060010190602001808311612b4757829003601f168201915b50505050509050610900565b6000806000612b9f85604051602001612b899190614e14565b6040516020818303038152906040526001612e07565b91509150612bcc84604051602001612bb79190614e14565b60405160208183030381529060405283613198565b6000612bdd826005600860006131ec565b9050612be8816131fa565b9695505050505050565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115612c2d5750600091506003905082612cb7565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015612c81573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612cad57506000925060019150829050612cb7565b9250600091508190505b9450945094915050565b6000826003811115612cd557612cd561407e565b03612cde575050565b6001826003811115612cf257612cf261407e565b03612d105760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115612d2457612d2461407e565b03612d455760405163fce698f760e01b815260048101829052602401610c04565b6003826003811115612d5957612d5961407e565b0361189e576040516335e2f38360e21b815260048101829052602401610c04565b6060600082604051602001612d8f9190614e14565b60405160208183030381529060405290506000612db185600860056001613255565b9050612dbf8282600161331d565b95945050505050565b60606000612dd5836135ae565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6060806000605a85511115612e5e5760405162461bcd60e51b815260206004820152601d60248201527f4265636833323a20696e76616c696420737472696e67206c656e6774680000006044820152606401610c04565b60005b8551811015612f5b576000868281518110612e7e57612e7e614bdf565b016020015160f81c905060218110801590612e9d5750607e8160ff1611155b612ede5760405162461bcd60e51b81526020600482015260126024820152712132b1b419991d103bb937b7339031b430b960711b6044820152606401610c04565b60301960ff821601612f525782158015612ef9575060018210155b8015612f09575086518260070111155b612f4e5760405162461bcd60e51b81526020600482015260166024820152754265636833323a2077726f6e6720706f73206f66203160501b6044820152606401610c04565b8192505b50600101612e61565b50806001600160401b03811115612f7457612f746142a2565b6040519080825280601f01601f191660200182016040528015612f9e576020820181803683370190505b50925060005b81811015612ffa57858181518110612fbe57612fbe614bdf565b602001015160f81c60f81b848281518110612fdb57612fdb614bdf565b60200101906001600160f81b031916908160001a905350600101612fa4565b50600181865103036001600160401b03811115613019576130196142a2565b604051908082528060200260200182016040528015613042578160200160208202803683370190505b50915060005b82518110156131355760006040518061012001604052806101008152602001614f9b6101009139878484016001018151811061308657613086614bdf565b0160200151815160f89190911c9081106130a2576130a2614bdf565b01602001516001600160f81b031990811691508190036131045760405162461bcd60e51b815260206004820152601c60248201527f4265636833323a2062797465206e6f7420696e20616c706861626574000000006044820152606401610c04565b8060f81c84838151811061311a5761311a614bdf565b60ff9092166020928302919091019091015250600101613048565b506131418383866135d6565b6131865760405162461bcd60e51b81526020600482015260166024820152754265636833323a2077726f6e6720636865636b73756d60501b6044820152606401610c04565b50805160051901815290939092509050565b808051906020012082805190602001201461189e5760405162461bcd60e51b8152602060048201526014602482015273084cac6d066647440d0e4e040dad2e6dac2e8c6d60631b6044820152606401610c04565b6060612dbf85858585613704565b6000815160141461324d5760405162461bcd60e51b815260206004820152601b60248201527f4265636833323a20696e76616c69642064617461206c656e67746800000000006044820152606401610c04565b506014015190565b6060600085516001600160401b03811115613272576132726142a2565b60405190808252806020026020018201604052801561329b578160200160208202803683370190505b50905060005b81518163ffffffff16101561331057868163ffffffff16815181106132c8576132c8614bdf565b602001015160f81c60f81b60f81c828263ffffffff16815181106132ee576132ee614bdf565b60ff9092166020928302919091019091015261330981614e30565b90506132a1565b50612be881868686613704565b6060600061332c8585856138d4565b9050600081518551875101016001016001600160401b03811115613352576133526142a2565b6040519080825280601f01601f19166020018201604052801561337c576020820181803683370190505b50905060005b86518110156133d95786818151811061339d5761339d614bdf565b602001015160f81c60f81b8282815181106133ba576133ba614bdf565b60200101906001600160f81b031916908160001a905350600101613382565b50603160f81b818751815181106133f2576133f2614bdf565b60200101906001600160f81b031916908160001a905350855160010160005b86518110156134d957600087828151811061342e5761342e614bdf565b016020908101516040805180820190915282815260008051602061509b8339815191529083015260f81c91508110156134d05760405180604001604052806020815260200160008051602061509b8339815191528152508160ff168151811061349957613499614bdf565b602001015160f81c60f81b84848401815181106134b8576134b8614bdf565b60200101906001600160f81b031916908160001a9053505b50600101613411565b5085510160005b83518110156126845760008482815181106134fd576134fd614bdf565b6020026020010151905060405180604001604052806020815260200160008051602061509b833981519152815250518160ff1610156135a55760405180604001604052806020815260200160008051602061509b8339815191528152508160ff168151811061356e5761356e614bdf565b602001015160f81c60f81b848484018151811061358d5761358d614bdf565b60200101906001600160f81b031916908160001a9053505b506001016134e0565b600060ff8216601f81111561090057604051632cd44ac360e21b815260040160405180910390fd5b6000806135e285613a78565b9050600084518251016001600160401b03811115613602576136026142a2565b60405190808252806020026020018201604052801561362b578160200160208202803683370190505b50905060005b82518110156136865782818151811061364c5761364c614bdf565b602002602001015160ff1682828151811061366957613669614bdf565b63ffffffff90921660209283029190910190910152600101613631565b5060005b85518110156136e2578581815181106136a5576136a5614bdf565b602002602001015160ff168284518301815181106136c5576136c5614bdf565b63ffffffff9092166020928302919091019091015260010161368a565b508363ffffffff166136f382613b73565b63ffffffff16149695505050505050565b606060008080613717600180881b614e4c565b905060005b885181101561380d57600089828151811061373957613739614bdf565b6020908102919091010151905060ff8082168a1c16156137ba5760405162461bcd60e51b815260206004820152603660248201527f4265636833323a2076616c7565206d757374206265206e6f6e2d6e6567617469604482015275766520616e642066697420696e2066726f6d6269747360501b6064820152608401610c04565b93881b60ff85161793928801925b8784106138045760405193889003936137ee90879087871c861660f81b90602001614e5f565b60405160208183030381529060405295506137c8565b5060010161371c565b5084156138555781156138505783816138268489614e4c565b85901b1660f81b60405160200161383e929190614e5f565b60405160208183030381529060405293505b6138c9565b8682108061386f5750806138698388614e4c565b84901b16155b6138c95760405162461bcd60e51b815260206004820152602560248201527f4265636833323a20696e76616c69642070616464696e67206f722076616c75656044820152642073697a6560d81b6064820152608401610c04565b505050949350505050565b606060006138e185613a78565b9050600084518251016006016001600160401b03811115613904576139046142a2565b60405190808252806020026020018201604052801561392d578160200160208202803683370190505b50905060005b85518351018110156139f15782518110156139965782818151811061395a5761395a614bdf565b602002602001015160ff1682828151811061397757613977614bdf565b602002602001019063ffffffff16908163ffffffff16815250506139e9565b8583518203815181106139ab576139ab614bdf565b602001015160f81c60f81b60f81c60ff168282815181106139ce576139ce614bdf565b602002602001019063ffffffff16908163ffffffff16815250505b600101613933565b5060408051600680825260e08201909252906020820160c080368337019050509250600084613a1f83613b73565b18905060005b6006811015613a6d57806005036005028263ffffffff16901c601f16858281518110613a5357613a53614bdf565b60ff90921660209283029190910190910152600101613a25565b505050509392505050565b606081518251016001016001600160401b03811115613a9957613a996142a2565b604051908082528060200260200182016040528015613ac2578160200160208202803683370190505b50905060005b8251811015611616576005838281518110613ae557613ae5614bdf565b602001015160f81c60f81b60f81c60ff16901c828281518110613b0a57613b0a614bdf565b602002602001019060ff16908160ff1681525050828181518110613b3057613b30614bdf565b602001015160f81c60f81b60f81c601f16828451830160010181518110613b5957613b59614bdf565b60ff90921660209283029190910190910152600101613ac8565b6040805160a081018252633b6a57b281526326508e6d6020820152631ea119fa91810191909152633d4233dd6060820152632a1462b36080820152600090600190825b84518163ffffffff161015613c6457600060198463ffffffff16901c9050858263ffffffff1681518110613bec57613bec614bdf565b60200260200101516005856301ffffff1663ffffffff16901b18935060005b60058163ffffffff161015613c5a57600163ffffffff8381169083161c81169003613c5257838163ffffffff1660058110613c4857613c48614bdf565b6020020151851894505b600101613c0b565b5050600101613bb6565b50909392505050565b828054828255906000526020600020908101928215613cb3579160200282015b82811115613cb35782518290613ca39082614edc565b5091602001919060010190613c8d565b50613cbf929150613cc3565b5090565b80821115613cbf576000613cd78282613ce0565b50600101613cc3565b508054613cec906144ab565b6000825580601f10613cfc575050565b601f016020900490600052602060002090810190611c8291905b80821115613cbf5760008155600101613d16565b600060208284031215613d3c57600080fd5b81356001600160e01b03198116811461160f57600080fd5b60005b83811015613d6f578181015183820152602001613d57565b50506000910152565b60008151808452613d90816020860160208601613d54565b601f01601f19169290920160200192915050565b60208152600061160f6020830184613d78565b6001600160a01b0381168114611c8257600080fd5b60008060408385031215613ddf57600080fd5b8235613dea81613db7565b946020939093013593505050565b600080600060608486031215613e0d57600080fd5b8335613e1881613db7565b92506020840135613e2881613db7565b929592945050506040919091013590565b600060208284031215613e4b57600080fd5b813561160f81613db7565b600060208284031215613e6857600080fd5b5035919050565b60008083601f840112613e8157600080fd5b5081356001600160401b03811115613e9857600080fd5b602083019150836020828501011115613eb057600080fd5b9250929050565b600080600060408486031215613ecc57600080fd5b83356001600160401b03811115613ee257600080fd5b840160e08187031215613ef457600080fd5b925060208401356001600160401b03811115613f0f57600080fd5b613f1b86828701613e6f565b9497909650939450505050565b60006080828403128015613f3b57600080fd5b509092915050565b600082825180855260208501945060208160051b8301016020850160005b8381101561268457601f19858403018852613f7d838351613d78565b6020988901989093509190910190600101613f61565b60208152600061160f6020830184613f43565b60ff60f81b8816815260e060208201526000613fc560e0830189613d78565b8281036040840152613fd78189613d78565b606084018890526001600160a01b038716608085015260a0840186905283810360c08501528451808252602080870193509091019060005b8181101561402d57835183526020938401939092019160010161400f565b50909b9a5050505050505050505050565b6001600160401b0381168114611c8257600080fd5b8035610c0d8161403e565b60008060006040848603121561407357600080fd5b8335613ef48161403e565b634e487b7160e01b600052602160045260246000fd5b600481106140a4576140a461407e565b9052565b602081016109008284614094565b600080602083850312156140c957600080fd5b82356001600160401b038111156140df57600080fd5b8301601f810185136140f057600080fd5b80356001600160401b0381111561410657600080fd5b8560208260051b840101111561411b57600080fd5b6020919091019590945092505050565b602080825282518282018190526000918401906040840190835b8181101561416b57614158838551614094565b6020938401939290920191600101614145565b509095945050505050565b6000806020838503121561418957600080fd5b82356001600160401b0381111561419f57600080fd5b6141ab85828601613e6f565b90969095509350505050565b60ff81168114611c8257600080fd5b600080600080600080600060e0888a0312156141e157600080fd5b87356141ec81613db7565b965060208801356141fc81613db7565b95506040880135945060608801359350608088013561421a816141b7565b9699959850939692959460a0840135945060c09093013592915050565b60008060006040848603121561424c57600080fd5b8335925060208401356001600160401b03811115613f0f57600080fd5b6000806040838503121561427c57600080fd5b823561428781613db7565b9150602083013561429781613db7565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60c081018181106001600160401b03821117156142d7576142d76142a2565b60405250565b604081018181106001600160401b03821117156142d7576142d76142a2565b60a081018181106001600160401b03821117156142d7576142d76142a2565b601f8201601f191681016001600160401b0381118282101715614340576143406142a2565b6040525050565b60006001600160401b03821115614360576143606142a2565b50601f01601f191660200190565b60006020828403121561438057600080fd5b81356001600160401b0381111561439657600080fd5b8201601f810184136143a757600080fd5b80356001600160401b038111156143c0576143c06142a2565b8060051b6040516143d4602083018261431b565b9182526020818401810192908101878411156143ef57600080fd5b6020850192505b838310156144805782356001600160401b0381111561441457600080fd5b8501603f8101891361442557600080fd5b602081013561443381614347565b604051614440828261431b565b8281526040848401018c101561445557600080fd5b82604085016020830137600060208483010152808552505050506020810190506020830192506143f6565b509695505050505050565b6000806000604084860312156144a057600080fd5b8335613ef481613db7565b600181811c908216806144bf57607f821691505b60208210810361161657634e487b7160e01b600052602260045260246000fd5b6000602082840312156144f157600080fd5b5051919050565b61ffff81168114611c8257600080fd5b60006020828403121561451a57600080fd5b813561160f816144f8565b6000808335601e1984360301811261453c57600080fd5b83016020810192503590506001600160401b0381111561455b57600080fd5b803603821315613eb057600080fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6040808252843582820152602085013560608301526000908501356145b7816144f8565b61ffff16608083015260608501356145ce816144f8565b61ffff1660a083015260808501356145e58161403e565b6001600160401b031660c08301526145ff60a08601614053565b6001600160401b031660e083015261461a60c0860186614525565b60e06101008501526146316101208501828461456a565b9150508281036020840152612be881858761456a565b805160148110610c0d57600080fd5b8051610c0d8161403e565b600082601f83011261467257600080fd5b815160208301600061468383614347565b604051614690828261431b565b8092508481528785850111156146a557600080fd5b6146b3856020830186613d54565b979650505050505050565b8051610c0d816141b7565b600060c082840312156146db57600080fd5b6040516146e7816142b8565b80915082516001600160401b0381111561470057600080fd5b83016040818603121561471257600080fd5b60405161471e816142dd565b81516001600160401b0381111561473457600080fd5b61474087828501614661565b82525060209182015182820152825261475a9084016146be565b602082015261476b604084016146be565b604082015261477c606084016146be565b606082015261478d60808401614656565b608082015261479e60a08401614656565b60a08201525092915050565b6000602082840312156147bc57600080fd5b81516001600160401b038111156147d257600080fd5b820160a081850312156147e457600080fd5b6040516147f0816142fc565b8151610100811061480057600080fd5b815261480e60208301614647565b60208201526040828101519082015261482960608301614656565b606082015260808201516001600160401b0381111561484757600080fd5b614853868285016146c9565b608083015250949350505050565b6020815260008251610100811061487a5761487a61407e565b806020840152506020830151601481106148965761489661407e565b80604084015250604083015160608301526001600160401b036060840151166080830152608083015160a080840152805160c080850152805160406101808601526148e56101c0860182613d78565b6020928301516101a08701529183015160ff1660e08601525060408201519061491461010086018360ff169052565b606083015160ff1661012086015260808301516001600160401b0380821661014088015260a0909401519384166101608701529150612dbf565b60006020828403121561496057600080fd5b815161160f8161403e565b600060033d11156122f55760046000803e5060005160e01c90565b600060443d10156149945790565b6040513d600319016004823e80513d60248201116001600160401b03821117156149bd57505090565b80820180516001600160401b038111156149d8575050505090565b3d84016003190182820160200111156149f2575050505090565b614a016020828501018561431b565b509392505050565b600060208284031215614a1b57600080fd5b813561160f8161403e565b62ffffff81168114611c8257600080fd5b600060208284031215614a4957600080fd5b813561160f81614a26565b634e487b7160e01b600052600160045260246000fd5b8135614a75816144f8565b61ffff8116905081548161ffff1982161783556020840135614a96816144f8565b63ffff00008160101b169050808363ffffffff198416171784556040850135614abe8161403e565b6bffffffffffffffff000000008160201b16846bffffffffffffffffffffffff1985161783171785555050505060006060830135614afb81614a26565b825462ffffff60601b191660609190911b62ffffff60601b16179091555050565b634e487b7160e01b600052601160045260246000fd5b6001600160401b03828116828216039081111561090057610900614b1c565b60006001600160401b0382166001600160401b038103614b7357614b73614b1c565b60010192915050565b6001600160a01b0386168152608060208201819052600090614ba1908301868861456a565b6001600160401b0394909416604083015250606001529392505050565b600060208284031215614bd057600080fd5b81516007811061160f57600080fd5b634e487b7160e01b600052603260045260246000fd5b600060208284031215614c0757600080fd5b815161160f81613db7565b600060208284031215614c2457600080fd5b81516001600160401b03811115614c3a57600080fd5b614c4684828501614661565b949350505050565b838152604060208201526000612dbf60408301848661456a565b600080600080600060a08688031215614c8057600080fd5b855160208701519095506001600160401b03811115614c9e57600080fd5b614caa88828901614661565b94505060408601516001600160401b03811115614cc657600080fd5b614cd288828901614661565b9350506060860151614ce381613db7565b6080870151909250614cf48161403e565b809150509295509295909350565b608081526000614d156080830187613d78565b6001600160a01b03959095166020830152506001600160401b03929092166040830152606090910152919050565b634e487b7160e01b600052601260045260246000fd5b600061ffff831680614d6d57614d6d614d43565b8061ffff84160491505092915050565b6b02bb930b83832b22ba4aa1d160a51b815260008251614da481600c850160208701613d54565b91909101600c0192915050565b8082018082111561090057610900614b1c565b808202811582820484141761090057610900614b1c565b600082614dea57614dea614d43565b500490565b604081526000614e026040830185613f43565b8281036020840152612dbf8185613f43565b60008251614e26818460208701613d54565b9190910192915050565b600063ffffffff821663ffffffff8103614b7357614b73614b1c565b8181038181111561090057610900614b1c565b60008351614e71818460208801613d54565b6001600160f81b0319939093169190920190815260010192915050565b601f821115610ff057806000526020600020601f840160051c81016020851015614eb55750805b601f840160051c820191505b81811015614ed55760008155600101614ec1565b5050505050565b81516001600160401b03811115614ef557614ef56142a2565b614f0981614f0384546144ab565b84614e8e565b6020601f821160018114614f3d5760008315614f255750848201515b600019600385901b1c1916600184901b178455614ed5565b600084815260208120601f198516915b82811015614f6d5787850151825560209485019460019092019101614f4d565b5084821015614f8b5786840151600019600387901b60f8161c191681555b50505050600190811b0190555056feffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0fff0a1115141a1e0705ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff71707a7279397838676632747664773073336a6e35346b686365366d7561376ca2646970667358221220367cced7546fb312124bdfd5dd418957aa88c6e8dabdf6a7bc72411f0c421df564736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x267 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x77CC7A3A GT PUSH2 0x144 JUMPI DUP1 PUSH4 0xACB734BB GT PUSH2 0xB6 JUMPI DUP1 PUSH4 0xDD62ED3E GT PUSH2 0x7A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x7C7 JUMPI DUP1 PUSH4 0xDDB2BF5C EQ PUSH2 0x80D JUMPI DUP1 PUSH4 0xEA9E96A6 EQ PUSH2 0x82D JUMPI DUP1 PUSH4 0xF399E22E EQ PUSH2 0x84D JUMPI DUP1 PUSH4 0xF69A00B6 EQ PUSH2 0x86D JUMPI DUP1 PUSH4 0xFEC53A14 EQ PUSH2 0x8A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xACB734BB EQ PUSH2 0x73D JUMPI DUP1 PUSH4 0xB3F120A1 EQ PUSH2 0x752 JUMPI DUP1 PUSH4 0xC65A20F0 EQ PUSH2 0x767 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x787 JUMPI DUP1 PUSH4 0xD6F29E81 EQ PUSH2 0x7A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x91F4F96C GT PUSH2 0x108 JUMPI DUP1 PUSH4 0x91F4F96C EQ PUSH2 0x679 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x68E JUMPI DUP1 PUSH4 0xA41942A4 EQ PUSH2 0x6A3 JUMPI DUP1 PUSH4 0xA53CB851 EQ PUSH2 0x6C3 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x6F0 JUMPI DUP1 PUSH4 0xAA22DC33 EQ PUSH2 0x710 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x77CC7A3A EQ PUSH2 0x58E JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x5AE JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x5CE JUMPI DUP1 PUSH4 0x873234CF EQ PUSH2 0x5F6 JUMPI DUP1 PUSH4 0x8A510F27 EQ PUSH2 0x659 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x30315DC4 GT PUSH2 0x1DD JUMPI DUP1 PUSH4 0x5F029EBE GT PUSH2 0x1A1 JUMPI DUP1 PUSH4 0x5F029EBE EQ PUSH2 0x4CE JUMPI DUP1 PUSH4 0x6AAA54CF EQ PUSH2 0x4E1 JUMPI DUP1 PUSH4 0x6D0D6A7E EQ PUSH2 0x4F6 JUMPI DUP1 PUSH4 0x6DF0627E EQ PUSH2 0x516 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x536 JUMPI DUP1 PUSH4 0x71D41EB3 EQ PUSH2 0x56C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x30315DC4 EQ PUSH2 0x40E JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x43B JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x457 JUMPI DUP1 PUSH4 0x47A10E56 EQ PUSH2 0x46C JUMPI DUP1 PUSH4 0x520A5495 EQ PUSH2 0x4B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x147040DE GT PUSH2 0x22F JUMPI DUP1 PUSH4 0x147040DE EQ PUSH2 0x344 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x359 JUMPI DUP1 PUSH4 0x18BF5077 EQ PUSH2 0x378 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x39A JUMPI DUP1 PUSH4 0x27AE6883 EQ PUSH2 0x3BA JUMPI DUP1 PUSH4 0x2B8C49E3 EQ PUSH2 0x3EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1367F73 EQ PUSH2 0x26C JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x29E JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x2CE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2F0 JUMPI DUP1 PUSH4 0x1014D375 EQ PUSH2 0x310 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x278 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x281 PUSH2 0x8B6 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 CALLVALUE DUP1 ISZERO PUSH2 0x2AA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2BE PUSH2 0x2B9 CALLDATASIZE PUSH1 0x4 PUSH2 0x3D2A JUMP JUMPDEST PUSH2 0x8CF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x295 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E3 PUSH2 0x906 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x295 SWAP2 SWAP1 PUSH2 0x3DA4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2BE PUSH2 0x30B CALLDATASIZE PUSH1 0x4 PUSH2 0x3DCC JUMP JUMPDEST PUSH2 0x998 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x31C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x281 PUSH32 0x0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x350 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E3 PUSH2 0x9B0 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x365 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x295 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x384 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x393 CALLDATASIZE PUSH1 0x4 PUSH2 0x3DCC JUMP JUMPDEST PUSH2 0x9DD JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2BE PUSH2 0x3B5 CALLDATASIZE PUSH1 0x4 PUSH2 0x3DF8 JUMP JUMPDEST PUSH2 0xA35 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x281 PUSH32 0x0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3FA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x409 CALLDATASIZE PUSH1 0x4 PUSH2 0x3DCC JUMP JUMPDEST PUSH2 0xA59 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x41A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x423 PUSH2 0xAA9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x295 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x447 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x9 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x295 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x463 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0xAC9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x478 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2BE PUSH2 0x487 CALLDATASIZE PUSH1 0x4 PUSH2 0x3E39 JUMP JUMPDEST PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND SWAP2 AND EQ SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0xAD3 JUMP JUMPDEST PUSH2 0x36A PUSH2 0x4DC CALLDATASIZE PUSH1 0x4 PUSH2 0x3E56 JUMP JUMPDEST PUSH2 0xAF6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4ED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0xC12 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x502 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x511 CALLDATASIZE PUSH1 0x4 PUSH2 0x3EB7 JUMP JUMPDEST PUSH2 0xC35 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x522 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x531 CALLDATASIZE PUSH1 0x4 PUSH2 0x3F28 JUMP JUMPDEST PUSH2 0xF15 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x542 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x551 CALLDATASIZE PUSH1 0x4 PUSH2 0x3E39 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 CALLVALUE DUP1 ISZERO PUSH2 0x578 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x581 PUSH2 0xFF5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x295 SWAP2 SWAP1 PUSH2 0x3F93 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x59A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x5A9 CALLDATASIZE PUSH1 0x4 PUSH2 0x3E56 JUMP JUMPDEST PUSH2 0x10D7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x5C9 CALLDATASIZE PUSH1 0x4 PUSH2 0x3E39 JUMP JUMPDEST PUSH2 0x10F5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5E3 PUSH2 0x1113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x295 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3FA6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x602 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x60B PUSH2 0x1159 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x295 SWAP2 SWAP1 PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0xFFFF DUP4 MLOAD AND DUP3 MSTORE PUSH2 0xFFFF PUSH1 0x20 DUP5 ADD MLOAD AND PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x40 DUP5 ADD MLOAD AND PUSH1 0x40 DUP4 ADD MSTORE PUSH3 0xFFFFFF PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x60 DUP4 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x665 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x674 CALLDATASIZE PUSH1 0x4 PUSH2 0x405E JUMP JUMPDEST PUSH2 0x11D8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x685 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x1436 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x69A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E3 PUSH2 0x1452 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x6BE CALLDATASIZE PUSH1 0x4 PUSH2 0x3E39 JUMP JUMPDEST PUSH2 0x1461 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6CF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6E3 PUSH2 0x6DE CALLDATASIZE PUSH1 0x4 PUSH2 0x3E56 JUMP JUMPDEST PUSH2 0x1522 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x295 SWAP2 SWAP1 PUSH2 0x40A8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6FC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2BE PUSH2 0x70B CALLDATASIZE PUSH1 0x4 PUSH2 0x3DCC JUMP JUMPDEST PUSH2 0x161C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x71C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x730 PUSH2 0x72B CALLDATASIZE PUSH1 0x4 PUSH2 0x40B6 JUMP JUMPDEST PUSH2 0x162A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x295 SWAP2 SWAP1 PUSH2 0x412B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x749 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E3 PUSH2 0x16EC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x75E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E3 PUSH2 0x17ED JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x773 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x782 CALLDATASIZE PUSH1 0x4 PUSH2 0x4176 JUMP JUMPDEST PUSH2 0x1826 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x793 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x7A2 CALLDATASIZE PUSH1 0x4 PUSH2 0x41C6 JUMP JUMPDEST PUSH2 0x18A2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x7C2 CALLDATASIZE PUSH1 0x4 PUSH2 0x4237 JUMP JUMPDEST PUSH2 0x19DC JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7D3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x7E2 CALLDATASIZE PUSH1 0x4 PUSH2 0x4269 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 CALLVALUE DUP1 ISZERO PUSH2 0x819 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x828 CALLDATASIZE PUSH1 0x4 PUSH2 0x3E56 JUMP JUMPDEST PUSH2 0x1BD4 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x839 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x848 CALLDATASIZE PUSH1 0x4 PUSH2 0x436E JUMP JUMPDEST PUSH2 0x1C00 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x859 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x398 PUSH2 0x868 CALLDATASIZE PUSH1 0x4 PUSH2 0x448B JUMP JUMPDEST PUSH2 0x1C85 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x879 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x281 PUSH32 0x0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x36A PUSH2 0x1FC2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8C0 PUSH2 0x1FD5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xCCCC665 PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x900 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x915 SWAP1 PUSH2 0x44AB 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 0x941 SWAP1 PUSH2 0x44AB JUMP JUMPDEST DUP1 ISZERO PUSH2 0x98E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x963 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x98E 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 0x971 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x9A6 DUP2 DUP6 DUP6 PUSH2 0x1FF9 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x9D8 PUSH1 0x1 CHAINID EQ PUSH2 0x9C1 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x2 ADD SLOAD PUSH1 0x60 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND SWAP1 PUSH2 0x2006 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x9E6 CALLER PUSH2 0x2057 JUMP JUMPDEST PUSH2 0x9F0 DUP3 DUP3 PUSH2 0x2086 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0xDE22BAFF038E3A3E08407CBDF617DEED74E869A7BA517DF611E33131C6E6EA04 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xA43 DUP6 DUP3 DUP6 PUSH2 0x20BC JUMP JUMPDEST PUSH2 0xA4E DUP6 DUP6 DUP6 PUSH2 0x2135 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0xA62 CALLER PUSH2 0x2057 JUMP JUMPDEST PUSH2 0xA6C DUP3 DUP3 PUSH2 0x2194 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0xB90795A66650155983E242CAC3E1AC1A4DC26F8ED2987F3CE416A34E00111FD4 SWAP1 PUSH1 0x20 ADD PUSH2 0xA29 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAB3 PUSH2 0x1FD5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9D8 PUSH2 0x21CA JUMP JUMPDEST PUSH1 0x0 PUSH2 0xADD PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3752120B PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE PUSH32 0x0 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH20 0x0 SWAP1 PUSH4 0x3752120B SWAP1 PUSH1 0x64 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS DELEGATECALL ISZERO DUP1 ISZERO PUSH2 0xBA0 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 0xBC4 SWAP2 SWAP1 PUSH2 0x44DF JUMP JUMPDEST SWAP1 POP PUSH1 0x0 NOT DUP2 SUB PUSH2 0xC0D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x185B1C9958591E481B5A5B9D1959 PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC1C PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC92 PUSH2 0xC40 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x3 ADD SLOAD PUSH2 0xFFFF AND PUSH2 0xC58 PUSH1 0x80 DUP7 ADD PUSH1 0x60 DUP8 ADD PUSH2 0x4508 JUMP JUMPDEST PUSH2 0xFFFF AND LT ISZERO PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x16 DUP2 MSTORE PUSH1 0x20 ADD PUSH22 0x696E73756666696369656E74207769746E6573736573 PUSH1 0x50 SHL DUP2 MSTORE POP PUSH2 0x22F8 JUMP JUMPDEST PUSH2 0xCDD PUSH2 0xCAD PUSH2 0xCA0 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x5 ADD SLOAD PUSH1 0x20 DUP7 ADD CALLDATALOAD EQ SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH18 0xD2DCECC2D8D2C840E4C2C8DEDC40D0C2E6D PUSH1 0x73 SHL DUP2 MSTORE POP PUSH2 0x22F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3686B53F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6D0D6A7E SWAP1 PUSH2 0xD30 SWAP1 DUP8 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x4593 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xD4F 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 0xD77 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x47AA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x67C4440F PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP2 POP PUSH20 0x0 SWAP1 PUSH4 0x67C4440F SWAP1 PUSH2 0xDB1 SWAP1 DUP5 SWAP1 PUSH1 0x4 ADD PUSH2 0x4861 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS DELEGATECALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xDEA JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xDE7 SWAP2 DUP2 ADD SWAP1 PUSH2 0x494E JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xE5E JUMPI PUSH2 0xDF6 PUSH2 0x496B JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 SUB PUSH2 0xE24 JUMPI POP PUSH2 0xE0A PUSH2 0x4986 JUMP JUMPDEST DUP1 PUSH2 0xE15 JUMPI POP PUSH2 0xE26 JUMP JUMPDEST PUSH2 0xE1E DUP2 PUSH2 0x2302 JUMP JUMPDEST POP PUSH2 0xF0F JUMP JUMPDEST POP JUMPDEST RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0xE50 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 0xE55 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH2 0xE1E PUSH2 0x2339 JUMP JUMPDEST PUSH1 0x60 DUP1 DUP4 ADD MLOAD PUSH1 0x40 DUP1 DUP6 ADD MLOAD DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP8 AND DUP3 MSTORE SWAP1 SWAP4 AND PUSH1 0x20 DUP5 ADD MSTORE SWAP1 DUP3 ADD MSTORE PUSH32 0x8A01B18BDCA3D556ADC5E6A85F562B83D2C1933F166E93421FF507CFCCB09A07 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 PUSH2 0xEB9 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x1 ADD DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0xEE8 PUSH2 0x1FD5 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0xC0 SHL MUL PUSH1 0x1 PUSH1 0x1 PUSH1 0xC0 SHL SUB SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xF1D PUSH2 0x1FD5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF4E JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH2 0xF5D PUSH1 0x20 DUP4 ADD DUP4 PUSH2 0x4508 JUMP JUMPDEST PUSH2 0xFFFF AND LT ISZERO DUP1 ISZERO PUSH2 0xF83 JUMPI POP PUSH1 0x32 PUSH2 0xF7C PUSH1 0x40 DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0x4508 JUMP JUMPDEST PUSH2 0xFFFF AND GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0xFAB JUMPI POP PUSH4 0xBEBC200 PUSH2 0xF9F PUSH1 0x60 DUP4 ADD PUSH1 0x40 DUP5 ADD PUSH2 0x4A09 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0xFCE JUMPI POP PUSH3 0x33450 PUSH2 0xFC6 PUSH1 0x80 DUP4 ADD PUSH1 0x60 DUP5 ADD PUSH2 0x4A37 JUMP JUMPDEST PUSH3 0xFFFFFF AND LT ISZERO JUMPDEST PUSH2 0xFDA JUMPI PUSH2 0xFDA PUSH2 0x4A54 JUMP JUMPDEST DUP1 PUSH2 0xFE3 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x3 ADD PUSH2 0xFF0 DUP3 DUP3 PUSH2 0x4A6A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xFFF PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x4 ADD 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 0x10CE JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x1041 SWAP1 PUSH2 0x44AB 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 0x106D SWAP1 PUSH2 0x44AB JUMP JUMPDEST DUP1 ISZERO PUSH2 0x10BA JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x108F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x10BA 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 0x109D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x1022 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10E1 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x6 ADD PUSH1 0x20 MSTORE POP PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x900 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 PUSH2 0x1127 PUSH2 0x236F JUMP JUMPDEST PUSH2 0x112F PUSH2 0x239C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0xF PUSH1 0xF8 SHL SWAP12 SWAP4 SWAP11 POP SWAP2 SWAP9 POP CHAINID SWAP8 POP ADDRESS SWAP7 POP SWAP5 POP SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 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 SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0x1185 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x80 DUP2 ADD DUP3 MSTORE PUSH1 0x3 SWAP3 SWAP1 SWAP3 ADD SLOAD PUSH2 0xFFFF DUP1 DUP3 AND DUP5 MSTORE PUSH3 0x10000 DUP3 DIV AND PUSH1 0x20 DUP5 ADD MSTORE PUSH5 0x100000000 DUP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1 PUSH1 0x60 SHL SWAP1 DIV PUSH3 0xFFFFFF AND PUSH1 0x60 DUP3 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH2 0x11ED CALLER PUSH2 0x551 JUMP JUMPDEST LT ISZERO PUSH2 0x1230 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 PUSH18 0x6E6F7420656E6F7567682062616C616E6365 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x123A PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND SWAP2 POP DUP6 AND DUP2 LT ISZERO PUSH2 0x129C 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 0x63616E6E6F7420756E777261702074686174206D756368000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12E2 DUP6 DUP6 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 POP CHAINID PUSH1 0x1 EQ SWAP2 POP PUSH2 0x23C9 SWAP1 POP JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH32 0x0 DUP2 AND SWAP1 DUP3 AND SUB PUSH2 0x1354 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x1A5B9D985B1A59081C9958DA5C1A595B9D PUSH1 0x7A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH2 0x135E DUP7 DUP4 PUSH2 0x4B32 JUMP JUMPDEST PUSH2 0x1366 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x1 ADD DUP1 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP3 DUP4 AND OR SWAP1 SSTORE PUSH2 0x1391 SWAP1 CALLER SWAP1 DUP9 AND PUSH2 0x2194 JUMP JUMPDEST PUSH2 0x1399 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x1 ADD DUP1 SLOAD PUSH1 0x8 SWAP1 PUSH2 0x13BA SWAP1 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH2 0x4B51 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND MUL OR SWAP1 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP3 POP PUSH32 0xAC1547DF8510F30B54430E0E4E1E93CE326490AEC9CEBF0F78B8FAA55DC1DED PUSH2 0x1410 CALLER SWAP1 JUMP JUMPDEST DUP7 DUP7 DUP10 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1425 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4B7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1440 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x915 SWAP1 PUSH2 0x44AB JUMP JUMPDEST PUSH2 0x1469 PUSH2 0x1FD5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x149A JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x14B0 JUMPI PUSH2 0x14B0 PUSH2 0x4A54 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x14C2 PUSH2 0x1FD5 JUMP JUMPDEST SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH32 0xC63757ACC12B39558FE5B88C5393E4B0353FFDDAAE3A2D07E121A8FC62D39C37 SWAP1 PUSH1 0x0 SWAP1 LOG3 DUP1 PUSH2 0x1501 PUSH2 0x1FD5 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x152D PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x6 SWAP2 SWAP1 SWAP2 ADD PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 POP DUP2 SWAP1 SUB PUSH2 0x1552 JUMPI POP PUSH1 0x0 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 NOT DUP2 SUB PUSH2 0x1564 JUMPI POP PUSH1 0x3 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD PUSH4 0x1BC1EAF3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x6F07ABCC SWAP1 PUSH1 0x24 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x15CB 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 0x15EF SWAP2 SWAP1 PUSH2 0x4BBE JUMP JUMPDEST PUSH1 0x6 DUP2 GT ISZERO PUSH2 0x1600 JUMPI PUSH2 0x1600 PUSH2 0x407E JUMP JUMPDEST EQ PUSH2 0x160C JUMPI PUSH1 0x2 PUSH2 0x160F JUMP JUMPDEST PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x9A6 DUP2 DUP6 DUP6 PUSH2 0x2135 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1644 JUMPI PUSH2 0x1644 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x166D JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x16E5 JUMPI PUSH2 0x169C DUP5 DUP5 DUP4 DUP2 DUP2 LT PUSH2 0x1690 JUMPI PUSH2 0x1690 PUSH2 0x4BDF JUMP JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD CALLDATALOAD PUSH2 0x1522 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x16AE JUMPI PUSH2 0x16AE PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x16C7 JUMPI PUSH2 0x16C7 PUSH2 0x407E JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x16DA JUMPI PUSH2 0x16DA PUSH2 0x407E JUMP JUMPDEST SWAP1 MSTORE POP PUSH1 0x1 ADD PUSH2 0x1673 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x7B103999 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 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x174C 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 0x1770 SWAP2 SWAP1 PUSH2 0x4BF5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x8A227764 PUSH2 0x1786 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x5 ADD SLOAD PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17A8 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x17C5 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 0x9D8 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x4C12 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x9D8 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH32 0x0 AND CHAINID PUSH1 0x1 EQ PUSH2 0x2006 JUMP JUMPDEST PUSH2 0x182E PUSH2 0x1FD5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x185F JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x189E DUP3 DUP3 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 0x247B SWAP3 POP POP POP JUMP JUMPDEST POP POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x18C6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x313C8981 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x1913 DUP13 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE SWAP1 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 0x196E DUP3 PUSH2 0x2635 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x197E DUP3 DUP8 DUP8 DUP8 PUSH2 0x2662 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 0x19C5 JUMPI PUSH1 0x40 MLOAD PUSH4 0x25C00723 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x4 DUP4 ADD MSTORE DUP12 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH2 0x19D0 DUP11 DUP11 DUP11 PUSH2 0x1FF9 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1A37 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xE DUP2 MSTORE PUSH1 0x20 ADD PUSH14 0x696E76616C6964206F7261636C65 PUSH1 0x90 SHL DUP2 MSTORE POP PUSH2 0x22F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D933EB7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH20 0x0 SWAP1 PUSH4 0x5D933EB7 SWAP1 PUSH2 0x1A72 SWAP1 DUP7 SWAP1 DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x4C4E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS DELEGATECALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1AB0 JUMPI 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 0x1AAD SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x4C68 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1B1E JUMPI PUSH2 0x1ABC PUSH2 0x496B JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 SUB PUSH2 0x1AE4 JUMPI POP PUSH2 0x1AD0 PUSH2 0x4986 JUMP JUMPDEST DUP1 PUSH2 0x1ADB JUMPI POP PUSH2 0x1AE6 JUMP JUMPDEST PUSH2 0xF0F DUP2 PUSH2 0x2302 JUMP JUMPDEST POP JUMPDEST RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1B10 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 0x1B15 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH2 0xF0F PUSH2 0x2339 JUMP JUMPDEST PUSH2 0x1B7A PUSH32 0x0 DUP6 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 EQ PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x11 DUP2 MSTORE PUSH1 0x20 ADD PUSH17 0x34B73B30B634B21031BAB9BA37B234B0B7 PUSH1 0x79 SHL DUP2 MSTORE POP PUSH2 0x22F8 JUMP JUMPDEST PUSH2 0x1B8D DUP3 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH2 0x2086 JUMP JUMPDEST PUSH32 0xBAE099C209765C02C309F0FAC06AEC3AC516A3CC60D09F1A3DA4B52D673D28A3 DUP4 DUP4 DUP4 DUP9 PUSH1 0x40 MLOAD PUSH2 0x1BC2 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x4D02 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x900 PUSH32 0x0 DUP4 PUSH2 0x2690 JUMP JUMPDEST PUSH2 0x1C08 PUSH2 0x1FD5 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1C39 JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x1C4A JUMPI PUSH2 0x1C4A PUSH2 0x4A54 JUMP JUMPDEST DUP1 PUSH2 0x1C53 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x4 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1C69 SWAP3 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST POP PUSH2 0x1C82 DUP2 PUSH2 0x1C7D PUSH1 0x1 CHAINID EQ PUSH2 0x9C1 PUSH2 0x1FD5 JUMP JUMPDEST PUSH2 0x2753 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C8F PUSH2 0x2869 JUMP JUMPDEST DUP1 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF PUSH1 0x1 PUSH1 0x40 SHL DUP3 DIV AND ISZERO SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x1CB6 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH1 0x0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x1CD2 JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x1CE0 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x1CFE JUMPI PUSH1 0x40 MLOAD PUSH4 0xF92EE8A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP5 SLOAD PUSH8 0xFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 OR DUP6 SSTORE DUP4 ISZERO PUSH2 0x1D28 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST DUP8 PUSH2 0x1D31 PUSH2 0x1FD5 JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND OR SWAP1 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP10 AND SWAP1 PUSH1 0x0 SWAP1 PUSH32 0xC63757ACC12B39558FE5B88C5393E4B0353FFDDAAE3A2D07E121A8FC62D39C37 SWAP1 DUP3 SWAP1 LOG3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 CHAINID EQ PUSH2 0x1D94 JUMPI PUSH1 0x3 PUSH2 0x1D97 JUMP JUMPDEST PUSH1 0xC JUMPDEST PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1DAC PUSH1 0xA PUSH1 0x32 PUSH2 0x4D59 JUMP JUMPDEST PUSH2 0xFFFF AND DUP2 MSTORE PUSH4 0xBEBC200 PUSH1 0x20 DUP3 ADD MSTORE PUSH3 0x33450 PUSH1 0x40 SWAP1 SWAP2 ADD MSTORE PUSH2 0x1DCE PUSH2 0x1FD5 JUMP JUMPDEST DUP2 MLOAD PUSH1 0x3 SWAP2 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x20 DUP1 DUP6 ADD MLOAD PUSH1 0x40 DUP1 DUP8 ADD MLOAD PUSH1 0x60 SWAP1 SWAP8 ADD MLOAD PUSH3 0xFFFFFF AND PUSH1 0x1 PUSH1 0x60 SHL MUL PUSH3 0xFFFFFF PUSH1 0x60 SHL NOT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP9 AND PUSH5 0x100000000 MUL SWAP8 SWAP1 SWAP8 AND PUSH15 0xFFFFFFFFFFFFFFFFFFFFFF00000000 NOT PUSH2 0xFFFF SWAP4 DUP5 AND PUSH3 0x10000 MUL PUSH4 0xFFFFFFFF NOT SWAP1 SWAP7 AND SWAP4 SWAP1 SWAP8 AND SWAP3 SWAP1 SWAP3 OR SWAP4 SWAP1 SWAP4 OR SWAP5 SWAP1 SWAP5 AND SWAP4 SWAP1 SWAP4 OR SWAP4 SWAP1 SWAP4 OR SWAP1 SSTORE DUP2 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP5 ADD SWAP1 SWAP4 MSTORE PUSH1 0x0 SWAP3 SWAP1 SWAP2 DUP3 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x1E67 JUMPI SWAP1 POP POP SWAP1 POP PUSH1 0x1 CHAINID EQ PUSH2 0x1EC1 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1D DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x68747470733A2F2F7270632D746573746E65742E7769746E65742E696F000000 DUP2 MSTORE POP PUSH2 0x1EF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x18 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x68747470733A2F2F7270632D30312E7769746E65742E696F0000000000000000 DUP2 MSTORE POP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1F0B JUMPI PUSH2 0x1F0B PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 PUSH2 0x1F1F PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x4 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1F35 SWAP3 SWAP2 SWAP1 PUSH2 0x3C6D JUMP JUMPDEST POP PUSH2 0x1F75 DUP9 DUP9 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 0x247B SWAP3 POP POP POP JUMP JUMPDEST POP DUP4 ISZERO PUSH2 0x1FB8 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND DUP6 SSTORE PUSH1 0x40 MLOAD PUSH1 0x1 DUP2 MSTORE PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 SWAP1 PUSH1 0x20 ADD PUSH2 0x1BC2 JUMP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1FCC PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x5 ADD SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58F9 SWAP1 JUMP JUMPDEST PUSH2 0xFF0 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x2892 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x160F DUP4 PUSH1 0x60 SHR DUP4 PUSH2 0x2036 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH4 0x1D1DDA5D PUSH1 0xE2 SHL DUP2 MSTORE POP PUSH2 0x2967 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x1DDA5D PUSH1 0xEA SHL DUP2 MSTORE POP PUSH2 0x2967 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x28 PUSH1 0x21 PUSH1 0x99 SHL ADD EQ PUSH2 0x1C82 JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x20B0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH2 0x189E PUSH1 0x0 DUP4 DUP4 PUSH2 0x299B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0x0 NOT DUP2 LT ISZERO PUSH2 0xF0F JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x2126 JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH2 0xF0F DUP5 DUP5 DUP5 DUP5 SUB PUSH1 0x0 PUSH2 0x2892 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x215F JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2189 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH2 0xFF0 DUP4 DUP4 DUP4 PUSH2 0x299B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x21BE JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH2 0x189E DUP3 PUSH1 0x0 DUP4 PUSH2 0x299B JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x2223 JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0x224D JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x9D8 PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x0 SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 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 SWAP1 JUMP JUMPDEST SWAP1 JUMP JUMPDEST DUP2 PUSH2 0x189E JUMPI PUSH2 0x189E DUP2 JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2313 SWAP2 SWAP1 PUSH2 0x4D7D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP1 DUP3 SWAP1 MSTORE PUSH3 0x461BCD PUSH1 0xE5 SHL DUP3 MSTORE PUSH2 0xC04 SWAP2 PUSH1 0x4 ADD PUSH2 0x3DA4 JUMP JUMPDEST PUSH2 0x236D PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x13 DUP2 MSTORE PUSH1 0x20 ADD PUSH19 0x3AB73430B7323632B21032BC31B2B83A34B7B7 PUSH1 0x69 SHL DUP2 MSTORE POP PUSH2 0x2302 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH2 0x9D8 PUSH32 0x0 PUSH1 0x5 PUSH2 0x2AC5 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x9D8 PUSH32 0x0 PUSH1 0x6 PUSH2 0x2AC5 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x23D7 JUMPI PUSH1 0x2B PUSH2 0x23DA JUMP JUMPDEST PUSH1 0x2A JUMPDEST PUSH1 0xFF AND DUP4 MLOAD EQ PUSH2 0x2425 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 PUSH22 0x84CAC6D066647440D2DCECC2D8D2C840D8CADCCEE8D PUSH1 0x53 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH2 0x2471 DUP4 DUP4 PUSH2 0x2450 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH4 0x1D1DDA5D PUSH1 0xE2 SHL DUP2 MSTORE POP PUSH2 0x2B70 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x1DDA5D PUSH1 0xEA SHL DUP2 MSTORE POP PUSH2 0x2B70 JUMP JUMPDEST PUSH1 0x60 SHL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x0 DUP2 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SUB PUSH2 0x24EA 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 PUSH22 0x3AB730B1B1B2B83A30B13632903AB73BB930B83832B9 PUSH1 0x51 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH32 0xAF2313438CF7747B4740D0822C1E7683638361ACE0DAA8F1C4D5A15D57F4EF04 DUP2 PUSH1 0x40 MLOAD PUSH2 0x2519 SWAP2 SWAP1 PUSH2 0x3DA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x252E DUP2 PUSH1 0x1 CHAINID EQ PUSH2 0x23C9 JUMP JUMPDEST PUSH2 0x2536 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x2 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x60 SWAP3 SWAP1 SWAP3 SHR SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x1C82 PUSH2 0x255C PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x4 ADD 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 0x262B JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x259E SWAP1 PUSH2 0x44AB 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 0x25CA SWAP1 PUSH2 0x44AB JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2617 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x25EC JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2617 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 0x25FA JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x257F JUMP JUMPDEST POP POP POP POP DUP3 PUSH2 0x2753 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x900 PUSH2 0x2642 PUSH2 0x21CA JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH2 0x1901 PUSH1 0xF0 SHL DUP2 MSTORE PUSH1 0x2 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x2674 DUP9 DUP9 DUP9 DUP9 PUSH2 0x2BF2 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x2684 DUP3 DUP3 PUSH2 0x2CC1 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5E742EF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH3 0x35B60 PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x64 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x5E742EF SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x26E4 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 0x2708 SWAP2 SWAP1 PUSH2 0x44DF JUMP JUMPDEST PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58FC SLOAD PUSH2 0x273F SWAP1 PUSH3 0x10000 SWAP1 DIV PUSH2 0xFFFF AND PUSH1 0x64 PUSH2 0x4DB1 JUMP JUMPDEST PUSH2 0x2749 SWAP2 SWAP1 PUSH2 0x4DC4 JUMP JUMPDEST PUSH2 0x160F SWAP2 SWAP1 PUSH2 0x4DDB JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x2 DUP1 DUP3 MSTORE PUSH1 0x60 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x276B JUMPI SWAP1 POP POP SWAP1 POP PUSH2 0x278A PUSH2 0x17ED JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x279D JUMPI PUSH2 0x279D PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP2 DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x27BC JUMPI PUSH2 0x27BC PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH1 0x40 MLOAD PUSH4 0x3C389C6F PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0xF0E271BC SWAP1 PUSH2 0x2815 SWAP1 DUP5 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x4DEF JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2834 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 0x2858 SWAP2 SWAP1 PUSH2 0x44DF JUMP JUMPDEST PUSH2 0x2860 PUSH2 0x1FD5 JUMP JUMPDEST PUSH1 0x5 ADD SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x900 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x28BC JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x28E6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 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 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0xF0F JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x2959 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x60 DUP4 DUP2 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND PUSH1 0x20 DUP4 ADD MSTORE SWAP1 PUSH2 0x160F SWAP1 PUSH1 0x34 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP4 PUSH2 0x2D7A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x29C6 JUMPI DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x29BB SWAP2 SWAP1 PUSH2 0x4DB1 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x2A38 SWAP1 POP 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 0x2A19 JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2A54 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x2A73 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 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0x2AB8 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xFF DUP4 EQ PUSH2 0x2ADF JUMPI PUSH2 0x2AD8 DUP4 PUSH2 0x2DC8 JUMP JUMPDEST SWAP1 POP PUSH2 0x900 JUMP JUMPDEST DUP2 DUP1 SLOAD PUSH2 0x2AEB SWAP1 PUSH2 0x44AB 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 0x2B17 SWAP1 PUSH2 0x44AB JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2B64 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2B39 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2B64 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 0x2B47 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH2 0x900 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x2B9F DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2B89 SWAP2 SWAP1 PUSH2 0x4E14 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x1 PUSH2 0x2E07 JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x2BCC DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2BB7 SWAP2 SWAP1 PUSH2 0x4E14 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP4 PUSH2 0x3198 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BDD DUP3 PUSH1 0x5 PUSH1 0x8 PUSH1 0x0 PUSH2 0x31EC JUMP JUMPDEST SWAP1 POP PUSH2 0x2BE8 DUP2 PUSH2 0x31FA JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0x2C2D JUMPI POP PUSH1 0x0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x2CB7 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 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 0x2C81 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 0x2CAD JUMPI POP PUSH1 0x0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x2CB7 JUMP JUMPDEST SWAP3 POP PUSH1 0x0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2CD5 JUMPI PUSH2 0x2CD5 PUSH2 0x407E JUMP JUMPDEST SUB PUSH2 0x2CDE JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2CF2 JUMPI PUSH2 0x2CF2 PUSH2 0x407E JUMP JUMPDEST SUB PUSH2 0x2D10 JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2D24 JUMPI PUSH2 0x2D24 PUSH2 0x407E JUMP JUMPDEST SUB PUSH2 0x2D45 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2D59 JUMPI PUSH2 0x2D59 PUSH2 0x407E JUMP JUMPDEST SUB PUSH2 0x189E JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2D8F SWAP2 SWAP1 PUSH2 0x4E14 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP1 POP PUSH1 0x0 PUSH2 0x2DB1 DUP6 PUSH1 0x8 PUSH1 0x5 PUSH1 0x1 PUSH2 0x3255 JUMP JUMPDEST SWAP1 POP PUSH2 0x2DBF DUP3 DUP3 PUSH1 0x1 PUSH2 0x331D JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x2DD5 DUP4 PUSH2 0x35AE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE SWAP2 SWAP3 POP PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP POP POP SWAP2 DUP3 MSTORE POP PUSH1 0x20 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x0 PUSH1 0x5A DUP6 MLOAD GT ISZERO PUSH2 0x2E5E 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 0x4265636833323A20696E76616C696420737472696E67206C656E677468000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP6 MLOAD DUP2 LT ISZERO PUSH2 0x2F5B JUMPI PUSH1 0x0 DUP7 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2E7E JUMPI PUSH2 0x2E7E PUSH2 0x4BDF JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD PUSH1 0xF8 SHR SWAP1 POP PUSH1 0x21 DUP2 LT DUP1 ISZERO SWAP1 PUSH2 0x2E9D JUMPI POP PUSH1 0x7E DUP2 PUSH1 0xFF AND GT ISZERO JUMPDEST PUSH2 0x2EDE 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 PUSH18 0x2132B1B419991D103BB937B7339031B430B9 PUSH1 0x71 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x30 NOT PUSH1 0xFF DUP3 AND ADD PUSH2 0x2F52 JUMPI DUP3 ISZERO DUP1 ISZERO PUSH2 0x2EF9 JUMPI POP PUSH1 0x1 DUP3 LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x2F09 JUMPI POP DUP7 MLOAD DUP3 PUSH1 0x7 ADD GT ISZERO JUMPDEST PUSH2 0x2F4E 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 PUSH22 0x4265636833323A2077726F6E6720706F73206F662031 PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST DUP2 SWAP3 POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x2E61 JUMP JUMPDEST POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2F74 JUMPI PUSH2 0x2F74 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2F9E JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP3 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2FFA JUMPI DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x2FBE JUMPI PUSH2 0x2FBE PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2FDB JUMPI PUSH2 0x2FDB PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x1 ADD PUSH2 0x2FA4 JUMP JUMPDEST POP PUSH1 0x1 DUP2 DUP7 MLOAD SUB SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3019 JUMPI PUSH2 0x3019 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3042 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP2 POP PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x3135 JUMPI PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH2 0x120 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x100 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x4F9B PUSH2 0x100 SWAP2 CODECOPY DUP8 DUP5 DUP5 ADD PUSH1 0x1 ADD DUP2 MLOAD DUP2 LT PUSH2 0x3086 JUMPI PUSH2 0x3086 PUSH2 0x4BDF JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD DUP2 MLOAD PUSH1 0xF8 SWAP2 SWAP1 SWAP2 SHR SWAP1 DUP2 LT PUSH2 0x30A2 JUMPI PUSH2 0x30A2 PUSH2 0x4BDF JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT SWAP1 DUP2 AND SWAP2 POP DUP2 SWAP1 SUB PUSH2 0x3104 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 0x4265636833323A2062797465206E6F7420696E20616C70686162657400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST DUP1 PUSH1 0xF8 SHR DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x311A JUMPI PUSH2 0x311A PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE POP PUSH1 0x1 ADD PUSH2 0x3048 JUMP JUMPDEST POP PUSH2 0x3141 DUP4 DUP4 DUP7 PUSH2 0x35D6 JUMP JUMPDEST PUSH2 0x3186 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 PUSH22 0x4265636833323A2077726F6E6720636865636B73756D PUSH1 0x50 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST POP DUP1 MLOAD PUSH1 0x5 NOT ADD DUP2 MSTORE SWAP1 SWAP4 SWAP1 SWAP3 POP SWAP1 POP JUMP JUMPDEST DUP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 DUP3 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 EQ PUSH2 0x189E 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 PUSH20 0x84CAC6D066647440D0E4E040DAD2E6DAC2E8C6D PUSH1 0x63 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x2DBF DUP6 DUP6 DUP6 DUP6 PUSH2 0x3704 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD PUSH1 0x14 EQ PUSH2 0x324D 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 0x4265636833323A20696E76616C69642064617461206C656E6774680000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xC04 JUMP JUMPDEST POP PUSH1 0x14 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP6 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3272 JUMPI PUSH2 0x3272 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x329B JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x3310 JUMPI DUP7 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x32C8 JUMPI PUSH2 0x32C8 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH1 0xF8 SHR DUP3 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x32EE JUMPI PUSH2 0x32EE PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH2 0x3309 DUP2 PUSH2 0x4E30 JUMP JUMPDEST SWAP1 POP PUSH2 0x32A1 JUMP JUMPDEST POP PUSH2 0x2BE8 DUP2 DUP7 DUP7 DUP7 PUSH2 0x3704 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x332C DUP6 DUP6 DUP6 PUSH2 0x38D4 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD DUP6 MLOAD DUP8 MLOAD ADD ADD PUSH1 0x1 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3352 JUMPI PUSH2 0x3352 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x337C JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP7 MLOAD DUP2 LT ISZERO PUSH2 0x33D9 JUMPI DUP7 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x339D JUMPI PUSH2 0x339D PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x33BA JUMPI PUSH2 0x33BA PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x1 ADD PUSH2 0x3382 JUMP JUMPDEST POP PUSH1 0x31 PUSH1 0xF8 SHL DUP2 DUP8 MLOAD DUP2 MLOAD DUP2 LT PUSH2 0x33F2 JUMPI PUSH2 0x33F2 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP DUP6 MLOAD PUSH1 0x1 ADD PUSH1 0x0 JUMPDEST DUP7 MLOAD DUP2 LT ISZERO PUSH2 0x34D9 JUMPI PUSH1 0x0 DUP8 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x342E JUMPI PUSH2 0x342E PUSH2 0x4BDF JUMP JUMPDEST ADD PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE DUP3 DUP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x509B DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 DUP4 ADD MSTORE PUSH1 0xF8 SHR SWAP2 POP DUP2 LT ISZERO PUSH2 0x34D0 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x509B DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP2 MSTORE POP DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x3499 JUMPI PUSH2 0x3499 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP5 DUP5 DUP5 ADD DUP2 MLOAD DUP2 LT PUSH2 0x34B8 JUMPI PUSH2 0x34B8 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x3411 JUMP JUMPDEST POP DUP6 MLOAD ADD PUSH1 0x0 JUMPDEST DUP4 MLOAD DUP2 LT ISZERO PUSH2 0x2684 JUMPI PUSH1 0x0 DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x34FD JUMPI PUSH2 0x34FD PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x509B DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP2 MSTORE POP MLOAD DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x35A5 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x509B DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE DUP2 MSTORE POP DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x356E JUMPI PUSH2 0x356E PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP5 DUP5 DUP5 ADD DUP2 MLOAD DUP2 LT PUSH2 0x358D JUMPI PUSH2 0x358D PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x34E0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0x1F DUP2 GT ISZERO PUSH2 0x900 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x35E2 DUP6 PUSH2 0x3A78 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 MLOAD DUP3 MLOAD ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3602 JUMPI PUSH2 0x3602 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x362B JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x3686 JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x364C JUMPI PUSH2 0x364C PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3669 JUMPI PUSH2 0x3669 PUSH2 0x4BDF JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x3631 JUMP JUMPDEST POP PUSH1 0x0 JUMPDEST DUP6 MLOAD DUP2 LT ISZERO PUSH2 0x36E2 JUMPI DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x36A5 JUMPI PUSH2 0x36A5 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP5 MLOAD DUP4 ADD DUP2 MLOAD DUP2 LT PUSH2 0x36C5 JUMPI PUSH2 0x36C5 PUSH2 0x4BDF JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x368A JUMP JUMPDEST POP DUP4 PUSH4 0xFFFFFFFF AND PUSH2 0x36F3 DUP3 PUSH2 0x3B73 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND EQ SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 DUP1 PUSH2 0x3717 PUSH1 0x1 DUP1 DUP9 SHL PUSH2 0x4E4C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP9 MLOAD DUP2 LT ISZERO PUSH2 0x380D JUMPI PUSH1 0x0 DUP10 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3739 JUMPI PUSH2 0x3739 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MLOAD SWAP1 POP PUSH1 0xFF DUP1 DUP3 AND DUP11 SHR AND ISZERO PUSH2 0x37BA 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 0x4265636833323A2076616C7565206D757374206265206E6F6E2D6E6567617469 PUSH1 0x44 DUP3 ADD MSTORE PUSH22 0x766520616E642066697420696E2066726F6D62697473 PUSH1 0x50 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xC04 JUMP JUMPDEST SWAP4 DUP9 SHL PUSH1 0xFF DUP6 AND OR SWAP4 SWAP3 DUP9 ADD SWAP3 JUMPDEST DUP8 DUP5 LT PUSH2 0x3804 JUMPI PUSH1 0x40 MLOAD SWAP4 DUP9 SWAP1 SUB SWAP4 PUSH2 0x37EE SWAP1 DUP8 SWAP1 DUP8 DUP8 SHR DUP7 AND PUSH1 0xF8 SHL SWAP1 PUSH1 0x20 ADD PUSH2 0x4E5F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP6 POP PUSH2 0x37C8 JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x371C JUMP JUMPDEST POP DUP5 ISZERO PUSH2 0x3855 JUMPI DUP2 ISZERO PUSH2 0x3850 JUMPI DUP4 DUP2 PUSH2 0x3826 DUP5 DUP10 PUSH2 0x4E4C JUMP JUMPDEST DUP6 SWAP1 SHL AND PUSH1 0xF8 SHL PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x383E SWAP3 SWAP2 SWAP1 PUSH2 0x4E5F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP JUMPDEST PUSH2 0x38C9 JUMP JUMPDEST DUP7 DUP3 LT DUP1 PUSH2 0x386F JUMPI POP DUP1 PUSH2 0x3869 DUP4 DUP9 PUSH2 0x4E4C JUMP JUMPDEST DUP5 SWAP1 SHL AND ISZERO JUMPDEST PUSH2 0x38C9 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 0x4265636833323A20696E76616C69642070616464696E67206F722076616C7565 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x2073697A65 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xC04 JUMP JUMPDEST POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x38E1 DUP6 PUSH2 0x3A78 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP5 MLOAD DUP3 MLOAD ADD PUSH1 0x6 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3904 JUMPI PUSH2 0x3904 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x392D JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP6 MLOAD DUP4 MLOAD ADD DUP2 LT ISZERO PUSH2 0x39F1 JUMPI DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x3996 JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x395A JUMPI PUSH2 0x395A PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3977 JUMPI PUSH2 0x3977 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH4 0xFFFFFFFF AND SWAP1 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP POP PUSH2 0x39E9 JUMP JUMPDEST DUP6 DUP4 MLOAD DUP3 SUB DUP2 MLOAD DUP2 LT PUSH2 0x39AB JUMPI PUSH2 0x39AB PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH1 0xF8 SHR PUSH1 0xFF AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x39CE JUMPI PUSH2 0x39CE PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH4 0xFFFFFFFF AND SWAP1 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x3933 JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x6 DUP1 DUP3 MSTORE PUSH1 0xE0 DUP3 ADD SWAP1 SWAP3 MSTORE SWAP1 PUSH1 0x20 DUP3 ADD PUSH1 0xC0 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP3 POP PUSH1 0x0 DUP5 PUSH2 0x3A1F DUP4 PUSH2 0x3B73 JUMP JUMPDEST XOR SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x6 DUP2 LT ISZERO PUSH2 0x3A6D JUMPI DUP1 PUSH1 0x5 SUB PUSH1 0x5 MUL DUP3 PUSH4 0xFFFFFFFF AND SWAP1 SHR PUSH1 0x1F AND DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3A53 JUMPI PUSH2 0x3A53 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x3A25 JUMP JUMPDEST POP POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 MLOAD DUP3 MLOAD ADD PUSH1 0x1 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3A99 JUMPI PUSH2 0x3A99 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3AC2 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x1616 JUMPI PUSH1 0x5 DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3AE5 JUMPI PUSH2 0x3AE5 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH1 0xF8 SHR PUSH1 0xFF AND SWAP1 SHR DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3B0A JUMPI PUSH2 0x3B0A PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH1 0xFF AND SWAP1 DUP2 PUSH1 0xFF AND DUP2 MSTORE POP POP DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x3B30 JUMPI PUSH2 0x3B30 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH1 0xF8 SHR PUSH1 0x1F AND DUP3 DUP5 MLOAD DUP4 ADD PUSH1 0x1 ADD DUP2 MLOAD DUP2 LT PUSH2 0x3B59 JUMPI PUSH2 0x3B59 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x3AC8 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xA0 DUP2 ADD DUP3 MSTORE PUSH4 0x3B6A57B2 DUP2 MSTORE PUSH4 0x26508E6D PUSH1 0x20 DUP3 ADD MSTORE PUSH4 0x1EA119FA SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH4 0x3D4233DD PUSH1 0x60 DUP3 ADD MSTORE PUSH4 0x2A1462B3 PUSH1 0x80 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 PUSH1 0x1 SWAP1 DUP3 JUMPDEST DUP5 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x3C64 JUMPI PUSH1 0x0 PUSH1 0x19 DUP5 PUSH4 0xFFFFFFFF AND SWAP1 SHR SWAP1 POP DUP6 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x3BEC JUMPI PUSH2 0x3BEC PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x5 DUP6 PUSH4 0x1FFFFFF AND PUSH4 0xFFFFFFFF AND SWAP1 SHL XOR SWAP4 POP PUSH1 0x0 JUMPDEST PUSH1 0x5 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x3C5A JUMPI PUSH1 0x1 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND SHR DUP2 AND SWAP1 SUB PUSH2 0x3C52 JUMPI DUP4 DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0x5 DUP2 LT PUSH2 0x3C48 JUMPI PUSH2 0x3C48 PUSH2 0x4BDF JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD DUP6 XOR SWAP5 POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x3C0B JUMP JUMPDEST POP POP PUSH1 0x1 ADD PUSH2 0x3BB6 JUMP JUMPDEST POP SWAP1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x3CB3 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x3CB3 JUMPI DUP3 MLOAD DUP3 SWAP1 PUSH2 0x3CA3 SWAP1 DUP3 PUSH2 0x4EDC JUMP JUMPDEST POP SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x3C8D JUMP JUMPDEST POP PUSH2 0x3CBF SWAP3 SWAP2 POP PUSH2 0x3CC3 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x3CBF JUMPI PUSH1 0x0 PUSH2 0x3CD7 DUP3 DUP3 PUSH2 0x3CE0 JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x3CC3 JUMP JUMPDEST POP DUP1 SLOAD PUSH2 0x3CEC SWAP1 PUSH2 0x44AB JUMP JUMPDEST PUSH1 0x0 DUP3 SSTORE DUP1 PUSH1 0x1F LT PUSH2 0x3CFC JUMPI POP POP JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x1C82 SWAP2 SWAP1 JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x3CBF JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x3D16 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3D3C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x160F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3D6F JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x3D57 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x3D90 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x3D54 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x160F PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3D78 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1C82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3DDF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x3DEA DUP2 PUSH2 0x3DB7 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 0x3E0D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x3E18 DUP2 PUSH2 0x3DB7 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x3E28 DUP2 PUSH2 0x3DB7 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 0x3E4B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x160F DUP2 PUSH2 0x3DB7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3E68 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x3E81 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3E98 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x3EB0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3ECC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3EE2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 ADD PUSH1 0xE0 DUP2 DUP8 SUB SLT ISZERO PUSH2 0x3EF4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3F0F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3F1B DUP7 DUP3 DUP8 ADD PUSH2 0x3E6F JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 DUP5 SUB SLT DUP1 ISZERO PUSH2 0x3F3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP SWAP1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MLOAD DUP1 DUP6 MSTORE PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 PUSH1 0x5 SHL DUP4 ADD ADD PUSH1 0x20 DUP6 ADD PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2684 JUMPI PUSH1 0x1F NOT DUP6 DUP5 SUB ADD DUP9 MSTORE PUSH2 0x3F7D DUP4 DUP4 MLOAD PUSH2 0x3D78 JUMP JUMPDEST PUSH1 0x20 SWAP9 DUP10 ADD SWAP9 SWAP1 SWAP4 POP SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x3F61 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x160F PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x3F43 JUMP JUMPDEST PUSH1 0xFF PUSH1 0xF8 SHL DUP9 AND DUP2 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x3FC5 PUSH1 0xE0 DUP4 ADD DUP10 PUSH2 0x3D78 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x3FD7 DUP2 DUP10 PUSH2 0x3D78 JUMP JUMPDEST PUSH1 0x60 DUP5 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD DUP7 SWAP1 MSTORE DUP4 DUP2 SUB PUSH1 0xC0 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP8 ADD SWAP4 POP SWAP1 SWAP2 ADD SWAP1 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x402D JUMPI DUP4 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x400F JUMP JUMPDEST POP SWAP1 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1C82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0xC0D DUP2 PUSH2 0x403E JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4073 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x3EF4 DUP2 PUSH2 0x403E JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x4 DUP2 LT PUSH2 0x40A4 JUMPI PUSH2 0x40A4 PUSH2 0x407E JUMP JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0x900 DUP3 DUP5 PUSH2 0x4094 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x40C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x40DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x40F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4106 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 PUSH1 0x20 DUP3 PUSH1 0x5 SHL DUP5 ADD ADD GT ISZERO PUSH2 0x411B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 SWAP1 SWAP5 POP SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 DUP5 ADD SWAP1 PUSH1 0x40 DUP5 ADD SWAP1 DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x416B JUMPI PUSH2 0x4158 DUP4 DUP6 MLOAD PUSH2 0x4094 JUMP JUMPDEST PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x4145 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4189 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x419F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x41AB DUP6 DUP3 DUP7 ADD PUSH2 0x3E6F JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1C82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x41E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x41EC DUP2 PUSH2 0x3DB7 JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD PUSH2 0x41FC DUP2 PUSH2 0x3DB7 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH2 0x421A DUP2 PUSH2 0x41B7 JUMP 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 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x424C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3F0F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x427C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4287 DUP2 PUSH2 0x3DB7 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4297 DUP2 PUSH2 0x3DB7 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0xC0 DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x42D7 JUMPI PUSH2 0x42D7 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MSTORE POP JUMP JUMPDEST PUSH1 0x40 DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x42D7 JUMPI PUSH2 0x42D7 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x42D7 JUMPI PUSH2 0x42D7 PUSH2 0x42A2 JUMP JUMPDEST 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 PUSH2 0x4340 JUMPI PUSH2 0x4340 PUSH2 0x42A2 JUMP JUMPDEST PUSH1 0x40 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x4360 JUMPI PUSH2 0x4360 PUSH2 0x42A2 JUMP JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4380 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4396 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP5 SGT PUSH2 0x43A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x43C0 JUMPI PUSH2 0x43C0 PUSH2 0x42A2 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL PUSH1 0x40 MLOAD PUSH2 0x43D4 PUSH1 0x20 DUP4 ADD DUP3 PUSH2 0x431B JUMP JUMPDEST SWAP2 DUP3 MSTORE PUSH1 0x20 DUP2 DUP5 ADD DUP2 ADD SWAP3 SWAP1 DUP2 ADD DUP8 DUP5 GT ISZERO PUSH2 0x43EF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP6 ADD SWAP3 POP JUMPDEST DUP4 DUP4 LT ISZERO PUSH2 0x4480 JUMPI DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4414 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x3F DUP2 ADD DUP10 SGT PUSH2 0x4425 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP2 ADD CALLDATALOAD PUSH2 0x4433 DUP2 PUSH2 0x4347 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4440 DUP3 DUP3 PUSH2 0x431B JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x40 DUP5 DUP5 ADD ADD DUP13 LT ISZERO PUSH2 0x4455 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 DUP6 MSTORE POP POP POP POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH1 0x20 DUP4 ADD SWAP3 POP PUSH2 0x43F6 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x44A0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x3EF4 DUP2 PUSH2 0x3DB7 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x44BF JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1616 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x44F1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x1C82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x451A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x160F DUP2 PUSH2 0x44F8 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x453C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x20 DUP2 ADD SWAP3 POP CALLDATALOAD SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x455B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x3EB0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH1 0x0 DUP3 DUP3 ADD PUSH1 0x20 SWAP1 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x1F SWAP1 SWAP2 ADD PUSH1 0x1F NOT AND SWAP1 SWAP2 ADD ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 DUP3 MSTORE DUP5 CALLDATALOAD DUP3 DUP3 ADD MSTORE PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x0 SWAP1 DUP6 ADD CALLDATALOAD PUSH2 0x45B7 DUP2 PUSH2 0x44F8 JUMP JUMPDEST PUSH2 0xFFFF AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x45CE DUP2 PUSH2 0x44F8 JUMP JUMPDEST PUSH2 0xFFFF AND PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0x80 DUP6 ADD CALLDATALOAD PUSH2 0x45E5 DUP2 PUSH2 0x403E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0xC0 DUP4 ADD MSTORE PUSH2 0x45FF PUSH1 0xA0 DUP7 ADD PUSH2 0x4053 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x461A PUSH1 0xC0 DUP7 ADD DUP7 PUSH2 0x4525 JUMP JUMPDEST PUSH1 0xE0 PUSH2 0x100 DUP6 ADD MSTORE PUSH2 0x4631 PUSH2 0x120 DUP6 ADD DUP3 DUP5 PUSH2 0x456A JUMP JUMPDEST SWAP2 POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x2BE8 DUP2 DUP6 DUP8 PUSH2 0x456A JUMP JUMPDEST DUP1 MLOAD PUSH1 0x14 DUP2 LT PUSH2 0xC0D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0xC0D DUP2 PUSH2 0x403E JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x4672 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x20 DUP4 ADD PUSH1 0x0 PUSH2 0x4683 DUP4 PUSH2 0x4347 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4690 DUP3 DUP3 PUSH2 0x431B JUMP JUMPDEST DUP1 SWAP3 POP DUP5 DUP2 MSTORE DUP8 DUP6 DUP6 ADD GT ISZERO PUSH2 0x46A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x46B3 DUP6 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x3D54 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0xC0D DUP2 PUSH2 0x41B7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xC0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x46DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x46E7 DUP2 PUSH2 0x42B8 JUMP JUMPDEST DUP1 SWAP2 POP DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4700 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 ADD PUSH1 0x40 DUP2 DUP7 SUB SLT ISZERO PUSH2 0x4712 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x471E DUP2 PUSH2 0x42DD JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4734 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4740 DUP8 DUP3 DUP6 ADD PUSH2 0x4661 JUMP JUMPDEST DUP3 MSTORE POP PUSH1 0x20 SWAP2 DUP3 ADD MLOAD DUP3 DUP3 ADD MSTORE DUP3 MSTORE PUSH2 0x475A SWAP1 DUP5 ADD PUSH2 0x46BE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x476B PUSH1 0x40 DUP5 ADD PUSH2 0x46BE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x477C PUSH1 0x60 DUP5 ADD PUSH2 0x46BE JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x478D PUSH1 0x80 DUP5 ADD PUSH2 0x4656 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x479E PUSH1 0xA0 DUP5 ADD PUSH2 0x4656 JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x47BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x47D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0xA0 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x47E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x47F0 DUP2 PUSH2 0x42FC JUMP JUMPDEST DUP2 MLOAD PUSH2 0x100 DUP2 LT PUSH2 0x4800 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH2 0x480E PUSH1 0x20 DUP4 ADD PUSH2 0x4647 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP3 DUP2 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x4829 PUSH1 0x60 DUP4 ADD PUSH2 0x4656 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4847 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4853 DUP7 DUP3 DUP6 ADD PUSH2 0x46C9 JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD PUSH2 0x100 DUP2 LT PUSH2 0x487A JUMPI PUSH2 0x487A PUSH2 0x407E JUMP JUMPDEST DUP1 PUSH1 0x20 DUP5 ADD MSTORE POP PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x14 DUP2 LT PUSH2 0x4896 JUMPI PUSH2 0x4896 PUSH2 0x407E JUMP JUMPDEST DUP1 PUSH1 0x40 DUP5 ADD MSTORE POP PUSH1 0x40 DUP4 ADD MLOAD PUSH1 0x60 DUP4 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH1 0x60 DUP5 ADD MLOAD AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0xA0 DUP1 DUP5 ADD MSTORE DUP1 MLOAD PUSH1 0xC0 DUP1 DUP6 ADD MSTORE DUP1 MLOAD PUSH1 0x40 PUSH2 0x180 DUP7 ADD MSTORE PUSH2 0x48E5 PUSH2 0x1C0 DUP7 ADD DUP3 PUSH2 0x3D78 JUMP JUMPDEST PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH2 0x1A0 DUP8 ADD MSTORE SWAP2 DUP4 ADD MLOAD PUSH1 0xFF AND PUSH1 0xE0 DUP7 ADD MSTORE POP PUSH1 0x40 DUP3 ADD MLOAD SWAP1 PUSH2 0x4914 PUSH2 0x100 DUP7 ADD DUP4 PUSH1 0xFF AND SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x60 DUP4 ADD MLOAD PUSH1 0xFF AND PUSH2 0x120 DUP7 ADD MSTORE PUSH1 0x80 DUP4 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 AND PUSH2 0x140 DUP9 ADD MSTORE PUSH1 0xA0 SWAP1 SWAP5 ADD MLOAD SWAP4 DUP5 AND PUSH2 0x160 DUP8 ADD MSTORE SWAP2 POP PUSH2 0x2DBF JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4960 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x160F DUP2 PUSH2 0x403E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 RETURNDATASIZE GT ISZERO PUSH2 0x22F5 JUMPI PUSH1 0x4 PUSH1 0x0 DUP1 RETURNDATACOPY POP PUSH1 0x0 MLOAD PUSH1 0xE0 SHR SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x44 RETURNDATASIZE LT ISZERO PUSH2 0x4994 JUMPI SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x3 NOT ADD PUSH1 0x4 DUP3 RETURNDATACOPY DUP1 MLOAD RETURNDATASIZE PUSH1 0x24 DUP3 ADD GT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x49BD JUMPI POP POP SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x49D8 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST RETURNDATASIZE DUP5 ADD PUSH1 0x3 NOT ADD DUP3 DUP3 ADD PUSH1 0x20 ADD GT ISZERO PUSH2 0x49F2 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST PUSH2 0x4A01 PUSH1 0x20 DUP3 DUP6 ADD ADD DUP6 PUSH2 0x431B JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4A1B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x160F DUP2 PUSH2 0x403E JUMP JUMPDEST PUSH3 0xFFFFFF DUP2 AND DUP2 EQ PUSH2 0x1C82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4A49 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x160F DUP2 PUSH2 0x4A26 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x4A75 DUP2 PUSH2 0x44F8 JUMP JUMPDEST PUSH2 0xFFFF DUP2 AND SWAP1 POP DUP2 SLOAD DUP2 PUSH2 0xFFFF NOT DUP3 AND OR DUP4 SSTORE PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x4A96 DUP2 PUSH2 0x44F8 JUMP JUMPDEST PUSH4 0xFFFF0000 DUP2 PUSH1 0x10 SHL AND SWAP1 POP DUP1 DUP4 PUSH4 0xFFFFFFFF NOT DUP5 AND OR OR DUP5 SSTORE PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x4ABE DUP2 PUSH2 0x403E JUMP JUMPDEST PUSH12 0xFFFFFFFFFFFFFFFF00000000 DUP2 PUSH1 0x20 SHL AND DUP5 PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT DUP6 AND OR DUP4 OR OR DUP6 SSTORE POP POP POP POP PUSH1 0x0 PUSH1 0x60 DUP4 ADD CALLDATALOAD PUSH2 0x4AFB DUP2 PUSH2 0x4A26 JUMP JUMPDEST DUP3 SLOAD PUSH3 0xFFFFFF PUSH1 0x60 SHL NOT AND PUSH1 0x60 SWAP2 SWAP1 SWAP2 SHL PUSH3 0xFFFFFF PUSH1 0x60 SHL AND OR SWAP1 SWAP2 SSTORE POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x900 JUMPI PUSH2 0x900 PUSH2 0x4B1C JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 SUB PUSH2 0x4B73 JUMPI PUSH2 0x4B73 PUSH2 0x4B1C JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND DUP2 MSTORE PUSH1 0x80 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x4BA1 SWAP1 DUP4 ADD DUP7 DUP9 PUSH2 0x456A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP5 SWAP1 SWAP5 AND PUSH1 0x40 DUP4 ADD MSTORE POP PUSH1 0x60 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4BD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x7 DUP2 LT PUSH2 0x160F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C07 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x160F DUP2 PUSH2 0x3DB7 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C24 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4C3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4C46 DUP5 DUP3 DUP6 ADD PUSH2 0x4661 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP4 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x2DBF PUSH1 0x40 DUP4 ADD DUP5 DUP7 PUSH2 0x456A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x4C80 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 MLOAD PUSH1 0x20 DUP8 ADD MLOAD SWAP1 SWAP6 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4C9E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4CAA DUP9 DUP3 DUP10 ADD PUSH2 0x4661 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4CC6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4CD2 DUP9 DUP3 DUP10 ADD PUSH2 0x4661 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 DUP7 ADD MLOAD PUSH2 0x4CE3 DUP2 PUSH2 0x3DB7 JUMP JUMPDEST PUSH1 0x80 DUP8 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x4CF4 DUP2 PUSH2 0x403E JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x80 DUP2 MSTORE PUSH1 0x0 PUSH2 0x4D15 PUSH1 0x80 DUP4 ADD DUP8 PUSH2 0x3D78 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP6 SWAP1 SWAP6 AND PUSH1 0x20 DUP4 ADD MSTORE POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP3 SWAP1 SWAP3 AND PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x60 SWAP1 SWAP2 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xFFFF DUP4 AND DUP1 PUSH2 0x4D6D JUMPI PUSH2 0x4D6D PUSH2 0x4D43 JUMP JUMPDEST DUP1 PUSH2 0xFFFF DUP5 AND DIV SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH12 0x2BB930B83832B22BA4AA1D1 PUSH1 0xA5 SHL DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD PUSH2 0x4DA4 DUP2 PUSH1 0xC DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x3D54 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD PUSH1 0xC ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x900 JUMPI PUSH2 0x900 PUSH2 0x4B1C JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x900 JUMPI PUSH2 0x900 PUSH2 0x4B1C JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x4DEA JUMPI PUSH2 0x4DEA PUSH2 0x4D43 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH1 0x0 PUSH2 0x4E02 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x3F43 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x2DBF DUP2 DUP6 PUSH2 0x3F43 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x4E26 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x3D54 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP3 AND PUSH4 0xFFFFFFFF DUP2 SUB PUSH2 0x4B73 JUMPI PUSH2 0x4B73 PUSH2 0x4B1C JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x900 JUMPI PUSH2 0x900 PUSH2 0x4B1C JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x4E71 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x3D54 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT SWAP4 SWAP1 SWAP4 AND SWAP2 SWAP1 SWAP3 ADD SWAP1 DUP2 MSTORE PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0xFF0 JUMPI DUP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x4EB5 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x4ED5 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x4EC1 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4EF5 JUMPI PUSH2 0x4EF5 PUSH2 0x42A2 JUMP JUMPDEST PUSH2 0x4F09 DUP2 PUSH2 0x4F03 DUP5 SLOAD PUSH2 0x44AB JUMP JUMPDEST DUP5 PUSH2 0x4E8E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x4F3D JUMPI PUSH1 0x0 DUP4 ISZERO PUSH2 0x4F25 JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x4ED5 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x4F6D JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x4F4D JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x4F8B JUMPI DUP7 DUP5 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP INVALID SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT 0xF SELFDESTRUCT EXP GT ISZERO EQ BYTE 0x1E SMOD SDIV SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SAR SELFDESTRUCT XOR 0xD NOT MULMOD ADDMOD OR SELFDESTRUCT SLT AND 0x1F SHL SGT SELFDESTRUCT ADD STOP SUB LT SIGNEXTEND SHR 0xC 0xE MOD DIV MUL SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT SELFDESTRUCT PUSH18 0x707A7279397838676632747664773073336A PUSH15 0x35346B686365366D7561376CA26469 PUSH17 0x667358221220367CCED7546FB312124BDF 0xD5 0xDD COINBASE DUP10 JUMPI 0xAA DUP9 0xC6 0xE8 0xDA 0xBD 0xF6 0xA7 0xBC PUSH19 0x411F0C421DF564736F6C634300081C00330000 ","sourceMap":"1106:19792:28:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7442:111;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;178:32:51;;;160:51;;148:2;133:18;7442:111:28;;;;;;;;1026:213:1;;;;;;;;;;-1:-1:-1;1026:213:1;;;;;:::i;:::-;;:::i;:::-;;;678:14:51;;671:22;653:41;;641:2;626:18;1026:213:1;513:187:51;1760:89:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3902:186::-;;;;;;;;;;-1:-1:-1;3902:186:7;;;;;:::i;:::-;;:::i;2023:36:28:-;;;;;;;;;;;;;;;9631:184;;;;;;;;;;;;;:::i;2803:97:7:-;;;;;;;;;;-1:-1:-1;2881:12:7;;2803:97;;;2341:25:51;;;2329:2;2314:18;2803:97:7;2195:177:51;1336:178:1;;;;;;;;;;-1:-1:-1;1336:178:1;;;;;:::i;:::-;;:::i;:::-;;4680:244:7;;;;;;;;;;-1:-1:-1;4680:244:7;;;;;:::i;:::-;;:::i;2066:86:28:-;;;;;;;;;;;;;;;1611:184:1;;;;;;;;;;-1:-1:-1;1611:184:1;;;;;:::i;:::-;;:::i;10230:156:28:-;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;3460:31:51;;;3442:50;;3430:2;3415:18;10230:156:28;3266:232:51;6692:92:28;;;;;;;;;;-1:-1:-1;6692:92:28;;1513:1;3725:36:51;;3713:2;3698:18;6692:92:28;3583:184:51;2614:112:9;;;;;;;;;;;;;:::i;15170:137:28:-;;;;;;;;;;-1:-1:-1;15170:137:28;;;;;:::i;:::-;15289:9;-1:-1:-1;;;;;15263:36:28;;;;;;;15170:137;9211:113;;;;;;;;;;;;;:::i;13048:562::-;;;;;;:::i;:::-;;:::i;9336:109::-;;;;;;;;;;;;;:::i;17254:1499::-;;;;;;;;;;-1:-1:-1;17254:1499:28;;;;;:::i;:::-;;:::i;11689:611::-;;;;;;;;;;-1:-1:-1;11689:611:28;;;;;:::i;:::-;;:::i;2933:116:7:-;;;;;;;;;;-1:-1:-1;2933:116:7;;;;;:::i;:::-;-1:-1:-1;;;;;3024:18:7;2998:7;3024:18;;;;;;;;;;;;2933:116;9823:161:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7561:278::-;;;;;;;;;;-1:-1:-1;7561:278:28;;;;;:::i;:::-;;:::i;2379:143:9:-;;;;;;;;;;-1:-1:-1;2379:143:9;;;;;:::i;:::-;;:::i;5228:557:19:-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:::i;10847:152:28:-;;;;;;;;;;;;;:::i;:::-;;;;;;8049:4:51;8091:3;8080:9;8076:19;8068:27;;8141:6;8132;8126:13;8122:26;8111:9;8104:45;8217:6;8209:4;8201:6;8197:17;8191:24;8187:37;8180:4;8169:9;8165:20;8158:67;-1:-1:-1;;;;;8285:4:51;8277:6;8273:17;8267:24;8263:49;8256:4;8245:9;8241:20;8234:79;8381:8;8373:4;8365:6;8361:17;8355:24;8351:39;8344:4;8333:9;8329:20;8322:69;7887:510;;;;;13618:1198:28;;;;;;;;;;-1:-1:-1;13618:1198:28;;;;;:::i;:::-;;:::i;9072:131::-;;;;;;;;;;;;;:::i;1962:93:7:-;;;;;;;;;;;;;:::i;12521:269:28:-;;;;;;;;;;-1:-1:-1;12521:269:28;;;;;:::i;:::-;;:::i;7847:832::-;;;;;;;;;;-1:-1:-1;7847:832:28;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3244:178:7:-;;;;;;;;;;-1:-1:-1;3244:178:7;;;;;:::i;:::-;;:::i;8687:377:28:-;;;;;;;;;;-1:-1:-1;8687:377:28;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10394:273::-;;;;;;;;;;;;;:::i;9453:170::-;;;;;;;;;;;;;:::i;12308:205::-;;;;;;;;;;-1:-1:-1;12308:205:28;;;;;:::i;:::-;;:::i;1668:672:9:-;;;;;;;;;;-1:-1:-1;1668:672:9;;;;;:::i;:::-;;:::i;15640:1246:28:-;;;;;;;;;;-1:-1:-1;15640:1246:28;;;;;:::i;:::-;;:::i;3455:140:7:-;;;;;;;;;;-1:-1:-1;3455:140:7;;;;;:::i;:::-;-1:-1:-1;;;;;3561:18:7;;;3535:7;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3455:140;9992:230:28;;;;;;;;;;-1:-1:-1;9992:230:28;;;;;:::i;:::-;;:::i;11253:428::-;;;;;;;;;;-1:-1:-1;11253:428:28;;;;;:::i;:::-;;:::i;5014:1423::-;;;;;;;;;;-1:-1:-1;5014:1423:28;;;;;:::i;:::-;;:::i;2159:88::-;;;;;;;;;;;;;;;10675:164;;;;;;;;;;;;;:::i;7442:111::-;7496:7;7523:11;:9;:11::i;:::-;:22;-1:-1:-1;;;;;7523:22:28;;7442:111;-1:-1:-1;7442:111:28:o;1026:213:1:-;1128:4;-1:-1:-1;;;;;;1151:41:1;;-1:-1:-1;;;1151:41:1;;:81;;-1:-1:-1;;;;;;;;;;829:40:21;;;1196:36:1;1144:88;1026:213;-1:-1:-1;;1026:213:1:o;1760:89:7:-;1805:13;1837:5;1830:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89;:::o;3902:186::-;3975:4;735:10:12;4029:31:7;735:10:12;4045:7:7;4054:5;4029:8;:31::i;:::-;-1:-1:-1;4077:4:7;;3902:186;-1:-1:-1;;;3902:186:7:o;9631:184:28:-;9694:13;9727:80;1447:1;9770:13;:36;9727:11;:9;:11::i;:::-;:33;;;;;-1:-1:-1;;;;;;9727:42:28;;;:80::i;:::-;9720:87;;9631:184;:::o;1336:178:1:-;946:29;964:10;946:17;:29::i;:::-;1437:16:::1;1443:2;1447:5;1437;:16::i;:::-;1468:39;::::0;2341:25:51;;;735:10:12;;-1:-1:-1;;;;;1468:39:1;::::1;::::0;::::1;::::0;2329:2:51;2314:18;1468:39:1::1;;;;;;;;1336:178:::0;;:::o;4680:244:7:-;4767:4;735:10:12;4823:37:7;4839:4;735:10:12;4854:5:7;4823:15;:37::i;:::-;4870:26;4880:4;4886:2;4890:5;4870:9;:26::i;:::-;-1:-1:-1;4913:4:7;;4680:244;-1:-1:-1;;;;4680:244:7:o;1611:184:1:-;946:29;964:10;946:17;:29::i;:::-;1714:18:::1;1720:4;1726:5;1714;:18::i;:::-;1747:41;::::0;2341:25:51;;;735:10:12;;-1:-1:-1;;;;;1747:41:1;::::1;::::0;::::1;::::0;2329:2:51;2314:18;1747:41:1::1;2195:177:51::0;10230:156:28;10307:16;10343:11;:9;:11::i;:::-;:35;-1:-1:-1;;;10343:35:28;;-1:-1:-1;;;;;10343:35:28;;;-1:-1:-1;10230:156:28:o;2614:112:9:-;2673:7;2699:20;:18;:20::i;9211:113:28:-;9267:7;9294:11;:9;:11::i;:::-;:22;;;-1:-1:-1;;;9294:22:28;;-1:-1:-1;;;;;9294:22:28;;;-1:-1:-1;9211:113:28:o;13048:562::-;13236:206;;-1:-1:-1;;;13236:206:28;;-1:-1:-1;;;;;13314:9:28;18343:32:51;;13236:206:28;;;18325:51:51;13338:43:28;18412:32:51;18392:18;;;18385:60;18461:18;;;18454:34;;;13173:25:28;;13236:13;;:63;;18298:18:51;;13236:206:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13216:226;;-1:-1:-1;;13475:17:28;:84;13453:149;;;;-1:-1:-1;;;13453:149:28;;18936:2:51;13453:149:28;;;18918:21:51;18975:2;18955:18;;;18948:30;-1:-1:-1;;;18994:18:51;;;18987:44;19048:18;;13453:149:28;;;;;;;;;13048:562;;;:::o;9336:109::-;9390:7;9417:11;:9;:11::i;:::-;:20;;;-1:-1:-1;;;9417:20:28;;-1:-1:-1;;;;;9417:20:28;;;-1:-1:-1;9336:109:28:o;17254:1499::-;17420:159;17482:11;:9;:11::i;:::-;:34;;:47;;;17443:35;;;;;;;;:::i;:::-;:86;;;;17420:159;;;;;;;;;;;;;-1:-1:-1;;;17420:159:28;;;:8;:159::i;:::-;17600:137;17623:68;17646:11;:9;:11::i;:::-;:44;;;17623:19;;;;35675:42:48;;35590:135;17623:68:28;17600:137;;;;;;;;;;;;;-1:-1:-1;;;17600:137:28;;;:8;:137::i;:::-;17883:102;;-1:-1:-1;;;17883:102:28;;17831:49;;-1:-1:-1;;;;;17883:9:28;:38;;;;:102;;17940:6;;17965:5;;;;17883:102;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;17883:102:28;;;;;;;;;;;;:::i;:::-;18069;;-1:-1:-1;;;18069:102:28;;17831:154;;-1:-1:-1;18069:13:28;;:42;;:102;;17831:154;;18069:102;;;:::i;:::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;18069:102:28;;;;;;;;-1:-1:-1;;18069:102:28;;;;;;;;;;;;:::i;:::-;;;18065:681;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;18641:16;18649:7;18641;:16::i;:::-;18591:88;18065:681;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18716:18;:16;:18::i;18065:681::-;18322:34;;;;;18375:33;;;;;18257:167;;-1:-1:-1;;;;;28166:31:51;;;28148:50;;28234:31;;;28229:2;28214:18;;28207:59;28282:18;;;28275:34;18257:167:28;;28121:18:51;18257:167:28;;;;;;;18476:13;18439:11;:9;:11::i;:::-;:34;;:50;;-1:-1:-1;;18439:50:28;-1:-1:-1;;;;;18439:50:28;;;;;;;;;;18542:34;;;;18504:11;:9;:11::i;:::-;:72;;-1:-1:-1;;;;;18504:72:28;;;;-1:-1:-1;;;18504:72:28;-1:-1:-1;;;;;18504:72:28;;;;;;;;;-1:-1:-1;18065:681:28;17409:1344;17254:1499;;;:::o;11689:611::-;2459:11;:9;:11::i;:::-;:22;-1:-1:-1;;;;;2459:22:28;735:10:12;-1:-1:-1;;;;;2443:38:28;;2421:101;;;;-1:-1:-1;;;2421:101:28;;;;;;;;;;;;1715:1:::1;11836:22;;::::0;::::1;:9:::0;:22:::1;:::i;:::-;:63;;;;:168;;;;-1:-1:-1::0;1803:2:28::1;11920:28;::::0;;;::::1;::::0;::::1;;:::i;:::-;:84;;;;11836:168;:273;;;;-1:-1:-1::0;1889:11:28::1;12025:31;::::0;;;::::1;::::0;::::1;;:::i;:::-;-1:-1:-1::0;;;;;12025:84:28::1;;;11836:273;:388;;;;-1:-1:-1::0;2003:7:28::1;12130:34;::::0;;;::::1;::::0;::::1;;:::i;:::-;:94;;;;11836:388;11815:420;;;;:::i;:::-;12283:9;12246:11;:9;:11::i;:::-;:34;;:46;::::0;:34;:46:::1;:::i;:::-;-1:-1:-1::0;;;11689:611:28:o;9823:161::-;9898:15;9933:11;:9;:11::i;:::-;:43;;9926:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9823:161;:::o;7561:278::-;7711:7;7743:11;:9;:11::i;:::-;:88;;;;:51;;:88;;-1:-1:-1;7743:88:28;;;;;7561:278::o;2379:143:9:-;-1:-1:-1;;;;;624:14:13;;2470:7:9;624:14:13;;;:7;:14;;;;;;2496:19:9;538:107:13;5228:557:19;5326:13;5353:18;5385:21;5420:15;5449:25;5488:12;5514:27;5617:13;:11;:13::i;:::-;5644:16;:14;:16::i;:::-;5752;;;5736:1;5752:16;;;;;;;;;-1:-1:-1;;;5566:212:19;;;-1:-1:-1;5566:212:19;;-1:-1:-1;5674:13:19;;-1:-1:-1;5709:4:19;;-1:-1:-1;5736:1:19;-1:-1:-1;5752:16:19;-1:-1:-1;5566:212:19;-1:-1:-1;5228:557:19:o;10847:152:28:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10957:11:28;:9;:11::i;:::-;10950:41;;;;;;;;10957:34;;;;;10950:41;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10950:41:28;;;;;;;;-1:-1:-1;;;10950:41:28;;;;;;;;;;-1:-1:-1;10847:152:28:o;13618:1198::-;13729:19;-1:-1:-1;;;;;13788:32:28;;:23;735:10:12;13798:12:28;656:96:12;13788:23:28;:32;;13766:100;;;;-1:-1:-1;;;13766:100:28;;30377:2:51;13766:100:28;;;30359:21:51;30416:2;30396:18;;;30389:30;-1:-1:-1;;;30435:18:51;;;30428:48;30493:18;;13766:100:28;30175:342:51;13766:100:28;13877:30;13910:11;:9;:11::i;:::-;:34;;;-1:-1:-1;;;;;13910:34:28;;;;-1:-1:-1;13978:32:28;;;-1:-1:-1;13978:32:28;13956:105;;;;-1:-1:-1;;;13956:105:28;;30724:2:51;13956:105:28;;;30706:21:51;30763:2;30743:18;;;30736:30;30802:25;30782:18;;;30775:53;30845:18;;13956:105:28;30522:347:51;13956:105:28;14072:25;14100:113;14132:18;;14100:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14166:13:28;1447:1;14166:36;;-1:-1:-1;14100:17:28;;-1:-1:-1;14100:113:28:i;:::-;14072:141;-1:-1:-1;;;;;;;14261:21:28;23431:38:48;;14247:13:28;;;23431:38:48;14224:104:28;;;;-1:-1:-1;;;14224:104:28;;31076:2:51;14224:104:28;;;31058:21:51;31115:2;31095:18;;;31088:30;-1:-1:-1;;;31134:18:51;;;31127:47;31191:18;;14224:104:28;30874:341:51;14224:104:28;14429:31;14455:5;14429:23;:31;:::i;:::-;14392:11;:9;:11::i;:::-;:34;;:68;;-1:-1:-1;;14392:68:28;-1:-1:-1;;;;;14392:68:28;;;;;;14526:26;;735:10:12;;14526:26:28;;:5;:26::i;:::-;14615:11;:9;:11::i;:::-;:22;;14612:25;;14615:22;;14612:25;;-1:-1:-1;;;14612:25:28;;-1:-1:-1;;;;;14612:25:28;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;14612:25:28;;;;;-1:-1:-1;;;;;14612:25:28;;;;;-1:-1:-1;;;;;14598:39:28;;;14679:129;14703:12;735:10:12;;656:96;14703:12:28;14731:18;;14765:5;14786:11;14679:129;;;;;;;;;;:::i;:::-;;;;;;;;13755:1061;;13618:1198;;;;;:::o;9072:131::-;9134:7;9161:11;:9;:11::i;:::-;:34;;;-1:-1:-1;;;;;9161:34:28;;9072:131;-1:-1:-1;9072:131:28:o;1962:93:7:-;2009:13;2041:7;2034:14;;;;;:::i;12521:269:28:-;2459:11;:9;:11::i;:::-;:22;-1:-1:-1;;;;;2459:22:28;735:10:12;-1:-1:-1;;;;;2443:38:28;;2421:101;;;;-1:-1:-1;;;2421:101:28;;;;;;;;;;;;-1:-1:-1;;;;;12634:25:28;::::1;12627:33;;;;:::i;:::-;12723:11;-1:-1:-1::0;;;;;12676:59:28::1;12699:11;:9;:11::i;:::-;:22:::0;12676:59:::1;::::0;-1:-1:-1;;;;;12699:22:28;;::::1;::::0;12676:59:::1;::::0;12699:22:::1;::::0;12676:59:::1;12771:11;12746;:9;:11::i;:::-;:36:::0;;-1:-1:-1;;;;;;12746:36:28::1;-1:-1:-1::0;;;;;12746:36:28;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;12521:269:28:o;7847:832::-;7991:14;8023:29;8055:11;:9;:11::i;:::-;:112;;;;:51;;;;;:112;;;;;;;-1:-1:-1;8182:26:28;;;8178:494;;-1:-1:-1;8232:22:28;;7847:832;-1:-1:-1;;7847:832:28:o;8178:494::-;-1:-1:-1;;8286:21:28;:88;8282:390;;-1:-1:-1;8398:19:28;;7847:832;-1:-1:-1;;7847:832:28:o;8282:390::-;8537:25;8486:47;;-1:-1:-1;;;8486:47:28;;;;;2341:25:51;;;8486:9:28;-1:-1:-1;;;;;8486:24:28;;;;2314:18:51;;8486:47:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:76;;;;;;;;:::i;:::-;;:159;;8625:20;8486:159;;;8582:23;8486:159;8460:200;7847:832;-1:-1:-1;;;7847:832:28:o;8282:390::-;8012:667;7847:832;;;:::o;3244:178:7:-;3313:4;735:10:12;3367:27:7;735:10:12;3384:2:7;3388:5;3367:9;:27::i;8687:377:28:-;8816:33;8900:7;-1:-1:-1;;;;;8879:36:28;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8879:36:28;;8867:48;;8931:8;8926:131;8945:20;;;8926:131;;;9007:38;9032:7;;9040:3;9032:12;;;;;;;:::i;:::-;;;;;;;9007:24;:38::i;:::-;8990:9;9000:3;8990:14;;;;;;;;:::i;:::-;;;;;;:55;;;;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;8967:6:28;;8926:131;;;;8687:377;;;;:::o;10394:273::-;10474:12;10506:9;-1:-1:-1;;;;;10506:32:28;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;10506:75:28;;10600:11;:9;:11::i;:::-;:44;;;10506:153;;;;;;;;;;;;;2341:25:51;;2329:2;2314:18;;2195:177;10506:153:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;10506:153:28;;;;;;;;;;;;:::i;9453:170::-;9514:13;9547:68;-1:-1:-1;;;;;;9547:21:28;:30;9578:13;1447:1;9578:36;9547:30;:68::i;12308:205::-;2459:11;:9;:11::i;:::-;:22;-1:-1:-1;;;;;2459:22:28;735:10:12;-1:-1:-1;;;;;2443:38:28;;2421:101;;;;-1:-1:-1;;;2421:101:28;;;;;;;;;;;;12446:59:::1;12476:28;;12446:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;12446:29:28::1;::::0;-1:-1:-1;;;12446:59:28:i:1;:::-;12308:205:::0;;:::o;1668:672:9:-;1889:8;1871:15;:26;1867:97;;;1920:33;;-1:-1:-1;;;1920:33:9;;;;;2341:25:51;;;2314:18;;1920:33:9;2195:177:51;1867:97:9;1974:18;1024:95;2033:5;2040:7;2049:5;2056:16;2066:5;-1:-1:-1;;;;;1121:14:13;819:7;1121:14;;;:7;:14;;;;;:16;;;;;;;;;759:395;2056:16:9;2005:78;;;;;;33606:25:51;;;;-1:-1:-1;;;;;33667:32:51;;;33647:18;;;33640:60;33736:32;;;;33716:18;;;33709:60;33785:18;;;33778:34;33828:19;;;33821:35;33872:19;;;33865:35;;;33578:19;;2005:78:9;;;;;;;;;;;;1995:89;;;;;;1974:110;;2095:12;2110:28;2127:10;2110:16;:28::i;:::-;2095:43;;2149:14;2166:28;2180:4;2186:1;2189;2192;2166:13;:28::i;:::-;2149:45;;2218:5;-1:-1:-1;;;;;2208:15:9;:6;-1:-1:-1;;;;;2208:15:9;;2204:88;;2246:35;;-1:-1:-1;;;2246:35:9;;-1:-1:-1;;;;;34103:32:51;;;2246:35:9;;;34085:51:51;34172:32;;34152:18;;;34145:60;34058:18;;2246:35:9;33911:300:51;2204:88:9;2302:31;2311:5;2318:7;2327:5;2302:8;:31::i;:::-;1857:483;;;1668:672;;;;;;;:::o;15640:1246:28:-;15803:54;15289:9;-1:-1:-1;;;;;15263:36:28;15827:10;15263:36;15803:54;;;;;;;;;;;;;-1:-1:-1;;;15803:54:28;;;:8;:54::i;:::-;15874:111;;-1:-1:-1;;;15874:111:28;;:13;;:41;;:111;;15930:7;;15953:11;;;;15874:111;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15874:111:28;;;;;;;;;;;;:::i;:::-;;;15870:1009;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;16774:16;16782:7;16774;:16::i;15870:1009::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16849:18;:16;:18::i;15870:1009::-;16249:152;16317:31;16292:19;16276:37;;;;;;:72;16249:152;;;;;;;;;;;;;-1:-1:-1;;;16249:152:28;;;:8;:152::i;:::-;16461:28;16467:13;16482:6;-1:-1:-1;;;;;16461:28:28;:5;:28::i;:::-;16540:169;16566:17;16603:13;16636:6;16662:32;16540:169;;;;;;;;;:::i;:::-;;;;;;;;15986:737;;;;;15640:1246;;;:::o;9992:230::-;10083:7;10110:104;10167:9;10192:11;10110:42;:104::i;11253:428::-;2459:11;:9;:11::i;:::-;:22;-1:-1:-1;;;;;2459:22:28;735:10:12;-1:-1:-1;;;;;2443:38:28;;2421:101;;;;-1:-1:-1;;;2421:101:28;;;;;;;;;;;;11422:1:::1;11396:16;:23;:27;11389:35;;;;:::i;:::-;11481:16;11435:11;:9;:11::i;:::-;:43;;:62;;;;;;;;;;;;:::i;:::-;;11508:165;11550:16;11582:80;1447:1;11625:13;:36;11582:11;:9;:11::i;:80::-;11508:27;:165::i;:::-;11253:428:::0;:::o;5014:1423::-;4158:30:2;4191:26;:24;:26::i;:::-;4302:15;;4158:59;;-1:-1:-1;4302:15:2;-1:-1:-1;;;4302:15:2;;;4301:16;;-1:-1:-1;;;;;4348:14:2;4279:19;4724:16;;:34;;;;;4744:14;4724:34;4704:54;;4768:17;4788:11;-1:-1:-1;;;;;4788:16:2;4803:1;4788:16;:50;;;;-1:-1:-1;4816:4:2;4808:25;:30;4788:50;4768:70;;4854:12;4853:13;:30;;;;;4871:12;4870:13;4853:30;4849:91;;;4906:23;;-1:-1:-1;;;4906:23:2;;;;;;;;;;;4849:91;4949:18;;-1:-1:-1;;4949:18:2;4966:1;4949:18;;;4977:67;;;;5011:22;;-1:-1:-1;;;;5011:22:2;-1:-1:-1;;;5011:22:2;;;4977:67;5262:11:28::1;5237;:9;:11::i;:::-;:36:::0;;-1:-1:-1;;;;;;5237:36:28::1;-1:-1:-1::0;;;;;5237:36:28;;::::1;;::::0;;5289:47:::1;::::0;;;::::1;::::0;-1:-1:-1;;5289:47:28::1;::::0;-1:-1:-1;;5289:47:28::1;5504:417;;;;;;;;1447:1;5551:13;:36;:81;;1715:1;5551:81;;;5590:2;5551:81;5504:417;;::::0;;::::1;;5667:57;5722:2;1803;5667:57;:::i;:::-;5504:417;;::::0;;1889:11:::1;5504:417;::::0;::::1;::::0;2003:7:::1;5504:417:::0;;;;;5467:11:::1;:9;:11::i;:::-;:454:::0;;:34:::1;::::0;;;::::1;:454:::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;;-1:-1:-1::0;;;5467:454:28::1;-1:-1:-1::0;;;;;;;;;5467:454:28;;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;5467:454:28::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;5467:454:28;;;;;;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;::::1;::::0;;5973:15;;-1:-1:-1;5973:15:28;;;;;::::1;::::0;;;-1:-1:-1;;5973:15:28;;;::::1;;;;;;;;;;;;;;;;;;5932:56;;1447:1;6042:13;:36;:135;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;5999:22;6022:1;5999:25;;;;;;;;:::i;:::-;;;;;;:189;;;;6245:22;6199:11;:9;:11::i;:::-;:43;;:68;;;;;;;;;;;;:::i;:::-;;6370:59;6400:28;;6370:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;6370:29:28::1;::::0;-1:-1:-1;;;6370:59:28:i:1;:::-;5184:1253;5068:14:2::0;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:2;;;5140:14;;-1:-1:-1;3442:50:51;;5140:14:2;;3430:2:51;3415:18;5140:14:2;3266:232:51;5064:101:2;4092:1079;;;;;5014:1423:28;;;:::o;10675:164::-;10751:16;10787:11;:9;:11::i;:::-;:44;;;10780:51;;10675:164;:::o;20774:121::-;8263:25:30;;9631:184:28:o;8630:128:7:-;8714:37;8723:5;8730:7;8739:5;8746:4;8714:8;:37::i;23761:194:48:-;23836:13;23869:78;23908:10;23885:35;;23922:7;:24;;;;;;;;;;;;;;;-1:-1:-1;;;23922:24:48;;;23869:15;:78::i;23922:24::-;;;;;;;;;;;;;;-1:-1:-1;;;23922:24:48;;;23869:15;:78::i;7038:146:28:-;-1:-1:-1;;;;;7119:34:28;;-1:-1:-1;;;;;7119:34:28;7115:61;;7162:14;;-1:-1:-1;;;7162:14:28;;;;;;;;;;;7362:208:7;-1:-1:-1;;;;;7432:21:7;;7428:91;;7476:32;;-1:-1:-1;;;7476:32:7;;7505:1;7476:32;;;160:51:51;133:18;;7476:32:7;14:203:51;7428:91:7;7528:35;7544:1;7548:7;7557:5;7528:7;:35::i;10319:476::-;-1:-1:-1;;;;;3561:18:7;;;10418:24;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10484:36:7;;10480:309;;;10559:5;10540:16;:24;10536:130;;;10591:60;;-1:-1:-1;;;10591:60:7;;-1:-1:-1;;;;;36784:32:51;;10591:60:7;;;36766:51:51;36833:18;;;36826:34;;;36876:18;;;36869:34;;;36739:18;;10591:60:7;36564:345:51;10536:130:7;10707:57;10716:5;10723:7;10751:5;10732:16;:24;10758:5;10707:8;:57::i;5297:300::-;-1:-1:-1;;;;;5380:18:7;;5376:86;;5421:30;;-1:-1:-1;;;5421:30:7;;5448:1;5421:30;;;160:51:51;133:18;;5421:30:7;14:203:51;5376:86:7;-1:-1:-1;;;;;5475:16:7;;5471:86;;5514:32;;-1:-1:-1;;;5514:32:7;;5543:1;5514:32;;;160:51:51;133:18;;5514:32:7;14:203:51;5471:86:7;5566:24;5574:4;5580:2;5584:5;5566:7;:24::i;7888:206::-;-1:-1:-1;;;;;7958:21:7;;7954:89;;8002:30;;-1:-1:-1;;;8002:30:7;;8029:1;8002:30;;;160:51:51;133:18;;8002:30:7;14:203:51;7954:89:7;8052:35;8060:7;8077:1;8081:5;8052:7;:35::i;3945:262:19:-;3998:7;4029:4;-1:-1:-1;;;;;4038:11:19;4021:28;;:63;;;;;4070:14;4053:13;:31;4021:63;4017:184;;;-1:-1:-1;4107:22:19;;3945:262::o;4017:184::-;4167:23;4304:80;;;2079:95;4304:80;;;40026:25:51;4326:11:19;40067:18:51;;;40060:34;;;;4339:14:19;40110:18:51;;;40103:34;4355:13:19;40153:18:51;;;40146:34;4378:4:19;40196:19:51;;;40189:61;4268:7:19;;39998:19:51;;4304:80:19;;;;;;;;;;;;4294:91;;;;;;4287:98;;4213:179;;4017:184;3945:262;:::o;19677:146:28:-;19763:9;19758:58;;19789:15;19797:6;19831:201;19991:6;19923:89;;;;;;;;:::i;:::-;;;;-1:-1:-1;;19923:89:28;;;;;;;;;;-1:-1:-1;;;19895:129:28;;;;;;;:::i;20040:91::-;20093:30;;;;;;;;;;;;;;-1:-1:-1;;;20093:30:28;;;:7;:30::i;:::-;20040:91::o;6105:126:19:-;6151:13;6183:41;:5;6210:13;6183:26;:41::i;6557:135::-;6606:13;6638:47;:8;6668:16;6638:29;:47::i;23485:268:48:-;23561:7;23611;:17;;23626:2;23611:17;;;23621:2;23611:17;23589:40;;23595:3;23589:17;:40;23581:75;;;;-1:-1:-1;;;23581:75:48;;37565:2:51;23581:75:48;;;37547:21:51;37604:2;37584:18;;;37577:30;-1:-1:-1;;;37623:18:51;;;37616:52;37685:18;;23581:75:48;37363:346:51;23581:75:48;23695:48;23713:3;23718:7;:24;;;;;;;;;;;;;;;-1:-1:-1;;;23718:24:48;;;23695:17;:48::i;23718:24::-;;;;;;;;;;;;;;-1:-1:-1;;;23718:24:48;;;23695:17;:48::i;:::-;23687:57;;;23485:268;-1:-1:-1;;;23485:268:48:o;20139:627:28:-;20328:31;20294:28;20278:46;;;;;;:81;20256:153;;;;-1:-1:-1;;;20256:153:28;;37916:2:51;20256:153:28;;;37898:21:51;37955:2;37935:18;;;37928:30;-1:-1:-1;;;37974:18:51;;;37967:52;38036:18;;20256:153:28;37714:346:51;20256:153:28;20425:51;20447:28;20425:51;;;;;;:::i;:::-;;;;;;;;20523:85;20541:28;1447:1;20571:13;:36;20523:17;:85::i;:::-;20487:11;:9;:11::i;:::-;:33;;:121;;-1:-1:-1;;;;;;20487:121:28;;;;;;;;;;;;20619:139;20661:11;:9;:11::i;:::-;:43;;20619:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20719:28;20619:27;:139::i;5017:176:19:-;5094:7;5120:66;5153:20;:18;:20::i;:::-;5175:10;4049:4:20;4043:11;-1:-1:-1;;;4067:23:20;;4119:4;4110:14;;4103:39;;;;4171:4;4162:14;;4155:34;4227:4;4212:20;;;3874:374;6887:260:18;6972:7;6992:17;7011:18;7031:16;7051:25;7062:4;7068:1;7071;7074;7051:10;:25::i;:::-;6991:85;;;;;;7086:28;7098:5;7105:8;7086:11;:28::i;:::-;-1:-1:-1;7131:9:18;;6887:260;-1:-1:-1;;;;;;6887:260:18:o;8314:433:30:-;8547:163;;-1:-1:-1;;;8547:163:30;;;;;38237:25:51;;;789:7:30;38278:18:51;;;38271:49;8417:7:30;;701:3;;-1:-1:-1;;;;;8547:37:30;;;;;38210:18:51;;8547:163:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8478:29;:48;8460:66;;8478:48;;;;;701:3;8460:66;:::i;:::-;8459:251;;;;:::i;:::-;8444:295;;;;:::i;19109:560:28:-;19329:15;;;19342:1;19329:15;;;;;;;;;19299:27;;19329:15;;;;;;;;;;;;;;;;;;;;19299:45;;19372:21;:19;:21::i;:::-;19355:11;19367:1;19355:14;;;;;;;;:::i;:::-;;;;;;:38;;;;19421:28;19404:11;19416:1;19404:14;;;;;;;;:::i;:::-;;;;;;;;;;:45;19507:154;;-1:-1:-1;;;19507:154:28;;-1:-1:-1;;;;;19507:41:28;:74;;;;:154;;19600:11;;19630:16;;19507:154;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19460:11;:9;:11::i;:::-;:44;;:201;-1:-1:-1;;;19109:560:28:o;9071:205:2:-;9129:30;;3147:66;9186:27;8819:122;9605:432:7;-1:-1:-1;;;;;9717:19:7;;9713:89;;9759:32;;-1:-1:-1;;;9759:32:7;;9788:1;9759:32;;;160:51:51;133:18;;9759:32:7;14:203:51;9713:89:7;-1:-1:-1;;;;;9815:21:7;;9811:90;;9859:31;;-1:-1:-1;;;9859:31:7;;9887:1;9859:31;;;160:51:51;133:18;;9859:31:7;14:203:51;9811:90:7;-1:-1:-1;;;;;9910:18:7;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;9955:76;;;;10005:7;-1:-1:-1;;;;;9989:31:7;9998:5;-1:-1:-1;;;;;9989:31:7;;10014:5;9989:31;;;;2341:25:51;;2329:2;2314:18;;2195:177;9989:31:7;;;;;;;;9605:432;;;;:::o;2579:183:46:-;2723:22;;2681:13;39678:15:51;;;-1:-1:-1;;;;;;39674:53:51;2723:22:46;;;39662:66:51;2681:13:46;2714:40;;39744:12:51;;2723:22:46;;;;;;;;;;;;2747:6;2714:8;:40::i;5912:1107:7:-;-1:-1:-1;;;;;6001:18:7;;5997:540;;6153:5;6137:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5997:540:7;;-1:-1:-1;5997:540:7;;-1:-1:-1;;;;;6211:15:7;;6189:19;6211:15;;;;;;;;;;;6244:19;;;6240:115;;;6290:50;;-1:-1:-1;;;6290:50:7;;-1:-1:-1;;;;;36784:32:51;;6290:50:7;;;36766:51:51;36833:18;;;36826:34;;;36876:18;;;36869:34;;;36739:18;;6290:50:7;36564:345:51;6240:115:7;-1:-1:-1;;;;;6475:15:7;;:9;:15;;;;;;;;;;6493:19;;;;6475:37;;5997:540;-1:-1:-1;;;;;6551:16:7;;6547:425;;6714:12;:21;;;;;;;6547:425;;;-1:-1:-1;;;;;6925:13:7;;:9;:13;;;;;;;;;;:22;;;;;;6547:425;7002:2;-1:-1:-1;;;;;6987:25:7;6996:4;-1:-1:-1;;;;;6987:25:7;;7006:5;6987:25;;;;2341::51;;2329:2;2314:18;;2195:177;6987:25:7;;;;;;;;5912:1107;;;:::o;3368:267:15:-;3462:13;1390:66;3491:46;;3487:142;;3560:15;3569:5;3560:8;:15::i;:::-;3553:22;;;;3487:142;3613:5;3606:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4134:433:46;4248:7;4269:17;4288:19;4311:83;4349:8;4332:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;2520:1;4311:6;:83::i;:::-;4268:126;;;;4405:48;4439:6;4422:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;4448:4;4405:16;:48::i;:::-;4464:18;4485:30;4497:4;4503:1;4506;4509:5;4485:11;:30::i;:::-;4464:51;;4533:26;4553:5;4533:19;:26::i;:::-;4526:33;4134:433;-1:-1:-1;;;;;;4134:433:46:o;5203:1551:18:-;5329:17;;;6283:66;6270:79;;6266:164;;;-1:-1:-1;6381:1:18;;-1:-1:-1;6385:30:18;;-1:-1:-1;6417:1:18;6365:54;;6266:164;6541:24;;;6524:14;6541:24;;;;;;;;;40782:25:51;;;40855:4;40843:17;;40823:18;;;40816:45;;;;40877:18;;;40870:34;;;40920:18;;;40913:34;;;6541:24:18;;40754:19:51;;6541:24:18;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6541:24:18;;-1:-1:-1;;6541:24:18;;;-1:-1:-1;;;;;;;6579:20:18;;6575:113;;-1:-1:-1;6631:1:18;;-1:-1:-1;6635:29:18;;-1:-1:-1;6631:1:18;;-1:-1:-1;6615:62:18;;6575:113;6706:6;-1:-1:-1;6714:20:18;;-1:-1:-1;6714:20:18;;-1:-1:-1;5203:1551:18;;;;;;;;;:::o;7280:532::-;7375:20;7366:5;:29;;;;;;;;:::i;:::-;;7362:444;;7280:532;;:::o;7362:444::-;7471:29;7462:5;:38;;;;;;;;:::i;:::-;;7458:348;;7523:23;;-1:-1:-1;;;7523:23:18;;;;;;;;;;;7458:348;7576:35;7567:5;:44;;;;;;;;:::i;:::-;;7563:243;;7634:46;;-1:-1:-1;;;7634:46:18;;;;;2341:25:51;;;2314:18;;7634:46:18;2195:177:51;7563:243:18;7710:30;7701:5;:39;;;;;;;;:::i;:::-;;7697:109;;7763:32;;-1:-1:-1;;;7763:32:18;;;;;2341:25:51;;;2314:18;;7763:32:18;2195:177:51;2770:293:46;2877:13;2903:16;2939:6;2922:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;2903:43;;2957:18;2978:29;2990:4;2996:1;2999;3002:4;2978:11;:29::i;:::-;2957:50;;3025:30;3032:3;3037:5;2520:1;3025:6;:30::i;:::-;3018:37;2770:293;-1:-1:-1;;;;;2770:293:46:o;2078:378:15:-;2137:13;2162:11;2176:16;2187:4;2176:10;:16::i;:::-;2300:14;;;2311:2;2300:14;;;;;;;;;2162:30;;-1:-1:-1;2280:17:15;;2300:14;;;;;;;;;-1:-1:-1;;;2363:16:15;;;-1:-1:-1;2408:4:15;2399:14;;2392:28;;;;-1:-1:-1;2363:16:15;2078:378::o;7182:1676:46:-;7275:16;7293:19;7355:8;7422:2;7404:7;:14;:20;;7378:112;;;;-1:-1:-1;;;7378:112:46;;41160:2:51;7378:112:46;;;41142:21:51;41199:2;41179:18;;;41172:30;41238:31;41218:18;;;41211:59;41287:18;;7378:112:46;40958:353:51;7378:112:46;7510:6;7505:616;7526:7;:14;7522:1;:18;7505:616;;;7567:12;7588:7;7596:1;7588:10;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;7658:2:46;7648:12;;;;;:55;;;7700:3;7690:6;:13;;;;7648:55;7618:148;;;;-1:-1:-1;;;7618:148:46;;41518:2:51;7618:148:46;;;41500:21:51;41557:2;41537:18;;;41530:30;-1:-1:-1;;;41576:18:51;;;41569:48;41634:18;;7618:148:46;41316:342:51;7618:148:46;-1:-1:-1;;7789:28:46;;;;7785:321;;7876:8;;:48;;;;;7923:1;7918;:6;;7876:48;:105;;;;;7967:7;:14;7958:1;7962;7958:5;:23;;7876:105;7842:214;;;;-1:-1:-1;;;7842:214:46;;41865:2:51;7842:214:46;;;41847:21:51;41904:2;41884:18;;;41877:30;-1:-1:-1;;;41923:18:51;;;41916:52;41985:18;;7842:214:46;41663:346:51;7842:214:46;8085:1;8079:7;;7785:321;-1:-1:-1;7542:4:46;;7505:616;;;;8151:3;-1:-1:-1;;;;;8141:14:46;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8141:14:46;;8135:20;;8175:6;8170:83;8187:3;8183:1;:7;8170:83;;;8226:7;8234:1;8226:10;;;;;;;;:::i;:::-;;;;;;;;;8217:3;8221:1;8217:6;;;;;;;;:::i;:::-;;;;:19;-1:-1:-1;;;;;8217:19:46;;;;;;;;-1:-1:-1;8192:4:46;;8170:83;;;;8309:1;8303:3;8286:7;:14;:20;:24;-1:-1:-1;;;;;8274:37:46;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8274:37:46;;8267:44;;8331:6;8326:255;8343:4;:11;8339:1;:15;8326:255;;;8381:13;8397:23;;;;;;;;;;;;;;;;;8427:7;8439:3;8435:1;:7;8445:1;8435:11;8427:20;;;;;;;;:::i;:::-;;;;;8397:52;;8427:20;;;;;;8397:52;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;8397:52:46;;;;-1:-1:-1;8476:14:46;;;8468:55;;;;-1:-1:-1;;;8468:55:46;;42216:2:51;8468:55:46;;;42198:21:51;42255:2;42235:18;;;42228:30;42294;42274:18;;;42267:58;42342:18;;8468:55:46;42014:352:51;8468:55:46;8558:6;8552:13;;8542:4;8547:1;8542:7;;;;;;;;:::i;:::-;:23;;;;:7;;;;;;;;;;;:23;-1:-1:-1;8356:4:46;;8326:255;;;;8621:30;8636:3;8641:4;8647:3;8621:14;:30::i;:::-;8595:115;;;;-1:-1:-1;;;8595:115:46;;42573:2:51;8595:115:46;;;42555:21:51;42612:2;42592:18;;;42585:30;-1:-1:-1;;;42631:18:51;;;42624:52;42693:18;;8595:115:46;42371:346:51;8595:115:46;-1:-1:-1;8743:11:46;;-1:-1:-1;;8743:15:46;8801:24;;7182:1676;;8743:4;;-1:-1:-1;7182:1676:46;-1:-1:-1;7182:1676:46:o;5579:189::-;5730:4;5720:15;;;;;;5711:4;5701:15;;;;;;:34;5693:67;;;;-1:-1:-1;;;5693:67:46;;42924:2:51;5693:67:46;;;42906:21:51;42963:2;42943:18;;;42936:30;-1:-1:-1;;;42982:18:51;;;42975:50;43042:18;;5693:67:46;42722:344:51;11806:227:46;11952:12;11984:41;11997:4;12003:8;12013:6;12021:3;11984:12;:41::i;5776:292::-;5863:7;5891:4;:11;5906:2;5891:17;5883:57;;;;-1:-1:-1;;;5883:57:46;;43273:2:51;5883:57:46;;;43255:21:51;43312:2;43292:18;;;43285:30;43351:29;43331:18;;;43324:57;43398:18;;5883:57:46;43071:351:51;5883:57:46;-1:-1:-1;6024:2:46;6014:13;6008:20;;5776:292::o;11394:404::-;11538:12;11563:23;11601:4;:11;-1:-1:-1;;;;;11589:24:46;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11589:24:46;;11563:50;;11631:8;11626:100;11649:8;:15;11645:1;:19;;;11626:100;;;11706:4;11711:1;11706:7;;;;;;;;;;:::i;:::-;;;;;;;;;11700:14;;11686:8;11695:1;11686:11;;;;;;;;;;:::i;:::-;:28;;;;:11;;;;;;;;;;;:28;11666:3;;;:::i;:::-;;;11626:100;;;;11745:45;11758:8;11768;11778:6;11786:3;11745:12;:45::i;6076:1098::-;6199:13;6250:23;6276:31;6291:3;6296:5;6303:3;6276:14;:31::i;:::-;6250:57;;6322:19;6382:8;:15;6367:5;:12;6354:3;:10;:25;:43;6400:1;6354:47;-1:-1:-1;;;;;6344:58:46;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6344:58:46;;6322:80;;6422:6;6417:88;6434:3;:10;6430:1;:14;6417:88;;;6483:3;6487:1;6483:6;;;;;;;;:::i;:::-;;;;;;;;;6471;6478:1;6471:9;;;;;;;;:::i;:::-;;;;:18;-1:-1:-1;;;;;6471:18:46;;;;;;;;-1:-1:-1;6446:4:46;;6417:88;;;;-1:-1:-1;;;6519:6:46;6526:3;:10;6519:18;;;;;;;;:::i;:::-;;;;:32;-1:-1:-1;;;;;6519:32:46;;;;;;;;-1:-1:-1;6580:10:46;;6593:1;6580:14;6566:11;6609:227;6626:5;:12;6622:1;:16;6609:227;;;6665:11;6685:5;6691:1;6685:8;;;;;;;;:::i;:::-;;;;;;;6725;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6725:8:46;;;;6685;;;-1:-1:-1;6717:23:46;;6713:108;;;6786:8;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;6786:8:46;;;6795:5;6786:15;;;;;;;;;;:::i;:::-;;;;;;;;;6765:6;6776;6772:1;:10;6765:18;;;;;;;;:::i;:::-;;;;:36;-1:-1:-1;;;;;6765:36:46;;;;;;;;;6713:108;-1:-1:-1;6640:4:46;;6609:227;;;-1:-1:-1;6860:12:46;;6850:22;6892:6;6887:233;6904:8;:15;6900:1;:19;6887:233;;;6946:11;6966:8;6975:1;6966:11;;;;;;;;:::i;:::-;;;;;;;6946:32;;7009:8;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7009:8:46;;;:15;7001:5;:23;;;6997:108;;;7070:8;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7070:8:46;;;7079:5;7070:15;;;;;;;;;;:::i;:::-;;;;;;;;;7049:6;7060;7056:1;:10;7049:18;;;;;;;;:::i;:::-;;;;:36;-1:-1:-1;;;;;7049:36:46;;;;;;;;;6997:108;-1:-1:-1;6921:4:46;;6887:233;;2528:245:15;2589:7;2661:4;2625:40;;2688:2;2679:11;;2675:69;;;2713:20;;-1:-1:-1;;;2713:20:15;;;;;;;;;;;10800:586:46;10932:4;10974:19;10996:14;11006:3;10996:9;:14::i;:::-;10974:36;;11025:21;11076:4;:11;11062:4;:11;:25;-1:-1:-1;;;;;11049:39:46;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11049:39:46;;11025:63;;11108:6;11103:97;11120:4;:11;11116:1;:15;11103:97;;;11176:4;11181:1;11176:7;;;;;;;;:::i;:::-;;;;;;;11169:15;;11158:5;11164:1;11158:8;;;;;;;;:::i;:::-;:26;;;;:8;;;;;;;;;;;:26;11133:4;;11103:97;;;;11219:6;11214:111;11231:4;:11;11227:1;:15;11214:111;;;11301:4;11306:1;11301:7;;;;;;;;:::i;:::-;;;;;;;11294:15;;11269:5;11279:4;:11;11275:1;:15;11269:22;;;;;;;;:::i;:::-;:40;;;;:22;;;;;;;;;;;:40;11244:4;;11214:111;;;;11364:3;11346:21;;:14;11354:5;11346:7;:14::i;:::-;:21;;;;10800:586;-1:-1:-1;;;;;;10800:586:46:o;12041:1366::-;12192:16;12221:8;;;12282:17;12298:1;12283:11;;;12282:17;:::i;:::-;12270:29;;12342:6;12337:631;12354:8;:15;12350:1;:19;12337:631;;;12395:11;12409:8;12418:1;12409:11;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;12484:17:46;;;;;;12483:24;;12439:166;;;;-1:-1:-1;;;12439:166:46;;43955:2:51;12439:166:46;;;43937:21:51;43994:2;43974:18;;;43967:30;44033:34;44013:18;;;44006:62;-1:-1:-1;;;44084:18:51;;;44077:52;44146:19;;12439:166:46;43753:418:51;12439:166:46;12633:15;;;12632:25;;;;;12676:16;;;;12713:240;12728:6;12720:4;:14;12713:240;;12802:131;;12759:14;;;;;12802:131;;12845:3;;12889:11;;;12888:20;;12875:35;;;12802:131;;;:::i;:::-;;;;;;;;;;;;;12796:137;;12713:240;;;-1:-1:-1;12371:3:46;;12337:631;;;;12995:3;12991:409;;;13019:8;;13015:185;;13093:3;13159:4;13141:13;13150:4;13141:6;:13;:::i;:::-;13133:3;:22;;13132:31;13119:46;;13054:130;;;;;;;;;:::i;:::-;;;;;;;;;;;;;13048:136;;13015:185;12991:409;;;13265:8;13258:4;:15;:57;;;-1:-1:-1;13305:4:46;13287:13;13296:4;13287:6;:13;:::i;:::-;13279:22;;;13278:31;13277:38;13258:57;13232:156;;;;-1:-1:-1;;;13232:156:46;;44781:2:51;13232:156:46;;;44763:21:51;44820:2;44800:18;;;44793:30;44859:34;44839:18;;;44832:62;-1:-1:-1;;;44910:18:51;;;44903:35;44955:19;;13232:156:46;44579:401:51;13232:156:46;12210:1197;;;12041:1366;;;;;;:::o;9956:836::-;10086:18;10142:21;10166:14;10176:3;10166:9;:14::i;:::-;10142:38;;10195:20;10247:4;:11;10231:6;:13;:27;10261:1;10231:31;-1:-1:-1;;;;;10218:45:46;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10218:45:46;;10195:68;;10285:6;10280:276;10313:4;:11;10297:6;:13;:27;10293:1;:31;10280:276;;;10359:6;:13;10355:1;:17;10351:190;;;10414:6;10421:1;10414:9;;;;;;;;:::i;:::-;;;;;;;10407:17;;10397:4;10402:1;10397:7;;;;;;;;:::i;:::-;;;;;;:27;;;;;;;;;;;10351:190;;;10496:4;10505:6;:13;10501:1;:17;10496:23;;;;;;;;:::i;:::-;;;;;;;;;10490:30;;10483:38;;10473:4;10478:1;10473:7;;;;;;;;:::i;:::-;;;;;;:48;;;;;;;;;;;10351:190;10326:4;;10280:276;;;-1:-1:-1;10590:14:46;;;10602:1;10590:14;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10590:14:46;10584:20;;10619:10;10648:3;10632:13;10640:4;10632:7;:13::i;:::-;:19;10619:32;;10671:6;10666:108;10687:1;10683;:5;10666:108;;;10748:1;10744;:5;10739:1;:11;10731:3;:20;;;;10755:2;10730:27;10715:3;10719:1;10715:6;;;;;;;;:::i;:::-;:43;;;;:6;;;;;;;;;;;:43;10690:4;;10666:108;;;;10117:668;;;9956:836;;;;;:::o;8866:371::-;8942:18;9029:3;:10;9016:3;:10;:23;9042:1;9016:27;-1:-1:-1;;;;;9004:40:46;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9004:40:46;;8998:46;;9064:6;9059:160;9076:3;:10;9072:1;:14;9059:160;;;9139:1;9128:3;9132:1;9128:6;;;;;;;;:::i;:::-;;;;;;;;;9122:13;;:18;;;;9113:3;9117:1;9113:6;;;;;;;;:::i;:::-;;;;;;:27;;;;;;;;;;;9191:3;9195:1;9191:6;;;;;;;;:::i;:::-;;;;;;;;;9185:13;;9201:2;9185:18;9159:3;9167;:10;9163:1;:14;9180:1;9163:18;9159:23;;;;;;;;:::i;:::-;:44;;;;:23;;;;;;;;;;;:44;9088:4;;9059:160;;9245:703;9353:159;;;;;;;;9391:10;9353:159;;9416:10;9353:159;;;;9441:10;9353:159;;;;;;;9466:10;9353:159;;;;9491:10;9353:159;;;;9309:6;;9341:1;;9309:6;9550:357;9573:6;:13;9569:1;:17;;;9550:357;;;9612:10;9632:2;9625:3;:9;;;;9612:22;;9699:6;9706:1;9699:9;;;;;;;;;;:::i;:::-;;;;;;;9687:1;9667:3;9673:9;9667:15;9660:28;;;;9659:50;9653:56;;9733:8;9728:164;9751:1;9747;:5;;;9728:164;;;9800:1;9788:8;;;;;;;;9787:14;;9786:21;;9782:91;;9843:3;9847:1;9843:6;;;;;;;;;:::i;:::-;;;;;9836:13;;;;9782:91;9754:3;;9728:164;;;-1:-1:-1;;9588:3:46;;9550:357;;;-1:-1:-1;9937:3:46;;9245:703;-1:-1:-1;;;9245:703:46:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;222:286:51;280:6;333:2;321:9;312:7;308:23;304:32;301:52;;;349:1;346;339:12;301:52;375:23;;-1:-1:-1;;;;;;427:32:51;;417:43;;407:71;;474:1;471;464:12;705:250;790:1;800:113;814:6;811:1;808:13;800:113;;;890:11;;;884:18;871:11;;;864:39;836:2;829:10;800:113;;;-1:-1:-1;;947:1:51;929:16;;922:27;705:250::o;960:271::-;1002:3;1040:5;1034:12;1067:6;1062:3;1055:19;1083:76;1152:6;1145:4;1140:3;1136:14;1129:4;1122:5;1118:16;1083:76;:::i;:::-;1213:2;1192:15;-1:-1:-1;;1188:29:51;1179:39;;;;1220:4;1175:50;;960:271;-1:-1:-1;;960:271:51:o;1236:220::-;1385:2;1374:9;1367:21;1348:4;1405:45;1446:2;1435:9;1431:18;1423:6;1405:45;:::i;1461:131::-;-1:-1:-1;;;;;1536:31:51;;1526:42;;1516:70;;1582:1;1579;1572:12;1597:367;1665:6;1673;1726:2;1714:9;1705:7;1701:23;1697:32;1694:52;;;1742:1;1739;1732:12;1694:52;1781:9;1768:23;1800:31;1825:5;1800:31;:::i;:::-;1850:5;1928:2;1913:18;;;;1900:32;;-1:-1:-1;;;1597:367:51:o;2377:508::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2578:9;2565:23;2597:31;2622:5;2597:31;:::i;:::-;2647:5;-1:-1:-1;2704:2:51;2689:18;;2676:32;2717:33;2676:32;2717:33;:::i;:::-;2377:508;;2769:7;;-1:-1:-1;;;2849:2:51;2834:18;;;;2821:32;;2377:508::o;3954:247::-;4013:6;4066:2;4054:9;4045:7;4041:23;4037:32;4034:52;;;4082:1;4079;4072:12;4034:52;4121:9;4108:23;4140:31;4165:5;4140:31;:::i;4206:263::-;4302:6;4355:2;4343:9;4334:7;4330:23;4326:32;4323:52;;;4371:1;4368;4361:12;4323:52;-1:-1:-1;4416:23:51;;4206:263;-1:-1:-1;4206:263:51:o;4474:347::-;4525:8;4535:6;4589:3;4582:4;4574:6;4570:17;4566:27;4556:55;;4607:1;4604;4597:12;4556:55;-1:-1:-1;4630:20:51;;-1:-1:-1;;;;;4662:30:51;;4659:50;;;4705:1;4702;4695:12;4659:50;4742:4;4734:6;4730:17;4718:29;;4794:3;4787:4;4778:6;4770;4766:19;4762:30;4759:39;4756:59;;;4811:1;4808;4801:12;4756:59;4474:347;;;;;:::o;4826:698::-;4940:6;4948;4956;5009:2;4997:9;4988:7;4984:23;4980:32;4977:52;;;5025:1;5022;5015:12;4977:52;5065:9;5052:23;-1:-1:-1;;;;;5090:6:51;5087:30;5084:50;;;5130:1;5127;5120:12;5084:50;5153:22;;5209:3;5191:16;;;5187:26;5184:46;;;5226:1;5223;5216:12;5184:46;5249:2;-1:-1:-1;5304:2:51;5289:18;;5276:32;-1:-1:-1;;;;;5320:32:51;;5317:52;;;5365:1;5362;5355:12;5317:52;5404:60;5456:7;5445:8;5434:9;5430:24;5404:60;:::i;:::-;4826:698;;5483:8;;-1:-1:-1;5378:86:51;;-1:-1:-1;;;;4826:698:51:o;5529:241::-;5625:6;5685:3;5673:9;5664:7;5660:23;5656:33;5701:2;5698:22;;;5716:1;5713;5706:12;5698:22;-1:-1:-1;5755:9:51;;5529:241;-1:-1:-1;;5529:241:51:o;5775:579::-;5827:3;5858;5890:5;5884:12;5917:6;5912:3;5905:19;5949:4;5944:3;5940:14;5933:21;;6007:4;5997:6;5994:1;5990:14;5983:5;5979:26;5975:37;6046:4;6039:5;6035:16;6069:1;6079:249;6093:6;6090:1;6087:13;6079:249;;;6180:2;6176:7;6168:5;6162:4;6158:16;6154:30;6149:3;6142:43;6206:38;6239:4;6230:6;6224:13;6206:38;:::i;:::-;6279:4;6304:14;;;;6198:46;;-1:-1:-1;6267:17:51;;;;;6115:1;6108:9;6079:249;;6359:280;6558:2;6547:9;6540:21;6521:4;6578:55;6629:2;6618:9;6614:18;6606:6;6578:55;:::i;6644:1238::-;7050:3;7045;7041:13;7033:6;7029:26;7018:9;7011:45;7092:3;7087:2;7076:9;7072:18;7065:31;6992:4;7119:46;7160:3;7149:9;7145:19;7137:6;7119:46;:::i;:::-;7213:9;7205:6;7201:22;7196:2;7185:9;7181:18;7174:50;7247:33;7273:6;7265;7247:33;:::i;:::-;7311:2;7296:18;;7289:34;;;-1:-1:-1;;;;;7360:32:51;;7354:3;7339:19;;7332:61;7380:3;7409:19;;7402:35;;;7474:22;;;7468:3;7453:19;;7446:51;7546:13;;7568:22;;;7618:2;7644:15;;;;-1:-1:-1;7606:15:51;;;;-1:-1:-1;7687:169:51;7701:6;7698:1;7695:13;7687:169;;;7762:13;;7750:26;;7805:2;7831:15;;;;7796:12;;;;7723:1;7716:9;7687:169;;;-1:-1:-1;7873:3:51;;6644:1238;-1:-1:-1;;;;;;;;;;;6644:1238:51:o;8402:129::-;-1:-1:-1;;;;;8480:5:51;8476:30;8469:5;8466:41;8456:69;;8521:1;8518;8511:12;8536:132;8603:20;;8632:30;8603:20;8632:30;:::i;8673:543::-;8752:6;8760;8768;8821:2;8809:9;8800:7;8796:23;8792:32;8789:52;;;8837:1;8834;8827:12;8789:52;8876:9;8863:23;8895:30;8919:5;8895:30;:::i;9221:127::-;9282:10;9277:3;9273:20;9270:1;9263:31;9313:4;9310:1;9303:15;9337:4;9334:1;9327:15;9353:145;9439:1;9432:5;9429:12;9419:46;;9445:18;;:::i;:::-;9474;;9353:145::o;9503:218::-;9654:2;9639:18;;9666:49;9643:9;9697:6;9666:49;:::i;9726:647::-;9849:6;9857;9910:2;9898:9;9889:7;9885:23;9881:32;9878:52;;;9926:1;9923;9916:12;9878:52;9966:9;9953:23;-1:-1:-1;;;;;9991:6:51;9988:30;9985:50;;;10031:1;10028;10021:12;9985:50;10054:22;;10107:4;10099:13;;10095:27;-1:-1:-1;10085:55:51;;10136:1;10133;10126:12;10085:55;10176:2;10163:16;-1:-1:-1;;;;;10194:6:51;10191:30;10188:50;;;10234:1;10231;10224:12;10188:50;10287:7;10282:2;10272:6;10269:1;10265:14;10261:2;10257:23;10253:32;10250:45;10247:65;;;10308:1;10305;10298:12;10247:65;10339:2;10331:11;;;;;10361:6;;-1:-1:-1;9726:647:51;-1:-1:-1;;;9726:647:51:o;10378:652::-;10585:2;10597:21;;;10667:13;;10570:18;;;10689:22;;;10537:4;;10768:15;;;10742:2;10727:18;;;10537:4;10811:193;10825:6;10822:1;10819:13;10811:193;;;10874:50;10920:3;10911:6;10905:13;10874:50;:::i;:::-;10953:2;10979:15;;;;10944:12;;;;;10847:1;10840:9;10811:193;;;-1:-1:-1;11021:3:51;;10378:652;-1:-1:-1;;;;;10378:652:51:o;11258:410::-;11329:6;11337;11390:2;11378:9;11369:7;11365:23;11361:32;11358:52;;;11406:1;11403;11396:12;11358:52;11446:9;11433:23;-1:-1:-1;;;;;11471:6:51;11468:30;11465:50;;;11511:1;11508;11501:12;11465:50;11550:58;11600:7;11591:6;11580:9;11576:22;11550:58;:::i;:::-;11627:8;;11524:84;;-1:-1:-1;11258:410:51;-1:-1:-1;;;;11258:410:51:o;11673:114::-;11757:4;11750:5;11746:16;11739:5;11736:27;11726:55;;11777:1;11774;11767:12;11792:1009;11903:6;11911;11919;11927;11935;11943;11951;12004:3;11992:9;11983:7;11979:23;11975:33;11972:53;;;12021:1;12018;12011:12;11972:53;12060:9;12047:23;12079:31;12104:5;12079:31;:::i;:::-;12129:5;-1:-1:-1;12186:2:51;12171:18;;12158:32;12199:33;12158:32;12199:33;:::i;:::-;12251:7;-1:-1:-1;12331:2:51;12316:18;;12303:32;;-1:-1:-1;12434:2:51;12419:18;;12406:32;;-1:-1:-1;12516:3:51;12501:19;;12488:33;12530:31;12488:33;12530:31;:::i;:::-;11792:1009;;;;-1:-1:-1;11792:1009:51;;;;12580:7;12660:3;12645:19;;12632:33;;-1:-1:-1;12764:3:51;12749:19;;;12736:33;;11792:1009;-1:-1:-1;;11792:1009:51:o;12806:523::-;12885:6;12893;12901;12954:2;12942:9;12933:7;12929:23;12925:32;12922:52;;;12970:1;12967;12960:12;12922:52;13015:23;;;-1:-1:-1;13113:2:51;13098:18;;13085:32;-1:-1:-1;;;;;13129:30:51;;13126:50;;;13172:1;13169;13162:12;13334:388;13402:6;13410;13463:2;13451:9;13442:7;13438:23;13434:32;13431:52;;;13479:1;13476;13469:12;13431:52;13518:9;13505:23;13537:31;13562:5;13537:31;:::i;:::-;13587:5;-1:-1:-1;13644:2:51;13629:18;;13616:32;13657:33;13616:32;13657:33;:::i;:::-;13709:7;13699:17;;;13334:388;;;;;:::o;13958:127::-;14019:10;14014:3;14010:20;14007:1;14000:31;14050:4;14047:1;14040:15;14074:4;14071:1;14064:15;14090:225;14176:4;14168:6;14164:17;14247:6;14235:10;14232:22;-1:-1:-1;;;;;14199:10:51;14196:34;14193:62;14190:88;;;14258:18;;:::i;:::-;14294:2;14287:22;-1:-1:-1;14090:225:51:o;14320:223::-;14406:2;14398:6;14394:15;14475:6;14463:10;14460:22;-1:-1:-1;;;;;14427:10:51;14424:34;14421:62;14418:88;;;14486:18;;:::i;14548:225::-;14634:4;14626:6;14622:17;14705:6;14693:10;14690:22;-1:-1:-1;;;;;14657:10:51;14654:34;14651:62;14648:88;;;14716:18;;:::i;14778:249::-;14888:2;14869:13;;-1:-1:-1;;14865:27:51;14853:40;;-1:-1:-1;;;;;14908:34:51;;14944:22;;;14905:62;14902:88;;;14970:18;;:::i;:::-;15006:2;14999:22;-1:-1:-1;;14778:249:51:o;15032:187::-;15081:4;-1:-1:-1;;;;;15106:6:51;15103:30;15100:56;;;15136:18;;:::i;:::-;-1:-1:-1;15202:2:51;15181:15;-1:-1:-1;;15177:29:51;15208:4;15173:40;;15032:187::o;15224:1646::-;15318:6;15371:2;15359:9;15350:7;15346:23;15342:32;15339:52;;;15387:1;15384;15377:12;15339:52;15427:9;15414:23;-1:-1:-1;;;;;15452:6:51;15449:30;15446:50;;;15492:1;15489;15482:12;15446:50;15515:22;;15568:4;15560:13;;15556:27;-1:-1:-1;15546:55:51;;15597:1;15594;15587:12;15546:55;15637:2;15624:16;-1:-1:-1;;;;;15655:6:51;15652:30;15649:56;;;15685:18;;:::i;:::-;15731:6;15728:1;15724:14;15767:2;15761:9;15779:40;15815:2;15811;15807:11;15799:6;15779:40;:::i;:::-;15854:22;;;15904:2;15934:11;;;15930:20;;;15854:22;15892:15;;15962:19;;;15959:39;;;15994:1;15991;15984:12;15959:39;16026:2;16022;16018:11;16007:22;;16038:801;16054:6;16049:3;16046:15;16038:801;;;16140:3;16127:17;-1:-1:-1;;;;;16163:11:51;16160:35;16157:55;;;16208:1;16205;16198:12;16157:55;16235:20;;16290:2;16282:11;;16278:25;-1:-1:-1;16268:53:51;;16317:1;16314;16307:12;16268:53;16371:2;16367;16363:11;16350:25;16398:38;16427:8;16398:38;:::i;:::-;16471:2;16465:9;16487:33;16517:2;16507:8;16487:33;:::i;:::-;16533:26;;;16578:35;16586:17;;;16578:35;16575:48;-1:-1:-1;16572:68:51;;;16636:1;16633;16626:12;16572:68;16698:8;16693:2;16689;16685:11;16680:2;16670:8;16666:17;16653:54;16761:1;16756:2;16745:8;16735;16731:23;16727:32;16720:43;16788:8;16783:3;16776:21;;;;;16826:2;16821:3;16817:12;16810:19;;16080:2;16075:3;16071:12;16064:19;;16038:801;;;-1:-1:-1;16858:6:51;15224:1646;-1:-1:-1;;;;;;15224:1646:51:o;16875:545::-;16955:6;16963;16971;17024:2;17012:9;17003:7;16999:23;16995:32;16992:52;;;17040:1;17037;17030:12;16992:52;17079:9;17066:23;17098:31;17123:5;17098:31;:::i;17638:380::-;17717:1;17713:12;;;;17760;;;17781:61;;17835:4;17827:6;17823:17;17813:27;;17781:61;17888:2;17880:6;17877:14;17857:18;17854:38;17851:161;;17934:10;17929:3;17925:20;17922:1;17915:31;17969:4;17966:1;17959:15;17997:4;17994:1;17987:15;18499:230;18569:6;18622:2;18610:9;18601:7;18597:23;18593:32;18590:52;;;18638:1;18635;18628:12;18590:52;-1:-1:-1;18683:16:51;;18499:230;-1:-1:-1;18499:230:51:o;19077:117::-;19162:6;19155:5;19151:18;19144:5;19141:29;19131:57;;19184:1;19181;19174:12;19199:245;19257:6;19310:2;19298:9;19289:7;19285:23;19281:32;19278:52;;;19326:1;19323;19316:12;19278:52;19365:9;19352:23;19384:30;19408:5;19384:30;:::i;19449:500::-;19507:5;19514:6;19574:3;19561:17;19660:2;19656:7;19645:8;19629:14;19625:29;19621:43;19601:18;19597:68;19587:96;;19679:1;19676;19669:12;19587:96;19707:33;;19811:4;19798:18;;;-1:-1:-1;19759:21:51;;-1:-1:-1;;;;;;19828:30:51;;19825:50;;;19871:1;19868;19861:12;19825:50;19918:6;19902:14;19898:27;19891:5;19887:39;19884:59;;;19939:1;19936;19929:12;19954:266;20042:6;20037:3;20030:19;20094:6;20087:5;20080:4;20075:3;20071:14;20058:43;-1:-1:-1;20146:1:51;20121:16;;;20139:4;20117:27;;;20110:38;;;;20202:2;20181:15;;;-1:-1:-1;;20177:29:51;20168:39;;;20164:50;;19954:266::o;20225:1464::-;20478:2;20460:21;;;20522:20;;20558:18;;;20551:33;20654:4;20642:17;;20629:31;20691:2;20676:18;;20669:35;20441:4;;20741:15;;20728:29;20766:32;20728:29;20766:32;:::i;:::-;20848:6;20835:20;20829:3;20814:19;;20807:49;20905:2;20893:15;;20880:29;20918:32;20880:29;20918:32;:::i;:::-;21000:6;20987:20;20981:3;20966:19;;20959:49;21057:3;21045:16;;21032:30;21071:32;21032:30;21071:32;:::i;:::-;-1:-1:-1;;;;;21140:32:51;21134:3;21119:19;;21112:61;21202:35;21232:3;21220:16;;21202:35;:::i;:::-;-1:-1:-1;;;;;3224:30:51;21317:4;21302:20;;3212:43;21368:56;21419:3;21407:16;;21411:6;21368:56;:::i;:::-;21461:4;21455:3;21444:9;21440:19;21433:33;21486:76;21557:3;21546:9;21542:19;21528:12;21512:14;21486:76;:::i;:::-;21475:87;;;21609:9;21604:3;21600:19;21593:4;21582:9;21578:20;21571:49;21637:46;21679:3;21671:6;21663;21637:46;:::i;21694:160::-;21785:13;;21827:2;21817:13;;21807:41;;21844:1;21841;21834:12;21859:160;21961:13;;21983:30;21961:13;21983:30;:::i;22024:569::-;22077:5;22130:3;22123:4;22115:6;22111:17;22107:27;22097:55;;22148:1;22145;22138:12;22097:55;22181:6;22175:13;22220:4;22212:6;22208:17;22249:1;22269:36;22298:6;22269:36;:::i;:::-;22334:2;22328:9;22346:31;22374:2;22366:6;22346:31;:::i;:::-;22397:6;22386:17;;22427:6;22419;22412:22;22467:3;22458:6;22453:3;22449:16;22446:25;22443:45;;;22484:1;22481;22474:12;22443:45;22497:66;22556:6;22549:4;22541:6;22537:17;22532:3;22497:66;:::i;:::-;22581:6;22024:569;-1:-1:-1;;;;;;;22024:569:51:o;22598:134::-;22675:13;;22697:29;22675:13;22697:29;:::i;22737:1272::-;22799:5;22847:4;22835:9;22830:3;22826:19;22822:30;22819:50;;;22865:1;22862;22855:12;22819:50;22898:2;22892:9;22910:32;22935:6;22910:32;:::i;:::-;22960:6;22951:15;;22995:9;22989:16;-1:-1:-1;;;;;23020:6:51;23017:30;23014:50;;;23060:1;23057;23050:12;23014:50;23083:22;;23135:2;23121:12;;;23117:21;23114:41;;;23151:1;23148;23141:12;23114:41;23186:2;23180:9;23198:34;23223:8;23198:34;:::i;:::-;23263:2;23257:9;-1:-1:-1;;;;;23281:8:51;23278:32;23275:52;;;23323:1;23320;23313:12;23275:52;23353:51;23400:3;23389:8;23385:2;23381:17;23353:51;:::i;:::-;23336:69;;-1:-1:-1;23464:2:51;23456:11;;;23450:18;23484:17;;;23477:34;23520:24;;23577:47;;23605:18;;23577:47;:::i;:::-;23572:2;23564:6;23560:15;23553:72;23658:47;23701:2;23690:9;23686:18;23658:47;:::i;:::-;23653:2;23645:6;23641:15;23634:72;23739:47;23782:2;23771:9;23767:18;23739:47;:::i;:::-;23734:2;23726:6;23722:15;23715:72;23821:73;23889:3;23878:9;23874:19;23821:73;:::i;:::-;23815:3;23807:6;23803:16;23796:99;23929:73;23997:3;23986:9;23982:19;23929:73;:::i;:::-;23923:3;23915:6;23911:16;23904:99;;22737:1272;;;;:::o;24014:1075::-;24113:6;24166:2;24154:9;24145:7;24141:23;24137:32;24134:52;;;24182:1;24179;24172:12;24134:52;24215:9;24209:16;-1:-1:-1;;;;;24240:6:51;24237:30;24234:50;;;24280:1;24277;24270:12;24234:50;24303:22;;24359:4;24341:16;;;24337:27;24334:47;;;24377:1;24374;24367:12;24334:47;24410:2;24404:9;24422:32;24447:6;24422:32;:::i;:::-;24482:2;24476:9;24514:3;24507:5;24504:14;24494:42;;24532:1;24529;24522:12;24494:42;24545:21;;24599:54;24649:2;24641:11;;24599:54;:::i;:::-;24594:2;24582:15;;24575:79;24713:2;24705:11;;;24699:18;24733:15;;;24726:32;24791:65;24852:2;24844:11;;24791:65;:::i;:::-;24786:2;24778:6;24774:15;24767:90;24896:3;24892:2;24888:12;24882:19;-1:-1:-1;;;;;24916:8:51;24913:32;24910:52;;;24958:1;24955;24948:12;24910:52;24996:61;25049:7;25038:8;25034:2;25030:17;24996:61;:::i;:::-;24990:3;24978:16;;24971:87;-1:-1:-1;24982:6:51;24014:1075;-1:-1:-1;;;;24014:1075:51:o;25094:1710::-;25289:2;25278:9;25271:21;25252:4;25317:6;25311:13;25350:3;25346:2;25343:11;25333:45;;25358:18;;:::i;:::-;25414:2;25409;25398:9;25394:18;25387:30;;25464:2;25456:6;25452:15;25446:22;25504:2;25490:12;25487:20;25477:54;;25511:18;;:::i;:::-;25567:12;25562:2;25551:9;25547:18;25540:40;;25634:2;25626:6;25622:15;25616:22;25611:2;25600:9;25596:18;25589:50;-1:-1:-1;;;;;25698:2:51;25690:6;25686:15;25680:22;25676:47;25670:3;25659:9;25655:19;25648:76;25773:3;25765:6;25761:16;25755:23;25816:4;25809;25798:9;25794:20;25787:34;25858:14;25852:21;25910:3;25904;25893:9;25889:19;25882:32;25951:14;25945:21;26003:2;25997:3;25986:9;25982:19;25975:31;26029:54;26078:3;26067:9;26063:19;26047:14;26029:54;:::i;:::-;26146:2;26126:23;;;26120:30;26114:3;26099:19;;26092:59;26198:23;;;26192:30;26224:4;26188:41;26182:3;26167:19;;26160:70;-1:-1:-1;26287:2:51;26267:23;;26261:30;;26300:53;26348:3;26333:19;;26261:30;3570:4;3559:16;3547:29;;3503:75;26300:53;26410:2;26390:23;;26384:30;3570:4;3559:16;26471:3;26456:19;;3547:29;26533:3;26513:24;;26507:31;-1:-1:-1;;;;;3224:30:51;;;26620:3;26605:19;;3212:43;26682:4;26662:25;;;26656:32;3224:30;;;26770:3;26755:19;;3212:43;26507:31;-1:-1:-1;26697:78:51;3135:126;26809:249;26878:6;26931:2;26919:9;26910:7;26906:23;26902:32;26899:52;;;26947:1;26944;26937:12;26899:52;26979:9;26973:16;26998:30;27022:5;26998:30;:::i;27063:179::-;27098:3;27140:1;27122:16;27119:23;27116:120;;;27186:1;27183;27180;27165:23;-1:-1:-1;27223:1:51;27217:8;27212:3;27208:18;27063:179;:::o;27247:628::-;27286:3;27328:4;27310:16;27307:26;27304:39;;;27247:628;:::o;27304:39::-;27370:2;27364:9;27410:16;-1:-1:-1;;27406:29:51;27403:1;27364:9;27382:54;27465:4;27459:11;27539:16;27532:4;27524:6;27520:17;27517:39;-1:-1:-1;;;;;27488:6:51;27485:30;27482:75;27479:88;;;27560:5;;27247:628;:::o;27479:88::-;27597:6;27591:4;27587:17;27633:3;27627:10;-1:-1:-1;;;;;27652:6:51;27649:30;27646:43;;;27682:5;;;;27247:628;:::o;27646:43::-;27747:16;27737:27;;-1:-1:-1;;27733:40:51;27708:16;;;27726:4;27704:27;27701:73;27698:86;;;27777:5;;;;27247:628;:::o;27698:86::-;27793:57;27844:4;27835:6;27827;27823:19;27819:30;27813:4;27793:57;:::i;:::-;-1:-1:-1;27866:3:51;27247:628;-1:-1:-1;;;27247:628:51:o;28320:245::-;28378:6;28431:2;28419:9;28410:7;28406:23;28402:32;28399:52;;;28447:1;28444;28437:12;28399:52;28486:9;28473:23;28505:30;28529:5;28505:30;:::i;28570:119::-;28655:8;28648:5;28644:20;28637:5;28634:31;28624:59;;28679:1;28676;28669:12;28694:245;28752:6;28805:2;28793:9;28784:7;28780:23;28776:32;28773:52;;;28821:1;28818;28811:12;28773:52;28860:9;28847:23;28879:30;28903:5;28879:30;:::i;28944:127::-;29005:10;29000:3;28996:20;28993:1;28986:31;29036:4;29033:1;29026:15;29060:4;29057:1;29050:15;29076:1094;29262:5;29249:19;29277:32;29301:7;29277:32;:::i;:::-;29341:6;29332:7;29328:20;29318:30;;29373:4;29367:11;29424:2;29415:5;29411:10;29407:2;29403:19;29400:27;29394:4;29387:41;29476:2;29469:5;29465:14;29452:28;29489:32;29513:7;29489:32;:::i;:::-;29568:10;29558:7;29554:2;29550:16;29546:33;29530:49;;29638:8;29633:2;29619:10;29615:15;29611:2;29607:24;29604:32;29601:46;29595:4;29588:60;29696:2;29689:5;29685:14;29672:28;29709:32;29733:7;29709:32;:::i;:::-;29852:26;29842:7;29838:2;29834:16;29830:49;29824:2;29794:26;29790:31;29786:2;29782:40;29779:48;29769:8;29766:62;29763:117;29757:4;29750:131;;;;;29909:1;29958:2;29951:5;29947:14;29934:28;29971:32;29995:7;29971:32;:::i;:::-;30053:11;;-1:-1:-1;;;;30089:31:51;30148:2;30126:16;;;;-1:-1:-1;;;30122:40:51;30086:77;30073:91;;;-1:-1:-1;;29076:1094:51:o;31220:127::-;31281:10;31276:3;31272:20;31269:1;31262:31;31312:4;31309:1;31302:15;31336:4;31333:1;31326:15;31352:194;-1:-1:-1;;;;;31450:26:51;;;31422;;;31418:59;;31489:28;;31486:54;;;31520:18;;:::i;31551:204::-;31589:3;-1:-1:-1;;;;;31626:5:51;31622:30;-1:-1:-1;;;;;31667:7:51;31664:31;31661:57;;31698:18;;:::i;:::-;31747:1;31734:15;;31551:204;-1:-1:-1;;31551:204:51:o;31760:511::-;-1:-1:-1;;;;;32002:32:51;;31984:51;;32071:3;32066:2;32051:18;;32044:31;;;-1:-1:-1;;32092:62:51;;32134:19;;32126:6;32118;32092:62;:::i;:::-;-1:-1:-1;;;;;32190:31:51;;;;32185:2;32170:18;;32163:59;-1:-1:-1;32253:2:51;32238:18;32231:34;32084:70;31760:511;-1:-1:-1;;;31760:511:51:o;32276:277::-;32363:6;32416:2;32404:9;32395:7;32391:23;32387:32;32384:52;;;32432:1;32429;32422:12;32384:52;32464:9;32458:16;32503:1;32496:5;32493:12;32483:40;;32519:1;32516;32509:12;32558:127;32619:10;32614:3;32610:20;32607:1;32600:31;32650:4;32647:1;32640:15;32674:4;32671:1;32664:15;32690:284;32793:6;32846:2;32834:9;32825:7;32821:23;32817:32;32814:52;;;32862:1;32859;32852:12;32814:52;32894:9;32888:16;32913:31;32938:5;32913:31;:::i;32979:335::-;33058:6;33111:2;33099:9;33090:7;33086:23;33082:32;33079:52;;;33127:1;33124;33117:12;33079:52;33160:9;33154:16;-1:-1:-1;;;;;33185:6:51;33182:30;33179:50;;;33225:1;33222;33215:12;33179:50;33248:60;33300:7;33291:6;33280:9;33276:22;33248:60;:::i;:::-;33238:70;32979:335;-1:-1:-1;;;;32979:335:51:o;34216:323::-;34409:6;34398:9;34391:25;34452:2;34447;34436:9;34432:18;34425:30;34372:4;34472:61;34529:2;34518:9;34514:18;34506:6;34498;34472:61;:::i;34544:967::-;34706:6;34714;34722;34730;34738;34791:3;34779:9;34770:7;34766:23;34762:33;34759:53;;;34808:1;34805;34798:12;34759:53;34853:16;;34937:2;34922:18;;34916:25;34853:16;;-1:-1:-1;;;;;;34953:30:51;;34950:50;;;34996:1;34993;34986:12;34950:50;35019:60;35071:7;35062:6;35051:9;35047:22;35019:60;:::i;:::-;35009:70;;;35125:2;35114:9;35110:18;35104:25;-1:-1:-1;;;;;35144:8:51;35141:32;35138:52;;;35186:1;35183;35176:12;35138:52;35209:62;35263:7;35252:8;35241:9;35237:24;35209:62;:::i;:::-;35199:72;;;35316:2;35305:9;35301:18;35295:25;35329:33;35354:7;35329:33;:::i;:::-;35433:3;35418:19;;35412:26;35381:7;;-1:-1:-1;35447:32:51;35412:26;35447:32;:::i;:::-;35498:7;35488:17;;;34544:967;;;;;;;;:::o;35516:522::-;35785:3;35774:9;35767:22;35748:4;35806:46;35847:3;35836:9;35832:19;35824:6;35806:46;:::i;:::-;-1:-1:-1;;;;;35888:32:51;;;;35883:2;35868:18;;35861:60;-1:-1:-1;;;;;;35957:31:51;;;;35952:2;35937:18;;35930:59;36020:2;36005:18;;;35998:34;35798:54;35516:522;-1:-1:-1;35516:522:51:o;36043:127::-;36104:10;36099:3;36095:20;36092:1;36085:31;36135:4;36132:1;36125:15;36159:4;36156:1;36149:15;36175:170;36214:1;36248:6;36245:1;36241:14;36274:3;36264:37;;36281:18;;:::i;:::-;36335:3;36326:6;36323:1;36319:14;36315:24;36310:29;;;36175:170;;;;:::o;36914:444::-;-1:-1:-1;;;37171:3:51;37164:27;37146:3;37220:6;37214:13;37236:75;37304:6;37299:2;37294:3;37290:12;37283:4;37275:6;37271:17;37236:75;:::i;:::-;37331:16;;;;37349:2;37327:25;;36914:444;-1:-1:-1;;36914:444:51:o;38331:125::-;38396:9;;;38417:10;;;38414:36;;;38430:18;;:::i;38461:168::-;38534:9;;;38565;;38582:15;;;38576:22;;38562:37;38552:71;;38603:18;;:::i;38634:120::-;38674:1;38700;38690:35;;38705:18;;:::i;:::-;-1:-1:-1;38739:9:51;;38634:120::o;38759:503::-;39056:2;39045:9;39038:21;39019:4;39082:55;39133:2;39122:9;39118:18;39110:6;39082:55;:::i;:::-;39185:9;39177:6;39173:22;39168:2;39157:9;39153:18;39146:50;39213:43;39249:6;39241;39213:43;:::i;40261:289::-;40392:3;40430:6;40424:13;40446:66;40505:6;40500:3;40493:4;40485:6;40481:17;40446:66;:::i;:::-;40528:16;;;;;40261:289;-1:-1:-1;;40261:289:51:o;43427:188::-;43465:3;43509:10;43502:5;43498:22;43544:10;43535:7;43532:23;43529:49;;43558:18;;:::i;43620:128::-;43687:9;;;43708:11;;;43705:37;;;43722:18;;:::i;44176:398::-;44331:3;44369:6;44363:13;44385:66;44444:6;44439:3;44432:4;44424:6;44420:17;44385:66;:::i;:::-;-1:-1:-1;;;;;;44512:26:51;;;;44473:16;;;;44498:41;;;44566:1;44555:13;;44176:398;-1:-1:-1;;44176:398:51:o;45111:518::-;45213:2;45208:3;45205:11;45202:421;;;45249:5;45246:1;45239:16;45293:4;45290:1;45280:18;45363:2;45351:10;45347:19;45344:1;45340:27;45334:4;45330:38;45399:4;45387:10;45384:20;45381:47;;;-1:-1:-1;45422:4:51;45381:47;45477:2;45472:3;45468:12;45465:1;45461:20;45455:4;45451:31;45441:41;;45532:81;45550:2;45543:5;45540:13;45532:81;;;45609:1;45595:16;;45576:1;45565:13;45532:81;;;45536:3;;45111:518;;;:::o;45805:1299::-;45931:3;45925:10;-1:-1:-1;;;;;45950:6:51;45947:30;45944:56;;;45980:18;;:::i;:::-;46009:97;46099:6;46059:38;46091:4;46085:11;46059:38;:::i;:::-;46053:4;46009:97;:::i;:::-;46155:4;46186:2;46175:14;;46203:1;46198:649;;;;46891:1;46908:6;46905:89;;;-1:-1:-1;46960:19:51;;;46954:26;46905:89;-1:-1:-1;;45762:1:51;45758:11;;;45754:24;45750:29;45740:40;45786:1;45782:11;;;45737:57;47007:81;;46168:930;;46198:649;45058:1;45051:14;;;45095:4;45082:18;;-1:-1:-1;;46234:20:51;;;46352:222;46366:7;46363:1;46360:14;46352:222;;;46448:19;;;46442:26;46427:42;;46555:4;46540:20;;;;46508:1;46496:14;;;;46382:12;46352:222;;;46356:3;46602:6;46593:7;46590:19;46587:201;;;46663:19;;;46657:26;-1:-1:-1;;46746:1:51;46742:14;;;46758:3;46738:24;46734:37;46730:42;46715:58;46700:74;;46587:201;-1:-1:-1;;;;46834:1:51;46818:14;;;46814:22;46801:36;;-1:-1:-1;45805:1299:51:o"},"methodIdentifiers":{"DOMAIN_SEPARATOR()":"3644e515","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","crosschainBurn(address,uint256)":"2b8c49e3","crosschainMint(address,uint256)":"18bf5077","decimals()":"313ce567","eip712Domain()":"84b0196e","evmCurator()":"01367f73","getWrapTransactionLastQueryId(bytes32)":"77cc7a3a","getWrapTransactionStatus(bytes32)":"a53cb851","getWrapTransactionStatuses(bytes32[])":"aa22dc33","initialize(address,string)":"f399e22e","name()":"06fdde03","nonces(address)":"7ecebe00","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","pushDataReport((bytes32,bytes32,(uint16,uint16,uint64),uint64,bytes),bytes)":"6d0d6a7e","reportWitOracleQueryResult(uint256,bytes)":"d6f29e81","reportableFrom(address)":"47a10e56","settleWitCustodianUnwrapper(string)":"c65a20f0","settleWitOracleCrossChainRpcProviders(string[])":"ea9e96a6","settleWitOracleSettings((uint16,uint16,uint64,uint24))":"6df0627e","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","totalReserveSupply()":"91f4f96c","totalSupply()":"18160ddd","totalUnwraps()":"520a5495","totalWraps()":"6aaa54cf","transfer(address,uint256)":"a9059cbb","transferCuratorship(address)":"a41942a4","transferFrom(address,address,uint256)":"23b872dd","unwrap(uint64,string)":"8a510f27","witCustodianUnwrapper()":"147040de","witCustodianWrapper()":"b3f120a1","witOracle()":"1014d375","witOracleCrossChainProofOfInclusionTemplate()":"f69a00b6","witOracleCrossChainProofOfReserveTemplate()":"27ae6883","witOracleCrossChainRpcProviders()":"71d41eb3","witOracleEstimateWrappingFee(uint256)":"ddb2bf5c","witOracleProofOfReserveLastUpdate()":"30315dc4","witOracleProofOfReserveRadonBytecode()":"acb734bb","witOracleProofOfReserveRadonHash()":"fec53a14","witOracleQuerySettings()":"873234cf","wrap(bytes32)":"5f029ebe"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IWitOracleRadonRequestFactory\",\"name\":\"_witOracleRadonRequestFactory\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"_witCustodianBech32\",\"type\":\"string\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"ERC2612ExpiredSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC2612InvalidSigner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"Unauthorized\",\"type\":\"error\"},{\"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\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"CrosschainBurn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"CrosschainMint\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"evmPrevCurator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"evmNewCurator\",\"type\":\"address\"}],\"name\":\"CuratorshipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"witCustodianUnwrapper\",\"type\":\"string\"}],\"name\":\"NewCustodianUnwrapper\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"Witnet.Timestamp\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"Witnet.TransactionHash\",\"name\":\"witDrtHash\",\"type\":\"bytes32\"}],\"name\":\"ReserveUpdate\",\"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\":false,\"internalType\":\"address\",\"name\":\"evmSender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"witRecipient\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"}],\"name\":\"Unwrapped\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"witSender\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"evmRecipient\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"Witnet.TransactionHash\",\"name\":\"witVttHash\",\"type\":\"bytes32\"}],\"name\":\"Wrapped\",\"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\":\"value\",\"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\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"crosschainBurn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"crosschainMint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"evmCurator\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"_witnetValueTransferTransactionHash\",\"type\":\"bytes32\"}],\"name\":\"getWrapTransactionLastQueryId\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"_witnetValueTransferTransactionHash\",\"type\":\"bytes32\"}],\"name\":\"getWrapTransactionStatus\",\"outputs\":[{\"internalType\":\"enum IWrappedWIT.WrappingStatus\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.TransactionHash[]\",\"name\":\"_hashes\",\"type\":\"bytes32[]\"}],\"name\":\"getWrapTransactionStatuses\",\"outputs\":[{\"internalType\":\"enum IWrappedWIT.WrappingStatus[]\",\"name\":\"_statuses\",\"type\":\"uint8[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_evmCurator\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"_witCustodianUnwrapperBech32\",\"type\":\"string\"}],\"name\":\"initialize\",\"outputs\":[],\"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\":[{\"components\":[{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"witDrTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"Witnet.RadonHash\",\"name\":\"queryRadHash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"queryParams\",\"type\":\"tuple\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"resultTimestamp\",\"type\":\"uint64\"},{\"internalType\":\"bytes\",\"name\":\"resultCborBytes\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.DataPushReport\",\"name\":\"report\",\"type\":\"tuple\"},{\"internalType\":\"bytes\",\"name\":\"proof\",\"type\":\"bytes\"}],\"name\":\"pushDataReport\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"queryId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"queryResult\",\"type\":\"bytes\"}],\"name\":\"reportWitOracleQueryResult\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_from\",\"type\":\"address\"}],\"name\":\"reportableFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_witCustodianUnwrapperBech32\",\"type\":\"string\"}],\"name\":\"settleWitCustodianUnwrapper\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string[]\",\"name\":\"_witRpcProviders\",\"type\":\"string[]\"}],\"name\":\"settleWitOracleCrossChainRpcProviders\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint16\",\"name\":\"minWitnesses\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"baseFeeOverhead100\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"unitaryRewardNanowits\",\"type\":\"uint64\"},{\"internalType\":\"uint24\",\"name\":\"responseCallbackGasLimit\",\"type\":\"uint24\"}],\"internalType\":\"struct IWrappedWIT.WitOracleSettings\",\"name\":\"_settings\",\"type\":\"tuple\"}],\"name\":\"settleWitOracleSettings\",\"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\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalReserveSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalUnwraps\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalWraps\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_newCurator\",\"type\":\"address\"}],\"name\":\"transferCuratorship\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint64\",\"name\":\"value\",\"type\":\"uint64\"},{\"internalType\":\"string\",\"name\":\"witRecipientBech32\",\"type\":\"string\"}],\"name\":\"unwrap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"evmUnwrapId\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witCustodianUnwrapper\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witCustodianWrapper\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracle\",\"outputs\":[{\"internalType\":\"contract WitOracle\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracleCrossChainProofOfInclusionTemplate\",\"outputs\":[{\"internalType\":\"contract IWitOracleRadonRequestModal\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracleCrossChainProofOfReserveTemplate\",\"outputs\":[{\"internalType\":\"contract IWitOracleRadonRequestModal\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracleCrossChainRpcProviders\",\"outputs\":[{\"internalType\":\"string[]\",\"name\":\"\",\"type\":\"string[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"}],\"name\":\"witOracleEstimateWrappingFee\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracleProofOfReserveLastUpdate\",\"outputs\":[{\"internalType\":\"Witnet.Timestamp\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracleProofOfReserveRadonBytecode\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracleProofOfReserveRadonHash\",\"outputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracleQuerySettings\",\"outputs\":[{\"components\":[{\"internalType\":\"uint16\",\"name\":\"minWitnesses\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"baseFeeOverhead100\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"unitaryRewardNanowits\",\"type\":\"uint64\"},{\"internalType\":\"uint24\",\"name\":\"responseCallbackGasLimit\",\"type\":\"uint24\"}],\"internalType\":\"struct IWrappedWIT.WitOracleSettings\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"_witnetValueTransferTransactionHash\",\"type\":\"bytes32\"}],\"name\":\"wrap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"_witOracleQueryId\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"custom:security-contact\":\"info@witnet.foundation\",\"errors\":{\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}],\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC2612ExpiredSignature(uint256)\":[{\"details\":\"Permit deadline has expired.\"}],\"ERC2612InvalidSigner(address,address)\":[{\"details\":\"Mismatched signature.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"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.\"},\"CrosschainBurn(address,uint256,address)\":{\"params\":{\"amount\":\"Amount of tokens burned.\",\"from\":\"Address of the account tokens are being burned from.\",\"sender\":\"Address of the caller (msg.sender) who invoked crosschainBurn.\"}},\"CrosschainMint(address,uint256,address)\":{\"params\":{\"amount\":\"Amount of tokens minted.\",\"sender\":\"Address of the caller (msg.sender) who invoked crosschainMint.\",\"to\":\"Address of the account tokens are being minted for.\"}},\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"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\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"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\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"crosschainBurn(address,uint256)\":{\"details\":\"See {IERC7802-crosschainBurn}. Emits a {CrosschainBurn} event.\"},\"crosschainMint(address,uint256)\":{\"details\":\"See {IERC7802-crosschainMint}. Emits a {CrosschainMint} event.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"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]. CAUTION: See Security Considerations above.\"},\"reportWitOracleQueryResult(uint256,bytes)\":{\"params\":{\"queryId\":\"The unique identifier of the Witnet query being reported.\",\"queryResult\":\"Abi-encoded Witnet.DataResult containing the CBOR-encoded query's result, and metadata.\"}},\"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[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"events\":{\"CrosschainBurn(address,uint256,address)\":{\"notice\":\"Emitted when a crosschain transfer burns tokens.\"},\"CrosschainMint(address,uint256,address)\":{\"notice\":\"Emitted when a crosschain transfer mints tokens.\"}},\"kind\":\"user\",\"methods\":{\"decimals()\":{\"notice\":\"=============================================================================================================== --- ERC20 -----------------------------------------------------------------------------------------------------\"},\"evmCurator()\":{\"notice\":\"=============================================================================================================== --- Wrapped/WIT read-only methods -----------------------------------------------------------------------------\"},\"pushDataReport((bytes32,bytes32,(uint16,uint16,uint64),uint64,bytes),bytes)\":{\"notice\":\"Process canonical Proof-of-Reserve reports from the Wit/Oracle blockchain, permissionlessly.    \"},\"reportWitOracleQueryResult(uint256,bytes)\":{\"notice\":\"Method called from the WitOracle as soon as the specified `queryId` gets reported from the Witnet blockchain.\"},\"reportableFrom(address)\":{\"notice\":\"Determines if Wit/Oracle query results can be reported from the given address.\"},\"settleWitOracleCrossChainRpcProviders(string[])\":{\"notice\":\"=============================================================================================================== --- Wrapped/WIT authoritative methods -------------------------------------------------------------------------\"},\"wrap(bytes32)\":{\"notice\":\"=============================================================================================================== --- Wrapped/WIT permissionless wrap/unwrap operations ---------------------------------------------------------\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/WrappedWIT.sol\":\"WrappedWIT\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/community-contracts/contracts/interfaces/IERC7802.sol\":{\"keccak256\":\"0x47cd8978c9c554c4a6458bc131d7115867ce3e04153470dec1ef51015c98b40b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cee8847208b4b7358e0e21cd22518575a3d7a7425d9b7014e5a05402b671cbf3\",\"dweb:/ipfs/QmUJCnpBNvet1gaK3pLGyPxLFVe9J8pG7fasux1nDVrU3D\"]},\"@openzeppelin/community-contracts/contracts/token/ERC20/extensions/ERC20Bridgeable.sol\":{\"keccak256\":\"0xcc72e5332718c1956b3ce120c55b1a4b874d8c88a1cf6cb43ef0dfba7dfb7570\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://41c00f6b4e03bd3073af9c7dc3c28b4b1bfa8bd5b60dd542f70a99a90207db3d\",\"dweb:/ipfs/QmY1GyFj6qmVP3xEjNMoG3hXxWuze9xX6R5BYXV3gSPvJR\"]},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0xdb4d24ee2c087c391d587cd17adfe5b3f9d93b3110b1388c2ab6c7c0ad1dcd05\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ab7b6d5b9e2b88176312967fe0f0e78f3d9a1422fa5e4b64e2440c35869b5d08\",\"dweb:/ipfs/QmXKYWWyzcLg1B2k7Sb1qkEXgLCYfXecR9wYW5obRzWP1Q\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x19fdfb0f3b89a230e7dbd1cf416f1a6b531a3ee5db4da483f946320fc74afc0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3490d794728f5bfecb46820431adaff71ba374141545ec20b650bb60353fac23\",\"dweb:/ipfs/QmPsfxjVpMcZbpE7BH93DzTpEaktESigEw4SmDzkXuJ4WR\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x86b7b71a6aedefdad89b607378eeab1dcc5389b9ea7d17346d08af01d7190994\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1dc2db8d94a21eac8efe03adf574c419b08536409b416057a2b5b95cb772c43c\",\"dweb:/ipfs/QmZfqJCKVU1ScuX2A7s8WZdQEaikwJbDH5JBrBdKTUT4Gu\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\":{\"keccak256\":\"0xecd08ad8132d88a5fcfd50f76a18583004fcdab4c33fb86343903ae420ca5a2b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://02422dce2e5305624e5cec644add1baa44bfa98ea131bf6030069089a2f56ca4\",\"dweb:/ipfs/QmcsSUkX7AYXNZE18LYE6JEmv8zZcCZvKfbUm9cSzNQyNo\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x2fa0657dd7b8bc75475a47f64bc04a9adb42236b15d65e6781594ea69a46c3e4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7496f42681aed94bf0142a077324e50b86046610c1724e7c12e96cf1c365914a\",\"dweb:/ipfs/QmZvhNdSAAbN4PKPdheAqwpXukUiXp3Q3TdQccDMg2NDTV\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0xad148d59f05165f9217d0a9e1ac8f772abb02ea6aaad8a756315c532bf79f9f4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://15e3599867c2182f5831e9268b274b2ef2047825837df6b4d81c9e89254b093e\",\"dweb:/ipfs/QmZbL7XAYr5RmaNaooPgZRmcDXaudfsYQfYD9y5iAECvpS\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x17fc4574e07105b0180ef61f1b3cacd1820a3d37f29a4af1018d0a253c6399b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be46b3e1362dbcadbbb45ec92cdea849dceccea3e2795237f00c123aeae44746\",\"dweb:/ipfs/QmSpyB8mud6xKiZaQnVtEPrxtTHGtyBgjs1PCYk4f2gesd\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0x2d9dc2fe26180f74c11c13663647d38e259e45f95eb88f57b61d2160b0109d3e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81233d1f98060113d9922180bb0f14f8335856fe9f339134b09335e9f678c377\",\"dweb:/ipfs/QmWh6R35SarhAn4z2wH8SU456jJSYL2FgucfTFgbHJJN4E\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"contracts/IWrappedWIT.sol\":{\"keccak256\":\"0x8ee19154169e6b17db3f453966a0a03f9e1080578af784f3fe4e60a0a37e7ea9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://47913180c69e02f9872887e3eede6d9491f3bf176add6fafe76dfa36f350448a\",\"dweb:/ipfs/Qmf7a61bdxVE9BnCAVBtNEYPsC88pnn9o3BSX2bTjGWNqq\"]},\"contracts/WrappedWIT.sol\":{\"keccak256\":\"0x1a9ae704be83196cb43e54ba7708db8961bda62f2b3f3c07e26ba840fc5d5c36\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://85523e47f5944f9fde3da2e24e537f0af02f1cbf3c835a80d5222b6b8667a483\",\"dweb:/ipfs/QmVDYuq5YsFL1ZguMzbmfn74Gr3m1idwSWt2MkzPj2ZgmH\"]},\"contracts/WrappedWITLib.sol\":{\"keccak256\":\"0xd103a772a78f1401ad00afed5da9cd50abda43721d1be9e51e6239a0fd15dd47\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8a6794601634b4cac98f9cc329b115e502301a4e3aadb71eb0055ac3b702da5d\",\"dweb:/ipfs/QmSarqdYNPpECaH7mhFkwpQJnk8ybCSjFWb8YiwPSbyLDd\"]},\"witnet-solidity-bridge/contracts/WitOracle.sol\":{\"keccak256\":\"0x7f20eab15140df459753dfa8e406b826918b56ebe2c46456f9d04345c02629d1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e0573ce3d48200c71d8235a1a8c055b706420b2037bd21336f3c61713c3b8349\",\"dweb:/ipfs/QmY7BnVaNXFtJs1BFdeaa7dQfvUVoZyfwtv9HuToCxUUHU\"]},\"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol\":{\"keccak256\":\"0x7aa7a7f61c2e5a61a050a3e1819e7eed11f9e8a09b15b157e1bc1b298b6118c0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d75af90a732a14fb76cd043978e09bd1e53c378c54039b9e1c2f3fee5e071fd2\",\"dweb:/ipfs/QmSSDQxsi4CueiFnKHuCTHzscgt4TroRTBDYUBywPi8o3b\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol\":{\"keccak256\":\"0xd207ca54a1049445a3d99eea497d9b34c6dbdd44d771eee825e4c031bd2f447e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f81de32d868ff2881ed6fe97cc897e40b4b11d23cbe53a0e23cf3e68f9c0f0a3\",\"dweb:/ipfs/QmeeXmzmK5MAzt7Hf5DB2L81efKtTzZg9VbQ8sUiTqEk5c\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracle.sol\":{\"keccak256\":\"0xd9f1a62989dbd33e486beb27362340565f899b143d1c4a1b022c6116b0ec317b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://00fa3a545ba871732ce1bd13241dcd24ad8c31908e764bb7e8ac1d96cb534e7f\",\"dweb:/ipfs/QmQvGiyxaULT6wu3RfvpnRrKdP8X2mbCDgQYyW9CQkH73f\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol\":{\"keccak256\":\"0xcd8e57eca7f8042c85a83264e2ff6d1cd7a9f1521831736d7f57bcc7800642e6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5c639668e9439d60770b5df77436088ae7bd0aeb1d1be446552a98b6c29138f0\",\"dweb:/ipfs/QmbN3f5YuKMSd2j9tjay3VEkiYibGWpbfbwRNyrxA8k4o4\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleConsumer.sol\":{\"keccak256\":\"0x0091b5953897f5bec810d4fa22e43a9dbd5e01600994f6465e3fe14edab02a5b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://61862f8fd20ba0f619c4d6851affd39885c4bbbf1a7bd99e01ac472dae487a1b\",\"dweb:/ipfs/QmXuw1XaQmbSpcrZUhAzTnmnj3Vxna9D1Fg9Zwq5EnZRZK\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriable.sol\":{\"keccak256\":\"0xd7075a3c4a6744989883a9a791d9068f84872a1b1f9600665f8bde4b43ed9b3b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6fdea2451c22af317b4a699928e76fdd66d1faee2a87df951ef4d669d6b3058f\",\"dweb:/ipfs/QmcrohJfHjigPV9sXxyCucDhqwK2wP84Sc2qc5hx7RFQ6i\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableConsumer.sol\":{\"keccak256\":\"0xc10f14a5aa25409d3fe7199c2fa7fa16ba6823c122a42e6772ed0fbff5465d57\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9d0d0033b3d0961d1439c4b0664435e6488c730e82436c83564be11a48032a34\",\"dweb:/ipfs/QmeMJ2xC7tyNTzKKqhgym1KM3N6WnNadEsooHsVNqVzR4j\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableEvents.sol\":{\"keccak256\":\"0x47c283e931006d35bd2599524f86724e45eae6fad2fdd9cdecd1c85a90ff3f8c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3ad0520f99ec9298536ae9434f58caeb470c10dd3eaab1e4c7ed4cae9a97e2a2\",\"dweb:/ipfs/QmSuYCsSPweZfQc5Fbf9jYDdx4u7gwYCUdjhpcrrxmWZy6\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistry.sol\":{\"keccak256\":\"0x437bbb89129311bd1cc8f6becd333df46109ec53b24d3159be942b225614071f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ef9bcdf4a73cb126885478c994821b7fe2b87d9221b767b4c9342b89b0d6550a\",\"dweb:/ipfs/QmXzZXPMxjSiFpcEnhg6CjLFNxGCpDZt22xpUh7VHxNTGd\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistryEvents.sol\":{\"keccak256\":\"0x9bd30477aeb33de11c4f1df3cd7451452a90ffed1f6eabd9e643046bf1e60d66\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fb38c5528ed2e1bf90ff8d123bf5a9523d0dc49f448d6c39ddad1cd9048d0a\",\"dweb:/ipfs/QmQq1RUwFgnGTk3xDAmN6u2WMPBzvjZNJc7TPYtG6aZfRn\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestFactory.sol\":{\"keccak256\":\"0x4484204bd9cb0f054dfe5120409e9da5ff7e4eca03917e3c0c4cef9a322ee98a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ecd34db48b011fc94c5132ff6fead4ca36b45a464e2342b65692cc4001cde0bb\",\"dweb:/ipfs/QmNPG3hM7XpMN3iGvR7UhGiSS3Kz5qNmEZKUQRjSPggKax\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestModal.sol\":{\"keccak256\":\"0xe939497e9d6b7e6ede25f885a9079797ec91107893e974cb11d052ed40e80dab\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b3272b7a52bd122c7a9b02b07d681cdcbe9a9b58039d05b8642db86045864866\",\"dweb:/ipfs/QmQadtigEDbLL5UoqVTt35ukZHz1QaZ54eD7sMFpK82tuX\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestTemplate.sol\":{\"keccak256\":\"0xd0829d45fe03f6c8bd48e8fffa2e5cf438349b5cf853d22dde1f04cdd614d4e8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da54a909fc2f50e36092296d4d15c65c1445abc3d9f9e9e466139ace88c6d2a8\",\"dweb:/ipfs/QmW5VT5KX33QoJ6mz9wsUt6iFL9qFdcvbxqGRMz7niUB4F\"]},\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"contracts/WrappedWITDeployer.sol":{"WrappedWITDeployer":{"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"salt","type":"uint256"},{"internalType":"bytes","name":"creationCode","type":"bytes"}],"name":"deployBridged","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"salt","type":"uint256"},{"internalType":"bytes","name":"creationCode","type":"bytes"},{"internalType":"address","name":"evmRadonRequestFactory","type":"address"},{"internalType":"address","name":"evmAuthority","type":"address"},{"internalType":"string","name":"witCustodianBech32","type":"string"},{"internalType":"string","name":"witUnwrapperBech32","type":"string"}],"name":"deployCanonical","outputs":[{"internalType":"address","name":"_deployed","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"salt","type":"uint256"}],"name":"determineAddr","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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_465":{"entryPoint":null,"id":465,"parameterSlots":1,"returnSlots":0},"@_9251":{"entryPoint":null,"id":9251,"parameterSlots":0,"returnSlots":0},"@_transferOwnership_561":{"entryPoint":91,"id":561,"parameterSlots":1,"returnSlots":0},"@_transferOwnership_623":{"entryPoint":65,"id":623,"parameterSlots":1,"returnSlots":0},"abi_encode_tuple_t_address__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:219:51","nodeType":"YulBlock","src":"0:219:51","statements":[{"nativeSrc":"6:3:51","nodeType":"YulBlock","src":"6:3:51","statements":[]},{"body":{"nativeSrc":"115:102:51","nodeType":"YulBlock","src":"115:102:51","statements":[{"nativeSrc":"125:26:51","nodeType":"YulAssignment","src":"125:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"137:9:51","nodeType":"YulIdentifier","src":"137:9:51"},{"kind":"number","nativeSrc":"148:2:51","nodeType":"YulLiteral","src":"148:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"133:3:51","nodeType":"YulIdentifier","src":"133:3:51"},"nativeSrc":"133:18:51","nodeType":"YulFunctionCall","src":"133:18:51"},"variableNames":[{"name":"tail","nativeSrc":"125:4:51","nodeType":"YulIdentifier","src":"125:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"167:9:51","nodeType":"YulIdentifier","src":"167:9:51"},{"arguments":[{"name":"value0","nativeSrc":"182:6:51","nodeType":"YulIdentifier","src":"182:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"198:3:51","nodeType":"YulLiteral","src":"198:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"203:1:51","nodeType":"YulLiteral","src":"203:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"194:3:51","nodeType":"YulIdentifier","src":"194:3:51"},"nativeSrc":"194:11:51","nodeType":"YulFunctionCall","src":"194:11:51"},{"kind":"number","nativeSrc":"207:1:51","nodeType":"YulLiteral","src":"207:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"190:3:51","nodeType":"YulIdentifier","src":"190:3:51"},"nativeSrc":"190:19:51","nodeType":"YulFunctionCall","src":"190:19:51"}],"functionName":{"name":"and","nativeSrc":"178:3:51","nodeType":"YulIdentifier","src":"178:3:51"},"nativeSrc":"178:32:51","nodeType":"YulFunctionCall","src":"178:32:51"}],"functionName":{"name":"mstore","nativeSrc":"160:6:51","nodeType":"YulIdentifier","src":"160:6:51"},"nativeSrc":"160:51:51","nodeType":"YulFunctionCall","src":"160:51:51"},"nativeSrc":"160:51:51","nodeType":"YulExpressionStatement","src":"160:51:51"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"14:203:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"84:9:51","nodeType":"YulTypedName","src":"84:9:51","type":""},{"name":"value0","nativeSrc":"95:6:51","nodeType":"YulTypedName","src":"95:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"106:4:51","nodeType":"YulTypedName","src":"106:4:51","type":""}],"src":"14:203:51"}]},"contents":"{\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, sub(shl(160, 1), 1)))\n    }\n}","id":51,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"6080604052348015600f57600080fd5b503380603557604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b603c816041565b5060ab565b600180546001600160a01b0319169055605881605b565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a0c806100ba6000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063c7d4684f1161005b578063c7d4684f146100df578063e30c3978146100f2578063f02ef92514610103578063f2fde38b1461011657600080fd5b806358ebadb01461008d578063715018a6146100bc57806379ba5097146100c65780638da5cb5b146100ce575b600080fd5b6100a061009b3660046106dd565b610129565b6040516001600160a01b03909116815260200160405180910390f35b6100c461013a565b005b6100c461014e565b6000546001600160a01b03166100a0565b6100a06100ed36600461073f565b610197565b6001546001600160a01b03166100a0565b6100a061011136600461084c565b6101ec565b6100c4610124366004610912565b610332565b6000610134826103a3565b92915050565b610142610476565b61014c60006104a3565b565b60015433906001600160a01b0316811461018b5760405163118cdaa760e01b81526001600160a01b03821660048201526024015b60405180910390fd5b610194816104a3565b50565b60006101a1610476565b6101e48460001b84848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506104bc92505050565b949350505050565b60006101f6610476565b6102458860001b88888887604051602001610212929190610951565b60408051601f1981840301815290829052610231939291602001610993565b6040516020818303038152906040526104bc565b90506000816001600160a01b03168584604051602401610266929190610951565b60408051601f198184030181529181526020820180516001600160e01b03166379ccf11760e11b1790525161029b91906109ba565b6000604051808303816000865af19150503d80600081146102d8576040519150601f19603f3d011682016040523d82523d6000602084013e6102dd565b606091505b50509050806103265760405162461bcd60e51b81526020600482015260156024820152741a5b9a5d1a585b1a5e985d1a5bdb8819985a5b1959605a1b6044820152606401610182565b50979650505050505050565b61033a610476565b600180546001600160a01b0383166001600160a01b0319909116811790915561036b6000546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b604080518082018252601081526f67363d3d37363d34f03d5260086018f360801b60209182015281516001600160f81b03198183015230606090811b6bffffffffffffffffffffffff19908116602184015260358301959095527f21c35dbe1b344a2488cf3321d6ce542f8e9f305544ff09e4993a62319a497c1f605580840191909152845180840390910181526075830185528051908401206135a560f21b6095840152901b9093166097840152600160f81b60ab8401528151608c81850301815260ac909301909152815191012090565b6000546001600160a01b0316331461014c5760405163118cdaa760e01b8152336004820152602401610182565b600180546001600160a01b0319169055610194816104d1565b60006104ca83836000610521565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061052c846103a3565b90506001600160a01b0381163b156105865760405162461bcd60e51b815260206004820152601e60248201527f437265617465333a2074617267657420616c72656164792065786973747300006044820152606401610182565b6040805180820190915260108082526f67363d3d37363d34f03d5260086018f360801b6020830190815260009291879184f591506001600160a01b0382166106105760405162461bcd60e51b815260206004820152601f60248201527f437265617465333a206572726f72206372656174696e6720666163746f7279006044820152606401610182565b6000826001600160a01b0316858760405161062b91906109ba565b60006040518083038185875af1925050503d8060008114610668576040519150601f19603f3d011682016040523d82523d6000602084013e61066d565b606091505b5050905080801561068757506001600160a01b0384163b15155b6106d35760405162461bcd60e51b815260206004820152601e60248201527f437265617465333a206572726f72206372656174696e672074617267657400006044820152606401610182565b5050509392505050565b6000602082840312156106ef57600080fd5b5035919050565b60008083601f84011261070857600080fd5b50813567ffffffffffffffff81111561072057600080fd5b60208301915083602082850101111561073857600080fd5b9250929050565b60008060006040848603121561075457600080fd5b83359250602084013567ffffffffffffffff81111561077257600080fd5b61077e868287016106f6565b9497909650939450505050565b80356001600160a01b03811681146107a257600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126107ce57600080fd5b813567ffffffffffffffff8111156107e8576107e86107a7565b604051601f8201601f19908116603f0116810167ffffffffffffffff81118282101715610817576108176107a7565b60405281815283820160200185101561082f57600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600080600060c0888a03121561086757600080fd5b87359650602088013567ffffffffffffffff81111561088557600080fd5b6108918a828b016106f6565b90975095506108a490506040890161078b565b93506108b26060890161078b565b9250608088013567ffffffffffffffff8111156108ce57600080fd5b6108da8a828b016107bd565b92505060a088013567ffffffffffffffff8111156108f757600080fd5b6109038a828b016107bd565b91505092959891949750929550565b60006020828403121561092457600080fd5b6104ca8261078b565b60005b83811015610948578181015183820152602001610930565b50506000910152565b60018060a01b0383168152604060208201526000825180604084015261097e81606085016020870161092d565b601f01601f1916919091016060019392505050565b8284823760008382016000815283516109b081836020880161092d565b0195945050505050565b600082516109cc81846020870161092d565b919091019291505056fea26469706673582212208cdbef866d1835963049ee2872c3d1d037dc8b4caf4475a6597e9ec122f6b3dd64736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLER DUP1 PUSH1 0x35 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1E4FBDF7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3C DUP2 PUSH1 0x41 JUMP JUMPDEST POP PUSH1 0xAB JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH1 0x58 DUP2 PUSH1 0x5B JUMP JUMPDEST POP 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 PUSH2 0xA0C DUP1 PUSH2 0xBA 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 0x88 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xC7D4684F GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xC7D4684F EQ PUSH2 0xDF JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0xF2 JUMPI DUP1 PUSH4 0xF02EF925 EQ PUSH2 0x103 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x116 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x58EBADB0 EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xBC JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0xC6 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xCE JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA0 PUSH2 0x9B CALLDATASIZE PUSH1 0x4 PUSH2 0x6DD JUMP JUMPDEST PUSH2 0x129 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC4 PUSH2 0x13A JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC4 PUSH2 0x14E JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xA0 JUMP JUMPDEST PUSH2 0xA0 PUSH2 0xED CALLDATASIZE PUSH1 0x4 PUSH2 0x73F JUMP JUMPDEST PUSH2 0x197 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xA0 JUMP JUMPDEST PUSH2 0xA0 PUSH2 0x111 CALLDATASIZE PUSH1 0x4 PUSH2 0x84C JUMP JUMPDEST PUSH2 0x1EC JUMP JUMPDEST PUSH2 0xC4 PUSH2 0x124 CALLDATASIZE PUSH1 0x4 PUSH2 0x912 JUMP JUMPDEST PUSH2 0x332 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x134 DUP3 PUSH2 0x3A3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x142 PUSH2 0x476 JUMP JUMPDEST PUSH2 0x14C PUSH1 0x0 PUSH2 0x4A3 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x1 SLOAD CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 EQ PUSH2 0x18B JUMPI PUSH1 0x40 MLOAD PUSH4 0x118CDAA7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x194 DUP2 PUSH2 0x4A3 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A1 PUSH2 0x476 JUMP JUMPDEST PUSH2 0x1E4 DUP5 PUSH1 0x0 SHL DUP5 DUP5 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 0x4BC SWAP3 POP POP POP JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F6 PUSH2 0x476 JUMP JUMPDEST PUSH2 0x245 DUP9 PUSH1 0x0 SHL DUP9 DUP9 DUP9 DUP8 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x212 SWAP3 SWAP2 SWAP1 PUSH2 0x951 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP1 DUP3 SWAP1 MSTORE PUSH2 0x231 SWAP4 SWAP3 SWAP2 PUSH1 0x20 ADD PUSH2 0x993 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x4BC JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP5 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x266 SWAP3 SWAP2 SWAP1 PUSH2 0x951 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 DUP2 MSTORE PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x79CCF117 PUSH1 0xE1 SHL OR SWAP1 MSTORE MLOAD PUSH2 0x29B SWAP2 SWAP1 PUSH2 0x9BA JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP7 GAS CALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x2D8 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 0x2DD JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x326 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 PUSH21 0x1A5B9A5D1A585B1A5E985D1A5BDB8819985A5B1959 PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x182 JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x33A PUSH2 0x476 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 OR SWAP1 SWAP2 SSTORE PUSH2 0x36B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH1 0x10 DUP2 MSTORE PUSH16 0x67363D3D37363D34F03D5260086018F3 PUSH1 0x80 SHL PUSH1 0x20 SWAP2 DUP3 ADD MSTORE DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT DUP2 DUP4 ADD MSTORE ADDRESS PUSH1 0x60 SWAP1 DUP2 SHL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 DUP2 AND PUSH1 0x21 DUP5 ADD MSTORE PUSH1 0x35 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH32 0x21C35DBE1B344A2488CF3321D6CE542F8E9F305544FF09E4993A62319A497C1F PUSH1 0x55 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x75 DUP4 ADD DUP6 MSTORE DUP1 MLOAD SWAP1 DUP5 ADD KECCAK256 PUSH2 0x35A5 PUSH1 0xF2 SHL PUSH1 0x95 DUP5 ADD MSTORE SWAP1 SHL SWAP1 SWAP4 AND PUSH1 0x97 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xF8 SHL PUSH1 0xAB DUP5 ADD MSTORE DUP2 MLOAD PUSH1 0x8C DUP2 DUP6 SUB ADD DUP2 MSTORE PUSH1 0xAC SWAP1 SWAP4 ADD SWAP1 SWAP2 MSTORE DUP2 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x14C JUMPI PUSH1 0x40 MLOAD PUSH4 0x118CDAA7 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x182 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH2 0x194 DUP2 PUSH2 0x4D1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4CA DUP4 DUP4 PUSH1 0x0 PUSH2 0x521 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP 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 PUSH2 0x52C DUP5 PUSH2 0x3A3 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE ISZERO PUSH2 0x586 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 0x437265617465333A2074617267657420616C7265616479206578697374730000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x182 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x10 DUP1 DUP3 MSTORE PUSH16 0x67363D3D37363D34F03D5260086018F3 PUSH1 0x80 SHL PUSH1 0x20 DUP4 ADD SWAP1 DUP2 MSTORE PUSH1 0x0 SWAP3 SWAP2 DUP8 SWAP2 DUP5 CREATE2 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x610 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 0x437265617465333A206572726F72206372656174696E6720666163746F727900 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x182 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x62B SWAP2 SWAP1 PUSH2 0x9BA 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 0x668 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 0x66D JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x687 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO ISZERO JUMPDEST PUSH2 0x6D3 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 0x437265617465333A206572726F72206372656174696E67207461726765740000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x182 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6EF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x708 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x720 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x738 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x754 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x772 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x77E DUP7 DUP3 DUP8 ADD PUSH2 0x6F6 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x7A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST 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 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x7CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7E8 JUMPI PUSH2 0x7E8 PUSH2 0x7A7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x817 JUMPI PUSH2 0x817 PUSH2 0x7A7 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP4 DUP3 ADD PUSH1 0x20 ADD DUP6 LT ISZERO PUSH2 0x82F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP6 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 SWAP2 DUP2 ADD PUSH1 0x20 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xC0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x867 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 CALLDATALOAD SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x885 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x891 DUP11 DUP3 DUP12 ADD PUSH2 0x6F6 JUMP JUMPDEST SWAP1 SWAP8 POP SWAP6 POP PUSH2 0x8A4 SWAP1 POP PUSH1 0x40 DUP10 ADD PUSH2 0x78B JUMP JUMPDEST SWAP4 POP PUSH2 0x8B2 PUSH1 0x60 DUP10 ADD PUSH2 0x78B JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x8CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x8DA DUP11 DUP3 DUP12 ADD PUSH2 0x7BD JUMP JUMPDEST SWAP3 POP POP PUSH1 0xA0 DUP9 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x8F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x903 DUP11 DUP3 DUP12 ADD PUSH2 0x7BD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x924 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4CA DUP3 PUSH2 0x78B JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x948 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x930 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x97E DUP2 PUSH1 0x60 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x92D JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x60 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH1 0x0 DUP4 DUP3 ADD PUSH1 0x0 DUP2 MSTORE DUP4 MLOAD PUSH2 0x9B0 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x92D JUMP JUMPDEST ADD SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x9CC DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x92D JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP13 0xDB 0xEF DUP7 PUSH14 0x1835963049EE2872C3D1D037DC8B 0x4C 0xAF PREVRANDAO PUSH22 0xA6597E9EC122F6B3DD64736F6C634300081C00330000 ","sourceMap":"320:2596:29:-:0;;;373:36;;;;;;;;;-1:-1:-1;395:10:29;;1269:95:3;;1322:31;;-1:-1:-1;;;1322:31:3;;1350:1;1322:31;;;160:51:51;133:18;;1322:31:3;;;;;;;1269:95;1373:32;1392:12;1373:18;:32::i;:::-;1225:187;320:2596:29;;2011:153:4;2100:13;2093:20;;-1:-1:-1;;;;;;2093:20:4;;;2123:34;2148:8;2123:24;:34::i;:::-;2011:153;:::o;2912:187:3:-;2985:16;3004:6;;-1:-1:-1;;;;;3020:17:3;;;-1:-1:-1;;;;;;3020:17:3;;;;;;3052:40;;3004:6;;;;;;;3052:40;;2985:16;3052:40;2975:124;2912:187;:::o;14:203:51:-;320:2596:29;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_checkOwner_499":{"entryPoint":1142,"id":499,"parameterSlots":0,"returnSlots":0},"@_msgSender_1631":{"entryPoint":null,"id":1631,"parameterSlots":0,"returnSlots":1},"@_transferOwnership_561":{"entryPoint":1233,"id":561,"parameterSlots":1,"returnSlots":0},"@_transferOwnership_623":{"entryPoint":1187,"id":623,"parameterSlots":1,"returnSlots":0},"@acceptOwnership_647":{"entryPoint":334,"id":647,"parameterSlots":0,"returnSlots":0},"@deployBridged_9330":{"entryPoint":407,"id":9330,"parameterSlots":3,"returnSlots":1},"@deployCanonical_9308":{"entryPoint":492,"id":9308,"parameterSlots":7,"returnSlots":1},"@deploy_7767":{"entryPoint":1212,"id":7767,"parameterSlots":2,"returnSlots":1},"@deploy_7834":{"entryPoint":1313,"id":7834,"parameterSlots":3,"returnSlots":1},"@determineAddr_7885":{"entryPoint":931,"id":7885,"parameterSlots":1,"returnSlots":1},"@determineAddr_9347":{"entryPoint":297,"id":9347,"parameterSlots":1,"returnSlots":1},"@owner_482":{"entryPoint":null,"id":482,"parameterSlots":0,"returnSlots":1},"@pendingOwner_586":{"entryPoint":null,"id":586,"parameterSlots":0,"returnSlots":1},"@renounceOwnership_513":{"entryPoint":314,"id":513,"parameterSlots":0,"returnSlots":0},"@transferOwnership_606":{"entryPoint":818,"id":606,"parameterSlots":1,"returnSlots":0},"abi_decode_address":{"entryPoint":1931,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_bytes_calldata":{"entryPoint":1782,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_string":{"entryPoint":1981,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":2322,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":1757,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_bytes_calldata_ptr":{"entryPoint":1855,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256t_bytes_calldata_ptrt_addresst_addresst_string_memory_ptrt_string_memory_ptr":{"entryPoint":2124,"id":null,"parameterSlots":2,"returnSlots":7},"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":2451,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":2490,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_stringliteral_4fdc04d28c8d22070e5fd0f23f00bae0b21cc4e5091b5fd7a9cad9babd3668cf_t_address_t_stringliteral_5fe7f977e71dba2ea1a68e21057beebb9be2ac30c6410aa38d4f3fbe41dcffd2__to_t_string_memory_ptr_t_address_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_stringliteral_8b1a944cf13a9a1c08facb2c9e98623ef3254d2ddb48113885c3e8e97fec8db9_t_address_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_address_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"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_string_memory_ptr__to_t_address_t_string_memory_ptr__fromStack_reversed":{"entryPoint":2385,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_stringliteral_1398d0fda5c4dd82767513d52fb4e190bf03bb7a57b33af8f2bf0a3f254cffa0__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9c800ce8d486c3397a1a9cc324cfcd264ced53e7b922ccf3390ef85c645102b0__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_d823f41a048e1744d97ebcf74e0bf47336b005695e7c8e7055976ce95317a865__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_eff5890756d2c5621f001169bb16c941329db031eba2edbb4865370c160b3eae__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"copy_memory_to_memory_with_cleanup":{"entryPoint":2349,"id":null,"parameterSlots":3,"returnSlots":0},"panic_error_0x41":{"entryPoint":1959,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:7622:51","nodeType":"YulBlock","src":"0:7622:51","statements":[{"nativeSrc":"6:3:51","nodeType":"YulBlock","src":"6:3:51","statements":[]},{"body":{"nativeSrc":"84:156:51","nodeType":"YulBlock","src":"84:156:51","statements":[{"body":{"nativeSrc":"130:16:51","nodeType":"YulBlock","src":"130:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"139:1:51","nodeType":"YulLiteral","src":"139:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"142:1:51","nodeType":"YulLiteral","src":"142:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"132:6:51","nodeType":"YulIdentifier","src":"132:6:51"},"nativeSrc":"132:12:51","nodeType":"YulFunctionCall","src":"132:12:51"},"nativeSrc":"132:12:51","nodeType":"YulExpressionStatement","src":"132:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"105:7:51","nodeType":"YulIdentifier","src":"105:7:51"},{"name":"headStart","nativeSrc":"114:9:51","nodeType":"YulIdentifier","src":"114:9:51"}],"functionName":{"name":"sub","nativeSrc":"101:3:51","nodeType":"YulIdentifier","src":"101:3:51"},"nativeSrc":"101:23:51","nodeType":"YulFunctionCall","src":"101:23:51"},{"kind":"number","nativeSrc":"126:2:51","nodeType":"YulLiteral","src":"126:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"97:3:51","nodeType":"YulIdentifier","src":"97:3:51"},"nativeSrc":"97:32:51","nodeType":"YulFunctionCall","src":"97:32:51"},"nativeSrc":"94:52:51","nodeType":"YulIf","src":"94:52:51"},{"nativeSrc":"155:14:51","nodeType":"YulVariableDeclaration","src":"155:14:51","value":{"kind":"number","nativeSrc":"168:1:51","nodeType":"YulLiteral","src":"168:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"159:5:51","nodeType":"YulTypedName","src":"159:5:51","type":""}]},{"nativeSrc":"178:32:51","nodeType":"YulAssignment","src":"178:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"200:9:51","nodeType":"YulIdentifier","src":"200:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"187:12:51","nodeType":"YulIdentifier","src":"187:12:51"},"nativeSrc":"187:23:51","nodeType":"YulFunctionCall","src":"187:23:51"},"variableNames":[{"name":"value","nativeSrc":"178:5:51","nodeType":"YulIdentifier","src":"178:5:51"}]},{"nativeSrc":"219:15:51","nodeType":"YulAssignment","src":"219:15:51","value":{"name":"value","nativeSrc":"229:5:51","nodeType":"YulIdentifier","src":"229:5:51"},"variableNames":[{"name":"value0","nativeSrc":"219:6:51","nodeType":"YulIdentifier","src":"219:6:51"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"14:226:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"50:9:51","nodeType":"YulTypedName","src":"50:9:51","type":""},{"name":"dataEnd","nativeSrc":"61:7:51","nodeType":"YulTypedName","src":"61:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"73:6:51","nodeType":"YulTypedName","src":"73:6:51","type":""}],"src":"14:226:51"},{"body":{"nativeSrc":"346:102:51","nodeType":"YulBlock","src":"346:102:51","statements":[{"nativeSrc":"356:26:51","nodeType":"YulAssignment","src":"356:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"368:9:51","nodeType":"YulIdentifier","src":"368:9:51"},{"kind":"number","nativeSrc":"379:2:51","nodeType":"YulLiteral","src":"379:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"364:3:51","nodeType":"YulIdentifier","src":"364:3:51"},"nativeSrc":"364:18:51","nodeType":"YulFunctionCall","src":"364:18:51"},"variableNames":[{"name":"tail","nativeSrc":"356:4:51","nodeType":"YulIdentifier","src":"356:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"398:9:51","nodeType":"YulIdentifier","src":"398:9:51"},{"arguments":[{"name":"value0","nativeSrc":"413:6:51","nodeType":"YulIdentifier","src":"413:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"429:3:51","nodeType":"YulLiteral","src":"429:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"434:1:51","nodeType":"YulLiteral","src":"434:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"425:3:51","nodeType":"YulIdentifier","src":"425:3:51"},"nativeSrc":"425:11:51","nodeType":"YulFunctionCall","src":"425:11:51"},{"kind":"number","nativeSrc":"438:1:51","nodeType":"YulLiteral","src":"438:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"421:3:51","nodeType":"YulIdentifier","src":"421:3:51"},"nativeSrc":"421:19:51","nodeType":"YulFunctionCall","src":"421:19:51"}],"functionName":{"name":"and","nativeSrc":"409:3:51","nodeType":"YulIdentifier","src":"409:3:51"},"nativeSrc":"409:32:51","nodeType":"YulFunctionCall","src":"409:32:51"}],"functionName":{"name":"mstore","nativeSrc":"391:6:51","nodeType":"YulIdentifier","src":"391:6:51"},"nativeSrc":"391:51:51","nodeType":"YulFunctionCall","src":"391:51:51"},"nativeSrc":"391:51:51","nodeType":"YulExpressionStatement","src":"391:51:51"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"245:203:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"315:9:51","nodeType":"YulTypedName","src":"315:9:51","type":""},{"name":"value0","nativeSrc":"326:6:51","nodeType":"YulTypedName","src":"326:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"337:4:51","nodeType":"YulTypedName","src":"337:4:51","type":""}],"src":"245:203:51"},{"body":{"nativeSrc":"525:275:51","nodeType":"YulBlock","src":"525:275:51","statements":[{"body":{"nativeSrc":"574:16:51","nodeType":"YulBlock","src":"574:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"583:1:51","nodeType":"YulLiteral","src":"583:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"586:1:51","nodeType":"YulLiteral","src":"586:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"576:6:51","nodeType":"YulIdentifier","src":"576:6:51"},"nativeSrc":"576:12:51","nodeType":"YulFunctionCall","src":"576:12:51"},"nativeSrc":"576:12:51","nodeType":"YulExpressionStatement","src":"576:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"553:6:51","nodeType":"YulIdentifier","src":"553:6:51"},{"kind":"number","nativeSrc":"561:4:51","nodeType":"YulLiteral","src":"561:4:51","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"549:3:51","nodeType":"YulIdentifier","src":"549:3:51"},"nativeSrc":"549:17:51","nodeType":"YulFunctionCall","src":"549:17:51"},{"name":"end","nativeSrc":"568:3:51","nodeType":"YulIdentifier","src":"568:3:51"}],"functionName":{"name":"slt","nativeSrc":"545:3:51","nodeType":"YulIdentifier","src":"545:3:51"},"nativeSrc":"545:27:51","nodeType":"YulFunctionCall","src":"545:27:51"}],"functionName":{"name":"iszero","nativeSrc":"538:6:51","nodeType":"YulIdentifier","src":"538:6:51"},"nativeSrc":"538:35:51","nodeType":"YulFunctionCall","src":"538:35:51"},"nativeSrc":"535:55:51","nodeType":"YulIf","src":"535:55:51"},{"nativeSrc":"599:30:51","nodeType":"YulAssignment","src":"599:30:51","value":{"arguments":[{"name":"offset","nativeSrc":"622:6:51","nodeType":"YulIdentifier","src":"622:6:51"}],"functionName":{"name":"calldataload","nativeSrc":"609:12:51","nodeType":"YulIdentifier","src":"609:12:51"},"nativeSrc":"609:20:51","nodeType":"YulFunctionCall","src":"609:20:51"},"variableNames":[{"name":"length","nativeSrc":"599:6:51","nodeType":"YulIdentifier","src":"599:6:51"}]},{"body":{"nativeSrc":"672:16:51","nodeType":"YulBlock","src":"672:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"681:1:51","nodeType":"YulLiteral","src":"681:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"684:1:51","nodeType":"YulLiteral","src":"684:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"674:6:51","nodeType":"YulIdentifier","src":"674:6:51"},"nativeSrc":"674:12:51","nodeType":"YulFunctionCall","src":"674:12:51"},"nativeSrc":"674:12:51","nodeType":"YulExpressionStatement","src":"674:12:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"644:6:51","nodeType":"YulIdentifier","src":"644:6:51"},{"kind":"number","nativeSrc":"652:18:51","nodeType":"YulLiteral","src":"652:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"641:2:51","nodeType":"YulIdentifier","src":"641:2:51"},"nativeSrc":"641:30:51","nodeType":"YulFunctionCall","src":"641:30:51"},"nativeSrc":"638:50:51","nodeType":"YulIf","src":"638:50:51"},{"nativeSrc":"697:29:51","nodeType":"YulAssignment","src":"697:29:51","value":{"arguments":[{"name":"offset","nativeSrc":"713:6:51","nodeType":"YulIdentifier","src":"713:6:51"},{"kind":"number","nativeSrc":"721:4:51","nodeType":"YulLiteral","src":"721:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"709:3:51","nodeType":"YulIdentifier","src":"709:3:51"},"nativeSrc":"709:17:51","nodeType":"YulFunctionCall","src":"709:17:51"},"variableNames":[{"name":"arrayPos","nativeSrc":"697:8:51","nodeType":"YulIdentifier","src":"697:8:51"}]},{"body":{"nativeSrc":"778:16:51","nodeType":"YulBlock","src":"778:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"787:1:51","nodeType":"YulLiteral","src":"787:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"790:1:51","nodeType":"YulLiteral","src":"790:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"780:6:51","nodeType":"YulIdentifier","src":"780:6:51"},"nativeSrc":"780:12:51","nodeType":"YulFunctionCall","src":"780:12:51"},"nativeSrc":"780:12:51","nodeType":"YulExpressionStatement","src":"780:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"749:6:51","nodeType":"YulIdentifier","src":"749:6:51"},{"name":"length","nativeSrc":"757:6:51","nodeType":"YulIdentifier","src":"757:6:51"}],"functionName":{"name":"add","nativeSrc":"745:3:51","nodeType":"YulIdentifier","src":"745:3:51"},"nativeSrc":"745:19:51","nodeType":"YulFunctionCall","src":"745:19:51"},{"kind":"number","nativeSrc":"766:4:51","nodeType":"YulLiteral","src":"766:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"741:3:51","nodeType":"YulIdentifier","src":"741:3:51"},"nativeSrc":"741:30:51","nodeType":"YulFunctionCall","src":"741:30:51"},{"name":"end","nativeSrc":"773:3:51","nodeType":"YulIdentifier","src":"773:3:51"}],"functionName":{"name":"gt","nativeSrc":"738:2:51","nodeType":"YulIdentifier","src":"738:2:51"},"nativeSrc":"738:39:51","nodeType":"YulFunctionCall","src":"738:39:51"},"nativeSrc":"735:59:51","nodeType":"YulIf","src":"735:59:51"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"453:347:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"488:6:51","nodeType":"YulTypedName","src":"488:6:51","type":""},{"name":"end","nativeSrc":"496:3:51","nodeType":"YulTypedName","src":"496:3:51","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"504:8:51","nodeType":"YulTypedName","src":"504:8:51","type":""},{"name":"length","nativeSrc":"514:6:51","nodeType":"YulTypedName","src":"514:6:51","type":""}],"src":"453:347:51"},{"body":{"nativeSrc":"911:417:51","nodeType":"YulBlock","src":"911:417:51","statements":[{"body":{"nativeSrc":"957:16:51","nodeType":"YulBlock","src":"957:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"966:1:51","nodeType":"YulLiteral","src":"966:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"969:1:51","nodeType":"YulLiteral","src":"969:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"959:6:51","nodeType":"YulIdentifier","src":"959:6:51"},"nativeSrc":"959:12:51","nodeType":"YulFunctionCall","src":"959:12:51"},"nativeSrc":"959:12:51","nodeType":"YulExpressionStatement","src":"959:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"932:7:51","nodeType":"YulIdentifier","src":"932:7:51"},{"name":"headStart","nativeSrc":"941:9:51","nodeType":"YulIdentifier","src":"941:9:51"}],"functionName":{"name":"sub","nativeSrc":"928:3:51","nodeType":"YulIdentifier","src":"928:3:51"},"nativeSrc":"928:23:51","nodeType":"YulFunctionCall","src":"928:23:51"},{"kind":"number","nativeSrc":"953:2:51","nodeType":"YulLiteral","src":"953:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"924:3:51","nodeType":"YulIdentifier","src":"924:3:51"},"nativeSrc":"924:32:51","nodeType":"YulFunctionCall","src":"924:32:51"},"nativeSrc":"921:52:51","nodeType":"YulIf","src":"921:52:51"},{"nativeSrc":"982:14:51","nodeType":"YulVariableDeclaration","src":"982:14:51","value":{"kind":"number","nativeSrc":"995:1:51","nodeType":"YulLiteral","src":"995:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"986:5:51","nodeType":"YulTypedName","src":"986:5:51","type":""}]},{"nativeSrc":"1005:32:51","nodeType":"YulAssignment","src":"1005:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"1027:9:51","nodeType":"YulIdentifier","src":"1027:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"1014:12:51","nodeType":"YulIdentifier","src":"1014:12:51"},"nativeSrc":"1014:23:51","nodeType":"YulFunctionCall","src":"1014:23:51"},"variableNames":[{"name":"value","nativeSrc":"1005:5:51","nodeType":"YulIdentifier","src":"1005:5:51"}]},{"nativeSrc":"1046:15:51","nodeType":"YulAssignment","src":"1046:15:51","value":{"name":"value","nativeSrc":"1056:5:51","nodeType":"YulIdentifier","src":"1056:5:51"},"variableNames":[{"name":"value0","nativeSrc":"1046:6:51","nodeType":"YulIdentifier","src":"1046:6:51"}]},{"nativeSrc":"1070:46:51","nodeType":"YulVariableDeclaration","src":"1070:46:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1101:9:51","nodeType":"YulIdentifier","src":"1101:9:51"},{"kind":"number","nativeSrc":"1112:2:51","nodeType":"YulLiteral","src":"1112:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1097:3:51","nodeType":"YulIdentifier","src":"1097:3:51"},"nativeSrc":"1097:18:51","nodeType":"YulFunctionCall","src":"1097:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"1084:12:51","nodeType":"YulIdentifier","src":"1084:12:51"},"nativeSrc":"1084:32:51","nodeType":"YulFunctionCall","src":"1084:32:51"},"variables":[{"name":"offset","nativeSrc":"1074:6:51","nodeType":"YulTypedName","src":"1074:6:51","type":""}]},{"body":{"nativeSrc":"1159:16:51","nodeType":"YulBlock","src":"1159:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1168:1:51","nodeType":"YulLiteral","src":"1168:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1171:1:51","nodeType":"YulLiteral","src":"1171:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1161:6:51","nodeType":"YulIdentifier","src":"1161:6:51"},"nativeSrc":"1161:12:51","nodeType":"YulFunctionCall","src":"1161:12:51"},"nativeSrc":"1161:12:51","nodeType":"YulExpressionStatement","src":"1161:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1131:6:51","nodeType":"YulIdentifier","src":"1131:6:51"},{"kind":"number","nativeSrc":"1139:18:51","nodeType":"YulLiteral","src":"1139:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1128:2:51","nodeType":"YulIdentifier","src":"1128:2:51"},"nativeSrc":"1128:30:51","nodeType":"YulFunctionCall","src":"1128:30:51"},"nativeSrc":"1125:50:51","nodeType":"YulIf","src":"1125:50:51"},{"nativeSrc":"1184:84:51","nodeType":"YulVariableDeclaration","src":"1184:84:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1240:9:51","nodeType":"YulIdentifier","src":"1240:9:51"},{"name":"offset","nativeSrc":"1251:6:51","nodeType":"YulIdentifier","src":"1251:6:51"}],"functionName":{"name":"add","nativeSrc":"1236:3:51","nodeType":"YulIdentifier","src":"1236:3:51"},"nativeSrc":"1236:22:51","nodeType":"YulFunctionCall","src":"1236:22:51"},{"name":"dataEnd","nativeSrc":"1260:7:51","nodeType":"YulIdentifier","src":"1260:7:51"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"1210:25:51","nodeType":"YulIdentifier","src":"1210:25:51"},"nativeSrc":"1210:58:51","nodeType":"YulFunctionCall","src":"1210:58:51"},"variables":[{"name":"value1_1","nativeSrc":"1188:8:51","nodeType":"YulTypedName","src":"1188:8:51","type":""},{"name":"value2_1","nativeSrc":"1198:8:51","nodeType":"YulTypedName","src":"1198:8:51","type":""}]},{"nativeSrc":"1277:18:51","nodeType":"YulAssignment","src":"1277:18:51","value":{"name":"value1_1","nativeSrc":"1287:8:51","nodeType":"YulIdentifier","src":"1287:8:51"},"variableNames":[{"name":"value1","nativeSrc":"1277:6:51","nodeType":"YulIdentifier","src":"1277:6:51"}]},{"nativeSrc":"1304:18:51","nodeType":"YulAssignment","src":"1304:18:51","value":{"name":"value2_1","nativeSrc":"1314:8:51","nodeType":"YulIdentifier","src":"1314:8:51"},"variableNames":[{"name":"value2","nativeSrc":"1304:6:51","nodeType":"YulIdentifier","src":"1304:6:51"}]}]},"name":"abi_decode_tuple_t_uint256t_bytes_calldata_ptr","nativeSrc":"805:523:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"861:9:51","nodeType":"YulTypedName","src":"861:9:51","type":""},{"name":"dataEnd","nativeSrc":"872:7:51","nodeType":"YulTypedName","src":"872:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"884:6:51","nodeType":"YulTypedName","src":"884:6:51","type":""},{"name":"value1","nativeSrc":"892:6:51","nodeType":"YulTypedName","src":"892:6:51","type":""},{"name":"value2","nativeSrc":"900:6:51","nodeType":"YulTypedName","src":"900:6:51","type":""}],"src":"805:523:51"},{"body":{"nativeSrc":"1382:124:51","nodeType":"YulBlock","src":"1382:124:51","statements":[{"nativeSrc":"1392:29:51","nodeType":"YulAssignment","src":"1392:29:51","value":{"arguments":[{"name":"offset","nativeSrc":"1414:6:51","nodeType":"YulIdentifier","src":"1414:6:51"}],"functionName":{"name":"calldataload","nativeSrc":"1401:12:51","nodeType":"YulIdentifier","src":"1401:12:51"},"nativeSrc":"1401:20:51","nodeType":"YulFunctionCall","src":"1401:20:51"},"variableNames":[{"name":"value","nativeSrc":"1392:5:51","nodeType":"YulIdentifier","src":"1392:5:51"}]},{"body":{"nativeSrc":"1484:16:51","nodeType":"YulBlock","src":"1484:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1493:1:51","nodeType":"YulLiteral","src":"1493:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1496:1:51","nodeType":"YulLiteral","src":"1496:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1486:6:51","nodeType":"YulIdentifier","src":"1486:6:51"},"nativeSrc":"1486:12:51","nodeType":"YulFunctionCall","src":"1486:12:51"},"nativeSrc":"1486:12:51","nodeType":"YulExpressionStatement","src":"1486:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1443:5:51","nodeType":"YulIdentifier","src":"1443:5:51"},{"arguments":[{"name":"value","nativeSrc":"1454:5:51","nodeType":"YulIdentifier","src":"1454:5:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1469:3:51","nodeType":"YulLiteral","src":"1469:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"1474:1:51","nodeType":"YulLiteral","src":"1474:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1465:3:51","nodeType":"YulIdentifier","src":"1465:3:51"},"nativeSrc":"1465:11:51","nodeType":"YulFunctionCall","src":"1465:11:51"},{"kind":"number","nativeSrc":"1478:1:51","nodeType":"YulLiteral","src":"1478:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1461:3:51","nodeType":"YulIdentifier","src":"1461:3:51"},"nativeSrc":"1461:19:51","nodeType":"YulFunctionCall","src":"1461:19:51"}],"functionName":{"name":"and","nativeSrc":"1450:3:51","nodeType":"YulIdentifier","src":"1450:3:51"},"nativeSrc":"1450:31:51","nodeType":"YulFunctionCall","src":"1450:31:51"}],"functionName":{"name":"eq","nativeSrc":"1440:2:51","nodeType":"YulIdentifier","src":"1440:2:51"},"nativeSrc":"1440:42:51","nodeType":"YulFunctionCall","src":"1440:42:51"}],"functionName":{"name":"iszero","nativeSrc":"1433:6:51","nodeType":"YulIdentifier","src":"1433:6:51"},"nativeSrc":"1433:50:51","nodeType":"YulFunctionCall","src":"1433:50:51"},"nativeSrc":"1430:70:51","nodeType":"YulIf","src":"1430:70:51"}]},"name":"abi_decode_address","nativeSrc":"1333:173:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"1361:6:51","nodeType":"YulTypedName","src":"1361:6:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"1372:5:51","nodeType":"YulTypedName","src":"1372:5:51","type":""}],"src":"1333:173:51"},{"body":{"nativeSrc":"1543:95:51","nodeType":"YulBlock","src":"1543:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1560:1:51","nodeType":"YulLiteral","src":"1560:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1567:3:51","nodeType":"YulLiteral","src":"1567:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"1572:10:51","nodeType":"YulLiteral","src":"1572:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1563:3:51","nodeType":"YulIdentifier","src":"1563:3:51"},"nativeSrc":"1563:20:51","nodeType":"YulFunctionCall","src":"1563:20:51"}],"functionName":{"name":"mstore","nativeSrc":"1553:6:51","nodeType":"YulIdentifier","src":"1553:6:51"},"nativeSrc":"1553:31:51","nodeType":"YulFunctionCall","src":"1553:31:51"},"nativeSrc":"1553:31:51","nodeType":"YulExpressionStatement","src":"1553:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1600:1:51","nodeType":"YulLiteral","src":"1600:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"1603:4:51","nodeType":"YulLiteral","src":"1603:4:51","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"1593:6:51","nodeType":"YulIdentifier","src":"1593:6:51"},"nativeSrc":"1593:15:51","nodeType":"YulFunctionCall","src":"1593:15:51"},"nativeSrc":"1593:15:51","nodeType":"YulExpressionStatement","src":"1593:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1624:1:51","nodeType":"YulLiteral","src":"1624:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1627:4:51","nodeType":"YulLiteral","src":"1627:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1617:6:51","nodeType":"YulIdentifier","src":"1617:6:51"},"nativeSrc":"1617:15:51","nodeType":"YulFunctionCall","src":"1617:15:51"},"nativeSrc":"1617:15:51","nodeType":"YulExpressionStatement","src":"1617:15:51"}]},"name":"panic_error_0x41","nativeSrc":"1511:127:51","nodeType":"YulFunctionDefinition","src":"1511:127:51"},{"body":{"nativeSrc":"1696:673:51","nodeType":"YulBlock","src":"1696:673:51","statements":[{"body":{"nativeSrc":"1745:16:51","nodeType":"YulBlock","src":"1745:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1754:1:51","nodeType":"YulLiteral","src":"1754:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1757:1:51","nodeType":"YulLiteral","src":"1757:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1747:6:51","nodeType":"YulIdentifier","src":"1747:6:51"},"nativeSrc":"1747:12:51","nodeType":"YulFunctionCall","src":"1747:12:51"},"nativeSrc":"1747:12:51","nodeType":"YulExpressionStatement","src":"1747:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"1724:6:51","nodeType":"YulIdentifier","src":"1724:6:51"},{"kind":"number","nativeSrc":"1732:4:51","nodeType":"YulLiteral","src":"1732:4:51","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1720:3:51","nodeType":"YulIdentifier","src":"1720:3:51"},"nativeSrc":"1720:17:51","nodeType":"YulFunctionCall","src":"1720:17:51"},{"name":"end","nativeSrc":"1739:3:51","nodeType":"YulIdentifier","src":"1739:3:51"}],"functionName":{"name":"slt","nativeSrc":"1716:3:51","nodeType":"YulIdentifier","src":"1716:3:51"},"nativeSrc":"1716:27:51","nodeType":"YulFunctionCall","src":"1716:27:51"}],"functionName":{"name":"iszero","nativeSrc":"1709:6:51","nodeType":"YulIdentifier","src":"1709:6:51"},"nativeSrc":"1709:35:51","nodeType":"YulFunctionCall","src":"1709:35:51"},"nativeSrc":"1706:55:51","nodeType":"YulIf","src":"1706:55:51"},{"nativeSrc":"1770:34:51","nodeType":"YulVariableDeclaration","src":"1770:34:51","value":{"arguments":[{"name":"offset","nativeSrc":"1797:6:51","nodeType":"YulIdentifier","src":"1797:6:51"}],"functionName":{"name":"calldataload","nativeSrc":"1784:12:51","nodeType":"YulIdentifier","src":"1784:12:51"},"nativeSrc":"1784:20:51","nodeType":"YulFunctionCall","src":"1784:20:51"},"variables":[{"name":"length","nativeSrc":"1774:6:51","nodeType":"YulTypedName","src":"1774:6:51","type":""}]},{"body":{"nativeSrc":"1847:22:51","nodeType":"YulBlock","src":"1847:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1849:16:51","nodeType":"YulIdentifier","src":"1849:16:51"},"nativeSrc":"1849:18:51","nodeType":"YulFunctionCall","src":"1849:18:51"},"nativeSrc":"1849:18:51","nodeType":"YulExpressionStatement","src":"1849:18:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1819:6:51","nodeType":"YulIdentifier","src":"1819:6:51"},{"kind":"number","nativeSrc":"1827:18:51","nodeType":"YulLiteral","src":"1827:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1816:2:51","nodeType":"YulIdentifier","src":"1816:2:51"},"nativeSrc":"1816:30:51","nodeType":"YulFunctionCall","src":"1816:30:51"},"nativeSrc":"1813:56:51","nodeType":"YulIf","src":"1813:56:51"},{"nativeSrc":"1878:23:51","nodeType":"YulVariableDeclaration","src":"1878:23:51","value":{"arguments":[{"kind":"number","nativeSrc":"1898:2:51","nodeType":"YulLiteral","src":"1898:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"1892:5:51","nodeType":"YulIdentifier","src":"1892:5:51"},"nativeSrc":"1892:9:51","nodeType":"YulFunctionCall","src":"1892:9:51"},"variables":[{"name":"memPtr","nativeSrc":"1882:6:51","nodeType":"YulTypedName","src":"1882:6:51","type":""}]},{"nativeSrc":"1910:85:51","nodeType":"YulVariableDeclaration","src":"1910:85:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"1932:6:51","nodeType":"YulIdentifier","src":"1932:6:51"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1956:6:51","nodeType":"YulIdentifier","src":"1956:6:51"},{"kind":"number","nativeSrc":"1964:4:51","nodeType":"YulLiteral","src":"1964:4:51","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1952:3:51","nodeType":"YulIdentifier","src":"1952:3:51"},"nativeSrc":"1952:17:51","nodeType":"YulFunctionCall","src":"1952:17:51"},{"arguments":[{"kind":"number","nativeSrc":"1975:2:51","nodeType":"YulLiteral","src":"1975:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1971:3:51","nodeType":"YulIdentifier","src":"1971:3:51"},"nativeSrc":"1971:7:51","nodeType":"YulFunctionCall","src":"1971:7:51"}],"functionName":{"name":"and","nativeSrc":"1948:3:51","nodeType":"YulIdentifier","src":"1948:3:51"},"nativeSrc":"1948:31:51","nodeType":"YulFunctionCall","src":"1948:31:51"},{"kind":"number","nativeSrc":"1981:2:51","nodeType":"YulLiteral","src":"1981:2:51","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"1944:3:51","nodeType":"YulIdentifier","src":"1944:3:51"},"nativeSrc":"1944:40:51","nodeType":"YulFunctionCall","src":"1944:40:51"},{"arguments":[{"kind":"number","nativeSrc":"1990:2:51","nodeType":"YulLiteral","src":"1990:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1986:3:51","nodeType":"YulIdentifier","src":"1986:3:51"},"nativeSrc":"1986:7:51","nodeType":"YulFunctionCall","src":"1986:7:51"}],"functionName":{"name":"and","nativeSrc":"1940:3:51","nodeType":"YulIdentifier","src":"1940:3:51"},"nativeSrc":"1940:54:51","nodeType":"YulFunctionCall","src":"1940:54:51"}],"functionName":{"name":"add","nativeSrc":"1928:3:51","nodeType":"YulIdentifier","src":"1928:3:51"},"nativeSrc":"1928:67:51","nodeType":"YulFunctionCall","src":"1928:67:51"},"variables":[{"name":"newFreePtr","nativeSrc":"1914:10:51","nodeType":"YulTypedName","src":"1914:10:51","type":""}]},{"body":{"nativeSrc":"2070:22:51","nodeType":"YulBlock","src":"2070:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"2072:16:51","nodeType":"YulIdentifier","src":"2072:16:51"},"nativeSrc":"2072:18:51","nodeType":"YulFunctionCall","src":"2072:18:51"},"nativeSrc":"2072:18:51","nodeType":"YulExpressionStatement","src":"2072:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"2013:10:51","nodeType":"YulIdentifier","src":"2013:10:51"},{"kind":"number","nativeSrc":"2025:18:51","nodeType":"YulLiteral","src":"2025:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2010:2:51","nodeType":"YulIdentifier","src":"2010:2:51"},"nativeSrc":"2010:34:51","nodeType":"YulFunctionCall","src":"2010:34:51"},{"arguments":[{"name":"newFreePtr","nativeSrc":"2049:10:51","nodeType":"YulIdentifier","src":"2049:10:51"},{"name":"memPtr","nativeSrc":"2061:6:51","nodeType":"YulIdentifier","src":"2061:6:51"}],"functionName":{"name":"lt","nativeSrc":"2046:2:51","nodeType":"YulIdentifier","src":"2046:2:51"},"nativeSrc":"2046:22:51","nodeType":"YulFunctionCall","src":"2046:22:51"}],"functionName":{"name":"or","nativeSrc":"2007:2:51","nodeType":"YulIdentifier","src":"2007:2:51"},"nativeSrc":"2007:62:51","nodeType":"YulFunctionCall","src":"2007:62:51"},"nativeSrc":"2004:88:51","nodeType":"YulIf","src":"2004:88:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2108:2:51","nodeType":"YulLiteral","src":"2108:2:51","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"2112:10:51","nodeType":"YulIdentifier","src":"2112:10:51"}],"functionName":{"name":"mstore","nativeSrc":"2101:6:51","nodeType":"YulIdentifier","src":"2101:6:51"},"nativeSrc":"2101:22:51","nodeType":"YulFunctionCall","src":"2101:22:51"},"nativeSrc":"2101:22:51","nodeType":"YulExpressionStatement","src":"2101:22:51"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"2139:6:51","nodeType":"YulIdentifier","src":"2139:6:51"},{"name":"length","nativeSrc":"2147:6:51","nodeType":"YulIdentifier","src":"2147:6:51"}],"functionName":{"name":"mstore","nativeSrc":"2132:6:51","nodeType":"YulIdentifier","src":"2132:6:51"},"nativeSrc":"2132:22:51","nodeType":"YulFunctionCall","src":"2132:22:51"},"nativeSrc":"2132:22:51","nodeType":"YulExpressionStatement","src":"2132:22:51"},{"body":{"nativeSrc":"2206:16:51","nodeType":"YulBlock","src":"2206:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2215:1:51","nodeType":"YulLiteral","src":"2215:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"2218:1:51","nodeType":"YulLiteral","src":"2218:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2208:6:51","nodeType":"YulIdentifier","src":"2208:6:51"},"nativeSrc":"2208:12:51","nodeType":"YulFunctionCall","src":"2208:12:51"},"nativeSrc":"2208:12:51","nodeType":"YulExpressionStatement","src":"2208:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"2177:6:51","nodeType":"YulIdentifier","src":"2177:6:51"},{"name":"length","nativeSrc":"2185:6:51","nodeType":"YulIdentifier","src":"2185:6:51"}],"functionName":{"name":"add","nativeSrc":"2173:3:51","nodeType":"YulIdentifier","src":"2173:3:51"},"nativeSrc":"2173:19:51","nodeType":"YulFunctionCall","src":"2173:19:51"},{"kind":"number","nativeSrc":"2194:4:51","nodeType":"YulLiteral","src":"2194:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2169:3:51","nodeType":"YulIdentifier","src":"2169:3:51"},"nativeSrc":"2169:30:51","nodeType":"YulFunctionCall","src":"2169:30:51"},{"name":"end","nativeSrc":"2201:3:51","nodeType":"YulIdentifier","src":"2201:3:51"}],"functionName":{"name":"gt","nativeSrc":"2166:2:51","nodeType":"YulIdentifier","src":"2166:2:51"},"nativeSrc":"2166:39:51","nodeType":"YulFunctionCall","src":"2166:39:51"},"nativeSrc":"2163:59:51","nodeType":"YulIf","src":"2163:59:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2248:6:51","nodeType":"YulIdentifier","src":"2248:6:51"},{"kind":"number","nativeSrc":"2256:4:51","nodeType":"YulLiteral","src":"2256:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2244:3:51","nodeType":"YulIdentifier","src":"2244:3:51"},"nativeSrc":"2244:17:51","nodeType":"YulFunctionCall","src":"2244:17:51"},{"arguments":[{"name":"offset","nativeSrc":"2267:6:51","nodeType":"YulIdentifier","src":"2267:6:51"},{"kind":"number","nativeSrc":"2275:4:51","nodeType":"YulLiteral","src":"2275:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2263:3:51","nodeType":"YulIdentifier","src":"2263:3:51"},"nativeSrc":"2263:17:51","nodeType":"YulFunctionCall","src":"2263:17:51"},{"name":"length","nativeSrc":"2282:6:51","nodeType":"YulIdentifier","src":"2282:6:51"}],"functionName":{"name":"calldatacopy","nativeSrc":"2231:12:51","nodeType":"YulIdentifier","src":"2231:12:51"},"nativeSrc":"2231:58:51","nodeType":"YulFunctionCall","src":"2231:58:51"},"nativeSrc":"2231:58:51","nodeType":"YulExpressionStatement","src":"2231:58:51"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"2313:6:51","nodeType":"YulIdentifier","src":"2313:6:51"},{"name":"length","nativeSrc":"2321:6:51","nodeType":"YulIdentifier","src":"2321:6:51"}],"functionName":{"name":"add","nativeSrc":"2309:3:51","nodeType":"YulIdentifier","src":"2309:3:51"},"nativeSrc":"2309:19:51","nodeType":"YulFunctionCall","src":"2309:19:51"},{"kind":"number","nativeSrc":"2330:4:51","nodeType":"YulLiteral","src":"2330:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2305:3:51","nodeType":"YulIdentifier","src":"2305:3:51"},"nativeSrc":"2305:30:51","nodeType":"YulFunctionCall","src":"2305:30:51"},{"kind":"number","nativeSrc":"2337:1:51","nodeType":"YulLiteral","src":"2337:1:51","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"2298:6:51","nodeType":"YulIdentifier","src":"2298:6:51"},"nativeSrc":"2298:41:51","nodeType":"YulFunctionCall","src":"2298:41:51"},"nativeSrc":"2298:41:51","nodeType":"YulExpressionStatement","src":"2298:41:51"},{"nativeSrc":"2348:15:51","nodeType":"YulAssignment","src":"2348:15:51","value":{"name":"memPtr","nativeSrc":"2357:6:51","nodeType":"YulIdentifier","src":"2357:6:51"},"variableNames":[{"name":"array","nativeSrc":"2348:5:51","nodeType":"YulIdentifier","src":"2348:5:51"}]}]},"name":"abi_decode_string","nativeSrc":"1643:726:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"1670:6:51","nodeType":"YulTypedName","src":"1670:6:51","type":""},{"name":"end","nativeSrc":"1678:3:51","nodeType":"YulTypedName","src":"1678:3:51","type":""}],"returnVariables":[{"name":"array","nativeSrc":"1686:5:51","nodeType":"YulTypedName","src":"1686:5:51","type":""}],"src":"1643:726:51"},{"body":{"nativeSrc":"2568:912:51","nodeType":"YulBlock","src":"2568:912:51","statements":[{"body":{"nativeSrc":"2615:16:51","nodeType":"YulBlock","src":"2615:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2624:1:51","nodeType":"YulLiteral","src":"2624:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"2627:1:51","nodeType":"YulLiteral","src":"2627:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2617:6:51","nodeType":"YulIdentifier","src":"2617:6:51"},"nativeSrc":"2617:12:51","nodeType":"YulFunctionCall","src":"2617:12:51"},"nativeSrc":"2617:12:51","nodeType":"YulExpressionStatement","src":"2617:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2589:7:51","nodeType":"YulIdentifier","src":"2589:7:51"},{"name":"headStart","nativeSrc":"2598:9:51","nodeType":"YulIdentifier","src":"2598:9:51"}],"functionName":{"name":"sub","nativeSrc":"2585:3:51","nodeType":"YulIdentifier","src":"2585:3:51"},"nativeSrc":"2585:23:51","nodeType":"YulFunctionCall","src":"2585:23:51"},{"kind":"number","nativeSrc":"2610:3:51","nodeType":"YulLiteral","src":"2610:3:51","type":"","value":"192"}],"functionName":{"name":"slt","nativeSrc":"2581:3:51","nodeType":"YulIdentifier","src":"2581:3:51"},"nativeSrc":"2581:33:51","nodeType":"YulFunctionCall","src":"2581:33:51"},"nativeSrc":"2578:53:51","nodeType":"YulIf","src":"2578:53:51"},{"nativeSrc":"2640:14:51","nodeType":"YulVariableDeclaration","src":"2640:14:51","value":{"kind":"number","nativeSrc":"2653:1:51","nodeType":"YulLiteral","src":"2653:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2644:5:51","nodeType":"YulTypedName","src":"2644:5:51","type":""}]},{"nativeSrc":"2663:32:51","nodeType":"YulAssignment","src":"2663:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"2685:9:51","nodeType":"YulIdentifier","src":"2685:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"2672:12:51","nodeType":"YulIdentifier","src":"2672:12:51"},"nativeSrc":"2672:23:51","nodeType":"YulFunctionCall","src":"2672:23:51"},"variableNames":[{"name":"value","nativeSrc":"2663:5:51","nodeType":"YulIdentifier","src":"2663:5:51"}]},{"nativeSrc":"2704:15:51","nodeType":"YulAssignment","src":"2704:15:51","value":{"name":"value","nativeSrc":"2714:5:51","nodeType":"YulIdentifier","src":"2714:5:51"},"variableNames":[{"name":"value0","nativeSrc":"2704:6:51","nodeType":"YulIdentifier","src":"2704:6:51"}]},{"nativeSrc":"2728:46:51","nodeType":"YulVariableDeclaration","src":"2728:46:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2759:9:51","nodeType":"YulIdentifier","src":"2759:9:51"},{"kind":"number","nativeSrc":"2770:2:51","nodeType":"YulLiteral","src":"2770:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2755:3:51","nodeType":"YulIdentifier","src":"2755:3:51"},"nativeSrc":"2755:18:51","nodeType":"YulFunctionCall","src":"2755:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"2742:12:51","nodeType":"YulIdentifier","src":"2742:12:51"},"nativeSrc":"2742:32:51","nodeType":"YulFunctionCall","src":"2742:32:51"},"variables":[{"name":"offset","nativeSrc":"2732:6:51","nodeType":"YulTypedName","src":"2732:6:51","type":""}]},{"body":{"nativeSrc":"2817:16:51","nodeType":"YulBlock","src":"2817:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2826:1:51","nodeType":"YulLiteral","src":"2826:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"2829:1:51","nodeType":"YulLiteral","src":"2829:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2819:6:51","nodeType":"YulIdentifier","src":"2819:6:51"},"nativeSrc":"2819:12:51","nodeType":"YulFunctionCall","src":"2819:12:51"},"nativeSrc":"2819:12:51","nodeType":"YulExpressionStatement","src":"2819:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"2789:6:51","nodeType":"YulIdentifier","src":"2789:6:51"},{"kind":"number","nativeSrc":"2797:18:51","nodeType":"YulLiteral","src":"2797:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"2786:2:51","nodeType":"YulIdentifier","src":"2786:2:51"},"nativeSrc":"2786:30:51","nodeType":"YulFunctionCall","src":"2786:30:51"},"nativeSrc":"2783:50:51","nodeType":"YulIf","src":"2783:50:51"},{"nativeSrc":"2842:84:51","nodeType":"YulVariableDeclaration","src":"2842:84:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2898:9:51","nodeType":"YulIdentifier","src":"2898:9:51"},{"name":"offset","nativeSrc":"2909:6:51","nodeType":"YulIdentifier","src":"2909:6:51"}],"functionName":{"name":"add","nativeSrc":"2894:3:51","nodeType":"YulIdentifier","src":"2894:3:51"},"nativeSrc":"2894:22:51","nodeType":"YulFunctionCall","src":"2894:22:51"},{"name":"dataEnd","nativeSrc":"2918:7:51","nodeType":"YulIdentifier","src":"2918:7:51"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"2868:25:51","nodeType":"YulIdentifier","src":"2868:25:51"},"nativeSrc":"2868:58:51","nodeType":"YulFunctionCall","src":"2868:58:51"},"variables":[{"name":"value1_1","nativeSrc":"2846:8:51","nodeType":"YulTypedName","src":"2846:8:51","type":""},{"name":"value2_1","nativeSrc":"2856:8:51","nodeType":"YulTypedName","src":"2856:8:51","type":""}]},{"nativeSrc":"2935:18:51","nodeType":"YulAssignment","src":"2935:18:51","value":{"name":"value1_1","nativeSrc":"2945:8:51","nodeType":"YulIdentifier","src":"2945:8:51"},"variableNames":[{"name":"value1","nativeSrc":"2935:6:51","nodeType":"YulIdentifier","src":"2935:6:51"}]},{"nativeSrc":"2962:18:51","nodeType":"YulAssignment","src":"2962:18:51","value":{"name":"value2_1","nativeSrc":"2972:8:51","nodeType":"YulIdentifier","src":"2972:8:51"},"variableNames":[{"name":"value2","nativeSrc":"2962:6:51","nodeType":"YulIdentifier","src":"2962:6:51"}]},{"nativeSrc":"2989:48:51","nodeType":"YulAssignment","src":"2989:48:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3022:9:51","nodeType":"YulIdentifier","src":"3022:9:51"},{"kind":"number","nativeSrc":"3033:2:51","nodeType":"YulLiteral","src":"3033:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3018:3:51","nodeType":"YulIdentifier","src":"3018:3:51"},"nativeSrc":"3018:18:51","nodeType":"YulFunctionCall","src":"3018:18:51"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2999:18:51","nodeType":"YulIdentifier","src":"2999:18:51"},"nativeSrc":"2999:38:51","nodeType":"YulFunctionCall","src":"2999:38:51"},"variableNames":[{"name":"value3","nativeSrc":"2989:6:51","nodeType":"YulIdentifier","src":"2989:6:51"}]},{"nativeSrc":"3046:48:51","nodeType":"YulAssignment","src":"3046:48:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3079:9:51","nodeType":"YulIdentifier","src":"3079:9:51"},{"kind":"number","nativeSrc":"3090:2:51","nodeType":"YulLiteral","src":"3090:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3075:3:51","nodeType":"YulIdentifier","src":"3075:3:51"},"nativeSrc":"3075:18:51","nodeType":"YulFunctionCall","src":"3075:18:51"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3056:18:51","nodeType":"YulIdentifier","src":"3056:18:51"},"nativeSrc":"3056:38:51","nodeType":"YulFunctionCall","src":"3056:38:51"},"variableNames":[{"name":"value4","nativeSrc":"3046:6:51","nodeType":"YulIdentifier","src":"3046:6:51"}]},{"nativeSrc":"3103:49:51","nodeType":"YulVariableDeclaration","src":"3103:49:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3136:9:51","nodeType":"YulIdentifier","src":"3136:9:51"},{"kind":"number","nativeSrc":"3147:3:51","nodeType":"YulLiteral","src":"3147:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3132:3:51","nodeType":"YulIdentifier","src":"3132:3:51"},"nativeSrc":"3132:19:51","nodeType":"YulFunctionCall","src":"3132:19:51"}],"functionName":{"name":"calldataload","nativeSrc":"3119:12:51","nodeType":"YulIdentifier","src":"3119:12:51"},"nativeSrc":"3119:33:51","nodeType":"YulFunctionCall","src":"3119:33:51"},"variables":[{"name":"offset_1","nativeSrc":"3107:8:51","nodeType":"YulTypedName","src":"3107:8:51","type":""}]},{"body":{"nativeSrc":"3197:16:51","nodeType":"YulBlock","src":"3197:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3206:1:51","nodeType":"YulLiteral","src":"3206:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"3209:1:51","nodeType":"YulLiteral","src":"3209:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3199:6:51","nodeType":"YulIdentifier","src":"3199:6:51"},"nativeSrc":"3199:12:51","nodeType":"YulFunctionCall","src":"3199:12:51"},"nativeSrc":"3199:12:51","nodeType":"YulExpressionStatement","src":"3199:12:51"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"3167:8:51","nodeType":"YulIdentifier","src":"3167:8:51"},{"kind":"number","nativeSrc":"3177:18:51","nodeType":"YulLiteral","src":"3177:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3164:2:51","nodeType":"YulIdentifier","src":"3164:2:51"},"nativeSrc":"3164:32:51","nodeType":"YulFunctionCall","src":"3164:32:51"},"nativeSrc":"3161:52:51","nodeType":"YulIf","src":"3161:52:51"},{"nativeSrc":"3222:62:51","nodeType":"YulAssignment","src":"3222:62:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3254:9:51","nodeType":"YulIdentifier","src":"3254:9:51"},{"name":"offset_1","nativeSrc":"3265:8:51","nodeType":"YulIdentifier","src":"3265:8:51"}],"functionName":{"name":"add","nativeSrc":"3250:3:51","nodeType":"YulIdentifier","src":"3250:3:51"},"nativeSrc":"3250:24:51","nodeType":"YulFunctionCall","src":"3250:24:51"},{"name":"dataEnd","nativeSrc":"3276:7:51","nodeType":"YulIdentifier","src":"3276:7:51"}],"functionName":{"name":"abi_decode_string","nativeSrc":"3232:17:51","nodeType":"YulIdentifier","src":"3232:17:51"},"nativeSrc":"3232:52:51","nodeType":"YulFunctionCall","src":"3232:52:51"},"variableNames":[{"name":"value5","nativeSrc":"3222:6:51","nodeType":"YulIdentifier","src":"3222:6:51"}]},{"nativeSrc":"3293:49:51","nodeType":"YulVariableDeclaration","src":"3293:49:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3326:9:51","nodeType":"YulIdentifier","src":"3326:9:51"},{"kind":"number","nativeSrc":"3337:3:51","nodeType":"YulLiteral","src":"3337:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"3322:3:51","nodeType":"YulIdentifier","src":"3322:3:51"},"nativeSrc":"3322:19:51","nodeType":"YulFunctionCall","src":"3322:19:51"}],"functionName":{"name":"calldataload","nativeSrc":"3309:12:51","nodeType":"YulIdentifier","src":"3309:12:51"},"nativeSrc":"3309:33:51","nodeType":"YulFunctionCall","src":"3309:33:51"},"variables":[{"name":"offset_2","nativeSrc":"3297:8:51","nodeType":"YulTypedName","src":"3297:8:51","type":""}]},{"body":{"nativeSrc":"3387:16:51","nodeType":"YulBlock","src":"3387:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3396:1:51","nodeType":"YulLiteral","src":"3396:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"3399:1:51","nodeType":"YulLiteral","src":"3399:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3389:6:51","nodeType":"YulIdentifier","src":"3389:6:51"},"nativeSrc":"3389:12:51","nodeType":"YulFunctionCall","src":"3389:12:51"},"nativeSrc":"3389:12:51","nodeType":"YulExpressionStatement","src":"3389:12:51"}]},"condition":{"arguments":[{"name":"offset_2","nativeSrc":"3357:8:51","nodeType":"YulIdentifier","src":"3357:8:51"},{"kind":"number","nativeSrc":"3367:18:51","nodeType":"YulLiteral","src":"3367:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3354:2:51","nodeType":"YulIdentifier","src":"3354:2:51"},"nativeSrc":"3354:32:51","nodeType":"YulFunctionCall","src":"3354:32:51"},"nativeSrc":"3351:52:51","nodeType":"YulIf","src":"3351:52:51"},{"nativeSrc":"3412:62:51","nodeType":"YulAssignment","src":"3412:62:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3444:9:51","nodeType":"YulIdentifier","src":"3444:9:51"},{"name":"offset_2","nativeSrc":"3455:8:51","nodeType":"YulIdentifier","src":"3455:8:51"}],"functionName":{"name":"add","nativeSrc":"3440:3:51","nodeType":"YulIdentifier","src":"3440:3:51"},"nativeSrc":"3440:24:51","nodeType":"YulFunctionCall","src":"3440:24:51"},{"name":"dataEnd","nativeSrc":"3466:7:51","nodeType":"YulIdentifier","src":"3466:7:51"}],"functionName":{"name":"abi_decode_string","nativeSrc":"3422:17:51","nodeType":"YulIdentifier","src":"3422:17:51"},"nativeSrc":"3422:52:51","nodeType":"YulFunctionCall","src":"3422:52:51"},"variableNames":[{"name":"value6","nativeSrc":"3412:6:51","nodeType":"YulIdentifier","src":"3412:6:51"}]}]},"name":"abi_decode_tuple_t_uint256t_bytes_calldata_ptrt_addresst_addresst_string_memory_ptrt_string_memory_ptr","nativeSrc":"2374:1106:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2486:9:51","nodeType":"YulTypedName","src":"2486:9:51","type":""},{"name":"dataEnd","nativeSrc":"2497:7:51","nodeType":"YulTypedName","src":"2497:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2509:6:51","nodeType":"YulTypedName","src":"2509:6:51","type":""},{"name":"value1","nativeSrc":"2517:6:51","nodeType":"YulTypedName","src":"2517:6:51","type":""},{"name":"value2","nativeSrc":"2525:6:51","nodeType":"YulTypedName","src":"2525:6:51","type":""},{"name":"value3","nativeSrc":"2533:6:51","nodeType":"YulTypedName","src":"2533:6:51","type":""},{"name":"value4","nativeSrc":"2541:6:51","nodeType":"YulTypedName","src":"2541:6:51","type":""},{"name":"value5","nativeSrc":"2549:6:51","nodeType":"YulTypedName","src":"2549:6:51","type":""},{"name":"value6","nativeSrc":"2557:6:51","nodeType":"YulTypedName","src":"2557:6:51","type":""}],"src":"2374:1106:51"},{"body":{"nativeSrc":"3555:116:51","nodeType":"YulBlock","src":"3555:116:51","statements":[{"body":{"nativeSrc":"3601:16:51","nodeType":"YulBlock","src":"3601:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3610:1:51","nodeType":"YulLiteral","src":"3610:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"3613:1:51","nodeType":"YulLiteral","src":"3613:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3603:6:51","nodeType":"YulIdentifier","src":"3603:6:51"},"nativeSrc":"3603:12:51","nodeType":"YulFunctionCall","src":"3603:12:51"},"nativeSrc":"3603:12:51","nodeType":"YulExpressionStatement","src":"3603:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3576:7:51","nodeType":"YulIdentifier","src":"3576:7:51"},{"name":"headStart","nativeSrc":"3585:9:51","nodeType":"YulIdentifier","src":"3585:9:51"}],"functionName":{"name":"sub","nativeSrc":"3572:3:51","nodeType":"YulIdentifier","src":"3572:3:51"},"nativeSrc":"3572:23:51","nodeType":"YulFunctionCall","src":"3572:23:51"},{"kind":"number","nativeSrc":"3597:2:51","nodeType":"YulLiteral","src":"3597:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"3568:3:51","nodeType":"YulIdentifier","src":"3568:3:51"},"nativeSrc":"3568:32:51","nodeType":"YulFunctionCall","src":"3568:32:51"},"nativeSrc":"3565:52:51","nodeType":"YulIf","src":"3565:52:51"},{"nativeSrc":"3626:39:51","nodeType":"YulAssignment","src":"3626:39:51","value":{"arguments":[{"name":"headStart","nativeSrc":"3655:9:51","nodeType":"YulIdentifier","src":"3655:9:51"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3636:18:51","nodeType":"YulIdentifier","src":"3636:18:51"},"nativeSrc":"3636:29:51","nodeType":"YulFunctionCall","src":"3636:29:51"},"variableNames":[{"name":"value0","nativeSrc":"3626:6:51","nodeType":"YulIdentifier","src":"3626:6:51"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"3485:186:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3521:9:51","nodeType":"YulTypedName","src":"3521:9:51","type":""},{"name":"dataEnd","nativeSrc":"3532:7:51","nodeType":"YulTypedName","src":"3532:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3544:6:51","nodeType":"YulTypedName","src":"3544:6:51","type":""}],"src":"3485:186:51"},{"body":{"nativeSrc":"3742:184:51","nodeType":"YulBlock","src":"3742:184:51","statements":[{"nativeSrc":"3752:10:51","nodeType":"YulVariableDeclaration","src":"3752:10:51","value":{"kind":"number","nativeSrc":"3761:1:51","nodeType":"YulLiteral","src":"3761:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"3756:1:51","nodeType":"YulTypedName","src":"3756:1:51","type":""}]},{"body":{"nativeSrc":"3821:63:51","nodeType":"YulBlock","src":"3821:63:51","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nativeSrc":"3846:3:51","nodeType":"YulIdentifier","src":"3846:3:51"},{"name":"i","nativeSrc":"3851:1:51","nodeType":"YulIdentifier","src":"3851:1:51"}],"functionName":{"name":"add","nativeSrc":"3842:3:51","nodeType":"YulIdentifier","src":"3842:3:51"},"nativeSrc":"3842:11:51","nodeType":"YulFunctionCall","src":"3842:11:51"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"3865:3:51","nodeType":"YulIdentifier","src":"3865:3:51"},{"name":"i","nativeSrc":"3870:1:51","nodeType":"YulIdentifier","src":"3870:1:51"}],"functionName":{"name":"add","nativeSrc":"3861:3:51","nodeType":"YulIdentifier","src":"3861:3:51"},"nativeSrc":"3861:11:51","nodeType":"YulFunctionCall","src":"3861:11:51"}],"functionName":{"name":"mload","nativeSrc":"3855:5:51","nodeType":"YulIdentifier","src":"3855:5:51"},"nativeSrc":"3855:18:51","nodeType":"YulFunctionCall","src":"3855:18:51"}],"functionName":{"name":"mstore","nativeSrc":"3835:6:51","nodeType":"YulIdentifier","src":"3835:6:51"},"nativeSrc":"3835:39:51","nodeType":"YulFunctionCall","src":"3835:39:51"},"nativeSrc":"3835:39:51","nodeType":"YulExpressionStatement","src":"3835:39:51"}]},"condition":{"arguments":[{"name":"i","nativeSrc":"3782:1:51","nodeType":"YulIdentifier","src":"3782:1:51"},{"name":"length","nativeSrc":"3785:6:51","nodeType":"YulIdentifier","src":"3785:6:51"}],"functionName":{"name":"lt","nativeSrc":"3779:2:51","nodeType":"YulIdentifier","src":"3779:2:51"},"nativeSrc":"3779:13:51","nodeType":"YulFunctionCall","src":"3779:13:51"},"nativeSrc":"3771:113:51","nodeType":"YulForLoop","post":{"nativeSrc":"3793:19:51","nodeType":"YulBlock","src":"3793:19:51","statements":[{"nativeSrc":"3795:15:51","nodeType":"YulAssignment","src":"3795:15:51","value":{"arguments":[{"name":"i","nativeSrc":"3804:1:51","nodeType":"YulIdentifier","src":"3804:1:51"},{"kind":"number","nativeSrc":"3807:2:51","nodeType":"YulLiteral","src":"3807:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3800:3:51","nodeType":"YulIdentifier","src":"3800:3:51"},"nativeSrc":"3800:10:51","nodeType":"YulFunctionCall","src":"3800:10:51"},"variableNames":[{"name":"i","nativeSrc":"3795:1:51","nodeType":"YulIdentifier","src":"3795:1:51"}]}]},"pre":{"nativeSrc":"3775:3:51","nodeType":"YulBlock","src":"3775:3:51","statements":[]},"src":"3771:113:51"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nativeSrc":"3904:3:51","nodeType":"YulIdentifier","src":"3904:3:51"},{"name":"length","nativeSrc":"3909:6:51","nodeType":"YulIdentifier","src":"3909:6:51"}],"functionName":{"name":"add","nativeSrc":"3900:3:51","nodeType":"YulIdentifier","src":"3900:3:51"},"nativeSrc":"3900:16:51","nodeType":"YulFunctionCall","src":"3900:16:51"},{"kind":"number","nativeSrc":"3918:1:51","nodeType":"YulLiteral","src":"3918:1:51","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"3893:6:51","nodeType":"YulIdentifier","src":"3893:6:51"},"nativeSrc":"3893:27:51","nodeType":"YulFunctionCall","src":"3893:27:51"},"nativeSrc":"3893:27:51","nodeType":"YulExpressionStatement","src":"3893:27:51"}]},"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"3676:250:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nativeSrc":"3720:3:51","nodeType":"YulTypedName","src":"3720:3:51","type":""},{"name":"dst","nativeSrc":"3725:3:51","nodeType":"YulTypedName","src":"3725:3:51","type":""},{"name":"length","nativeSrc":"3730:6:51","nodeType":"YulTypedName","src":"3730:6:51","type":""}],"src":"3676:250:51"},{"body":{"nativeSrc":"4080:344:51","nodeType":"YulBlock","src":"4080:344:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4097:9:51","nodeType":"YulIdentifier","src":"4097:9:51"},{"arguments":[{"name":"value0","nativeSrc":"4112:6:51","nodeType":"YulIdentifier","src":"4112:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4128:3:51","nodeType":"YulLiteral","src":"4128:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"4133:1:51","nodeType":"YulLiteral","src":"4133:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4124:3:51","nodeType":"YulIdentifier","src":"4124:3:51"},"nativeSrc":"4124:11:51","nodeType":"YulFunctionCall","src":"4124:11:51"},{"kind":"number","nativeSrc":"4137:1:51","nodeType":"YulLiteral","src":"4137:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4120:3:51","nodeType":"YulIdentifier","src":"4120:3:51"},"nativeSrc":"4120:19:51","nodeType":"YulFunctionCall","src":"4120:19:51"}],"functionName":{"name":"and","nativeSrc":"4108:3:51","nodeType":"YulIdentifier","src":"4108:3:51"},"nativeSrc":"4108:32:51","nodeType":"YulFunctionCall","src":"4108:32:51"}],"functionName":{"name":"mstore","nativeSrc":"4090:6:51","nodeType":"YulIdentifier","src":"4090:6:51"},"nativeSrc":"4090:51:51","nodeType":"YulFunctionCall","src":"4090:51:51"},"nativeSrc":"4090:51:51","nodeType":"YulExpressionStatement","src":"4090:51:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4161:9:51","nodeType":"YulIdentifier","src":"4161:9:51"},{"kind":"number","nativeSrc":"4172:2:51","nodeType":"YulLiteral","src":"4172:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4157:3:51","nodeType":"YulIdentifier","src":"4157:3:51"},"nativeSrc":"4157:18:51","nodeType":"YulFunctionCall","src":"4157:18:51"},{"kind":"number","nativeSrc":"4177:2:51","nodeType":"YulLiteral","src":"4177:2:51","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"4150:6:51","nodeType":"YulIdentifier","src":"4150:6:51"},"nativeSrc":"4150:30:51","nodeType":"YulFunctionCall","src":"4150:30:51"},"nativeSrc":"4150:30:51","nodeType":"YulExpressionStatement","src":"4150:30:51"},{"nativeSrc":"4189:27:51","nodeType":"YulVariableDeclaration","src":"4189:27:51","value":{"arguments":[{"name":"value1","nativeSrc":"4209:6:51","nodeType":"YulIdentifier","src":"4209:6:51"}],"functionName":{"name":"mload","nativeSrc":"4203:5:51","nodeType":"YulIdentifier","src":"4203:5:51"},"nativeSrc":"4203:13:51","nodeType":"YulFunctionCall","src":"4203:13:51"},"variables":[{"name":"length","nativeSrc":"4193:6:51","nodeType":"YulTypedName","src":"4193:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4236:9:51","nodeType":"YulIdentifier","src":"4236:9:51"},{"kind":"number","nativeSrc":"4247:2:51","nodeType":"YulLiteral","src":"4247:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4232:3:51","nodeType":"YulIdentifier","src":"4232:3:51"},"nativeSrc":"4232:18:51","nodeType":"YulFunctionCall","src":"4232:18:51"},{"name":"length","nativeSrc":"4252:6:51","nodeType":"YulIdentifier","src":"4252:6:51"}],"functionName":{"name":"mstore","nativeSrc":"4225:6:51","nodeType":"YulIdentifier","src":"4225:6:51"},"nativeSrc":"4225:34:51","nodeType":"YulFunctionCall","src":"4225:34:51"},"nativeSrc":"4225:34:51","nodeType":"YulExpressionStatement","src":"4225:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"value1","nativeSrc":"4307:6:51","nodeType":"YulIdentifier","src":"4307:6:51"},{"kind":"number","nativeSrc":"4315:2:51","nodeType":"YulLiteral","src":"4315:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4303:3:51","nodeType":"YulIdentifier","src":"4303:3:51"},"nativeSrc":"4303:15:51","nodeType":"YulFunctionCall","src":"4303:15:51"},{"arguments":[{"name":"headStart","nativeSrc":"4324:9:51","nodeType":"YulIdentifier","src":"4324:9:51"},{"kind":"number","nativeSrc":"4335:2:51","nodeType":"YulLiteral","src":"4335:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4320:3:51","nodeType":"YulIdentifier","src":"4320:3:51"},"nativeSrc":"4320:18:51","nodeType":"YulFunctionCall","src":"4320:18:51"},{"name":"length","nativeSrc":"4340:6:51","nodeType":"YulIdentifier","src":"4340:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"4268:34:51","nodeType":"YulIdentifier","src":"4268:34:51"},"nativeSrc":"4268:79:51","nodeType":"YulFunctionCall","src":"4268:79:51"},"nativeSrc":"4268:79:51","nodeType":"YulExpressionStatement","src":"4268:79:51"},{"nativeSrc":"4356:62:51","nodeType":"YulAssignment","src":"4356:62:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4372:9:51","nodeType":"YulIdentifier","src":"4372:9:51"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"4391:6:51","nodeType":"YulIdentifier","src":"4391:6:51"},{"kind":"number","nativeSrc":"4399:2:51","nodeType":"YulLiteral","src":"4399:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"4387:3:51","nodeType":"YulIdentifier","src":"4387:3:51"},"nativeSrc":"4387:15:51","nodeType":"YulFunctionCall","src":"4387:15:51"},{"arguments":[{"kind":"number","nativeSrc":"4408:2:51","nodeType":"YulLiteral","src":"4408:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"4404:3:51","nodeType":"YulIdentifier","src":"4404:3:51"},"nativeSrc":"4404:7:51","nodeType":"YulFunctionCall","src":"4404:7:51"}],"functionName":{"name":"and","nativeSrc":"4383:3:51","nodeType":"YulIdentifier","src":"4383:3:51"},"nativeSrc":"4383:29:51","nodeType":"YulFunctionCall","src":"4383:29:51"}],"functionName":{"name":"add","nativeSrc":"4368:3:51","nodeType":"YulIdentifier","src":"4368:3:51"},"nativeSrc":"4368:45:51","nodeType":"YulFunctionCall","src":"4368:45:51"},{"kind":"number","nativeSrc":"4415:2:51","nodeType":"YulLiteral","src":"4415:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4364:3:51","nodeType":"YulIdentifier","src":"4364:3:51"},"nativeSrc":"4364:54:51","nodeType":"YulFunctionCall","src":"4364:54:51"},"variableNames":[{"name":"tail","nativeSrc":"4356:4:51","nodeType":"YulIdentifier","src":"4356:4:51"}]}]},"name":"abi_encode_tuple_t_address_t_string_memory_ptr__to_t_address_t_string_memory_ptr__fromStack_reversed","nativeSrc":"3931:493:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4041:9:51","nodeType":"YulTypedName","src":"4041:9:51","type":""},{"name":"value1","nativeSrc":"4052:6:51","nodeType":"YulTypedName","src":"4052:6:51","type":""},{"name":"value0","nativeSrc":"4060:6:51","nodeType":"YulTypedName","src":"4060:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4071:4:51","nodeType":"YulTypedName","src":"4071:4:51","type":""}],"src":"3931:493:51"},{"body":{"nativeSrc":"4622:247:51","nodeType":"YulBlock","src":"4622:247:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"4645:3:51","nodeType":"YulIdentifier","src":"4645:3:51"},{"name":"value0","nativeSrc":"4650:6:51","nodeType":"YulIdentifier","src":"4650:6:51"},{"name":"value1","nativeSrc":"4658:6:51","nodeType":"YulIdentifier","src":"4658:6:51"}],"functionName":{"name":"calldatacopy","nativeSrc":"4632:12:51","nodeType":"YulIdentifier","src":"4632:12:51"},"nativeSrc":"4632:33:51","nodeType":"YulFunctionCall","src":"4632:33:51"},"nativeSrc":"4632:33:51","nodeType":"YulExpressionStatement","src":"4632:33:51"},{"nativeSrc":"4674:26:51","nodeType":"YulVariableDeclaration","src":"4674:26:51","value":{"arguments":[{"name":"pos","nativeSrc":"4688:3:51","nodeType":"YulIdentifier","src":"4688:3:51"},{"name":"value1","nativeSrc":"4693:6:51","nodeType":"YulIdentifier","src":"4693:6:51"}],"functionName":{"name":"add","nativeSrc":"4684:3:51","nodeType":"YulIdentifier","src":"4684:3:51"},"nativeSrc":"4684:16:51","nodeType":"YulFunctionCall","src":"4684:16:51"},"variables":[{"name":"_1","nativeSrc":"4678:2:51","nodeType":"YulTypedName","src":"4678:2:51","type":""}]},{"expression":{"arguments":[{"name":"_1","nativeSrc":"4716:2:51","nodeType":"YulIdentifier","src":"4716:2:51"},{"kind":"number","nativeSrc":"4720:1:51","nodeType":"YulLiteral","src":"4720:1:51","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"4709:6:51","nodeType":"YulIdentifier","src":"4709:6:51"},"nativeSrc":"4709:13:51","nodeType":"YulFunctionCall","src":"4709:13:51"},"nativeSrc":"4709:13:51","nodeType":"YulExpressionStatement","src":"4709:13:51"},{"nativeSrc":"4731:27:51","nodeType":"YulVariableDeclaration","src":"4731:27:51","value":{"arguments":[{"name":"value2","nativeSrc":"4751:6:51","nodeType":"YulIdentifier","src":"4751:6:51"}],"functionName":{"name":"mload","nativeSrc":"4745:5:51","nodeType":"YulIdentifier","src":"4745:5:51"},"nativeSrc":"4745:13:51","nodeType":"YulFunctionCall","src":"4745:13:51"},"variables":[{"name":"length","nativeSrc":"4735:6:51","nodeType":"YulTypedName","src":"4735:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"4806:6:51","nodeType":"YulIdentifier","src":"4806:6:51"},{"kind":"number","nativeSrc":"4814:4:51","nodeType":"YulLiteral","src":"4814:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4802:3:51","nodeType":"YulIdentifier","src":"4802:3:51"},"nativeSrc":"4802:17:51","nodeType":"YulFunctionCall","src":"4802:17:51"},{"name":"_1","nativeSrc":"4821:2:51","nodeType":"YulIdentifier","src":"4821:2:51"},{"name":"length","nativeSrc":"4825:6:51","nodeType":"YulIdentifier","src":"4825:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"4767:34:51","nodeType":"YulIdentifier","src":"4767:34:51"},"nativeSrc":"4767:65:51","nodeType":"YulFunctionCall","src":"4767:65:51"},"nativeSrc":"4767:65:51","nodeType":"YulExpressionStatement","src":"4767:65:51"},{"nativeSrc":"4841:22:51","nodeType":"YulAssignment","src":"4841:22:51","value":{"arguments":[{"name":"_1","nativeSrc":"4852:2:51","nodeType":"YulIdentifier","src":"4852:2:51"},{"name":"length","nativeSrc":"4856:6:51","nodeType":"YulIdentifier","src":"4856:6:51"}],"functionName":{"name":"add","nativeSrc":"4848:3:51","nodeType":"YulIdentifier","src":"4848:3:51"},"nativeSrc":"4848:15:51","nodeType":"YulFunctionCall","src":"4848:15:51"},"variableNames":[{"name":"end","nativeSrc":"4841:3:51","nodeType":"YulIdentifier","src":"4841:3:51"}]}]},"name":"abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"4429:440:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"4582:3:51","nodeType":"YulTypedName","src":"4582:3:51","type":""},{"name":"value2","nativeSrc":"4587:6:51","nodeType":"YulTypedName","src":"4587:6:51","type":""},{"name":"value1","nativeSrc":"4595:6:51","nodeType":"YulTypedName","src":"4595:6:51","type":""},{"name":"value0","nativeSrc":"4603:6:51","nodeType":"YulTypedName","src":"4603:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"4614:3:51","nodeType":"YulTypedName","src":"4614:3:51","type":""}],"src":"4429:440:51"},{"body":{"nativeSrc":"5011:150:51","nodeType":"YulBlock","src":"5011:150:51","statements":[{"nativeSrc":"5021:27:51","nodeType":"YulVariableDeclaration","src":"5021:27:51","value":{"arguments":[{"name":"value0","nativeSrc":"5041:6:51","nodeType":"YulIdentifier","src":"5041:6:51"}],"functionName":{"name":"mload","nativeSrc":"5035:5:51","nodeType":"YulIdentifier","src":"5035:5:51"},"nativeSrc":"5035:13:51","nodeType":"YulFunctionCall","src":"5035:13:51"},"variables":[{"name":"length","nativeSrc":"5025:6:51","nodeType":"YulTypedName","src":"5025:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"5096:6:51","nodeType":"YulIdentifier","src":"5096:6:51"},{"kind":"number","nativeSrc":"5104:4:51","nodeType":"YulLiteral","src":"5104:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5092:3:51","nodeType":"YulIdentifier","src":"5092:3:51"},"nativeSrc":"5092:17:51","nodeType":"YulFunctionCall","src":"5092:17:51"},{"name":"pos","nativeSrc":"5111:3:51","nodeType":"YulIdentifier","src":"5111:3:51"},{"name":"length","nativeSrc":"5116:6:51","nodeType":"YulIdentifier","src":"5116:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"5057:34:51","nodeType":"YulIdentifier","src":"5057:34:51"},"nativeSrc":"5057:66:51","nodeType":"YulFunctionCall","src":"5057:66:51"},"nativeSrc":"5057:66:51","nodeType":"YulExpressionStatement","src":"5057:66:51"},{"nativeSrc":"5132:23:51","nodeType":"YulAssignment","src":"5132:23:51","value":{"arguments":[{"name":"pos","nativeSrc":"5143:3:51","nodeType":"YulIdentifier","src":"5143:3:51"},{"name":"length","nativeSrc":"5148:6:51","nodeType":"YulIdentifier","src":"5148:6:51"}],"functionName":{"name":"add","nativeSrc":"5139:3:51","nodeType":"YulIdentifier","src":"5139:3:51"},"nativeSrc":"5139:16:51","nodeType":"YulFunctionCall","src":"5139:16:51"},"variableNames":[{"name":"end","nativeSrc":"5132:3:51","nodeType":"YulIdentifier","src":"5132:3:51"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"4874:287:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"4987:3:51","nodeType":"YulTypedName","src":"4987:3:51","type":""},{"name":"value0","nativeSrc":"4992:6:51","nodeType":"YulTypedName","src":"4992:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"5003:3:51","nodeType":"YulTypedName","src":"5003:3:51","type":""}],"src":"4874:287:51"},{"body":{"nativeSrc":"5340:171:51","nodeType":"YulBlock","src":"5340:171:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5357:9:51","nodeType":"YulIdentifier","src":"5357:9:51"},{"kind":"number","nativeSrc":"5368:2:51","nodeType":"YulLiteral","src":"5368:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"5350:6:51","nodeType":"YulIdentifier","src":"5350:6:51"},"nativeSrc":"5350:21:51","nodeType":"YulFunctionCall","src":"5350:21:51"},"nativeSrc":"5350:21:51","nodeType":"YulExpressionStatement","src":"5350:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5391:9:51","nodeType":"YulIdentifier","src":"5391:9:51"},{"kind":"number","nativeSrc":"5402:2:51","nodeType":"YulLiteral","src":"5402:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5387:3:51","nodeType":"YulIdentifier","src":"5387:3:51"},"nativeSrc":"5387:18:51","nodeType":"YulFunctionCall","src":"5387:18:51"},{"kind":"number","nativeSrc":"5407:2:51","nodeType":"YulLiteral","src":"5407:2:51","type":"","value":"21"}],"functionName":{"name":"mstore","nativeSrc":"5380:6:51","nodeType":"YulIdentifier","src":"5380:6:51"},"nativeSrc":"5380:30:51","nodeType":"YulFunctionCall","src":"5380:30:51"},"nativeSrc":"5380:30:51","nodeType":"YulExpressionStatement","src":"5380:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5430:9:51","nodeType":"YulIdentifier","src":"5430:9:51"},{"kind":"number","nativeSrc":"5441:2:51","nodeType":"YulLiteral","src":"5441:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5426:3:51","nodeType":"YulIdentifier","src":"5426:3:51"},"nativeSrc":"5426:18:51","nodeType":"YulFunctionCall","src":"5426:18:51"},{"hexValue":"696e697469616c697a6174696f6e206661696c6564","kind":"string","nativeSrc":"5446:23:51","nodeType":"YulLiteral","src":"5446:23:51","type":"","value":"initialization failed"}],"functionName":{"name":"mstore","nativeSrc":"5419:6:51","nodeType":"YulIdentifier","src":"5419:6:51"},"nativeSrc":"5419:51:51","nodeType":"YulFunctionCall","src":"5419:51:51"},"nativeSrc":"5419:51:51","nodeType":"YulExpressionStatement","src":"5419:51:51"},{"nativeSrc":"5479:26:51","nodeType":"YulAssignment","src":"5479:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"5491:9:51","nodeType":"YulIdentifier","src":"5491:9:51"},{"kind":"number","nativeSrc":"5502:2:51","nodeType":"YulLiteral","src":"5502:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5487:3:51","nodeType":"YulIdentifier","src":"5487:3:51"},"nativeSrc":"5487:18:51","nodeType":"YulFunctionCall","src":"5487:18:51"},"variableNames":[{"name":"tail","nativeSrc":"5479:4:51","nodeType":"YulIdentifier","src":"5479:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_d823f41a048e1744d97ebcf74e0bf47336b005695e7c8e7055976ce95317a865__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"5166:345:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5317:9:51","nodeType":"YulTypedName","src":"5317:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5331:4:51","nodeType":"YulTypedName","src":"5331:4:51","type":""}],"src":"5166:345:51"},{"body":{"nativeSrc":"5792:227:51","nodeType":"YulBlock","src":"5792:227:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"5809:3:51","nodeType":"YulIdentifier","src":"5809:3:51"},{"arguments":[{"kind":"number","nativeSrc":"5818:3:51","nodeType":"YulLiteral","src":"5818:3:51","type":"","value":"248"},{"kind":"number","nativeSrc":"5823:3:51","nodeType":"YulLiteral","src":"5823:3:51","type":"","value":"255"}],"functionName":{"name":"shl","nativeSrc":"5814:3:51","nodeType":"YulIdentifier","src":"5814:3:51"},"nativeSrc":"5814:13:51","nodeType":"YulFunctionCall","src":"5814:13:51"}],"functionName":{"name":"mstore","nativeSrc":"5802:6:51","nodeType":"YulIdentifier","src":"5802:6:51"},"nativeSrc":"5802:26:51","nodeType":"YulFunctionCall","src":"5802:26:51"},"nativeSrc":"5802:26:51","nodeType":"YulExpressionStatement","src":"5802:26:51"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"5848:3:51","nodeType":"YulIdentifier","src":"5848:3:51"},{"kind":"number","nativeSrc":"5853:1:51","nodeType":"YulLiteral","src":"5853:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"5844:3:51","nodeType":"YulIdentifier","src":"5844:3:51"},"nativeSrc":"5844:11:51","nodeType":"YulFunctionCall","src":"5844:11:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5865:2:51","nodeType":"YulLiteral","src":"5865:2:51","type":"","value":"96"},{"name":"value0","nativeSrc":"5869:6:51","nodeType":"YulIdentifier","src":"5869:6:51"}],"functionName":{"name":"shl","nativeSrc":"5861:3:51","nodeType":"YulIdentifier","src":"5861:3:51"},"nativeSrc":"5861:15:51","nodeType":"YulFunctionCall","src":"5861:15:51"},{"arguments":[{"kind":"number","nativeSrc":"5882:26:51","nodeType":"YulLiteral","src":"5882:26:51","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"5878:3:51","nodeType":"YulIdentifier","src":"5878:3:51"},"nativeSrc":"5878:31:51","nodeType":"YulFunctionCall","src":"5878:31:51"}],"functionName":{"name":"and","nativeSrc":"5857:3:51","nodeType":"YulIdentifier","src":"5857:3:51"},"nativeSrc":"5857:53:51","nodeType":"YulFunctionCall","src":"5857:53:51"}],"functionName":{"name":"mstore","nativeSrc":"5837:6:51","nodeType":"YulIdentifier","src":"5837:6:51"},"nativeSrc":"5837:74:51","nodeType":"YulFunctionCall","src":"5837:74:51"},"nativeSrc":"5837:74:51","nodeType":"YulExpressionStatement","src":"5837:74:51"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"5931:3:51","nodeType":"YulIdentifier","src":"5931:3:51"},{"kind":"number","nativeSrc":"5936:2:51","nodeType":"YulLiteral","src":"5936:2:51","type":"","value":"21"}],"functionName":{"name":"add","nativeSrc":"5927:3:51","nodeType":"YulIdentifier","src":"5927:3:51"},"nativeSrc":"5927:12:51","nodeType":"YulFunctionCall","src":"5927:12:51"},{"name":"value1","nativeSrc":"5941:6:51","nodeType":"YulIdentifier","src":"5941:6:51"}],"functionName":{"name":"mstore","nativeSrc":"5920:6:51","nodeType":"YulIdentifier","src":"5920:6:51"},"nativeSrc":"5920:28:51","nodeType":"YulFunctionCall","src":"5920:28:51"},"nativeSrc":"5920:28:51","nodeType":"YulExpressionStatement","src":"5920:28:51"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"5968:3:51","nodeType":"YulIdentifier","src":"5968:3:51"},{"kind":"number","nativeSrc":"5973:2:51","nodeType":"YulLiteral","src":"5973:2:51","type":"","value":"53"}],"functionName":{"name":"add","nativeSrc":"5964:3:51","nodeType":"YulIdentifier","src":"5964:3:51"},"nativeSrc":"5964:12:51","nodeType":"YulFunctionCall","src":"5964:12:51"},{"name":"value2","nativeSrc":"5978:6:51","nodeType":"YulIdentifier","src":"5978:6:51"}],"functionName":{"name":"mstore","nativeSrc":"5957:6:51","nodeType":"YulIdentifier","src":"5957:6:51"},"nativeSrc":"5957:28:51","nodeType":"YulFunctionCall","src":"5957:28:51"},"nativeSrc":"5957:28:51","nodeType":"YulExpressionStatement","src":"5957:28:51"},{"nativeSrc":"5994:19:51","nodeType":"YulAssignment","src":"5994:19:51","value":{"arguments":[{"name":"pos","nativeSrc":"6005:3:51","nodeType":"YulIdentifier","src":"6005:3:51"},{"kind":"number","nativeSrc":"6010:2:51","nodeType":"YulLiteral","src":"6010:2:51","type":"","value":"85"}],"functionName":{"name":"add","nativeSrc":"6001:3:51","nodeType":"YulIdentifier","src":"6001:3:51"},"nativeSrc":"6001:12:51","nodeType":"YulFunctionCall","src":"6001:12:51"},"variableNames":[{"name":"end","nativeSrc":"5994:3:51","nodeType":"YulIdentifier","src":"5994:3:51"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_8b1a944cf13a9a1c08facb2c9e98623ef3254d2ddb48113885c3e8e97fec8db9_t_address_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_address_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed","nativeSrc":"5516:503:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"5752:3:51","nodeType":"YulTypedName","src":"5752:3:51","type":""},{"name":"value2","nativeSrc":"5757:6:51","nodeType":"YulTypedName","src":"5757:6:51","type":""},{"name":"value1","nativeSrc":"5765:6:51","nodeType":"YulTypedName","src":"5765:6:51","type":""},{"name":"value0","nativeSrc":"5773:6:51","nodeType":"YulTypedName","src":"5773:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"5784:3:51","nodeType":"YulTypedName","src":"5784:3:51","type":""}],"src":"5516:503:51"},{"body":{"nativeSrc":"6345:197:51","nodeType":"YulBlock","src":"6345:197:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"6362:3:51","nodeType":"YulIdentifier","src":"6362:3:51"},{"arguments":[{"kind":"number","nativeSrc":"6371:3:51","nodeType":"YulLiteral","src":"6371:3:51","type":"","value":"242"},{"kind":"number","nativeSrc":"6376:5:51","nodeType":"YulLiteral","src":"6376:5:51","type":"","value":"13733"}],"functionName":{"name":"shl","nativeSrc":"6367:3:51","nodeType":"YulIdentifier","src":"6367:3:51"},"nativeSrc":"6367:15:51","nodeType":"YulFunctionCall","src":"6367:15:51"}],"functionName":{"name":"mstore","nativeSrc":"6355:6:51","nodeType":"YulIdentifier","src":"6355:6:51"},"nativeSrc":"6355:28:51","nodeType":"YulFunctionCall","src":"6355:28:51"},"nativeSrc":"6355:28:51","nodeType":"YulExpressionStatement","src":"6355:28:51"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"6403:3:51","nodeType":"YulIdentifier","src":"6403:3:51"},{"kind":"number","nativeSrc":"6408:1:51","nodeType":"YulLiteral","src":"6408:1:51","type":"","value":"2"}],"functionName":{"name":"add","nativeSrc":"6399:3:51","nodeType":"YulIdentifier","src":"6399:3:51"},"nativeSrc":"6399:11:51","nodeType":"YulFunctionCall","src":"6399:11:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6420:2:51","nodeType":"YulLiteral","src":"6420:2:51","type":"","value":"96"},{"name":"value0","nativeSrc":"6424:6:51","nodeType":"YulIdentifier","src":"6424:6:51"}],"functionName":{"name":"shl","nativeSrc":"6416:3:51","nodeType":"YulIdentifier","src":"6416:3:51"},"nativeSrc":"6416:15:51","nodeType":"YulFunctionCall","src":"6416:15:51"},{"arguments":[{"kind":"number","nativeSrc":"6437:26:51","nodeType":"YulLiteral","src":"6437:26:51","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"6433:3:51","nodeType":"YulIdentifier","src":"6433:3:51"},"nativeSrc":"6433:31:51","nodeType":"YulFunctionCall","src":"6433:31:51"}],"functionName":{"name":"and","nativeSrc":"6412:3:51","nodeType":"YulIdentifier","src":"6412:3:51"},"nativeSrc":"6412:53:51","nodeType":"YulFunctionCall","src":"6412:53:51"}],"functionName":{"name":"mstore","nativeSrc":"6392:6:51","nodeType":"YulIdentifier","src":"6392:6:51"},"nativeSrc":"6392:74:51","nodeType":"YulFunctionCall","src":"6392:74:51"},"nativeSrc":"6392:74:51","nodeType":"YulExpressionStatement","src":"6392:74:51"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"6486:3:51","nodeType":"YulIdentifier","src":"6486:3:51"},{"kind":"number","nativeSrc":"6491:2:51","nodeType":"YulLiteral","src":"6491:2:51","type":"","value":"22"}],"functionName":{"name":"add","nativeSrc":"6482:3:51","nodeType":"YulIdentifier","src":"6482:3:51"},"nativeSrc":"6482:12:51","nodeType":"YulFunctionCall","src":"6482:12:51"},{"arguments":[{"kind":"number","nativeSrc":"6500:3:51","nodeType":"YulLiteral","src":"6500:3:51","type":"","value":"248"},{"kind":"number","nativeSrc":"6505:1:51","nodeType":"YulLiteral","src":"6505:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6496:3:51","nodeType":"YulIdentifier","src":"6496:3:51"},"nativeSrc":"6496:11:51","nodeType":"YulFunctionCall","src":"6496:11:51"}],"functionName":{"name":"mstore","nativeSrc":"6475:6:51","nodeType":"YulIdentifier","src":"6475:6:51"},"nativeSrc":"6475:33:51","nodeType":"YulFunctionCall","src":"6475:33:51"},"nativeSrc":"6475:33:51","nodeType":"YulExpressionStatement","src":"6475:33:51"},{"nativeSrc":"6517:19:51","nodeType":"YulAssignment","src":"6517:19:51","value":{"arguments":[{"name":"pos","nativeSrc":"6528:3:51","nodeType":"YulIdentifier","src":"6528:3:51"},{"kind":"number","nativeSrc":"6533:2:51","nodeType":"YulLiteral","src":"6533:2:51","type":"","value":"23"}],"functionName":{"name":"add","nativeSrc":"6524:3:51","nodeType":"YulIdentifier","src":"6524:3:51"},"nativeSrc":"6524:12:51","nodeType":"YulFunctionCall","src":"6524:12:51"},"variableNames":[{"name":"end","nativeSrc":"6517:3:51","nodeType":"YulIdentifier","src":"6517:3:51"}]}]},"name":"abi_encode_tuple_packed_t_stringliteral_4fdc04d28c8d22070e5fd0f23f00bae0b21cc4e5091b5fd7a9cad9babd3668cf_t_address_t_stringliteral_5fe7f977e71dba2ea1a68e21057beebb9be2ac30c6410aa38d4f3fbe41dcffd2__to_t_string_memory_ptr_t_address_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"6024:518:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"6321:3:51","nodeType":"YulTypedName","src":"6321:3:51","type":""},{"name":"value0","nativeSrc":"6326:6:51","nodeType":"YulTypedName","src":"6326:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"6337:3:51","nodeType":"YulTypedName","src":"6337:3:51","type":""}],"src":"6024:518:51"},{"body":{"nativeSrc":"6721:180:51","nodeType":"YulBlock","src":"6721:180:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6738:9:51","nodeType":"YulIdentifier","src":"6738:9:51"},{"kind":"number","nativeSrc":"6749:2:51","nodeType":"YulLiteral","src":"6749:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"6731:6:51","nodeType":"YulIdentifier","src":"6731:6:51"},"nativeSrc":"6731:21:51","nodeType":"YulFunctionCall","src":"6731:21:51"},"nativeSrc":"6731:21:51","nodeType":"YulExpressionStatement","src":"6731:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6772:9:51","nodeType":"YulIdentifier","src":"6772:9:51"},{"kind":"number","nativeSrc":"6783:2:51","nodeType":"YulLiteral","src":"6783:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6768:3:51","nodeType":"YulIdentifier","src":"6768:3:51"},"nativeSrc":"6768:18:51","nodeType":"YulFunctionCall","src":"6768:18:51"},{"kind":"number","nativeSrc":"6788:2:51","nodeType":"YulLiteral","src":"6788:2:51","type":"","value":"30"}],"functionName":{"name":"mstore","nativeSrc":"6761:6:51","nodeType":"YulIdentifier","src":"6761:6:51"},"nativeSrc":"6761:30:51","nodeType":"YulFunctionCall","src":"6761:30:51"},"nativeSrc":"6761:30:51","nodeType":"YulExpressionStatement","src":"6761:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6811:9:51","nodeType":"YulIdentifier","src":"6811:9:51"},{"kind":"number","nativeSrc":"6822:2:51","nodeType":"YulLiteral","src":"6822:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6807:3:51","nodeType":"YulIdentifier","src":"6807:3:51"},"nativeSrc":"6807:18:51","nodeType":"YulFunctionCall","src":"6807:18:51"},{"hexValue":"437265617465333a2074617267657420616c726561647920657869737473","kind":"string","nativeSrc":"6827:32:51","nodeType":"YulLiteral","src":"6827:32:51","type":"","value":"Create3: target already exists"}],"functionName":{"name":"mstore","nativeSrc":"6800:6:51","nodeType":"YulIdentifier","src":"6800:6:51"},"nativeSrc":"6800:60:51","nodeType":"YulFunctionCall","src":"6800:60:51"},"nativeSrc":"6800:60:51","nodeType":"YulExpressionStatement","src":"6800:60:51"},{"nativeSrc":"6869:26:51","nodeType":"YulAssignment","src":"6869:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"6881:9:51","nodeType":"YulIdentifier","src":"6881:9:51"},{"kind":"number","nativeSrc":"6892:2:51","nodeType":"YulLiteral","src":"6892:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"6877:3:51","nodeType":"YulIdentifier","src":"6877:3:51"},"nativeSrc":"6877:18:51","nodeType":"YulFunctionCall","src":"6877:18:51"},"variableNames":[{"name":"tail","nativeSrc":"6869:4:51","nodeType":"YulIdentifier","src":"6869:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_eff5890756d2c5621f001169bb16c941329db031eba2edbb4865370c160b3eae__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"6547:354:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6698:9:51","nodeType":"YulTypedName","src":"6698:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6712:4:51","nodeType":"YulTypedName","src":"6712:4:51","type":""}],"src":"6547:354:51"},{"body":{"nativeSrc":"7080:181:51","nodeType":"YulBlock","src":"7080:181:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7097:9:51","nodeType":"YulIdentifier","src":"7097:9:51"},{"kind":"number","nativeSrc":"7108:2:51","nodeType":"YulLiteral","src":"7108:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"7090:6:51","nodeType":"YulIdentifier","src":"7090:6:51"},"nativeSrc":"7090:21:51","nodeType":"YulFunctionCall","src":"7090:21:51"},"nativeSrc":"7090:21:51","nodeType":"YulExpressionStatement","src":"7090:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7131:9:51","nodeType":"YulIdentifier","src":"7131:9:51"},{"kind":"number","nativeSrc":"7142:2:51","nodeType":"YulLiteral","src":"7142:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7127:3:51","nodeType":"YulIdentifier","src":"7127:3:51"},"nativeSrc":"7127:18:51","nodeType":"YulFunctionCall","src":"7127:18:51"},{"kind":"number","nativeSrc":"7147:2:51","nodeType":"YulLiteral","src":"7147:2:51","type":"","value":"31"}],"functionName":{"name":"mstore","nativeSrc":"7120:6:51","nodeType":"YulIdentifier","src":"7120:6:51"},"nativeSrc":"7120:30:51","nodeType":"YulFunctionCall","src":"7120:30:51"},"nativeSrc":"7120:30:51","nodeType":"YulExpressionStatement","src":"7120:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7170:9:51","nodeType":"YulIdentifier","src":"7170:9:51"},{"kind":"number","nativeSrc":"7181:2:51","nodeType":"YulLiteral","src":"7181:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7166:3:51","nodeType":"YulIdentifier","src":"7166:3:51"},"nativeSrc":"7166:18:51","nodeType":"YulFunctionCall","src":"7166:18:51"},{"hexValue":"437265617465333a206572726f72206372656174696e6720666163746f7279","kind":"string","nativeSrc":"7186:33:51","nodeType":"YulLiteral","src":"7186:33:51","type":"","value":"Create3: error creating factory"}],"functionName":{"name":"mstore","nativeSrc":"7159:6:51","nodeType":"YulIdentifier","src":"7159:6:51"},"nativeSrc":"7159:61:51","nodeType":"YulFunctionCall","src":"7159:61:51"},"nativeSrc":"7159:61:51","nodeType":"YulExpressionStatement","src":"7159:61:51"},{"nativeSrc":"7229:26:51","nodeType":"YulAssignment","src":"7229:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"7241:9:51","nodeType":"YulIdentifier","src":"7241:9:51"},{"kind":"number","nativeSrc":"7252:2:51","nodeType":"YulLiteral","src":"7252:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"7237:3:51","nodeType":"YulIdentifier","src":"7237:3:51"},"nativeSrc":"7237:18:51","nodeType":"YulFunctionCall","src":"7237:18:51"},"variableNames":[{"name":"tail","nativeSrc":"7229:4:51","nodeType":"YulIdentifier","src":"7229:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_9c800ce8d486c3397a1a9cc324cfcd264ced53e7b922ccf3390ef85c645102b0__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"6906:355:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7057:9:51","nodeType":"YulTypedName","src":"7057:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7071:4:51","nodeType":"YulTypedName","src":"7071:4:51","type":""}],"src":"6906:355:51"},{"body":{"nativeSrc":"7440:180:51","nodeType":"YulBlock","src":"7440:180:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7457:9:51","nodeType":"YulIdentifier","src":"7457:9:51"},{"kind":"number","nativeSrc":"7468:2:51","nodeType":"YulLiteral","src":"7468:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"7450:6:51","nodeType":"YulIdentifier","src":"7450:6:51"},"nativeSrc":"7450:21:51","nodeType":"YulFunctionCall","src":"7450:21:51"},"nativeSrc":"7450:21:51","nodeType":"YulExpressionStatement","src":"7450:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7491:9:51","nodeType":"YulIdentifier","src":"7491:9:51"},{"kind":"number","nativeSrc":"7502:2:51","nodeType":"YulLiteral","src":"7502:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7487:3:51","nodeType":"YulIdentifier","src":"7487:3:51"},"nativeSrc":"7487:18:51","nodeType":"YulFunctionCall","src":"7487:18:51"},{"kind":"number","nativeSrc":"7507:2:51","nodeType":"YulLiteral","src":"7507:2:51","type":"","value":"30"}],"functionName":{"name":"mstore","nativeSrc":"7480:6:51","nodeType":"YulIdentifier","src":"7480:6:51"},"nativeSrc":"7480:30:51","nodeType":"YulFunctionCall","src":"7480:30:51"},"nativeSrc":"7480:30:51","nodeType":"YulExpressionStatement","src":"7480:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7530:9:51","nodeType":"YulIdentifier","src":"7530:9:51"},{"kind":"number","nativeSrc":"7541:2:51","nodeType":"YulLiteral","src":"7541:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7526:3:51","nodeType":"YulIdentifier","src":"7526:3:51"},"nativeSrc":"7526:18:51","nodeType":"YulFunctionCall","src":"7526:18:51"},{"hexValue":"437265617465333a206572726f72206372656174696e6720746172676574","kind":"string","nativeSrc":"7546:32:51","nodeType":"YulLiteral","src":"7546:32:51","type":"","value":"Create3: error creating target"}],"functionName":{"name":"mstore","nativeSrc":"7519:6:51","nodeType":"YulIdentifier","src":"7519:6:51"},"nativeSrc":"7519:60:51","nodeType":"YulFunctionCall","src":"7519:60:51"},"nativeSrc":"7519:60:51","nodeType":"YulExpressionStatement","src":"7519:60:51"},{"nativeSrc":"7588:26:51","nodeType":"YulAssignment","src":"7588:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"7600:9:51","nodeType":"YulIdentifier","src":"7600:9:51"},{"kind":"number","nativeSrc":"7611:2:51","nodeType":"YulLiteral","src":"7611:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"7596:3:51","nodeType":"YulIdentifier","src":"7596:3:51"},"nativeSrc":"7596:18:51","nodeType":"YulFunctionCall","src":"7596:18:51"},"variableNames":[{"name":"tail","nativeSrc":"7588:4:51","nodeType":"YulIdentifier","src":"7588:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_1398d0fda5c4dd82767513d52fb4e190bf03bb7a57b33af8f2bf0a3f254cffa0__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"7266:354:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7417:9:51","nodeType":"YulTypedName","src":"7417:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7431:4:51","nodeType":"YulTypedName","src":"7431:4:51","type":""}],"src":"7266:354:51"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\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, sub(shl(160, 1), 1)))\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_tuple_t_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n    }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function abi_decode_string(offset, end) -> array\n    {\n        if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n        let length := calldataload(offset)\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(and(add(length, 0x1f), not(31)), 63), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n        mstore(memPtr, length)\n        if gt(add(add(offset, length), 0x20), end) { revert(0, 0) }\n        calldatacopy(add(memPtr, 0x20), add(offset, 0x20), length)\n        mstore(add(add(memPtr, length), 0x20), 0)\n        array := memPtr\n    }\n    function abi_decode_tuple_t_uint256t_bytes_calldata_ptrt_addresst_addresst_string_memory_ptrt_string_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6\n    {\n        if slt(sub(dataEnd, headStart), 192) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let value1_1, value2_1 := abi_decode_bytes_calldata(add(headStart, offset), dataEnd)\n        value1 := value1_1\n        value2 := value2_1\n        value3 := abi_decode_address(add(headStart, 64))\n        value4 := abi_decode_address(add(headStart, 96))\n        let offset_1 := calldataload(add(headStart, 128))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        value5 := abi_decode_string(add(headStart, offset_1), dataEnd)\n        let offset_2 := calldataload(add(headStart, 160))\n        if gt(offset_2, 0xffffffffffffffff) { revert(0, 0) }\n        value6 := abi_decode_string(add(headStart, offset_2), dataEnd)\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 copy_memory_to_memory_with_cleanup(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        mstore(add(dst, length), 0)\n    }\n    function abi_encode_tuple_t_address_t_string_memory_ptr__to_t_address_t_string_memory_ptr__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), 64)\n        let length := mload(value1)\n        mstore(add(headStart, 64), length)\n        copy_memory_to_memory_with_cleanup(add(value1, 32), add(headStart, 96), length)\n        tail := add(add(headStart, and(add(length, 31), not(31))), 96)\n    }\n    function abi_encode_tuple_packed_t_bytes_calldata_ptr_t_bytes_memory_ptr__to_t_bytes_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value2, value1, value0) -> end\n    {\n        calldatacopy(pos, value0, value1)\n        let _1 := add(pos, value1)\n        mstore(_1, 0)\n        let length := mload(value2)\n        copy_memory_to_memory_with_cleanup(add(value2, 0x20), _1, length)\n        end := add(_1, length)\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_with_cleanup(add(value0, 0x20), pos, length)\n        end := add(pos, length)\n    }\n    function abi_encode_tuple_t_stringliteral_d823f41a048e1744d97ebcf74e0bf47336b005695e7c8e7055976ce95317a865__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), \"initialization failed\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_packed_t_stringliteral_8b1a944cf13a9a1c08facb2c9e98623ef3254d2ddb48113885c3e8e97fec8db9_t_address_t_bytes32_t_bytes32__to_t_string_memory_ptr_t_address_t_bytes32_t_bytes32__nonPadded_inplace_fromStack_reversed(pos, value2, value1, value0) -> end\n    {\n        mstore(pos, shl(248, 255))\n        mstore(add(pos, 1), and(shl(96, value0), not(0xffffffffffffffffffffffff)))\n        mstore(add(pos, 21), value1)\n        mstore(add(pos, 53), value2)\n        end := add(pos, 85)\n    }\n    function abi_encode_tuple_packed_t_stringliteral_4fdc04d28c8d22070e5fd0f23f00bae0b21cc4e5091b5fd7a9cad9babd3668cf_t_address_t_stringliteral_5fe7f977e71dba2ea1a68e21057beebb9be2ac30c6410aa38d4f3fbe41dcffd2__to_t_string_memory_ptr_t_address_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value0) -> end\n    {\n        mstore(pos, shl(242, 13733))\n        mstore(add(pos, 2), and(shl(96, value0), not(0xffffffffffffffffffffffff)))\n        mstore(add(pos, 22), shl(248, 1))\n        end := add(pos, 23)\n    }\n    function abi_encode_tuple_t_stringliteral_eff5890756d2c5621f001169bb16c941329db031eba2edbb4865370c160b3eae__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), \"Create3: target already exists\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_9c800ce8d486c3397a1a9cc324cfcd264ced53e7b922ccf3390ef85c645102b0__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), \"Create3: error creating factory\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_1398d0fda5c4dd82767513d52fb4e190bf03bb7a57b33af8f2bf0a3f254cffa0__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), \"Create3: error creating target\")\n        tail := add(headStart, 96)\n    }\n}","id":51,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561001057600080fd5b50600436106100885760003560e01c8063c7d4684f1161005b578063c7d4684f146100df578063e30c3978146100f2578063f02ef92514610103578063f2fde38b1461011657600080fd5b806358ebadb01461008d578063715018a6146100bc57806379ba5097146100c65780638da5cb5b146100ce575b600080fd5b6100a061009b3660046106dd565b610129565b6040516001600160a01b03909116815260200160405180910390f35b6100c461013a565b005b6100c461014e565b6000546001600160a01b03166100a0565b6100a06100ed36600461073f565b610197565b6001546001600160a01b03166100a0565b6100a061011136600461084c565b6101ec565b6100c4610124366004610912565b610332565b6000610134826103a3565b92915050565b610142610476565b61014c60006104a3565b565b60015433906001600160a01b0316811461018b5760405163118cdaa760e01b81526001600160a01b03821660048201526024015b60405180910390fd5b610194816104a3565b50565b60006101a1610476565b6101e48460001b84848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506104bc92505050565b949350505050565b60006101f6610476565b6102458860001b88888887604051602001610212929190610951565b60408051601f1981840301815290829052610231939291602001610993565b6040516020818303038152906040526104bc565b90506000816001600160a01b03168584604051602401610266929190610951565b60408051601f198184030181529181526020820180516001600160e01b03166379ccf11760e11b1790525161029b91906109ba565b6000604051808303816000865af19150503d80600081146102d8576040519150601f19603f3d011682016040523d82523d6000602084013e6102dd565b606091505b50509050806103265760405162461bcd60e51b81526020600482015260156024820152741a5b9a5d1a585b1a5e985d1a5bdb8819985a5b1959605a1b6044820152606401610182565b50979650505050505050565b61033a610476565b600180546001600160a01b0383166001600160a01b0319909116811790915561036b6000546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b604080518082018252601081526f67363d3d37363d34f03d5260086018f360801b60209182015281516001600160f81b03198183015230606090811b6bffffffffffffffffffffffff19908116602184015260358301959095527f21c35dbe1b344a2488cf3321d6ce542f8e9f305544ff09e4993a62319a497c1f605580840191909152845180840390910181526075830185528051908401206135a560f21b6095840152901b9093166097840152600160f81b60ab8401528151608c81850301815260ac909301909152815191012090565b6000546001600160a01b0316331461014c5760405163118cdaa760e01b8152336004820152602401610182565b600180546001600160a01b0319169055610194816104d1565b60006104ca83836000610521565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061052c846103a3565b90506001600160a01b0381163b156105865760405162461bcd60e51b815260206004820152601e60248201527f437265617465333a2074617267657420616c72656164792065786973747300006044820152606401610182565b6040805180820190915260108082526f67363d3d37363d34f03d5260086018f360801b6020830190815260009291879184f591506001600160a01b0382166106105760405162461bcd60e51b815260206004820152601f60248201527f437265617465333a206572726f72206372656174696e6720666163746f7279006044820152606401610182565b6000826001600160a01b0316858760405161062b91906109ba565b60006040518083038185875af1925050503d8060008114610668576040519150601f19603f3d011682016040523d82523d6000602084013e61066d565b606091505b5050905080801561068757506001600160a01b0384163b15155b6106d35760405162461bcd60e51b815260206004820152601e60248201527f437265617465333a206572726f72206372656174696e672074617267657400006044820152606401610182565b5050509392505050565b6000602082840312156106ef57600080fd5b5035919050565b60008083601f84011261070857600080fd5b50813567ffffffffffffffff81111561072057600080fd5b60208301915083602082850101111561073857600080fd5b9250929050565b60008060006040848603121561075457600080fd5b83359250602084013567ffffffffffffffff81111561077257600080fd5b61077e868287016106f6565b9497909650939450505050565b80356001600160a01b03811681146107a257600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126107ce57600080fd5b813567ffffffffffffffff8111156107e8576107e86107a7565b604051601f8201601f19908116603f0116810167ffffffffffffffff81118282101715610817576108176107a7565b60405281815283820160200185101561082f57600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600080600060c0888a03121561086757600080fd5b87359650602088013567ffffffffffffffff81111561088557600080fd5b6108918a828b016106f6565b90975095506108a490506040890161078b565b93506108b26060890161078b565b9250608088013567ffffffffffffffff8111156108ce57600080fd5b6108da8a828b016107bd565b92505060a088013567ffffffffffffffff8111156108f757600080fd5b6109038a828b016107bd565b91505092959891949750929550565b60006020828403121561092457600080fd5b6104ca8261078b565b60005b83811015610948578181015183820152602001610930565b50506000910152565b60018060a01b0383168152604060208201526000825180604084015261097e81606085016020870161092d565b601f01601f1916919091016060019392505050565b8284823760008382016000815283516109b081836020880161092d565b0195945050505050565b600082516109cc81846020870161092d565b919091019291505056fea26469706673582212208cdbef866d1835963049ee2872c3d1d037dc8b4caf4475a6597e9ec122f6b3dd64736f6c634300081c0033","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 0xC7D4684F GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xC7D4684F EQ PUSH2 0xDF JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0xF2 JUMPI DUP1 PUSH4 0xF02EF925 EQ PUSH2 0x103 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x116 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x58EBADB0 EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xBC JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0xC6 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xCE JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA0 PUSH2 0x9B CALLDATASIZE PUSH1 0x4 PUSH2 0x6DD JUMP JUMPDEST PUSH2 0x129 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC4 PUSH2 0x13A JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC4 PUSH2 0x14E JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xA0 JUMP JUMPDEST PUSH2 0xA0 PUSH2 0xED CALLDATASIZE PUSH1 0x4 PUSH2 0x73F JUMP JUMPDEST PUSH2 0x197 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xA0 JUMP JUMPDEST PUSH2 0xA0 PUSH2 0x111 CALLDATASIZE PUSH1 0x4 PUSH2 0x84C JUMP JUMPDEST PUSH2 0x1EC JUMP JUMPDEST PUSH2 0xC4 PUSH2 0x124 CALLDATASIZE PUSH1 0x4 PUSH2 0x912 JUMP JUMPDEST PUSH2 0x332 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x134 DUP3 PUSH2 0x3A3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x142 PUSH2 0x476 JUMP JUMPDEST PUSH2 0x14C PUSH1 0x0 PUSH2 0x4A3 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x1 SLOAD CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 EQ PUSH2 0x18B JUMPI PUSH1 0x40 MLOAD PUSH4 0x118CDAA7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x194 DUP2 PUSH2 0x4A3 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A1 PUSH2 0x476 JUMP JUMPDEST PUSH2 0x1E4 DUP5 PUSH1 0x0 SHL DUP5 DUP5 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 0x4BC SWAP3 POP POP POP JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F6 PUSH2 0x476 JUMP JUMPDEST PUSH2 0x245 DUP9 PUSH1 0x0 SHL DUP9 DUP9 DUP9 DUP8 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x212 SWAP3 SWAP2 SWAP1 PUSH2 0x951 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP1 DUP3 SWAP1 MSTORE PUSH2 0x231 SWAP4 SWAP3 SWAP2 PUSH1 0x20 ADD PUSH2 0x993 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x4BC JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP5 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x266 SWAP3 SWAP2 SWAP1 PUSH2 0x951 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 DUP2 MSTORE PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH4 0x79CCF117 PUSH1 0xE1 SHL OR SWAP1 MSTORE MLOAD PUSH2 0x29B SWAP2 SWAP1 PUSH2 0x9BA JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP7 GAS CALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x2D8 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 0x2DD JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x326 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 PUSH21 0x1A5B9A5D1A585B1A5E985D1A5BDB8819985A5B1959 PUSH1 0x5A SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x182 JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x33A PUSH2 0x476 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 SWAP2 AND DUP2 OR SWAP1 SWAP2 SSTORE PUSH2 0x36B PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x38D16B8CAC22D99FC7C124B9CD0DE2D3FA1FAEF420BFE791D8C362D765E22700 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH1 0x10 DUP2 MSTORE PUSH16 0x67363D3D37363D34F03D5260086018F3 PUSH1 0x80 SHL PUSH1 0x20 SWAP2 DUP3 ADD MSTORE DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT DUP2 DUP4 ADD MSTORE ADDRESS PUSH1 0x60 SWAP1 DUP2 SHL PUSH12 0xFFFFFFFFFFFFFFFFFFFFFFFF NOT SWAP1 DUP2 AND PUSH1 0x21 DUP5 ADD MSTORE PUSH1 0x35 DUP4 ADD SWAP6 SWAP1 SWAP6 MSTORE PUSH32 0x21C35DBE1B344A2488CF3321D6CE542F8E9F305544FF09E4993A62319A497C1F PUSH1 0x55 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP5 MLOAD DUP1 DUP5 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0x75 DUP4 ADD DUP6 MSTORE DUP1 MLOAD SWAP1 DUP5 ADD KECCAK256 PUSH2 0x35A5 PUSH1 0xF2 SHL PUSH1 0x95 DUP5 ADD MSTORE SWAP1 SHL SWAP1 SWAP4 AND PUSH1 0x97 DUP5 ADD MSTORE PUSH1 0x1 PUSH1 0xF8 SHL PUSH1 0xAB DUP5 ADD MSTORE DUP2 MLOAD PUSH1 0x8C DUP2 DUP6 SUB ADD DUP2 MSTORE PUSH1 0xAC SWAP1 SWAP4 ADD SWAP1 SWAP2 MSTORE DUP2 MLOAD SWAP2 ADD KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x14C JUMPI PUSH1 0x40 MLOAD PUSH4 0x118CDAA7 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x182 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH2 0x194 DUP2 PUSH2 0x4D1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4CA DUP4 DUP4 PUSH1 0x0 PUSH2 0x521 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP 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 PUSH2 0x52C DUP5 PUSH2 0x3A3 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE ISZERO PUSH2 0x586 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 0x437265617465333A2074617267657420616C7265616479206578697374730000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x182 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x10 DUP1 DUP3 MSTORE PUSH16 0x67363D3D37363D34F03D5260086018F3 PUSH1 0x80 SHL PUSH1 0x20 DUP4 ADD SWAP1 DUP2 MSTORE PUSH1 0x0 SWAP3 SWAP2 DUP8 SWAP2 DUP5 CREATE2 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x610 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 0x437265617465333A206572726F72206372656174696E6720666163746F727900 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x182 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x62B SWAP2 SWAP1 PUSH2 0x9BA 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 0x668 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 0x66D JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x687 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO ISZERO JUMPDEST PUSH2 0x6D3 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 0x437265617465333A206572726F72206372656174696E67207461726765740000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x182 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6EF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x708 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x720 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x738 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x754 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x772 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x77E DUP7 DUP3 DUP8 ADD PUSH2 0x6F6 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x7A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST 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 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x7CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7E8 JUMPI PUSH2 0x7E8 PUSH2 0x7A7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x817 JUMPI PUSH2 0x817 PUSH2 0x7A7 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP4 DUP3 ADD PUSH1 0x20 ADD DUP6 LT ISZERO PUSH2 0x82F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP6 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 SWAP2 DUP2 ADD PUSH1 0x20 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xC0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x867 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 CALLDATALOAD SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x885 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x891 DUP11 DUP3 DUP12 ADD PUSH2 0x6F6 JUMP JUMPDEST SWAP1 SWAP8 POP SWAP6 POP PUSH2 0x8A4 SWAP1 POP PUSH1 0x40 DUP10 ADD PUSH2 0x78B JUMP JUMPDEST SWAP4 POP PUSH2 0x8B2 PUSH1 0x60 DUP10 ADD PUSH2 0x78B JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x8CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x8DA DUP11 DUP3 DUP12 ADD PUSH2 0x7BD JUMP JUMPDEST SWAP3 POP POP PUSH1 0xA0 DUP9 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x8F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x903 DUP11 DUP3 DUP12 ADD PUSH2 0x7BD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x924 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4CA DUP3 PUSH2 0x78B JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x948 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x930 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x97E DUP2 PUSH1 0x60 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x92D JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x60 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP3 DUP5 DUP3 CALLDATACOPY PUSH1 0x0 DUP4 DUP3 ADD PUSH1 0x0 DUP2 MSTORE DUP4 MLOAD PUSH2 0x9B0 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x92D JUMP JUMPDEST ADD SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x9CC DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x92D JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP13 0xDB 0xEF DUP7 PUSH14 0x1835963049EE2872C3D1D037DC8B 0x4C 0xAF PREVRANDAO PUSH22 0xA6597E9EC122F6B3DD64736F6C634300081C00330000 ","sourceMap":"320:2596:29:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2753:160;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;409:32:51;;;391:51;;379:2;364:18;2753:160:29;;;;;;;2293:101:3;;;:::i;:::-;;2244:229:4;;;:::i;1638:85:3:-;1684:7;1710:6;-1:-1:-1;;;;;1710:6:3;1638:85;;2208:284:29;;;;;;:::i;:::-;;:::i;1232:99:4:-;1311:13;;-1:-1:-1;;;;;1311:13:4;1232:99;;1049:896:29;;;;;;:::i;:::-;;:::i;1649:178:4:-;;;;;;:::i;:::-;;:::i;2753:160:29:-;2837:7;2869:36;2899:4;2869:21;:36::i;:::-;2862:43;2753:160;-1:-1:-1;;2753:160:29:o;2293:101:3:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;2244:229:4:-;1311:13;;735:10:12;;-1:-1:-1;;;;;1311:13:4;2339:24;;2335:96;;2386:34;;-1:-1:-1;;;2386:34:4;;-1:-1:-1;;;;;409:32:51;;2386:34:4;;;391:51:51;364:18;;2386:34:4;;;;;;;;2335:96;2440:26;2459:6;2440:18;:26::i;:::-;2286:187;2244:229::o;2208:284:29:-;2372:7;1531:13:3;:11;:13::i;:::-;2404:80:29::1;2441:4;2433:13;;2461:12;;2404:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;2404:14:29::1;::::0;-1:-1:-1;;;2404:80:29:i:1;:::-;2397:87:::0;2208:284;-1:-1:-1;;;;2208:284:29:o;1049:896::-;1390:17;1531:13:3;:11;:13::i;:::-;1437:264:29::1;1474:4;1466:13;;1529:12;;1593:22;1638:18;1560:115;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;1560:115:29;;::::1;::::0;;;;;;;1494:196:::1;::::0;;;1560:115:::1;1494:196;;:::i;:::-;;;;;;;;;;;;;1437:14;:264::i;:::-;1425:276;;1713:13;1731:9;-1:-1:-1::0;;;;;1731:14:29::1;1827:12;1854:18;1746:137;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;1746:137:29;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;1746:137:29::1;-1:-1:-1::0;;;1746:137:29::1;::::0;;1731:153;::::1;::::0;1746:137;1731:153:::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1712:172;;;1903:8;1895:42;;;::::0;-1:-1:-1;;;1895:42:29;;5368:2:51;1895:42:29::1;::::0;::::1;5350:21:51::0;5407:2;5387:18;;;5380:30;-1:-1:-1;;;5426:18:51;;;5419:51;5487:18;;1895:42:29::1;5166:345:51::0;1895:42:29::1;1414:531;1049:896:::0;;;;;;;;;:::o;1649:178:4:-;1531:13:3;:11;:13::i;:::-;1738::4::1;:24:::0;;-1:-1:-1;;;;;1738:24:4;::::1;-1:-1:-1::0;;;;;;1738:24:4;;::::1;::::0;::::1;::::0;;;1802:7:::1;1684::3::0;1710:6;-1:-1:-1;;;;;1710:6:3;;1638:85;1802:7:4::1;-1:-1:-1::0;;;;;1777:43:4::1;;;;;;;;;;;1649:178:::0;:::o;5023:1163:26:-;2449:24;;;;;;;;;;;-1:-1:-1;;;2449:24:26;;;;;5237:216;;-1:-1:-1;;;;;;5237:216:26;;;5802:26:51;5330:4:26;5865:2:51;5861:15;;;-1:-1:-1;;5857:53:51;;;5844:11;;;5837:74;5927:12;;;5920:28;;;;2439:35:26;5964:12:51;;;;5957:28;;;;5237:216:26;;;;;;;;;;6001:12:51;;;5237:216:26;;5201:275;;;;;;-1:-1:-1;;;5653:457:26;;;6355:28:51;6416:15;;6412:53;;;6399:11;;;6392:74;-1:-1:-1;;;6482:12:51;;;6475:33;5653:457:26;;;;;;;;;6524:12:51;;;;5653:457:26;;;5617:516;;;;;;5023:1163::o;1796:162:3:-;1684:7;1710:6;-1:-1:-1;;;;;1710:6:3;735:10:12;1855:23:3;1851:101;;1901:40;;-1:-1:-1;;;1901:40:3;;735:10:12;1901:40:3;;;391:51:51;364:18;;1901:40:3;245:203:51;2011:153:4;2100:13;2093:20;;-1:-1:-1;;;;;;2093:20:4;;;2123:34;2148:8;2123:24;:34::i;2875:167:26:-;2971:7;3003:31;3010:5;3017:13;3032:1;3003:6;:31::i;:::-;2996:38;2875:167;-1:-1:-1;;;2875:167:26:o;2912:187:3:-;2985:16;3004:6;;-1:-1:-1;;;;;3020:17:3;;;-1:-1:-1;;;;;;3020:17:3;;;;;;3052:40;;3004:6;;;;;;;3052:40;;2985:16;3052:40;2975:124;2912:187;:::o;3525:1056:26:-;3636:17;3720:20;3734:5;3720:13;:20::i;:::-;3708:32;-1:-1:-1;;;;;;3755:21:26;;;:26;3751:72;;3783:40;;-1:-1:-1;;;3783:40:26;;6749:2:51;3783:40:26;;;6731:21:51;6788:2;6768:18;;;6761:30;6827:32;6807:18;;;6800:60;6877:18;;3783:40:26;6547:354:51;3751:72:26;3922:24;;;;;;;;;;;;;-1:-1:-1;;;3922:24:26;;;;;;3863:16;;3922:24;4264:5;;3863:16;4201:69;4189:81;-1:-1:-1;;;;;;4299:22:26;;4291:66;;;;-1:-1:-1;;;4291:66:26;;7108:2:51;4291:66:26;;;7090:21:51;7147:2;7127:18;;;7120:30;7186:33;7166:18;;;7159:61;7237:18;;4291:66:26;6906:355:51;4291:66:26;4419:13;4438:8;-1:-1:-1;;;;;4438:13:26;4459:6;4467:13;4438:43;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4418:63;;;4500:8;:38;;;;-1:-1:-1;;;;;;4512:21:26;;;:26;;4500:38;4492:81;;;;-1:-1:-1;;;4492:81:26;;7468:2:51;4492:81:26;;;7450:21:51;7507:2;7487:18;;;7480:30;7546:32;7526:18;;;7519:60;7596:18;;4492:81:26;7266:354:51;4492:81:26;3660:921;;;3525:1056;;;;;:::o;14:226:51:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;187:23:51;;14:226;-1:-1:-1;14:226:51:o;453:347::-;504:8;514:6;568:3;561:4;553:6;549:17;545:27;535:55;;586:1;583;576:12;535:55;-1:-1:-1;609:20:51;;652:18;641:30;;638:50;;;684:1;681;674:12;638:50;721:4;713:6;709:17;697:29;;773:3;766:4;757:6;749;745:19;741:30;738:39;735:59;;;790:1;787;780:12;735:59;453:347;;;;;:::o;805:523::-;884:6;892;900;953:2;941:9;932:7;928:23;924:32;921:52;;;969:1;966;959:12;921:52;1014:23;;;-1:-1:-1;1112:2:51;1097:18;;1084:32;1139:18;1128:30;;1125:50;;;1171:1;1168;1161:12;1125:50;1210:58;1260:7;1251:6;1240:9;1236:22;1210:58;:::i;:::-;805:523;;1287:8;;-1:-1:-1;1184:84:51;;-1:-1:-1;;;;805:523:51:o;1333:173::-;1401:20;;-1:-1:-1;;;;;1450:31:51;;1440:42;;1430:70;;1496:1;1493;1486:12;1430:70;1333:173;;;:::o;1511:127::-;1572:10;1567:3;1563:20;1560:1;1553:31;1603:4;1600:1;1593:15;1627:4;1624:1;1617:15;1643:726;1686:5;1739:3;1732:4;1724:6;1720:17;1716:27;1706:55;;1757:1;1754;1747:12;1706:55;1797:6;1784:20;1827:18;1819:6;1816:30;1813:56;;;1849:18;;:::i;:::-;1898:2;1892:9;1990:2;1952:17;;-1:-1:-1;;1948:31:51;;;1981:2;1944:40;1940:54;1928:67;;2025:18;2010:34;;2046:22;;;2007:62;2004:88;;;2072:18;;:::i;:::-;2108:2;2101:22;2132;;;2173:19;;;2194:4;2169:30;2166:39;-1:-1:-1;2163:59:51;;;2218:1;2215;2208:12;2163:59;2282:6;2275:4;2267:6;2263:17;2256:4;2248:6;2244:17;2231:58;2337:1;2309:19;;;2330:4;2305:30;2298:41;;;;2313:6;1643:726;-1:-1:-1;;;1643:726:51:o;2374:1106::-;2509:6;2517;2525;2533;2541;2549;2557;2610:3;2598:9;2589:7;2585:23;2581:33;2578:53;;;2627:1;2624;2617:12;2578:53;2672:23;;;-1:-1:-1;2770:2:51;2755:18;;2742:32;2797:18;2786:30;;2783:50;;;2829:1;2826;2819:12;2783:50;2868:58;2918:7;2909:6;2898:9;2894:22;2868:58;:::i;:::-;2945:8;;-1:-1:-1;2842:84:51;-1:-1:-1;2999:38:51;;-1:-1:-1;3033:2:51;3018:18;;2999:38;:::i;:::-;2989:48;;3056:38;3090:2;3079:9;3075:18;3056:38;:::i;:::-;3046:48;;3147:3;3136:9;3132:19;3119:33;3177:18;3167:8;3164:32;3161:52;;;3209:1;3206;3199:12;3161:52;3232;3276:7;3265:8;3254:9;3250:24;3232:52;:::i;:::-;3222:62;;;3337:3;3326:9;3322:19;3309:33;3367:18;3357:8;3354:32;3351:52;;;3399:1;3396;3389:12;3351:52;3422;3466:7;3455:8;3444:9;3440:24;3422:52;:::i;:::-;3412:62;;;2374:1106;;;;;;;;;;:::o;3485:186::-;3544:6;3597:2;3585:9;3576:7;3572:23;3568:32;3565:52;;;3613:1;3610;3603:12;3565:52;3636:29;3655:9;3636:29;:::i;3676:250::-;3761:1;3771:113;3785:6;3782:1;3779:13;3771:113;;;3861:11;;;3855:18;3842:11;;;3835:39;3807:2;3800:10;3771:113;;;-1:-1:-1;;3918:1:51;3900:16;;3893:27;3676:250::o;3931:493::-;4137:1;4133;4128:3;4124:11;4120:19;4112:6;4108:32;4097:9;4090:51;4177:2;4172;4161:9;4157:18;4150:30;4071:4;4209:6;4203:13;4252:6;4247:2;4236:9;4232:18;4225:34;4268:79;4340:6;4335:2;4324:9;4320:18;4315:2;4307:6;4303:15;4268:79;:::i;:::-;4408:2;4387:15;-1:-1:-1;;4383:29:51;4368:45;;;;4415:2;4364:54;;3931:493;-1:-1:-1;;;3931:493:51:o;4429:440::-;4658:6;4650;4645:3;4632:33;4614:3;4693:6;4688:3;4684:16;4720:1;4716:2;4709:13;4751:6;4745:13;4767:65;4825:6;4821:2;4814:4;4806:6;4802:17;4767:65;:::i;:::-;4848:15;;4429:440;-1:-1:-1;;;;;4429:440:51:o;4874:287::-;5003:3;5041:6;5035:13;5057:66;5116:6;5111:3;5104:4;5096:6;5092:17;5057:66;:::i;:::-;5139:16;;;;;4874:287;-1:-1:-1;;4874:287:51:o"},"methodIdentifiers":{"acceptOwnership()":"79ba5097","deployBridged(uint256,bytes)":"c7d4684f","deployCanonical(uint256,bytes,address,address,string,string)":"f02ef925","determineAddr(uint256)":"58ebadb0","owner()":"8da5cb5b","pendingOwner()":"e30c3978","renounceOwnership()":"715018a6","transferOwnership(address)":"f2fde38b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"acceptOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"salt\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"creationCode\",\"type\":\"bytes\"}],\"name\":\"deployBridged\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"salt\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"creationCode\",\"type\":\"bytes\"},{\"internalType\":\"address\",\"name\":\"evmRadonRequestFactory\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"evmAuthority\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"witCustodianBech32\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"witUnwrapperBech32\",\"type\":\"string\"}],\"name\":\"deployCanonical\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"_deployed\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"salt\",\"type\":\"uint256\"}],\"name\":\"determineAddr\",\"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\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"OwnableInvalidOwner(address)\":[{\"details\":\"The owner is not a valid owner account. (eg. `address(0)`)\"}],\"OwnableUnauthorizedAccount(address)\":[{\"details\":\"The caller account is not authorized to perform an operation.\"}]},\"kind\":\"dev\",\"methods\":{\"acceptOwnership()\":{\"details\":\"The new owner accepts the ownership transfer.\"},\"deployBridged(uint256,bytes)\":{\"params\":{\"creationCode\":\"Creation bytecode of some bridged implementation of the Wrapped/WIT token. \",\"salt\":\"Salt that determines the address of the new contract.\"}},\"deployCanonical(uint256,bytes,address,address,string,string)\":{\"params\":{\"creationCode\":\"Creation bytecode of the canonical implementation of the Wrapped/WIT token.\",\"evmAuthority\":\"EVM address that will be granted permissions for altering authoritative settings.\",\"evmRadonRequestFactory\":\"Radon Request Factory artifact address (bound to the Wit/Oracle bridge contract).\",\"salt\":\"Salt that determines the address of the new contract.\",\"witCustodianBech32\":\"Immutable WIT/ Custodian cold wallet address. \",\"witUnwrapperBech32\":\"WIT/ Custodian hot wallet address. \"}},\"determineAddr(uint256)\":{\"params\":{\"salt\":\"Salt that determines the address of the new contract.\"},\"returns\":{\"_0\":\"addr of the deployed contract, reverts on error\"}},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"details\":\"Returns the address of the pending owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. Can only be called by the current owner. Setting `newOwner` to the zero address is allowed; this can be used to cancel an initiated ownership transfer.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"deployBridged(uint256,bytes)\":{\"notice\":\"Deploy immutable bridged version of the WrappedWIT token.\"},\"deployCanonical(uint256,bytes,address,address,string,string)\":{\"notice\":\"Deploy canonical version of the WrappedWIT token.\"},\"determineAddr(uint256)\":{\"notice\":\"Computes the resulting address of a contract deployed using address(this) and the given `salt`.\"}},\"notice\":\"CREATE3 (EIP-3171) contract factory for deploying both canonical and bridged versions of the Wrapped/WIT ERC-20 token.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/WrappedWITDeployer.sol\":\"WrappedWITDeployer\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6\",\"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a\"]},\"@openzeppelin/contracts/access/Ownable2Step.sol\":{\"keccak256\":\"0xdcad8898fda432696597752e8ec361b87d85c82cb258115427af006dacf7128c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e2c9d517f0c136d54bd00cd57959d25681d4d6273f5bbbc263afe228303772f0\",\"dweb:/ipfs/QmReNFjXBiufByiAAzfSQ2SM5r3qeUErn46BmN3yVRvrek\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"contracts/Create3.sol\":{\"keccak256\":\"0x84eff86643b11ff794e21360893fb774a30062307bc998333a9ad303bf17854f\",\"license\":\"AGPL-3.0-only\",\"urls\":[\"bzz-raw://0f8671195c6d456d4281dd92588357824e08b089baa52489917e0f7d4898bb57\",\"dweb:/ipfs/QmcnVbxbe6qzWEcrgC3ogGZFejAsttEewhWDMtjJSE6LTA\"]},\"contracts/WrappedWITDeployer.sol\":{\"keccak256\":\"0xe4f7c0a72cc3af7bc5c7f95e0a0505349b3927652d682f1368e76406a4858142\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1d47039abf77df61fec73d209866fc699d72e06c820b412c4105549918c70496\",\"dweb:/ipfs/QmR4KAebmQTf89GMcbfXxs6EaAwXjvGdZQKAjpPzaZwXLB\"]}},\"version\":1}"}},"contracts/WrappedWITLib.sol":{"WrappedWITLib":{"abi":[{"inputs":[],"name":"EmptyBuffer","type":"error"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"range","type":"uint256"}],"name":"IndexOutOfBounds","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"InvalidLengthEncoding","type":"error"},{"inputs":[{"internalType":"uint256","name":"read","type":"uint256"},{"internalType":"uint256","name":"expected","type":"uint256"}],"name":"UnexpectedMajorType","type":"error"},{"inputs":[{"internalType":"uint256","name":"unexpected","type":"uint256"}],"name":"UnsupportedMajorType","type":"error"},{"inputs":[{"components":[{"internalType":"enum Witnet.ResultStatus","name":"status","type":"Witnet.ResultStatus"},{"internalType":"enum Witnet.RadonDataTypes","name":"dataType","type":"Witnet.RadonDataTypes"},{"internalType":"Witnet.TransactionHash","name":"drTxHash","type":"bytes32"},{"internalType":"Witnet.Timestamp","name":"timestamp","type":"uint64"},{"components":[{"components":[{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"cursor","type":"uint256"}],"internalType":"struct WitnetBuffer.Buffer","name":"buffer","type":"tuple"},{"internalType":"uint8","name":"initialByte","type":"uint8"},{"internalType":"uint8","name":"majorType","type":"uint8"},{"internalType":"uint8","name":"additionalInformation","type":"uint8"},{"internalType":"uint64","name":"len","type":"uint64"},{"internalType":"uint64","name":"tag","type":"uint64"}],"internalType":"struct WitnetCBOR.CBOR","name":"value","type":"tuple"}],"internalType":"struct Witnet.DataResult","name":"witOracleProofOfReserve","type":"tuple"}],"name":"parseWitOracleProofOfReserve","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"6125d1610039600b82828239805160001a607314602c57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361061004b5760003560e01c80633752120b146100505780635d933eb71461008357806367c4440f146100b4575b600080fd5b81801561005c57600080fd5b5061007061006b366004611dd2565b6100df565b6040519081526020015b60405180910390f35b81801561008f57600080fd5b506100a361009e366004611e13565b61037c565b60405161007a959493929190611edf565b6100c76100c236600461213f565b610757565b6040516001600160401b03909116815260200161007a565b600081815260008051602061255c8339815191526020526040902054600019811461037557604080516001808252818301909252600091816020015b606081526020019060019003908161011b57905050905061013b8361087d565b8160008151811061014e5761014e6121f8565b60200260200101819052506000846001600160a01b031663f0e271bc8361018060008051602061257c83398151915290565b6004016040518363ffffffff1660e01b81526004016101a092919061220e565b6020604051808303816000875af11580156101bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101e39190612364565b9050856001600160a01b0316633b3195b73483604051806060016040528061010061ffff16815260200161022260008051602061257c83398151915290565b6003015461ffff90811682527f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58fc546001600160401b036401000000008204811660209485015260408051808201825230815262ffffff600160601b909404841681870190815282516001600160e01b031960e08d901b16815260048101999099528751861660248a015287870151909516604489015295810151909116606487015293516001600160a01b0316608486015290511660a4840152905160c480840193829003018185885af11580156102fe573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906103239190612364565b600085815260008051602061255c833981519152602090815260408083208490558383527f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c59009091529020859055925050505b9392505050565b60008381527f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c5900602052604081205490606090819080846103f65760405162461bcd60e51b815260206004820152601060248201526f1a5b9d985b1a59081c5d595c9e481a5960821b60448201526064015b60405180910390fd5b600085815260008051602061255c83398151915260205260409020546001016104615760405162461bcd60e51b815260206004820152601a60248201527f7769742f7772617020747820616c7265616479206d696e74656400000000000060448201526064016103ed565b600061046f8789018961213f565b90506000815160ff8111156104865761048661237d565b146104d35760405162461bcd60e51b815260206004820152601860248201527f717565727920736f6c7665642077697468206572726f7273000000000000000060448201526064016103ed565b6001816020015160138111156104eb576104eb61237d565b1461052f5760405162461bcd60e51b81526020600482015260146024820152731a5b9d985b1a59081c5d595c9e481c995cdd5b1d60621b60448201526064016103ed565b600086815260008051602061255c8339815191526020526040812060001990556105588261098f565b905061057d81600081518110610570576105706121f8565b6020026020010151610a65565b6001600160401b03166001146105d55760405162461bcd60e51b815260206004820152601860248201527f756e66696e616c697a656420717565727920726573756c74000000000000000060448201526064016103ed565b6105f8816002815181106105eb576105eb6121f8565b6020026020010151610ac1565b9550610610816003815181106105eb576105eb6121f8565b945061063861063361062e836001815181106105eb576105eb6121f8565b610bc7565b610cb5565b9350600061065282600481518110610570576105706121f8565b905061066a82600581518110610570576105706121f8565b935060008051602061257c8339815191526001018054600160801b90046001600160401b031690601061069c836123a9565b91906101000a8154816001600160401b0302191690836001600160401b03160217905550506106f36106d960008051602061257c83398151915290565b546001600160401b0383811691600160c01b900416610cc9565b15610749578360008051602061257c83398151915260010180546000906107249084906001600160401b03166123d4565b92506101000a8154816001600160401b0302191690836001600160401b031602179055505b505050939792965093509350565b6000606081835160ff81111561076f5761076f61237d565b036107805761077d83610cdf565b90505b6000835160ff8111156107955761079561237d565b1480156107ce57506107ce60008051602061257c8339815191525460608501516001600160401b0390811691600160c01b900416610cc9565b80156107db575080516003145b6108185760405162461bcd60e51b815260206004820152600e60248201526d1a5b9d985b1a59081c995c1bdc9d60921b60448201526064016103ed565b8060028151811061082b5761082b6121f8565b602002602001015181600181518110610846576108466121f8565b602002602001015182600081518110610861576108616121f8565b602002602001015161087391906123d4565b61037591906123d4565b6040805181815260608181018352916000919060208201818036833701905050905060005b81518160ff161015610988576108ea6004856108bf600285612409565b60ff16602081106108d2576108d26121f8565b1a60f81b6001600160f81b031916901c60f81c610d72565b82826108f58161242b565b935060ff168151811061090a5761090a6121f8565b60200101906001600160f81b031916908160001a90535061094c84610930600284612409565b60ff1660208110610943576109436121f8565b1a600f16610d72565b82826109578161242b565b935060ff168151811061096c5761096c6121f8565b60200101906001600160f81b031916908160001a9053506108a2565b5092915050565b606081600161099d82610da6565b1580156109cf57508060138111156109b7576109b761237d565b826020015160138111156109cd576109cd61237d565b145b610a155760405162461bcd60e51b815260206004820152601760248201527663626f723a2063616e6e6f74206665746368206461746160481b60448201526064016103ed565b610a228460800151610db5565b9250610a318260800151610f65565b82602001906013811115610a4757610a4761237d565b90816013811115610a5a57610a5a61237d565b815250505050919050565b60008160008060ff16826040015160ff1614610aa557604080830151905161800560e51b815260ff918216600482015290821660248201526044016103ed565b610ab78460000151856060015161102d565b92505b5050919050565b60608160038060ff16826040015160ff1614610b0157604080830151905161800560e51b815260ff918216600482015290821660248201526044016103ed565b610b138460000151856060015161102d565b6001600160401b03166080850181905267fffffffffffffffe1901610bb05760005b80610baa576000610b4e866000015187604001516110f5565b90506001600160401b038082161015610b9f5784610b78610b70600484612441565b88519061119b565b604051602001610b8992919061246f565b6040516020818303038152906040529450610ba4565b600191505b50610b35565b50610aba565b60808401518451610bc09161119b565b9250610aba565b60606002825181610bda57610bda6123f3565b046001600160401b03811115610bf257610bf2611f36565b6040519080825280601f01601f191660200182016040528015610c1c576020820181803683370190505b50905060005b8151811015610caf576000610c52848360020281518110610c4557610c456121f8565b016020015160f81c611322565b90506000610c71858460020260010181518110610c4557610c456121f8565b905080826010020160f81b848481518110610c8e57610c8e6121f8565b60200101906001600160f81b031916908160001a9053505050600101610c22565b50919050565b6000610cc0826113e7565b60601c92915050565b6001600160401b03808216908316115b92915050565b6060816001610ced82610da6565b158015610d1f5750806013811115610d0757610d0761237d565b82602001516013811115610d1d57610d1d61237d565b145b610d655760405162461bcd60e51b815260206004820152601760248201527663626f723a2063616e6e6f74206665746368206461746160481b60448201526064016103ed565b610a2284608001516113f4565b6000600a8260ff1610610d9257610d8a82605761249e565b60f81b610cd9565b610d9d82603061249e565b60f81b92915050565b6000610cd9826000015161153b565b60608160048060ff16826040015160ff1614610df557604080830151905161800560e51b815260ff918216600482015290821660248201526044016103ed565b6000610e098560000151866060015161102d565b9050610e168160016123d4565b6001600160401b03166001600160401b03811115610e3657610e36611f36565b604051908082528060200260200182016040528015610e6f57816020015b610e5c611d73565b815260200190600190039081610e545790505b50935060005b816001600160401b0316811015610f3557610e8f86611573565b9550610e9a8661159b565b858281518110610eac57610eac6121f8565b6020026020010181905250600460ff16866040015160ff1603610f05576000610ed487610db5565b90508060018251610ee591906124b7565b81518110610ef557610ef56121f8565b6020026020010151965050610f2d565b600560ff16866040015160ff1603610f22576000610ed487611633565b610f2b8661181d565b505b600101610e75565b508484826001600160401b031681518110610f5257610f526121f8565b6020026020010181905250505050919050565b6000610f7a8251805151602090910151101590565b611028576006826040015160ff1611610fc25760408201516502020183808360d11b9060ff1660078110610fb057610fb06121f8565b1a6013811115610cd957610cd961237d565b816040015160ff1660070361102857816060015160ff1660141480610fee5750816060015160ff166015145b15610ffb57506002919050565b6019826060015160ff161015801561101b5750601b826060015160ff1611155b1561102857506005919050565b919050565b600060188260ff161015611045575060ff8116610cd9565b8160ff1660180361106357611059836119e2565b60ff169050610cd9565b8160ff166019036110825761107783611a44565b61ffff169050610cd9565b8160ff16601a036110a35761109683611ab0565b63ffffffff169050610cd9565b8160ff16601b036110be576110b783611b0f565b9050610cd9565b8160ff16601f036110d757506001600160401b03610cd9565b604051636d785b1360e01b815260ff831660048201526024016103ed565b600080611101846119e2565b90508060ff1660ff0361111e576001600160401b03915050610cd9565b61112b8482601f1661102d565b91506001600160401b038083161061116157604051636d785b1360e01b81526001600160401b03831660048201526024016103ed565b60ff83166007600583901c16146109885760405161800560e51b81526007600583901c16600482015260ff841660248201526044016103ed565b6060816001600160401b03166001600160401b038111156111be576111be611f36565b6040519080825280601f01601f1916602001820160405280156111e8576020820181803683370190505b50905060005b826001600160401b0316816001600160401b03161015611319576000611213856119e2565b905060808116156112da5760e08160ff16101561124f57611233856119e2565b603f16600682601f1660ff16901b1790506001840393506112da565b60f08160ff16101561129457611264856119e2565b603f166006611272876119e2565b603f1660ff16901b600c83600f1660ff16901b171790506002840393506112da565b61129d856119e2565b603f1660066112ab876119e2565b603f16901b600c6112bb886119e2565b603f1660ff16901b601284600f1660ff16901b17171790506003840393505b8060f81b83836001600160401b0316815181106112f9576112f96121f8565b60200101906001600160f81b031916908160001a905350506001016111ee565b50908152919050565b600060308260ff161015801561133c575060398260ff1611155b1561134c57610cd96030836124ca565b60418260ff1610158015611364575060468260ff1611155b1561137f576113746041836124ca565b610cd990600a61249e565b60618260ff1610158015611397575060668260ff1611155b156113a7576113746061836124ca565b60405162461bcd60e51b815260206004820152601560248201527424b73b30b634b2103432bc1031b430b930b1ba32b960591b60448201526064016103ed565b6000610cd9826014611b6e565b60608160048060ff16826040015160ff161461143457604080830151905161800560e51b815260ff918216600482015290821660248201526044016103ed565b60006114488560000151866060015161102d565b90506001600160401b03808216101561150f57806001600160401b03166001600160401b0381111561147c5761147c611f36565b6040519080825280602002602001820160405280156114a5578160200160208202803683370190505b50935060005b816001600160401b03168110156115095760006114cb8760000151611be6565b90506114d681610a65565b8683815181106114e8576114e86121f8565b6001600160401b0390921660209283029190910190910152506001016114ab565b50611533565b604051636d785b1360e01b81526001600160401b03821660048201526024016103ed565b505050919050565b600060f08260ff8111156115515761155161237d565b1480610cd9575060f18260ff81111561156c5761156c61237d565b1492915050565b61157b611d73565b81518051516020909101511015611597578151610cd990611be6565b5090565b6115a3611d73565b6040805160c081018083528451610100830184526060909152600060e0830152825180840190935280518352602090810151908301529081908152602001836020015160ff168152602001836040015160ff168152602001836060015160ff16815260200183608001516001600160401b031681526020018360a001516001600160401b03168152509050919050565b60608160058060ff16826040015160ff161461167357604080830151905161800560e51b815260ff918216600482015290821660248201526044016103ed565b60006116878560000151866060015161102d565b6116929060026124e3565b905061169f8160016123d4565b6001600160401b03166001600160401b038111156116bf576116bf611f36565b6040519080825280602002602001820160405280156116f857816020015b6116e5611d73565b8152602001906001900390816116dd5790505b50935060005b816001600160401b0316811015610f355761171886611573565b95506117238661159b565b858281518110611735576117356121f8565b602090810291909101015261174b600282612505565b1580156117605750604086015160ff16600314155b1561178e57604080870151905161800560e51b815260ff9091166004820152600360248201526044016103ed565b604086015160ff16600414806117ab5750604086015160ff166005145b1561180a57604086015160009060ff166004146117d0576117cb87611633565b6117d9565b6117d987610db5565b905080600182516117ea91906124b7565b815181106117fa576117fa6121f8565b6020026020010151965050611815565b6118138661181d565b505b6001016116fe565b611825611d73565b604082015160ff1615806118405750604082015160ff166001145b806118795750604082015160ff16600714801561186557506019826060015160ff1610155b80156118795750601b826060015160ff1611155b156118ac5761188782611d06565b6001600160401b031682600001516020018181516118a59190612519565b9052505090565b604082015160ff16600314806118c95750604082015160ff166002145b1561190d5760006118e28360000151846060015161102d565b9050806001600160401b031683600001516020018181516119039190612519565b9052506115979050565b604082015160ff166004148061192a5750604082015160ff166005145b15611953576119418260000151836060015161102d565b6001600160401b031660808301525090565b604082015160ff1660071415806119855750816060015160ff166014141580156119855750816060015160ff16601514155b156115975760405162461bcd60e51b815260206004820152602760248201527f5769746e657443424f522e736b69703a20756e737570706f72746564206d616a6044820152666f72207479706560c81b60648201526084016103ed565b6000816020015182600001515180821115611a1a576040516363a056dd60e01b815260048101839052602481018290526044016103ed565b8351602085018051808301600101519550908190611a378261252c565b8152505050505050919050565b600081602001516002611a579190612519565b82515180821115611a85576040516363a056dd60e01b815260048101839052602481018290526044016103ed565b8351602085018051600281840181015196509091611aa38284612519565b9052509395945050505050565b600081602001516004611ac39190612519565b82515180821115611af1576040516363a056dd60e01b815260048101839052602481018290526044016103ed565b8351602085018051600481840181015196509091611aa38284612519565b600081602001516008611b229190612519565b82515180821115611b50576040516363a056dd60e01b815260048101839052602481018290526044016103ed565b8351602085018051600881840181015196509091611aa38284612519565b600060208260ff161115611b8457611b84612545565b60008260ff16845111611b98578351611b9d565b8260ff165b905060005b81811015611bde5780600802858281518110611bc057611bc06121f8565b01602001516001600160f81b031916901c9290921791600101611ba2565b505092915050565b611bee611d73565b8151518290600003611c13576040516309036d4760e21b815260040160405180910390fd5b600060ff816001600160401b038160015b8015611c9657611c33896119e2565b955081611c3f8161252c565b6007600589901c169650601f881695509250506005198501611c8e576020890151611c6a8a8661102d565b9350808a60200151611c7c91906124b7565b611c869084612519565b925050611c24565b506000611c24565b600760ff86161115611cc05760405163bd2ac87960e01b815260ff861660048201526024016103ed565b506040805160c08101825298895260ff95861660208a015293851693880193909352921660608601526001600160401b0390811660808601521660a08401525090919050565b60006018826060015160ff161015611d2057506000919050565b601c826060015160ff161015611d4f5760188260600151611d4191906124ca565b60ff166001901b9050919050565b6060820151604051636d785b1360e01b815260ff90911660048201526024016103ed565b604080516101008101909152606060c08201908152600060e08301528190815260006020820181905260408201819052606082018190526080820181905260a09091015290565b6001600160a01b0381168114611dcf57600080fd5b50565b600080600060608486031215611de757600080fd5b8335611df281611dba565b92506020840135611e0281611dba565b929592945050506040919091013590565b600080600060408486031215611e2857600080fd5b8335925060208401356001600160401b03811115611e4557600080fd5b8401601f81018613611e5657600080fd5b80356001600160401b03811115611e6c57600080fd5b866020828401011115611e7e57600080fd5b939660209190910195509293505050565b60005b83811015611eaa578181015183820152602001611e92565b50506000910152565b60008151808452611ecb816020860160208601611e8f565b601f01601f19169290920160200192915050565b85815260a060208201526000611ef860a0830187611eb3565b8281036040840152611f0a8187611eb3565b6001600160a01b0395909516606084015250506001600160401b03919091166080909101529392505050565b634e487b7160e01b600052604160045260246000fd5b60405160c081016001600160401b0381118282101715611f6e57611f6e611f36565b60405290565b604080519081016001600160401b0381118282101715611f6e57611f6e611f36565b60405160a081016001600160401b0381118282101715611f6e57611f6e611f36565b604051601f8201601f191681016001600160401b0381118282101715611fe057611fe0611f36565b604052919050565b80356001600160401b038116811461102857600080fd5b803560ff8116811461102857600080fd5b600060c0828403121561202257600080fd5b61202a611f4c565b905081356001600160401b0381111561204257600080fd5b82016040818503121561205457600080fd5b61205c611f74565b81356001600160401b0381111561207257600080fd5b8201601f8101861361208357600080fd5b80356001600160401b0381111561209c5761209c611f36565b6120af601f8201601f1916602001611fb8565b8181528760208385010111156120c457600080fd5b8160208401602083013760006020928201830152835292830135828401525082526120f0908301611fff565b602082015261210160408301611fff565b604082015261211260608301611fff565b606082015261212360808301611fe8565b608082015261213460a08301611fe8565b60a082015292915050565b60006020828403121561215157600080fd5b81356001600160401b0381111561216757600080fd5b820160a0818503121561217957600080fd5b612181611f96565b8135610100811061219157600080fd5b81526020820135601481106121a557600080fd5b6020820152604082810135908201526121c060608301611fe8565b606082015260808201356001600160401b038111156121de57600080fd5b6121ea86828501612010565b608083015250949350505050565b634e487b7160e01b600052603260045260246000fd5b6000604082016040835280855180835260608501915060608160051b86010192506020870160005b8281101561226757605f19878603018452612252858351611eb3565b94506020938401939190910190600101612236565b50505050828103602084015280845480835260208301915060208160051b84010186600052602060002060005b8381101561235657858303601f190185528154600090600181811c908216806122be57607f821691505b6020821081036122dc57634e487b7160e01b84526022600452602484fd5b818752602087018180156122f7576001811461230d5761233b565b60ff198516825283151560051b8201955061233b565b60008881526020902060005b8581101561233557815484820152600190910190602001612319565b83019650505b50505060209790970196509093505060019182019101612294565b509098975050505050505050565b60006020828403121561237657600080fd5b5051919050565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001600160401b0382166001600160401b0381036123cb576123cb612393565b60010192915050565b6001600160401b038181168382160190811115610cd957610cd9612393565b634e487b7160e01b600052601260045260246000fd5b600060ff83168061241c5761241c6123f3565b8060ff84160491505092915050565b600060ff821660ff81036123cb576123cb612393565b60006001600160401b0383168061245a5761245a6123f3565b806001600160401b0384160491505092915050565b60008351612481818460208801611e8f565b835190830190612495818360208801611e8f565b01949350505050565b60ff8181168382160190811115610cd957610cd9612393565b81810381811115610cd957610cd9612393565b60ff8281168282160390811115610cd957610cd9612393565b6001600160401b03818116838216029081169081811461098857610988612393565b600082612514576125146123f3565b500690565b80820180821115610cd957610cd9612393565b60006001820161253e5761253e612393565b5060010190565b634e487b7160e01b600052600160045260246000fdfe6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58ff6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58f9a264697066735822122004df0e6774b6ee639155dac5be438aebd5868e3ab77761428d3aefa6c59a6be964736f6c634300081c0033","opcodes":"PUSH2 0x25D1 PUSH2 0x39 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2C 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 PUSH2 0x4B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3752120B EQ PUSH2 0x50 JUMPI DUP1 PUSH4 0x5D933EB7 EQ PUSH2 0x83 JUMPI DUP1 PUSH4 0x67C4440F EQ PUSH2 0xB4 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x70 PUSH2 0x6B CALLDATASIZE PUSH1 0x4 PUSH2 0x1DD2 JUMP JUMPDEST PUSH2 0xDF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x8F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xA3 PUSH2 0x9E CALLDATASIZE PUSH1 0x4 PUSH2 0x1E13 JUMP JUMPDEST PUSH2 0x37C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7A SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1EDF JUMP JUMPDEST PUSH2 0xC7 PUSH2 0xC2 CALLDATASIZE PUSH1 0x4 PUSH2 0x213F JUMP JUMPDEST PUSH2 0x757 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x7A JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x255C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x0 NOT DUP2 EQ PUSH2 0x375 JUMPI PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x11B JUMPI SWAP1 POP POP SWAP1 POP PUSH2 0x13B DUP4 PUSH2 0x87D JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x14E JUMPI PUSH2 0x14E PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH1 0x0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xF0E271BC DUP4 PUSH2 0x180 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x257C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A0 SWAP3 SWAP2 SWAP1 PUSH2 0x220E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1BF 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 0x1E3 SWAP2 SWAP1 PUSH2 0x2364 JUMP JUMPDEST SWAP1 POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3B3195B7 CALLVALUE DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x100 PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x222 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x257C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x3 ADD SLOAD PUSH2 0xFFFF SWAP1 DUP2 AND DUP3 MSTORE PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58FC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 SWAP5 DUP6 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE ADDRESS DUP2 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP5 DIV DUP5 AND DUP2 DUP8 ADD SWAP1 DUP2 MSTORE DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP14 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP10 SWAP1 SWAP10 MSTORE DUP8 MLOAD DUP7 AND PUSH1 0x24 DUP11 ADD MSTORE DUP8 DUP8 ADD MLOAD SWAP1 SWAP6 AND PUSH1 0x44 DUP10 ADD MSTORE SWAP6 DUP2 ADD MLOAD SWAP1 SWAP2 AND PUSH1 0x64 DUP8 ADD MSTORE SWAP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x84 DUP7 ADD MSTORE SWAP1 MLOAD AND PUSH1 0xA4 DUP5 ADD MSTORE SWAP1 MLOAD PUSH1 0xC4 DUP1 DUP5 ADD SWAP4 DUP3 SWAP1 SUB ADD DUP2 DUP6 DUP9 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2FE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP 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 0x323 SWAP2 SWAP1 PUSH2 0x2364 JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x255C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP5 SWAP1 SSTORE DUP4 DUP4 MSTORE PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C5900 SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP3 POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C5900 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 PUSH1 0x60 SWAP1 DUP2 SWAP1 DUP1 DUP5 PUSH2 0x3F6 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 PUSH16 0x1A5B9D985B1A59081C5D595C9E481A59 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x255C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 ADD PUSH2 0x461 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 0x7769742F7772617020747820616C7265616479206D696E746564000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 PUSH2 0x46F DUP8 DUP10 ADD DUP10 PUSH2 0x213F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x486 JUMPI PUSH2 0x486 PUSH2 0x237D JUMP JUMPDEST EQ PUSH2 0x4D3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x717565727920736F6C7665642077697468206572726F72730000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x4EB JUMPI PUSH2 0x4EB PUSH2 0x237D JUMP JUMPDEST EQ PUSH2 0x52F 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 PUSH20 0x1A5B9D985B1A59081C5D595C9E481C995CDD5B1D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x255C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x0 NOT SWAP1 SSTORE PUSH2 0x558 DUP3 PUSH2 0x98F JUMP JUMPDEST SWAP1 POP PUSH2 0x57D DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x570 JUMPI PUSH2 0x570 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xA65 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ PUSH2 0x5D5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x756E66696E616C697A656420717565727920726573756C740000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH2 0x5F8 DUP2 PUSH1 0x2 DUP2 MLOAD DUP2 LT PUSH2 0x5EB JUMPI PUSH2 0x5EB PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xAC1 JUMP JUMPDEST SWAP6 POP PUSH2 0x610 DUP2 PUSH1 0x3 DUP2 MLOAD DUP2 LT PUSH2 0x5EB JUMPI PUSH2 0x5EB PUSH2 0x21F8 JUMP JUMPDEST SWAP5 POP PUSH2 0x638 PUSH2 0x633 PUSH2 0x62E DUP4 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x5EB JUMPI PUSH2 0x5EB PUSH2 0x21F8 JUMP JUMPDEST PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0xCB5 JUMP JUMPDEST SWAP4 POP PUSH1 0x0 PUSH2 0x652 DUP3 PUSH1 0x4 DUP2 MLOAD DUP2 LT PUSH2 0x570 JUMPI PUSH2 0x570 PUSH2 0x21F8 JUMP JUMPDEST SWAP1 POP PUSH2 0x66A DUP3 PUSH1 0x5 DUP2 MLOAD DUP2 LT PUSH2 0x570 JUMPI PUSH2 0x570 PUSH2 0x21F8 JUMP JUMPDEST SWAP4 POP PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x257C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x1 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP1 PUSH1 0x10 PUSH2 0x69C DUP4 PUSH2 0x23A9 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND MUL OR SWAP1 SSTORE POP POP PUSH2 0x6F3 PUSH2 0x6D9 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x257C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 DUP2 AND SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV AND PUSH2 0xCC9 JUMP JUMPDEST ISZERO PUSH2 0x749 JUMPI DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x257C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x1 ADD DUP1 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x724 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH2 0x23D4 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND MUL OR SWAP1 SSTORE POP JUMPDEST POP POP POP SWAP4 SWAP8 SWAP3 SWAP7 POP SWAP4 POP SWAP4 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP2 DUP4 MLOAD PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x76F JUMPI PUSH2 0x76F PUSH2 0x237D JUMP JUMPDEST SUB PUSH2 0x780 JUMPI PUSH2 0x77D DUP4 PUSH2 0xCDF JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x795 JUMPI PUSH2 0x795 PUSH2 0x237D JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x7CE JUMPI POP PUSH2 0x7CE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x257C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SLOAD PUSH1 0x60 DUP6 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV AND PUSH2 0xCC9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x7DB JUMPI POP DUP1 MLOAD PUSH1 0x3 EQ JUMPDEST PUSH2 0x818 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x1A5B9D985B1A59081C995C1BDC9D PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST DUP1 PUSH1 0x2 DUP2 MLOAD DUP2 LT PUSH2 0x82B JUMPI PUSH2 0x82B PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x846 JUMPI PUSH2 0x846 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x861 JUMPI PUSH2 0x861 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x873 SWAP2 SWAP1 PUSH2 0x23D4 JUMP JUMPDEST PUSH2 0x375 SWAP2 SWAP1 PUSH2 0x23D4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP2 DUP2 MSTORE PUSH1 0x60 DUP2 DUP2 ADD DUP4 MSTORE SWAP2 PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x988 JUMPI PUSH2 0x8EA PUSH1 0x4 DUP6 PUSH2 0x8BF PUSH1 0x2 DUP6 PUSH2 0x2409 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x20 DUP2 LT PUSH2 0x8D2 JUMPI PUSH2 0x8D2 PUSH2 0x21F8 JUMP JUMPDEST BYTE PUSH1 0xF8 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 SHR PUSH1 0xF8 SHR PUSH2 0xD72 JUMP JUMPDEST DUP3 DUP3 PUSH2 0x8F5 DUP2 PUSH2 0x242B JUMP JUMPDEST SWAP4 POP PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x90A JUMPI PUSH2 0x90A PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x94C DUP5 PUSH2 0x930 PUSH1 0x2 DUP5 PUSH2 0x2409 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x20 DUP2 LT PUSH2 0x943 JUMPI PUSH2 0x943 PUSH2 0x21F8 JUMP JUMPDEST BYTE PUSH1 0xF AND PUSH2 0xD72 JUMP JUMPDEST DUP3 DUP3 PUSH2 0x957 DUP2 PUSH2 0x242B JUMP JUMPDEST SWAP4 POP PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x96C JUMPI PUSH2 0x96C PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x8A2 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x1 PUSH2 0x99D DUP3 PUSH2 0xDA6 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x9CF JUMPI POP DUP1 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x9B7 JUMPI PUSH2 0x9B7 PUSH2 0x237D JUMP JUMPDEST DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x9CD JUMPI PUSH2 0x9CD PUSH2 0x237D JUMP JUMPDEST EQ JUMPDEST PUSH2 0xA15 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 PUSH23 0x63626F723A2063616E6E6F742066657463682064617461 PUSH1 0x48 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH2 0xA22 DUP5 PUSH1 0x80 ADD MLOAD PUSH2 0xDB5 JUMP JUMPDEST SWAP3 POP PUSH2 0xA31 DUP3 PUSH1 0x80 ADD MLOAD PUSH2 0xF65 JUMP JUMPDEST DUP3 PUSH1 0x20 ADD SWAP1 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xA47 JUMPI PUSH2 0xA47 PUSH2 0x237D JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xA5A JUMPI PUSH2 0xA5A PUSH2 0x237D JUMP JUMPDEST DUP2 MSTORE POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0xAA5 JUMPI PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 MLOAD PUSH2 0x8005 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0xFF SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH2 0xAB7 DUP5 PUSH1 0x0 ADD MLOAD DUP6 PUSH1 0x60 ADD MLOAD PUSH2 0x102D JUMP JUMPDEST SWAP3 POP JUMPDEST POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x3 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0xB01 JUMPI PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 MLOAD PUSH2 0x8005 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0xFF SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH2 0xB13 DUP5 PUSH1 0x0 ADD MLOAD DUP6 PUSH1 0x60 ADD MLOAD PUSH2 0x102D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x80 DUP6 ADD DUP2 SWAP1 MSTORE PUSH8 0xFFFFFFFFFFFFFFFE NOT ADD PUSH2 0xBB0 JUMPI PUSH1 0x0 JUMPDEST DUP1 PUSH2 0xBAA JUMPI PUSH1 0x0 PUSH2 0xB4E DUP7 PUSH1 0x0 ADD MLOAD DUP8 PUSH1 0x40 ADD MLOAD PUSH2 0x10F5 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 AND LT ISZERO PUSH2 0xB9F JUMPI DUP5 PUSH2 0xB78 PUSH2 0xB70 PUSH1 0x4 DUP5 PUSH2 0x2441 JUMP JUMPDEST DUP9 MLOAD SWAP1 PUSH2 0x119B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xB89 SWAP3 SWAP2 SWAP1 PUSH2 0x246F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP5 POP PUSH2 0xBA4 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP JUMPDEST POP PUSH2 0xB35 JUMP JUMPDEST POP PUSH2 0xABA JUMP JUMPDEST PUSH1 0x80 DUP5 ADD MLOAD DUP5 MLOAD PUSH2 0xBC0 SWAP2 PUSH2 0x119B JUMP JUMPDEST SWAP3 POP PUSH2 0xABA JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP3 MLOAD DUP2 PUSH2 0xBDA JUMPI PUSH2 0xBDA PUSH2 0x23F3 JUMP JUMPDEST DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xBF2 JUMPI PUSH2 0xBF2 PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xC1C JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xCAF JUMPI PUSH1 0x0 PUSH2 0xC52 DUP5 DUP4 PUSH1 0x2 MUL DUP2 MLOAD DUP2 LT PUSH2 0xC45 JUMPI PUSH2 0xC45 PUSH2 0x21F8 JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD PUSH1 0xF8 SHR PUSH2 0x1322 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xC71 DUP6 DUP5 PUSH1 0x2 MUL PUSH1 0x1 ADD DUP2 MLOAD DUP2 LT PUSH2 0xC45 JUMPI PUSH2 0xC45 PUSH2 0x21F8 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 PUSH1 0x10 MUL ADD PUSH1 0xF8 SHL DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xC8E JUMPI PUSH2 0xC8E PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP POP POP PUSH1 0x1 ADD PUSH2 0xC22 JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCC0 DUP3 PUSH2 0x13E7 JUMP JUMPDEST PUSH1 0x60 SHR SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 AND SWAP1 DUP4 AND GT JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x1 PUSH2 0xCED DUP3 PUSH2 0xDA6 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0xD1F JUMPI POP DUP1 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xD07 JUMPI PUSH2 0xD07 PUSH2 0x237D JUMP JUMPDEST DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xD1D JUMPI PUSH2 0xD1D PUSH2 0x237D JUMP JUMPDEST EQ JUMPDEST PUSH2 0xD65 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 PUSH23 0x63626F723A2063616E6E6F742066657463682064617461 PUSH1 0x48 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH2 0xA22 DUP5 PUSH1 0x80 ADD MLOAD PUSH2 0x13F4 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA DUP3 PUSH1 0xFF AND LT PUSH2 0xD92 JUMPI PUSH2 0xD8A DUP3 PUSH1 0x57 PUSH2 0x249E JUMP JUMPDEST PUSH1 0xF8 SHL PUSH2 0xCD9 JUMP JUMPDEST PUSH2 0xD9D DUP3 PUSH1 0x30 PUSH2 0x249E JUMP JUMPDEST PUSH1 0xF8 SHL SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCD9 DUP3 PUSH1 0x0 ADD MLOAD PUSH2 0x153B JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x4 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0xDF5 JUMPI PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 MLOAD PUSH2 0x8005 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0xFF SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE09 DUP6 PUSH1 0x0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0x102D JUMP JUMPDEST SWAP1 POP PUSH2 0xE16 DUP2 PUSH1 0x1 PUSH2 0x23D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xE36 JUMPI PUSH2 0xE36 PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xE6F JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0xE5C PUSH2 0x1D73 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xE54 JUMPI SWAP1 POP JUMPDEST POP SWAP4 POP PUSH1 0x0 JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 LT ISZERO PUSH2 0xF35 JUMPI PUSH2 0xE8F DUP7 PUSH2 0x1573 JUMP JUMPDEST SWAP6 POP PUSH2 0xE9A DUP7 PUSH2 0x159B JUMP JUMPDEST DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xEAC JUMPI PUSH2 0xEAC PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH1 0x4 PUSH1 0xFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND SUB PUSH2 0xF05 JUMPI PUSH1 0x0 PUSH2 0xED4 DUP8 PUSH2 0xDB5 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 DUP3 MLOAD PUSH2 0xEE5 SWAP2 SWAP1 PUSH2 0x24B7 JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0xEF5 JUMPI PUSH2 0xEF5 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP7 POP POP PUSH2 0xF2D JUMP JUMPDEST PUSH1 0x5 PUSH1 0xFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND SUB PUSH2 0xF22 JUMPI PUSH1 0x0 PUSH2 0xED4 DUP8 PUSH2 0x1633 JUMP JUMPDEST PUSH2 0xF2B DUP7 PUSH2 0x181D JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 ADD PUSH2 0xE75 JUMP JUMPDEST POP DUP5 DUP5 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 MLOAD DUP2 LT PUSH2 0xF52 JUMPI PUSH2 0xF52 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF7A DUP3 MLOAD DUP1 MLOAD MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MLOAD LT ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x1028 JUMPI PUSH1 0x6 DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND GT PUSH2 0xFC2 JUMPI PUSH1 0x40 DUP3 ADD MLOAD PUSH6 0x20201838083 PUSH1 0xD1 SHL SWAP1 PUSH1 0xFF AND PUSH1 0x7 DUP2 LT PUSH2 0xFB0 JUMPI PUSH2 0xFB0 PUSH2 0x21F8 JUMP JUMPDEST BYTE PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xCD9 JUMPI PUSH2 0xCD9 PUSH2 0x237D JUMP JUMPDEST DUP2 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND PUSH1 0x7 SUB PUSH2 0x1028 JUMPI DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x14 EQ DUP1 PUSH2 0xFEE JUMPI POP DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x15 EQ JUMPDEST ISZERO PUSH2 0xFFB JUMPI POP PUSH1 0x2 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x19 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0x101B JUMPI POP PUSH1 0x1B DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x1028 JUMPI POP PUSH1 0x5 SWAP2 SWAP1 POP JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x18 DUP3 PUSH1 0xFF AND LT ISZERO PUSH2 0x1045 JUMPI POP PUSH1 0xFF DUP2 AND PUSH2 0xCD9 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x18 SUB PUSH2 0x1063 JUMPI PUSH2 0x1059 DUP4 PUSH2 0x19E2 JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP PUSH2 0xCD9 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x19 SUB PUSH2 0x1082 JUMPI PUSH2 0x1077 DUP4 PUSH2 0x1A44 JUMP JUMPDEST PUSH2 0xFFFF AND SWAP1 POP PUSH2 0xCD9 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x1A SUB PUSH2 0x10A3 JUMPI PUSH2 0x1096 DUP4 PUSH2 0x1AB0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH2 0xCD9 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x1B SUB PUSH2 0x10BE JUMPI PUSH2 0x10B7 DUP4 PUSH2 0x1B0F JUMP JUMPDEST SWAP1 POP PUSH2 0xCD9 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x1F SUB PUSH2 0x10D7 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH2 0xCD9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6D785B13 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0xFF DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x1101 DUP5 PUSH2 0x19E2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0xFF AND PUSH1 0xFF SUB PUSH2 0x111E JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP2 POP POP PUSH2 0xCD9 JUMP JUMPDEST PUSH2 0x112B DUP5 DUP3 PUSH1 0x1F AND PUSH2 0x102D JUMP JUMPDEST SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP4 AND LT PUSH2 0x1161 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6D785B13 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0xFF DUP4 AND PUSH1 0x7 PUSH1 0x5 DUP4 SWAP1 SHR AND EQ PUSH2 0x988 JUMPI PUSH1 0x40 MLOAD PUSH2 0x8005 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x7 PUSH1 0x5 DUP4 SWAP1 SHR AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xFF DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x11BE JUMPI PUSH2 0x11BE PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x11E8 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND LT ISZERO PUSH2 0x1319 JUMPI PUSH1 0x0 PUSH2 0x1213 DUP6 PUSH2 0x19E2 JUMP JUMPDEST SWAP1 POP PUSH1 0x80 DUP2 AND ISZERO PUSH2 0x12DA JUMPI PUSH1 0xE0 DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x124F JUMPI PUSH2 0x1233 DUP6 PUSH2 0x19E2 JUMP JUMPDEST PUSH1 0x3F AND PUSH1 0x6 DUP3 PUSH1 0x1F AND PUSH1 0xFF AND SWAP1 SHL OR SWAP1 POP PUSH1 0x1 DUP5 SUB SWAP4 POP PUSH2 0x12DA JUMP JUMPDEST PUSH1 0xF0 DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x1294 JUMPI PUSH2 0x1264 DUP6 PUSH2 0x19E2 JUMP JUMPDEST PUSH1 0x3F AND PUSH1 0x6 PUSH2 0x1272 DUP8 PUSH2 0x19E2 JUMP JUMPDEST PUSH1 0x3F AND PUSH1 0xFF AND SWAP1 SHL PUSH1 0xC DUP4 PUSH1 0xF AND PUSH1 0xFF AND SWAP1 SHL OR OR SWAP1 POP PUSH1 0x2 DUP5 SUB SWAP4 POP PUSH2 0x12DA JUMP JUMPDEST PUSH2 0x129D DUP6 PUSH2 0x19E2 JUMP JUMPDEST PUSH1 0x3F AND PUSH1 0x6 PUSH2 0x12AB DUP8 PUSH2 0x19E2 JUMP JUMPDEST PUSH1 0x3F AND SWAP1 SHL PUSH1 0xC PUSH2 0x12BB DUP9 PUSH2 0x19E2 JUMP JUMPDEST PUSH1 0x3F AND PUSH1 0xFF AND SWAP1 SHL PUSH1 0x12 DUP5 PUSH1 0xF AND PUSH1 0xFF AND SWAP1 SHL OR OR OR SWAP1 POP PUSH1 0x3 DUP5 SUB SWAP4 POP JUMPDEST DUP1 PUSH1 0xF8 SHL DUP4 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 MLOAD DUP2 LT PUSH2 0x12F9 JUMPI PUSH2 0x12F9 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP POP PUSH1 0x1 ADD PUSH2 0x11EE JUMP JUMPDEST POP SWAP1 DUP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x30 DUP3 PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0x133C JUMPI POP PUSH1 0x39 DUP3 PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x134C JUMPI PUSH2 0xCD9 PUSH1 0x30 DUP4 PUSH2 0x24CA JUMP JUMPDEST PUSH1 0x41 DUP3 PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0x1364 JUMPI POP PUSH1 0x46 DUP3 PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x137F JUMPI PUSH2 0x1374 PUSH1 0x41 DUP4 PUSH2 0x24CA JUMP JUMPDEST PUSH2 0xCD9 SWAP1 PUSH1 0xA PUSH2 0x249E JUMP JUMPDEST PUSH1 0x61 DUP3 PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0x1397 JUMPI POP PUSH1 0x66 DUP3 PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x13A7 JUMPI PUSH2 0x1374 PUSH1 0x61 DUP4 PUSH2 0x24CA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x24B73B30B634B2103432BC1031B430B930B1BA32B9 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCD9 DUP3 PUSH1 0x14 PUSH2 0x1B6E JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x4 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0x1434 JUMPI PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 MLOAD PUSH2 0x8005 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0xFF SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1448 DUP6 PUSH1 0x0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0x102D JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 AND LT ISZERO PUSH2 0x150F JUMPI DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x147C JUMPI PUSH2 0x147C PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x14A5 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP4 POP PUSH1 0x0 JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 LT ISZERO PUSH2 0x1509 JUMPI PUSH1 0x0 PUSH2 0x14CB DUP8 PUSH1 0x0 ADD MLOAD PUSH2 0x1BE6 JUMP JUMPDEST SWAP1 POP PUSH2 0x14D6 DUP2 PUSH2 0xA65 JUMP JUMPDEST DUP7 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x14E8 JUMPI PUSH2 0x14E8 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE POP PUSH1 0x1 ADD PUSH2 0x14AB JUMP JUMPDEST POP PUSH2 0x1533 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6D785B13 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3ED JUMP JUMPDEST POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xF0 DUP3 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x1551 JUMPI PUSH2 0x1551 PUSH2 0x237D JUMP JUMPDEST EQ DUP1 PUSH2 0xCD9 JUMPI POP PUSH1 0xF1 DUP3 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x156C JUMPI PUSH2 0x156C PUSH2 0x237D JUMP JUMPDEST EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x157B PUSH2 0x1D73 JUMP JUMPDEST DUP2 MLOAD DUP1 MLOAD MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MLOAD LT ISZERO PUSH2 0x1597 JUMPI DUP2 MLOAD PUSH2 0xCD9 SWAP1 PUSH2 0x1BE6 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x15A3 PUSH2 0x1D73 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xC0 DUP2 ADD DUP1 DUP4 MSTORE DUP5 MLOAD PUSH2 0x100 DUP4 ADD DUP5 MSTORE PUSH1 0x60 SWAP1 SWAP2 MSTORE PUSH1 0x0 PUSH1 0xE0 DUP4 ADD MSTORE DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE DUP1 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD MLOAD SWAP1 DUP4 ADD MSTORE SWAP1 DUP2 SWAP1 DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH1 0x80 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH1 0xA0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 MSTORE POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x5 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0x1673 JUMPI PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 MLOAD PUSH2 0x8005 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0xFF SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1687 DUP6 PUSH1 0x0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0x102D JUMP JUMPDEST PUSH2 0x1692 SWAP1 PUSH1 0x2 PUSH2 0x24E3 JUMP JUMPDEST SWAP1 POP PUSH2 0x169F DUP2 PUSH1 0x1 PUSH2 0x23D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x16BF JUMPI PUSH2 0x16BF PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x16F8 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x16E5 PUSH2 0x1D73 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x16DD JUMPI SWAP1 POP JUMPDEST POP SWAP4 POP PUSH1 0x0 JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 LT ISZERO PUSH2 0xF35 JUMPI PUSH2 0x1718 DUP7 PUSH2 0x1573 JUMP JUMPDEST SWAP6 POP PUSH2 0x1723 DUP7 PUSH2 0x159B JUMP JUMPDEST DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1735 JUMPI PUSH2 0x1735 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0x174B PUSH1 0x2 DUP3 PUSH2 0x2505 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x1760 JUMPI POP PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0xFF AND PUSH1 0x3 EQ ISZERO JUMPDEST ISZERO PUSH2 0x178E JUMPI PUSH1 0x40 DUP1 DUP8 ADD MLOAD SWAP1 MLOAD PUSH2 0x8005 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0xFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x3 PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0xFF AND PUSH1 0x4 EQ DUP1 PUSH2 0x17AB JUMPI POP PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0xFF AND PUSH1 0x5 EQ JUMPDEST ISZERO PUSH2 0x180A JUMPI PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0x0 SWAP1 PUSH1 0xFF AND PUSH1 0x4 EQ PUSH2 0x17D0 JUMPI PUSH2 0x17CB DUP8 PUSH2 0x1633 JUMP JUMPDEST PUSH2 0x17D9 JUMP JUMPDEST PUSH2 0x17D9 DUP8 PUSH2 0xDB5 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 DUP3 MLOAD PUSH2 0x17EA SWAP2 SWAP1 PUSH2 0x24B7 JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x17FA JUMPI PUSH2 0x17FA PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP7 POP POP PUSH2 0x1815 JUMP JUMPDEST PUSH2 0x1813 DUP7 PUSH2 0x181D JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x16FE JUMP JUMPDEST PUSH2 0x1825 PUSH2 0x1D73 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND ISZERO DUP1 PUSH2 0x1840 JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x1 EQ JUMPDEST DUP1 PUSH2 0x1879 JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x7 EQ DUP1 ISZERO PUSH2 0x1865 JUMPI POP PUSH1 0x19 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1879 JUMPI POP PUSH1 0x1B DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x18AC JUMPI PUSH2 0x1887 DUP3 PUSH2 0x1D06 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP3 PUSH1 0x0 ADD MLOAD PUSH1 0x20 ADD DUP2 DUP2 MLOAD PUSH2 0x18A5 SWAP2 SWAP1 PUSH2 0x2519 JUMP JUMPDEST SWAP1 MSTORE POP POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x3 EQ DUP1 PUSH2 0x18C9 JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x2 EQ JUMPDEST ISZERO PUSH2 0x190D JUMPI PUSH1 0x0 PUSH2 0x18E2 DUP4 PUSH1 0x0 ADD MLOAD DUP5 PUSH1 0x60 ADD MLOAD PUSH2 0x102D JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP4 PUSH1 0x0 ADD MLOAD PUSH1 0x20 ADD DUP2 DUP2 MLOAD PUSH2 0x1903 SWAP2 SWAP1 PUSH2 0x2519 JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0x1597 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x4 EQ DUP1 PUSH2 0x192A JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x5 EQ JUMPDEST ISZERO PUSH2 0x1953 JUMPI PUSH2 0x1941 DUP3 PUSH1 0x0 ADD MLOAD DUP4 PUSH1 0x60 ADD MLOAD PUSH2 0x102D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x80 DUP4 ADD MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x7 EQ ISZERO DUP1 PUSH2 0x1985 JUMPI POP DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x14 EQ ISZERO DUP1 ISZERO PUSH2 0x1985 JUMPI POP DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x15 EQ ISZERO JUMPDEST ISZERO PUSH2 0x1597 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 0x5769746E657443424F522E736B69703A20756E737570706F72746564206D616A PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x6F722074797065 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD DUP3 PUSH1 0x0 ADD MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x1A1A JUMPI PUSH1 0x40 MLOAD PUSH4 0x63A056DD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD DUP1 DUP4 ADD PUSH1 0x1 ADD MLOAD SWAP6 POP SWAP1 DUP2 SWAP1 PUSH2 0x1A37 DUP3 PUSH2 0x252C JUMP JUMPDEST DUP2 MSTORE POP POP POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x2 PUSH2 0x1A57 SWAP2 SWAP1 PUSH2 0x2519 JUMP JUMPDEST DUP3 MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x1A85 JUMPI PUSH1 0x40 MLOAD PUSH4 0x63A056DD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD PUSH1 0x2 DUP2 DUP5 ADD DUP2 ADD MLOAD SWAP7 POP SWAP1 SWAP2 PUSH2 0x1AA3 DUP3 DUP5 PUSH2 0x2519 JUMP JUMPDEST SWAP1 MSTORE POP SWAP4 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x4 PUSH2 0x1AC3 SWAP2 SWAP1 PUSH2 0x2519 JUMP JUMPDEST DUP3 MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x1AF1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x63A056DD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD PUSH1 0x4 DUP2 DUP5 ADD DUP2 ADD MLOAD SWAP7 POP SWAP1 SWAP2 PUSH2 0x1AA3 DUP3 DUP5 PUSH2 0x2519 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x8 PUSH2 0x1B22 SWAP2 SWAP1 PUSH2 0x2519 JUMP JUMPDEST DUP3 MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x1B50 JUMPI PUSH1 0x40 MLOAD PUSH4 0x63A056DD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD PUSH1 0x8 DUP2 DUP5 ADD DUP2 ADD MLOAD SWAP7 POP SWAP1 SWAP2 PUSH2 0x1AA3 DUP3 DUP5 PUSH2 0x2519 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 PUSH1 0xFF AND GT ISZERO PUSH2 0x1B84 JUMPI PUSH2 0x1B84 PUSH2 0x2545 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0xFF AND DUP5 MLOAD GT PUSH2 0x1B98 JUMPI DUP4 MLOAD PUSH2 0x1B9D JUMP JUMPDEST DUP3 PUSH1 0xFF AND JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1BDE JUMPI DUP1 PUSH1 0x8 MUL DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1BC0 JUMPI PUSH2 0x1BC0 PUSH2 0x21F8 JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 SHR SWAP3 SWAP1 SWAP3 OR SWAP2 PUSH1 0x1 ADD PUSH2 0x1BA2 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1BEE PUSH2 0x1D73 JUMP JUMPDEST DUP2 MLOAD MLOAD DUP3 SWAP1 PUSH1 0x0 SUB PUSH2 0x1C13 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9036D47 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 PUSH1 0x1 JUMPDEST DUP1 ISZERO PUSH2 0x1C96 JUMPI PUSH2 0x1C33 DUP10 PUSH2 0x19E2 JUMP JUMPDEST SWAP6 POP DUP2 PUSH2 0x1C3F DUP2 PUSH2 0x252C JUMP JUMPDEST PUSH1 0x7 PUSH1 0x5 DUP10 SWAP1 SHR AND SWAP7 POP PUSH1 0x1F DUP9 AND SWAP6 POP SWAP3 POP POP PUSH1 0x5 NOT DUP6 ADD PUSH2 0x1C8E JUMPI PUSH1 0x20 DUP10 ADD MLOAD PUSH2 0x1C6A DUP11 DUP7 PUSH2 0x102D JUMP JUMPDEST SWAP4 POP DUP1 DUP11 PUSH1 0x20 ADD MLOAD PUSH2 0x1C7C SWAP2 SWAP1 PUSH2 0x24B7 JUMP JUMPDEST PUSH2 0x1C86 SWAP1 DUP5 PUSH2 0x2519 JUMP JUMPDEST SWAP3 POP POP PUSH2 0x1C24 JUMP JUMPDEST POP PUSH1 0x0 PUSH2 0x1C24 JUMP JUMPDEST PUSH1 0x7 PUSH1 0xFF DUP7 AND GT ISZERO PUSH2 0x1CC0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xBD2AC879 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0xFF DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3ED JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0xC0 DUP2 ADD DUP3 MSTORE SWAP9 DUP10 MSTORE PUSH1 0xFF SWAP6 DUP7 AND PUSH1 0x20 DUP11 ADD MSTORE SWAP4 DUP6 AND SWAP4 DUP9 ADD SWAP4 SWAP1 SWAP4 MSTORE SWAP3 AND PUSH1 0x60 DUP7 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH1 0x80 DUP7 ADD MSTORE AND PUSH1 0xA0 DUP5 ADD MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x18 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO PUSH2 0x1D20 JUMPI POP PUSH1 0x0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1C DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO PUSH2 0x1D4F JUMPI PUSH1 0x18 DUP3 PUSH1 0x60 ADD MLOAD PUSH2 0x1D41 SWAP2 SWAP1 PUSH2 0x24CA JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 SWAP1 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MLOAD PUSH1 0x40 MLOAD PUSH4 0x6D785B13 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0xFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x100 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 PUSH1 0xC0 DUP3 ADD SWAP1 DUP2 MSTORE PUSH1 0x0 PUSH1 0xE0 DUP4 ADD MSTORE DUP2 SWAP1 DUP2 MSTORE PUSH1 0x0 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x80 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0xA0 SWAP1 SWAP2 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1DCF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1DE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x1DF2 DUP2 PUSH2 0x1DBA JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x1E02 DUP2 PUSH2 0x1DBA JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1E28 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1E45 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x1E56 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1E6C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x1E7E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1EAA JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1E92 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x1ECB DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x1E8F JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP6 DUP2 MSTORE PUSH1 0xA0 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x1EF8 PUSH1 0xA0 DUP4 ADD DUP8 PUSH2 0x1EB3 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x1F0A DUP2 DUP8 PUSH2 0x1EB3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP6 SWAP1 SWAP6 AND PUSH1 0x60 DUP5 ADD MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x80 SWAP1 SWAP2 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xC0 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1F6E JUMPI PUSH2 0x1F6E PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP1 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1F6E JUMPI PUSH2 0x1F6E PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1F6E JUMPI PUSH2 0x1F6E PUSH2 0x1F36 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 PUSH2 0x1FE0 JUMPI PUSH2 0x1FE0 PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1028 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1028 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xC0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2022 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x202A PUSH2 0x1F4C JUMP JUMPDEST SWAP1 POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2042 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x40 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x2054 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x205C PUSH2 0x1F74 JUMP JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2072 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x2083 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x209C JUMPI PUSH2 0x209C PUSH2 0x1F36 JUMP JUMPDEST PUSH2 0x20AF PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x1FB8 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP8 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x20C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 SWAP3 DUP3 ADD DUP4 ADD MSTORE DUP4 MSTORE SWAP3 DUP4 ADD CALLDATALOAD DUP3 DUP5 ADD MSTORE POP DUP3 MSTORE PUSH2 0x20F0 SWAP1 DUP4 ADD PUSH2 0x1FFF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2101 PUSH1 0x40 DUP4 ADD PUSH2 0x1FFF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x2112 PUSH1 0x60 DUP4 ADD PUSH2 0x1FFF JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x2123 PUSH1 0x80 DUP4 ADD PUSH2 0x1FE8 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x2134 PUSH1 0xA0 DUP4 ADD PUSH2 0x1FE8 JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2151 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2167 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0xA0 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x2179 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2181 PUSH2 0x1F96 JUMP JUMPDEST DUP2 CALLDATALOAD PUSH2 0x100 DUP2 LT PUSH2 0x2191 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP3 ADD CALLDATALOAD PUSH1 0x14 DUP2 LT PUSH2 0x21A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP3 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x21C0 PUSH1 0x60 DUP4 ADD PUSH2 0x1FE8 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP3 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x21DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x21EA DUP7 DUP3 DUP6 ADD PUSH2 0x2010 JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD PUSH1 0x40 DUP4 MSTORE DUP1 DUP6 MLOAD DUP1 DUP4 MSTORE PUSH1 0x60 DUP6 ADD SWAP2 POP PUSH1 0x60 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP8 ADD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x2267 JUMPI PUSH1 0x5F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x2252 DUP6 DUP4 MLOAD PUSH2 0x1EB3 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x2236 JUMP JUMPDEST POP POP POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE DUP1 DUP5 SLOAD DUP1 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 POP PUSH1 0x20 DUP2 PUSH1 0x5 SHL DUP5 ADD ADD DUP7 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2356 JUMPI DUP6 DUP4 SUB PUSH1 0x1F NOT ADD DUP6 MSTORE DUP2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x22BE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x22DC JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 DUP5 REVERT JUMPDEST DUP2 DUP8 MSTORE PUSH1 0x20 DUP8 ADD DUP2 DUP1 ISZERO PUSH2 0x22F7 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x230D JUMPI PUSH2 0x233B JUMP JUMPDEST PUSH1 0xFF NOT DUP6 AND DUP3 MSTORE DUP4 ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD SWAP6 POP PUSH2 0x233B JUMP JUMPDEST PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x2335 JUMPI DUP2 SLOAD DUP5 DUP3 ADD MSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x20 ADD PUSH2 0x2319 JUMP JUMPDEST DUP4 ADD SWAP7 POP POP JUMPDEST POP POP POP PUSH1 0x20 SWAP8 SWAP1 SWAP8 ADD SWAP7 POP SWAP1 SWAP4 POP POP PUSH1 0x1 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x2294 JUMP JUMPDEST POP SWAP1 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2376 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP 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 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 SUB PUSH2 0x23CB JUMPI PUSH2 0x23CB PUSH2 0x2393 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0xCD9 JUMPI PUSH2 0xCD9 PUSH2 0x2393 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x241C JUMPI PUSH2 0x241C PUSH2 0x23F3 JUMP JUMPDEST DUP1 PUSH1 0xFF DUP5 AND DIV SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 SUB PUSH2 0x23CB JUMPI PUSH2 0x23CB PUSH2 0x2393 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND DUP1 PUSH2 0x245A JUMPI PUSH2 0x245A PUSH2 0x23F3 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND DIV SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x2481 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x1E8F JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x2495 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x1E8F JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0xCD9 JUMPI PUSH2 0xCD9 PUSH2 0x2393 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xCD9 JUMPI PUSH2 0xCD9 PUSH2 0x2393 JUMP JUMPDEST PUSH1 0xFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0xCD9 JUMPI PUSH2 0xCD9 PUSH2 0x2393 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 DUP2 AND DUP4 DUP3 AND MUL SWAP1 DUP2 AND SWAP1 DUP2 DUP2 EQ PUSH2 0x988 JUMPI PUSH2 0x988 PUSH2 0x2393 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x2514 JUMPI PUSH2 0x2514 PUSH2 0x23F3 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xCD9 JUMPI PUSH2 0xCD9 PUSH2 0x2393 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x253E JUMPI PUSH2 0x253E PUSH2 0x2393 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID PUSH2 0x1647 CALLDATASIZE PC 0xE8 PUSH28 0x23E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58FF611647 CALLDATASIZE PC 0xE8 PUSH28 0x23E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58F9A26469 PUSH17 0x66735822122004DF0E6774B6EE639155DA 0xC5 0xBE NUMBER DUP11 0xEB 0xD5 DUP7 DUP15 GASPRICE 0xB7 PUSH24 0x61428D3AEFA6C59A6BE964736F6C634300081C0033000000 ","sourceMap":"307:8443:30:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;307:8443:30;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_hexCharToByte_16704":{"entryPoint":4898,"id":16704,"parameterSlots":1,"returnSlots":1},"@_readIndefiniteStringLength_20199":{"entryPoint":4341,"id":20199,"parameterSlots":2,"returnSlots":1},"@_toHexChar_16740":{"entryPoint":3442,"id":16740,"parameterSlots":1,"returnSlots":1},"@data_9796":{"entryPoint":null,"id":9796,"parameterSlots":0,"returnSlots":1},"@eof_18800":{"entryPoint":null,"id":18800,"parameterSlots":1,"returnSlots":1},"@fetchCborArray_14416":{"entryPoint":2447,"id":14416,"parameterSlots":1,"returnSlots":1},"@fetchUint64Array_14576":{"entryPoint":3295,"id":14576,"parameterSlots":1,"returnSlots":1},"@fork_16874":{"entryPoint":null,"id":16874,"parameterSlots":1,"returnSlots":1},"@fork_18961":{"entryPoint":5531,"id":18961,"parameterSlots":1,"returnSlots":1},"@fromBuffer_18934":{"entryPoint":7142,"id":18934,"parameterSlots":1,"returnSlots":1},"@gt_15063":{"entryPoint":3273,"id":15063,"parameterSlots":2,"returnSlots":1},"@keepWaiting_14248":{"entryPoint":3494,"id":14248,"parameterSlots":1,"returnSlots":1},"@keepWaiting_14985":{"entryPoint":5435,"id":14985,"parameterSlots":1,"returnSlots":1},"@parseHexString_16048":{"entryPoint":3015,"id":16048,"parameterSlots":1,"returnSlots":1},"@parseWitOracleProofOfReserve_9486":{"entryPoint":1879,"id":9486,"parameterSlots":1,"returnSlots":1},"@peekLength_19145":{"entryPoint":7430,"id":19145,"parameterSlots":1,"returnSlots":1},"@peekRadonDataType_14653":{"entryPoint":3941,"id":14653,"parameterSlots":1,"returnSlots":1},"@processWitOracleQueryResult_9672":{"entryPoint":892,"id":9672,"parameterSlots":3,"returnSlots":5},"@readArray_19266":{"entryPoint":3509,"id":19266,"parameterSlots":1,"returnSlots":1},"@readLength_19463":{"entryPoint":4141,"id":19463,"parameterSlots":2,"returnSlots":1},"@readMap_19397":{"entryPoint":5683,"id":19397,"parameterSlots":1,"returnSlots":1},"@readString_19977":{"entryPoint":2753,"id":19977,"parameterSlots":1,"returnSlots":1},"@readText_17694":{"entryPoint":4507,"id":17694,"parameterSlots":2,"returnSlots":1},"@readUint16_17763":{"entryPoint":6724,"id":17763,"parameterSlots":1,"returnSlots":1},"@readUint32_17799":{"entryPoint":6832,"id":17799,"parameterSlots":1,"returnSlots":1},"@readUint64_17835":{"entryPoint":6927,"id":17835,"parameterSlots":1,"returnSlots":1},"@readUint8_17727":{"entryPoint":6626,"id":17727,"parameterSlots":1,"returnSlots":1},"@readUintArray_20140":{"entryPoint":5108,"id":20140,"parameterSlots":1,"returnSlots":1},"@readUint_20069":{"entryPoint":2661,"id":20069,"parameterSlots":1,"returnSlots":1},"@settle_18985":{"entryPoint":5491,"id":18985,"parameterSlots":1,"returnSlots":1},"@skip_19105":{"entryPoint":6173,"id":19105,"parameterSlots":1,"returnSlots":1},"@toAddress_15675":{"entryPoint":3253,"id":15675,"parameterSlots":1,"returnSlots":1},"@toBytes20_15707":{"entryPoint":5095,"id":15707,"parameterSlots":1,"returnSlots":1},"@toFixedBytes_15776":{"entryPoint":7022,"id":15776,"parameterSlots":2,"returnSlots":1},"@toHexString_15886":{"entryPoint":2173,"id":15886,"parameterSlots":1,"returnSlots":1},"@witOracleQueryWitnetValueTransferProofOfInclusion_9788":{"entryPoint":223,"id":9788,"parameterSlots":3,"returnSlots":1},"abi_decode_struct_CBOR":{"entryPoint":8208,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_WitOracle_$9915t_contract$_IWitOracleRadonRequestModal_$10761t_userDefinedValueType$_TransactionHash_$13256":{"entryPoint":7634,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_struct$_DataResult_$13388_memory_ptr":{"entryPoint":8511,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_bytes_calldata_ptr":{"entryPoint":7699,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_userDefinedValueType$_RadonHash_$13250_fromMemory":{"entryPoint":9060,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint8":{"entryPoint":8191,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_userDefinedValueType_Timestamp":{"entryPoint":8168,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string":{"entryPoint":7859,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_string_memory_ptr_t_bytes_memory_ptr__to_t_string_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":9327,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr_t_array$_t_string_storage_$dyn_storage__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":8718,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_stringliteral_38d45eac4f3206b66b0878b83795d9a0ce11d11e2db36d1c229a31b6f19f3503__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3f6add0457b55e0d28d0df6cb630dd22967d6dac9673bb47e06495bccd4ca35c__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_92a4e60c9c8a6bab113d51719bd32c972951c92a48fb0ef633db4f8d512f86fe__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_a70485f3df10f36042e7631cf9bc7cfff2923fda111ae82f3320179a3f1a9c65__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_c89b7a96616bc952cfce88db0441421c39a3927671c9d55f879ee1b493eba7b2__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_dc598d76fa83f6ee02aa2a85fa4a344836c798f64f101c149de97b066339f648__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_efa3da54425289ec39e5b74649f827cb6b11f755cde117b4b47bf615b5961b8c__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f9e00dcd71685f8522f8d07872510c3a81c2039687b393455d27e0cdc22dcafa__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_fdd334fdf7e6fae9f5312aa3c59478f1e12a48beff4641205e14335f60fec3d9__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_library_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_uint64__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_library_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint8_t_uint8__to_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_userDefinedValueType$_RadonHash_$13250_t_struct$_QuerySLA_$13472_memory_ptr_t_struct$_QueryCallback_$13435_memory_ptr__to_t_bytes32_t_struct$_QuerySLA_$13472_memory_ptr_t_struct$_QueryCallback_$13435_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_userDefinedValueType$_TransactionHash_$13256_t_string_memory_ptr_t_string_memory_ptr_t_address_t_uint64__to_t_bytes32_t_string_memory_ptr_t_string_memory_ptr_t_address_t_uint64__fromStack_library_reversed":{"entryPoint":7903,"id":null,"parameterSlots":6,"returnSlots":1},"allocate_memory":{"entryPoint":8120,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_memory_2704":{"entryPoint":8012,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_2705":{"entryPoint":8052,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_2707":{"entryPoint":8086,"id":null,"parameterSlots":0,"returnSlots":1},"array_dataslot_array_string_storage_dyn":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"array_storeLengthForEncoding_string_library":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":9497,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint64":{"entryPoint":9172,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint8":{"entryPoint":9374,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint64":{"entryPoint":9281,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint8":{"entryPoint":9225,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint64":{"entryPoint":9443,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":9399,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint8":{"entryPoint":9418,"id":null,"parameterSlots":2,"returnSlots":1},"copy_memory_to_memory_with_cleanup":{"entryPoint":7823,"id":null,"parameterSlots":3,"returnSlots":0},"increment_t_uint256":{"entryPoint":9516,"id":null,"parameterSlots":1,"returnSlots":1},"increment_t_uint64":{"entryPoint":9129,"id":null,"parameterSlots":1,"returnSlots":1},"increment_t_uint8":{"entryPoint":9259,"id":null,"parameterSlots":1,"returnSlots":1},"mod_t_uint256":{"entryPoint":9477,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x01":{"entryPoint":9541,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x11":{"entryPoint":9107,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":9203,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":9085,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":8696,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":7990,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_contract_WitOracle":{"entryPoint":7610,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:18848:51","nodeType":"YulBlock","src":"0:18848:51","statements":[{"nativeSrc":"6:3:51","nodeType":"YulBlock","src":"6:3:51","statements":[]},{"body":{"nativeSrc":"70:86:51","nodeType":"YulBlock","src":"70:86:51","statements":[{"body":{"nativeSrc":"134:16:51","nodeType":"YulBlock","src":"134:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"143:1:51","nodeType":"YulLiteral","src":"143:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"146:1:51","nodeType":"YulLiteral","src":"146:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"136:6:51","nodeType":"YulIdentifier","src":"136:6:51"},"nativeSrc":"136:12:51","nodeType":"YulFunctionCall","src":"136:12:51"},"nativeSrc":"136:12:51","nodeType":"YulExpressionStatement","src":"136:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"93:5:51","nodeType":"YulIdentifier","src":"93:5:51"},{"arguments":[{"name":"value","nativeSrc":"104:5:51","nodeType":"YulIdentifier","src":"104:5:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"119:3:51","nodeType":"YulLiteral","src":"119:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"124:1:51","nodeType":"YulLiteral","src":"124:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"115:3:51","nodeType":"YulIdentifier","src":"115:3:51"},"nativeSrc":"115:11:51","nodeType":"YulFunctionCall","src":"115:11:51"},{"kind":"number","nativeSrc":"128:1:51","nodeType":"YulLiteral","src":"128:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"111:3:51","nodeType":"YulIdentifier","src":"111:3:51"},"nativeSrc":"111:19:51","nodeType":"YulFunctionCall","src":"111:19:51"}],"functionName":{"name":"and","nativeSrc":"100:3:51","nodeType":"YulIdentifier","src":"100:3:51"},"nativeSrc":"100:31:51","nodeType":"YulFunctionCall","src":"100:31:51"}],"functionName":{"name":"eq","nativeSrc":"90:2:51","nodeType":"YulIdentifier","src":"90:2:51"},"nativeSrc":"90:42:51","nodeType":"YulFunctionCall","src":"90:42:51"}],"functionName":{"name":"iszero","nativeSrc":"83:6:51","nodeType":"YulIdentifier","src":"83:6:51"},"nativeSrc":"83:50:51","nodeType":"YulFunctionCall","src":"83:50:51"},"nativeSrc":"80:70:51","nodeType":"YulIf","src":"80:70:51"}]},"name":"validator_revert_contract_WitOracle","nativeSrc":"14:142:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"59:5:51","nodeType":"YulTypedName","src":"59:5:51","type":""}],"src":"14:142:51"},{"body":{"nativeSrc":"357:426:51","nodeType":"YulBlock","src":"357:426:51","statements":[{"body":{"nativeSrc":"403:16:51","nodeType":"YulBlock","src":"403:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"412:1:51","nodeType":"YulLiteral","src":"412:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"415:1:51","nodeType":"YulLiteral","src":"415:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"405:6:51","nodeType":"YulIdentifier","src":"405:6:51"},"nativeSrc":"405:12:51","nodeType":"YulFunctionCall","src":"405:12:51"},"nativeSrc":"405:12:51","nodeType":"YulExpressionStatement","src":"405:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"378:7:51","nodeType":"YulIdentifier","src":"378:7:51"},{"name":"headStart","nativeSrc":"387:9:51","nodeType":"YulIdentifier","src":"387:9:51"}],"functionName":{"name":"sub","nativeSrc":"374:3:51","nodeType":"YulIdentifier","src":"374:3:51"},"nativeSrc":"374:23:51","nodeType":"YulFunctionCall","src":"374:23:51"},{"kind":"number","nativeSrc":"399:2:51","nodeType":"YulLiteral","src":"399:2:51","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"370:3:51","nodeType":"YulIdentifier","src":"370:3:51"},"nativeSrc":"370:32:51","nodeType":"YulFunctionCall","src":"370:32:51"},"nativeSrc":"367:52:51","nodeType":"YulIf","src":"367:52:51"},{"nativeSrc":"428:36:51","nodeType":"YulVariableDeclaration","src":"428:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"454:9:51","nodeType":"YulIdentifier","src":"454:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"441:12:51","nodeType":"YulIdentifier","src":"441:12:51"},"nativeSrc":"441:23:51","nodeType":"YulFunctionCall","src":"441:23:51"},"variables":[{"name":"value","nativeSrc":"432:5:51","nodeType":"YulTypedName","src":"432:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"509:5:51","nodeType":"YulIdentifier","src":"509:5:51"}],"functionName":{"name":"validator_revert_contract_WitOracle","nativeSrc":"473:35:51","nodeType":"YulIdentifier","src":"473:35:51"},"nativeSrc":"473:42:51","nodeType":"YulFunctionCall","src":"473:42:51"},"nativeSrc":"473:42:51","nodeType":"YulExpressionStatement","src":"473:42:51"},{"nativeSrc":"524:15:51","nodeType":"YulAssignment","src":"524:15:51","value":{"name":"value","nativeSrc":"534:5:51","nodeType":"YulIdentifier","src":"534:5:51"},"variableNames":[{"name":"value0","nativeSrc":"524:6:51","nodeType":"YulIdentifier","src":"524:6:51"}]},{"nativeSrc":"548:47:51","nodeType":"YulVariableDeclaration","src":"548:47:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"580:9:51","nodeType":"YulIdentifier","src":"580:9:51"},{"kind":"number","nativeSrc":"591:2:51","nodeType":"YulLiteral","src":"591:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"576:3:51","nodeType":"YulIdentifier","src":"576:3:51"},"nativeSrc":"576:18:51","nodeType":"YulFunctionCall","src":"576:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"563:12:51","nodeType":"YulIdentifier","src":"563:12:51"},"nativeSrc":"563:32:51","nodeType":"YulFunctionCall","src":"563:32:51"},"variables":[{"name":"value_1","nativeSrc":"552:7:51","nodeType":"YulTypedName","src":"552:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"640:7:51","nodeType":"YulIdentifier","src":"640:7:51"}],"functionName":{"name":"validator_revert_contract_WitOracle","nativeSrc":"604:35:51","nodeType":"YulIdentifier","src":"604:35:51"},"nativeSrc":"604:44:51","nodeType":"YulFunctionCall","src":"604:44:51"},"nativeSrc":"604:44:51","nodeType":"YulExpressionStatement","src":"604:44:51"},{"nativeSrc":"657:17:51","nodeType":"YulAssignment","src":"657:17:51","value":{"name":"value_1","nativeSrc":"667:7:51","nodeType":"YulIdentifier","src":"667:7:51"},"variableNames":[{"name":"value1","nativeSrc":"657:6:51","nodeType":"YulIdentifier","src":"657:6:51"}]},{"nativeSrc":"683:16:51","nodeType":"YulVariableDeclaration","src":"683:16:51","value":{"kind":"number","nativeSrc":"698:1:51","nodeType":"YulLiteral","src":"698:1:51","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"687:7:51","nodeType":"YulTypedName","src":"687:7:51","type":""}]},{"nativeSrc":"708:43:51","nodeType":"YulAssignment","src":"708:43:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"736:9:51","nodeType":"YulIdentifier","src":"736:9:51"},{"kind":"number","nativeSrc":"747:2:51","nodeType":"YulLiteral","src":"747:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"732:3:51","nodeType":"YulIdentifier","src":"732:3:51"},"nativeSrc":"732:18:51","nodeType":"YulFunctionCall","src":"732:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"719:12:51","nodeType":"YulIdentifier","src":"719:12:51"},"nativeSrc":"719:32:51","nodeType":"YulFunctionCall","src":"719:32:51"},"variableNames":[{"name":"value_2","nativeSrc":"708:7:51","nodeType":"YulIdentifier","src":"708:7:51"}]},{"nativeSrc":"760:17:51","nodeType":"YulAssignment","src":"760:17:51","value":{"name":"value_2","nativeSrc":"770:7:51","nodeType":"YulIdentifier","src":"770:7:51"},"variableNames":[{"name":"value2","nativeSrc":"760:6:51","nodeType":"YulIdentifier","src":"760:6:51"}]}]},"name":"abi_decode_tuple_t_contract$_WitOracle_$9915t_contract$_IWitOracleRadonRequestModal_$10761t_userDefinedValueType$_TransactionHash_$13256","nativeSrc":"161:622:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"307:9:51","nodeType":"YulTypedName","src":"307:9:51","type":""},{"name":"dataEnd","nativeSrc":"318:7:51","nodeType":"YulTypedName","src":"318:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"330:6:51","nodeType":"YulTypedName","src":"330:6:51","type":""},{"name":"value1","nativeSrc":"338:6:51","nodeType":"YulTypedName","src":"338:6:51","type":""},{"name":"value2","nativeSrc":"346:6:51","nodeType":"YulTypedName","src":"346:6:51","type":""}],"src":"161:622:51"},{"body":{"nativeSrc":"897:76:51","nodeType":"YulBlock","src":"897:76:51","statements":[{"nativeSrc":"907:26:51","nodeType":"YulAssignment","src":"907:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"919:9:51","nodeType":"YulIdentifier","src":"919:9:51"},{"kind":"number","nativeSrc":"930:2:51","nodeType":"YulLiteral","src":"930:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"915:3:51","nodeType":"YulIdentifier","src":"915:3:51"},"nativeSrc":"915:18:51","nodeType":"YulFunctionCall","src":"915:18:51"},"variableNames":[{"name":"tail","nativeSrc":"907:4:51","nodeType":"YulIdentifier","src":"907:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"949:9:51","nodeType":"YulIdentifier","src":"949:9:51"},{"name":"value0","nativeSrc":"960:6:51","nodeType":"YulIdentifier","src":"960:6:51"}],"functionName":{"name":"mstore","nativeSrc":"942:6:51","nodeType":"YulIdentifier","src":"942:6:51"},"nativeSrc":"942:25:51","nodeType":"YulFunctionCall","src":"942:25:51"},"nativeSrc":"942:25:51","nodeType":"YulExpressionStatement","src":"942:25:51"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_library_reversed","nativeSrc":"788:185:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"866:9:51","nodeType":"YulTypedName","src":"866:9:51","type":""},{"name":"value0","nativeSrc":"877:6:51","nodeType":"YulTypedName","src":"877:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"888:4:51","nodeType":"YulTypedName","src":"888:4:51","type":""}],"src":"788:185:51"},{"body":{"nativeSrc":"1084:594:51","nodeType":"YulBlock","src":"1084:594:51","statements":[{"body":{"nativeSrc":"1130:16:51","nodeType":"YulBlock","src":"1130:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1139:1:51","nodeType":"YulLiteral","src":"1139:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1142:1:51","nodeType":"YulLiteral","src":"1142:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1132:6:51","nodeType":"YulIdentifier","src":"1132:6:51"},"nativeSrc":"1132:12:51","nodeType":"YulFunctionCall","src":"1132:12:51"},"nativeSrc":"1132:12:51","nodeType":"YulExpressionStatement","src":"1132:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1105:7:51","nodeType":"YulIdentifier","src":"1105:7:51"},{"name":"headStart","nativeSrc":"1114:9:51","nodeType":"YulIdentifier","src":"1114:9:51"}],"functionName":{"name":"sub","nativeSrc":"1101:3:51","nodeType":"YulIdentifier","src":"1101:3:51"},"nativeSrc":"1101:23:51","nodeType":"YulFunctionCall","src":"1101:23:51"},{"kind":"number","nativeSrc":"1126:2:51","nodeType":"YulLiteral","src":"1126:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1097:3:51","nodeType":"YulIdentifier","src":"1097:3:51"},"nativeSrc":"1097:32:51","nodeType":"YulFunctionCall","src":"1097:32:51"},"nativeSrc":"1094:52:51","nodeType":"YulIf","src":"1094:52:51"},{"nativeSrc":"1155:14:51","nodeType":"YulVariableDeclaration","src":"1155:14:51","value":{"kind":"number","nativeSrc":"1168:1:51","nodeType":"YulLiteral","src":"1168:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1159:5:51","nodeType":"YulTypedName","src":"1159:5:51","type":""}]},{"nativeSrc":"1178:32:51","nodeType":"YulAssignment","src":"1178:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"1200:9:51","nodeType":"YulIdentifier","src":"1200:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"1187:12:51","nodeType":"YulIdentifier","src":"1187:12:51"},"nativeSrc":"1187:23:51","nodeType":"YulFunctionCall","src":"1187:23:51"},"variableNames":[{"name":"value","nativeSrc":"1178:5:51","nodeType":"YulIdentifier","src":"1178:5:51"}]},{"nativeSrc":"1219:15:51","nodeType":"YulAssignment","src":"1219:15:51","value":{"name":"value","nativeSrc":"1229:5:51","nodeType":"YulIdentifier","src":"1229:5:51"},"variableNames":[{"name":"value0","nativeSrc":"1219:6:51","nodeType":"YulIdentifier","src":"1219:6:51"}]},{"nativeSrc":"1243:46:51","nodeType":"YulVariableDeclaration","src":"1243:46:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1274:9:51","nodeType":"YulIdentifier","src":"1274:9:51"},{"kind":"number","nativeSrc":"1285:2:51","nodeType":"YulLiteral","src":"1285:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1270:3:51","nodeType":"YulIdentifier","src":"1270:3:51"},"nativeSrc":"1270:18:51","nodeType":"YulFunctionCall","src":"1270:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"1257:12:51","nodeType":"YulIdentifier","src":"1257:12:51"},"nativeSrc":"1257:32:51","nodeType":"YulFunctionCall","src":"1257:32:51"},"variables":[{"name":"offset","nativeSrc":"1247:6:51","nodeType":"YulTypedName","src":"1247:6:51","type":""}]},{"body":{"nativeSrc":"1332:16:51","nodeType":"YulBlock","src":"1332:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1341:1:51","nodeType":"YulLiteral","src":"1341:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1344:1:51","nodeType":"YulLiteral","src":"1344:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1334:6:51","nodeType":"YulIdentifier","src":"1334:6:51"},"nativeSrc":"1334:12:51","nodeType":"YulFunctionCall","src":"1334:12:51"},"nativeSrc":"1334:12:51","nodeType":"YulExpressionStatement","src":"1334:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"1304:6:51","nodeType":"YulIdentifier","src":"1304:6:51"},{"kind":"number","nativeSrc":"1312:18:51","nodeType":"YulLiteral","src":"1312:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1301:2:51","nodeType":"YulIdentifier","src":"1301:2:51"},"nativeSrc":"1301:30:51","nodeType":"YulFunctionCall","src":"1301:30:51"},"nativeSrc":"1298:50:51","nodeType":"YulIf","src":"1298:50:51"},{"nativeSrc":"1357:32:51","nodeType":"YulVariableDeclaration","src":"1357:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"1371:9:51","nodeType":"YulIdentifier","src":"1371:9:51"},{"name":"offset","nativeSrc":"1382:6:51","nodeType":"YulIdentifier","src":"1382:6:51"}],"functionName":{"name":"add","nativeSrc":"1367:3:51","nodeType":"YulIdentifier","src":"1367:3:51"},"nativeSrc":"1367:22:51","nodeType":"YulFunctionCall","src":"1367:22:51"},"variables":[{"name":"_1","nativeSrc":"1361:2:51","nodeType":"YulTypedName","src":"1361:2:51","type":""}]},{"body":{"nativeSrc":"1437:16:51","nodeType":"YulBlock","src":"1437:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1446:1:51","nodeType":"YulLiteral","src":"1446:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1449:1:51","nodeType":"YulLiteral","src":"1449:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1439:6:51","nodeType":"YulIdentifier","src":"1439:6:51"},"nativeSrc":"1439:12:51","nodeType":"YulFunctionCall","src":"1439:12:51"},"nativeSrc":"1439:12:51","nodeType":"YulExpressionStatement","src":"1439:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1416:2:51","nodeType":"YulIdentifier","src":"1416:2:51"},{"kind":"number","nativeSrc":"1420:4:51","nodeType":"YulLiteral","src":"1420:4:51","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"1412:3:51","nodeType":"YulIdentifier","src":"1412:3:51"},"nativeSrc":"1412:13:51","nodeType":"YulFunctionCall","src":"1412:13:51"},{"name":"dataEnd","nativeSrc":"1427:7:51","nodeType":"YulIdentifier","src":"1427:7:51"}],"functionName":{"name":"slt","nativeSrc":"1408:3:51","nodeType":"YulIdentifier","src":"1408:3:51"},"nativeSrc":"1408:27:51","nodeType":"YulFunctionCall","src":"1408:27:51"}],"functionName":{"name":"iszero","nativeSrc":"1401:6:51","nodeType":"YulIdentifier","src":"1401:6:51"},"nativeSrc":"1401:35:51","nodeType":"YulFunctionCall","src":"1401:35:51"},"nativeSrc":"1398:55:51","nodeType":"YulIf","src":"1398:55:51"},{"nativeSrc":"1462:30:51","nodeType":"YulVariableDeclaration","src":"1462:30:51","value":{"arguments":[{"name":"_1","nativeSrc":"1489:2:51","nodeType":"YulIdentifier","src":"1489:2:51"}],"functionName":{"name":"calldataload","nativeSrc":"1476:12:51","nodeType":"YulIdentifier","src":"1476:12:51"},"nativeSrc":"1476:16:51","nodeType":"YulFunctionCall","src":"1476:16:51"},"variables":[{"name":"length","nativeSrc":"1466:6:51","nodeType":"YulTypedName","src":"1466:6:51","type":""}]},{"body":{"nativeSrc":"1535:16:51","nodeType":"YulBlock","src":"1535:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1544:1:51","nodeType":"YulLiteral","src":"1544:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1547:1:51","nodeType":"YulLiteral","src":"1547:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1537:6:51","nodeType":"YulIdentifier","src":"1537:6:51"},"nativeSrc":"1537:12:51","nodeType":"YulFunctionCall","src":"1537:12:51"},"nativeSrc":"1537:12:51","nodeType":"YulExpressionStatement","src":"1537:12:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"1507:6:51","nodeType":"YulIdentifier","src":"1507:6:51"},{"kind":"number","nativeSrc":"1515:18:51","nodeType":"YulLiteral","src":"1515:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"1504:2:51","nodeType":"YulIdentifier","src":"1504:2:51"},"nativeSrc":"1504:30:51","nodeType":"YulFunctionCall","src":"1504:30:51"},"nativeSrc":"1501:50:51","nodeType":"YulIf","src":"1501:50:51"},{"body":{"nativeSrc":"1601:16:51","nodeType":"YulBlock","src":"1601:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1610:1:51","nodeType":"YulLiteral","src":"1610:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1613:1:51","nodeType":"YulLiteral","src":"1613:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1603:6:51","nodeType":"YulIdentifier","src":"1603:6:51"},"nativeSrc":"1603:12:51","nodeType":"YulFunctionCall","src":"1603:12:51"},"nativeSrc":"1603:12:51","nodeType":"YulExpressionStatement","src":"1603:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"1574:2:51","nodeType":"YulIdentifier","src":"1574:2:51"},{"name":"length","nativeSrc":"1578:6:51","nodeType":"YulIdentifier","src":"1578:6:51"}],"functionName":{"name":"add","nativeSrc":"1570:3:51","nodeType":"YulIdentifier","src":"1570:3:51"},"nativeSrc":"1570:15:51","nodeType":"YulFunctionCall","src":"1570:15:51"},{"kind":"number","nativeSrc":"1587:2:51","nodeType":"YulLiteral","src":"1587:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1566:3:51","nodeType":"YulIdentifier","src":"1566:3:51"},"nativeSrc":"1566:24:51","nodeType":"YulFunctionCall","src":"1566:24:51"},{"name":"dataEnd","nativeSrc":"1592:7:51","nodeType":"YulIdentifier","src":"1592:7:51"}],"functionName":{"name":"gt","nativeSrc":"1563:2:51","nodeType":"YulIdentifier","src":"1563:2:51"},"nativeSrc":"1563:37:51","nodeType":"YulFunctionCall","src":"1563:37:51"},"nativeSrc":"1560:57:51","nodeType":"YulIf","src":"1560:57:51"},{"nativeSrc":"1626:21:51","nodeType":"YulAssignment","src":"1626:21:51","value":{"arguments":[{"name":"_1","nativeSrc":"1640:2:51","nodeType":"YulIdentifier","src":"1640:2:51"},{"kind":"number","nativeSrc":"1644:2:51","nodeType":"YulLiteral","src":"1644:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1636:3:51","nodeType":"YulIdentifier","src":"1636:3:51"},"nativeSrc":"1636:11:51","nodeType":"YulFunctionCall","src":"1636:11:51"},"variableNames":[{"name":"value1","nativeSrc":"1626:6:51","nodeType":"YulIdentifier","src":"1626:6:51"}]},{"nativeSrc":"1656:16:51","nodeType":"YulAssignment","src":"1656:16:51","value":{"name":"length","nativeSrc":"1666:6:51","nodeType":"YulIdentifier","src":"1666:6:51"},"variableNames":[{"name":"value2","nativeSrc":"1656:6:51","nodeType":"YulIdentifier","src":"1656:6:51"}]}]},"name":"abi_decode_tuple_t_uint256t_bytes_calldata_ptr","nativeSrc":"978:700:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1034:9:51","nodeType":"YulTypedName","src":"1034:9:51","type":""},{"name":"dataEnd","nativeSrc":"1045:7:51","nodeType":"YulTypedName","src":"1045:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1057:6:51","nodeType":"YulTypedName","src":"1057:6:51","type":""},{"name":"value1","nativeSrc":"1065:6:51","nodeType":"YulTypedName","src":"1065:6:51","type":""},{"name":"value2","nativeSrc":"1073:6:51","nodeType":"YulTypedName","src":"1073:6:51","type":""}],"src":"978:700:51"},{"body":{"nativeSrc":"1768:73:51","nodeType":"YulBlock","src":"1768:73:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"1785:3:51","nodeType":"YulIdentifier","src":"1785:3:51"},{"name":"length","nativeSrc":"1790:6:51","nodeType":"YulIdentifier","src":"1790:6:51"}],"functionName":{"name":"mstore","nativeSrc":"1778:6:51","nodeType":"YulIdentifier","src":"1778:6:51"},"nativeSrc":"1778:19:51","nodeType":"YulFunctionCall","src":"1778:19:51"},"nativeSrc":"1778:19:51","nodeType":"YulExpressionStatement","src":"1778:19:51"},{"nativeSrc":"1806:29:51","nodeType":"YulAssignment","src":"1806:29:51","value":{"arguments":[{"name":"pos","nativeSrc":"1825:3:51","nodeType":"YulIdentifier","src":"1825:3:51"},{"kind":"number","nativeSrc":"1830:4:51","nodeType":"YulLiteral","src":"1830:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1821:3:51","nodeType":"YulIdentifier","src":"1821:3:51"},"nativeSrc":"1821:14:51","nodeType":"YulFunctionCall","src":"1821:14:51"},"variableNames":[{"name":"updated_pos","nativeSrc":"1806:11:51","nodeType":"YulIdentifier","src":"1806:11:51"}]}]},"name":"array_storeLengthForEncoding_string_library","nativeSrc":"1683:158:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"1736:3:51","nodeType":"YulTypedName","src":"1736:3:51","type":""},{"name":"length","nativeSrc":"1741:6:51","nodeType":"YulTypedName","src":"1741:6:51","type":""}],"returnVariables":[{"name":"updated_pos","nativeSrc":"1752:11:51","nodeType":"YulTypedName","src":"1752:11:51","type":""}],"src":"1683:158:51"},{"body":{"nativeSrc":"1912:184:51","nodeType":"YulBlock","src":"1912:184:51","statements":[{"nativeSrc":"1922:10:51","nodeType":"YulVariableDeclaration","src":"1922:10:51","value":{"kind":"number","nativeSrc":"1931:1:51","nodeType":"YulLiteral","src":"1931:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"1926:1:51","nodeType":"YulTypedName","src":"1926:1:51","type":""}]},{"body":{"nativeSrc":"1991:63:51","nodeType":"YulBlock","src":"1991:63:51","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nativeSrc":"2016:3:51","nodeType":"YulIdentifier","src":"2016:3:51"},{"name":"i","nativeSrc":"2021:1:51","nodeType":"YulIdentifier","src":"2021:1:51"}],"functionName":{"name":"add","nativeSrc":"2012:3:51","nodeType":"YulIdentifier","src":"2012:3:51"},"nativeSrc":"2012:11:51","nodeType":"YulFunctionCall","src":"2012:11:51"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"2035:3:51","nodeType":"YulIdentifier","src":"2035:3:51"},{"name":"i","nativeSrc":"2040:1:51","nodeType":"YulIdentifier","src":"2040:1:51"}],"functionName":{"name":"add","nativeSrc":"2031:3:51","nodeType":"YulIdentifier","src":"2031:3:51"},"nativeSrc":"2031:11:51","nodeType":"YulFunctionCall","src":"2031:11:51"}],"functionName":{"name":"mload","nativeSrc":"2025:5:51","nodeType":"YulIdentifier","src":"2025:5:51"},"nativeSrc":"2025:18:51","nodeType":"YulFunctionCall","src":"2025:18:51"}],"functionName":{"name":"mstore","nativeSrc":"2005:6:51","nodeType":"YulIdentifier","src":"2005:6:51"},"nativeSrc":"2005:39:51","nodeType":"YulFunctionCall","src":"2005:39:51"},"nativeSrc":"2005:39:51","nodeType":"YulExpressionStatement","src":"2005:39:51"}]},"condition":{"arguments":[{"name":"i","nativeSrc":"1952:1:51","nodeType":"YulIdentifier","src":"1952:1:51"},{"name":"length","nativeSrc":"1955:6:51","nodeType":"YulIdentifier","src":"1955:6:51"}],"functionName":{"name":"lt","nativeSrc":"1949:2:51","nodeType":"YulIdentifier","src":"1949:2:51"},"nativeSrc":"1949:13:51","nodeType":"YulFunctionCall","src":"1949:13:51"},"nativeSrc":"1941:113:51","nodeType":"YulForLoop","post":{"nativeSrc":"1963:19:51","nodeType":"YulBlock","src":"1963:19:51","statements":[{"nativeSrc":"1965:15:51","nodeType":"YulAssignment","src":"1965:15:51","value":{"arguments":[{"name":"i","nativeSrc":"1974:1:51","nodeType":"YulIdentifier","src":"1974:1:51"},{"kind":"number","nativeSrc":"1977:2:51","nodeType":"YulLiteral","src":"1977:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1970:3:51","nodeType":"YulIdentifier","src":"1970:3:51"},"nativeSrc":"1970:10:51","nodeType":"YulFunctionCall","src":"1970:10:51"},"variableNames":[{"name":"i","nativeSrc":"1965:1:51","nodeType":"YulIdentifier","src":"1965:1:51"}]}]},"pre":{"nativeSrc":"1945:3:51","nodeType":"YulBlock","src":"1945:3:51","statements":[]},"src":"1941:113:51"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nativeSrc":"2074:3:51","nodeType":"YulIdentifier","src":"2074:3:51"},{"name":"length","nativeSrc":"2079:6:51","nodeType":"YulIdentifier","src":"2079:6:51"}],"functionName":{"name":"add","nativeSrc":"2070:3:51","nodeType":"YulIdentifier","src":"2070:3:51"},"nativeSrc":"2070:16:51","nodeType":"YulFunctionCall","src":"2070:16:51"},{"kind":"number","nativeSrc":"2088:1:51","nodeType":"YulLiteral","src":"2088:1:51","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"2063:6:51","nodeType":"YulIdentifier","src":"2063:6:51"},"nativeSrc":"2063:27:51","nodeType":"YulFunctionCall","src":"2063:27:51"},"nativeSrc":"2063:27:51","nodeType":"YulExpressionStatement","src":"2063:27:51"}]},"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"1846:250:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nativeSrc":"1890:3:51","nodeType":"YulTypedName","src":"1890:3:51","type":""},{"name":"dst","nativeSrc":"1895:3:51","nodeType":"YulTypedName","src":"1895:3:51","type":""},{"name":"length","nativeSrc":"1900:6:51","nodeType":"YulTypedName","src":"1900:6:51","type":""}],"src":"1846:250:51"},{"body":{"nativeSrc":"2151:221:51","nodeType":"YulBlock","src":"2151:221:51","statements":[{"nativeSrc":"2161:26:51","nodeType":"YulVariableDeclaration","src":"2161:26:51","value":{"arguments":[{"name":"value","nativeSrc":"2181:5:51","nodeType":"YulIdentifier","src":"2181:5:51"}],"functionName":{"name":"mload","nativeSrc":"2175:5:51","nodeType":"YulIdentifier","src":"2175:5:51"},"nativeSrc":"2175:12:51","nodeType":"YulFunctionCall","src":"2175:12:51"},"variables":[{"name":"length","nativeSrc":"2165:6:51","nodeType":"YulTypedName","src":"2165:6:51","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"2203:3:51","nodeType":"YulIdentifier","src":"2203:3:51"},{"name":"length","nativeSrc":"2208:6:51","nodeType":"YulIdentifier","src":"2208:6:51"}],"functionName":{"name":"mstore","nativeSrc":"2196:6:51","nodeType":"YulIdentifier","src":"2196:6:51"},"nativeSrc":"2196:19:51","nodeType":"YulFunctionCall","src":"2196:19:51"},"nativeSrc":"2196:19:51","nodeType":"YulExpressionStatement","src":"2196:19:51"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"2263:5:51","nodeType":"YulIdentifier","src":"2263:5:51"},{"kind":"number","nativeSrc":"2270:4:51","nodeType":"YulLiteral","src":"2270:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2259:3:51","nodeType":"YulIdentifier","src":"2259:3:51"},"nativeSrc":"2259:16:51","nodeType":"YulFunctionCall","src":"2259:16:51"},{"arguments":[{"name":"pos","nativeSrc":"2281:3:51","nodeType":"YulIdentifier","src":"2281:3:51"},{"kind":"number","nativeSrc":"2286:4:51","nodeType":"YulLiteral","src":"2286:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2277:3:51","nodeType":"YulIdentifier","src":"2277:3:51"},"nativeSrc":"2277:14:51","nodeType":"YulFunctionCall","src":"2277:14:51"},{"name":"length","nativeSrc":"2293:6:51","nodeType":"YulIdentifier","src":"2293:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"2224:34:51","nodeType":"YulIdentifier","src":"2224:34:51"},"nativeSrc":"2224:76:51","nodeType":"YulFunctionCall","src":"2224:76:51"},"nativeSrc":"2224:76:51","nodeType":"YulExpressionStatement","src":"2224:76:51"},{"nativeSrc":"2309:57:51","nodeType":"YulAssignment","src":"2309:57:51","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"2324:3:51","nodeType":"YulIdentifier","src":"2324:3:51"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"2337:6:51","nodeType":"YulIdentifier","src":"2337:6:51"},{"kind":"number","nativeSrc":"2345:2:51","nodeType":"YulLiteral","src":"2345:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"2333:3:51","nodeType":"YulIdentifier","src":"2333:3:51"},"nativeSrc":"2333:15:51","nodeType":"YulFunctionCall","src":"2333:15:51"},{"arguments":[{"kind":"number","nativeSrc":"2354:2:51","nodeType":"YulLiteral","src":"2354:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"2350:3:51","nodeType":"YulIdentifier","src":"2350:3:51"},"nativeSrc":"2350:7:51","nodeType":"YulFunctionCall","src":"2350:7:51"}],"functionName":{"name":"and","nativeSrc":"2329:3:51","nodeType":"YulIdentifier","src":"2329:3:51"},"nativeSrc":"2329:29:51","nodeType":"YulFunctionCall","src":"2329:29:51"}],"functionName":{"name":"add","nativeSrc":"2320:3:51","nodeType":"YulIdentifier","src":"2320:3:51"},"nativeSrc":"2320:39:51","nodeType":"YulFunctionCall","src":"2320:39:51"},{"kind":"number","nativeSrc":"2361:4:51","nodeType":"YulLiteral","src":"2361:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2316:3:51","nodeType":"YulIdentifier","src":"2316:3:51"},"nativeSrc":"2316:50:51","nodeType":"YulFunctionCall","src":"2316:50:51"},"variableNames":[{"name":"end","nativeSrc":"2309:3:51","nodeType":"YulIdentifier","src":"2309:3:51"}]}]},"name":"abi_encode_string","nativeSrc":"2101:271:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"2128:5:51","nodeType":"YulTypedName","src":"2128:5:51","type":""},{"name":"pos","nativeSrc":"2135:3:51","nodeType":"YulTypedName","src":"2135:3:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"2143:3:51","nodeType":"YulTypedName","src":"2143:3:51","type":""}],"src":"2101:271:51"},{"body":{"nativeSrc":"2673:397:51","nodeType":"YulBlock","src":"2673:397:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2690:9:51","nodeType":"YulIdentifier","src":"2690:9:51"},{"name":"value0","nativeSrc":"2701:6:51","nodeType":"YulIdentifier","src":"2701:6:51"}],"functionName":{"name":"mstore","nativeSrc":"2683:6:51","nodeType":"YulIdentifier","src":"2683:6:51"},"nativeSrc":"2683:25:51","nodeType":"YulFunctionCall","src":"2683:25:51"},"nativeSrc":"2683:25:51","nodeType":"YulExpressionStatement","src":"2683:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2728:9:51","nodeType":"YulIdentifier","src":"2728:9:51"},{"kind":"number","nativeSrc":"2739:2:51","nodeType":"YulLiteral","src":"2739:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2724:3:51","nodeType":"YulIdentifier","src":"2724:3:51"},"nativeSrc":"2724:18:51","nodeType":"YulFunctionCall","src":"2724:18:51"},{"kind":"number","nativeSrc":"2744:3:51","nodeType":"YulLiteral","src":"2744:3:51","type":"","value":"160"}],"functionName":{"name":"mstore","nativeSrc":"2717:6:51","nodeType":"YulIdentifier","src":"2717:6:51"},"nativeSrc":"2717:31:51","nodeType":"YulFunctionCall","src":"2717:31:51"},"nativeSrc":"2717:31:51","nodeType":"YulExpressionStatement","src":"2717:31:51"},{"nativeSrc":"2757:60:51","nodeType":"YulVariableDeclaration","src":"2757:60:51","value":{"arguments":[{"name":"value1","nativeSrc":"2789:6:51","nodeType":"YulIdentifier","src":"2789:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"2801:9:51","nodeType":"YulIdentifier","src":"2801:9:51"},{"kind":"number","nativeSrc":"2812:3:51","nodeType":"YulLiteral","src":"2812:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"2797:3:51","nodeType":"YulIdentifier","src":"2797:3:51"},"nativeSrc":"2797:19:51","nodeType":"YulFunctionCall","src":"2797:19:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"2771:17:51","nodeType":"YulIdentifier","src":"2771:17:51"},"nativeSrc":"2771:46:51","nodeType":"YulFunctionCall","src":"2771:46:51"},"variables":[{"name":"tail_1","nativeSrc":"2761:6:51","nodeType":"YulTypedName","src":"2761:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2837:9:51","nodeType":"YulIdentifier","src":"2837:9:51"},{"kind":"number","nativeSrc":"2848:2:51","nodeType":"YulLiteral","src":"2848:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2833:3:51","nodeType":"YulIdentifier","src":"2833:3:51"},"nativeSrc":"2833:18:51","nodeType":"YulFunctionCall","src":"2833:18:51"},{"arguments":[{"name":"tail_1","nativeSrc":"2857:6:51","nodeType":"YulIdentifier","src":"2857:6:51"},{"name":"headStart","nativeSrc":"2865:9:51","nodeType":"YulIdentifier","src":"2865:9:51"}],"functionName":{"name":"sub","nativeSrc":"2853:3:51","nodeType":"YulIdentifier","src":"2853:3:51"},"nativeSrc":"2853:22:51","nodeType":"YulFunctionCall","src":"2853:22:51"}],"functionName":{"name":"mstore","nativeSrc":"2826:6:51","nodeType":"YulIdentifier","src":"2826:6:51"},"nativeSrc":"2826:50:51","nodeType":"YulFunctionCall","src":"2826:50:51"},"nativeSrc":"2826:50:51","nodeType":"YulExpressionStatement","src":"2826:50:51"},{"nativeSrc":"2885:41:51","nodeType":"YulAssignment","src":"2885:41:51","value":{"arguments":[{"name":"value2","nativeSrc":"2911:6:51","nodeType":"YulIdentifier","src":"2911:6:51"},{"name":"tail_1","nativeSrc":"2919:6:51","nodeType":"YulIdentifier","src":"2919:6:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"2893:17:51","nodeType":"YulIdentifier","src":"2893:17:51"},"nativeSrc":"2893:33:51","nodeType":"YulFunctionCall","src":"2893:33:51"},"variableNames":[{"name":"tail","nativeSrc":"2885:4:51","nodeType":"YulIdentifier","src":"2885:4:51"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2946:9:51","nodeType":"YulIdentifier","src":"2946:9:51"},{"kind":"number","nativeSrc":"2957:2:51","nodeType":"YulLiteral","src":"2957:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"2942:3:51","nodeType":"YulIdentifier","src":"2942:3:51"},"nativeSrc":"2942:18:51","nodeType":"YulFunctionCall","src":"2942:18:51"},{"arguments":[{"name":"value3","nativeSrc":"2966:6:51","nodeType":"YulIdentifier","src":"2966:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2982:3:51","nodeType":"YulLiteral","src":"2982:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"2987:1:51","nodeType":"YulLiteral","src":"2987:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2978:3:51","nodeType":"YulIdentifier","src":"2978:3:51"},"nativeSrc":"2978:11:51","nodeType":"YulFunctionCall","src":"2978:11:51"},{"kind":"number","nativeSrc":"2991:1:51","nodeType":"YulLiteral","src":"2991:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2974:3:51","nodeType":"YulIdentifier","src":"2974:3:51"},"nativeSrc":"2974:19:51","nodeType":"YulFunctionCall","src":"2974:19:51"}],"functionName":{"name":"and","nativeSrc":"2962:3:51","nodeType":"YulIdentifier","src":"2962:3:51"},"nativeSrc":"2962:32:51","nodeType":"YulFunctionCall","src":"2962:32:51"}],"functionName":{"name":"mstore","nativeSrc":"2935:6:51","nodeType":"YulIdentifier","src":"2935:6:51"},"nativeSrc":"2935:60:51","nodeType":"YulFunctionCall","src":"2935:60:51"},"nativeSrc":"2935:60:51","nodeType":"YulExpressionStatement","src":"2935:60:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3015:9:51","nodeType":"YulIdentifier","src":"3015:9:51"},{"kind":"number","nativeSrc":"3026:3:51","nodeType":"YulLiteral","src":"3026:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3011:3:51","nodeType":"YulIdentifier","src":"3011:3:51"},"nativeSrc":"3011:19:51","nodeType":"YulFunctionCall","src":"3011:19:51"},{"arguments":[{"name":"value4","nativeSrc":"3036:6:51","nodeType":"YulIdentifier","src":"3036:6:51"},{"kind":"number","nativeSrc":"3044:18:51","nodeType":"YulLiteral","src":"3044:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"3032:3:51","nodeType":"YulIdentifier","src":"3032:3:51"},"nativeSrc":"3032:31:51","nodeType":"YulFunctionCall","src":"3032:31:51"}],"functionName":{"name":"mstore","nativeSrc":"3004:6:51","nodeType":"YulIdentifier","src":"3004:6:51"},"nativeSrc":"3004:60:51","nodeType":"YulFunctionCall","src":"3004:60:51"},"nativeSrc":"3004:60:51","nodeType":"YulExpressionStatement","src":"3004:60:51"}]},"name":"abi_encode_tuple_t_userDefinedValueType$_TransactionHash_$13256_t_string_memory_ptr_t_string_memory_ptr_t_address_t_uint64__to_t_bytes32_t_string_memory_ptr_t_string_memory_ptr_t_address_t_uint64__fromStack_library_reversed","nativeSrc":"2377:693:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2610:9:51","nodeType":"YulTypedName","src":"2610:9:51","type":""},{"name":"value4","nativeSrc":"2621:6:51","nodeType":"YulTypedName","src":"2621:6:51","type":""},{"name":"value3","nativeSrc":"2629:6:51","nodeType":"YulTypedName","src":"2629:6:51","type":""},{"name":"value2","nativeSrc":"2637:6:51","nodeType":"YulTypedName","src":"2637:6:51","type":""},{"name":"value1","nativeSrc":"2645:6:51","nodeType":"YulTypedName","src":"2645:6:51","type":""},{"name":"value0","nativeSrc":"2653:6:51","nodeType":"YulTypedName","src":"2653:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2664:4:51","nodeType":"YulTypedName","src":"2664:4:51","type":""}],"src":"2377:693:51"},{"body":{"nativeSrc":"3107:95:51","nodeType":"YulBlock","src":"3107:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3124:1:51","nodeType":"YulLiteral","src":"3124:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"3131:3:51","nodeType":"YulLiteral","src":"3131:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"3136:10:51","nodeType":"YulLiteral","src":"3136:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"3127:3:51","nodeType":"YulIdentifier","src":"3127:3:51"},"nativeSrc":"3127:20:51","nodeType":"YulFunctionCall","src":"3127:20:51"}],"functionName":{"name":"mstore","nativeSrc":"3117:6:51","nodeType":"YulIdentifier","src":"3117:6:51"},"nativeSrc":"3117:31:51","nodeType":"YulFunctionCall","src":"3117:31:51"},"nativeSrc":"3117:31:51","nodeType":"YulExpressionStatement","src":"3117:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3164:1:51","nodeType":"YulLiteral","src":"3164:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"3167:4:51","nodeType":"YulLiteral","src":"3167:4:51","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"3157:6:51","nodeType":"YulIdentifier","src":"3157:6:51"},"nativeSrc":"3157:15:51","nodeType":"YulFunctionCall","src":"3157:15:51"},"nativeSrc":"3157:15:51","nodeType":"YulExpressionStatement","src":"3157:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3188:1:51","nodeType":"YulLiteral","src":"3188:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"3191:4:51","nodeType":"YulLiteral","src":"3191:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"3181:6:51","nodeType":"YulIdentifier","src":"3181:6:51"},"nativeSrc":"3181:15:51","nodeType":"YulFunctionCall","src":"3181:15:51"},"nativeSrc":"3181:15:51","nodeType":"YulExpressionStatement","src":"3181:15:51"}]},"name":"panic_error_0x41","nativeSrc":"3075:127:51","nodeType":"YulFunctionDefinition","src":"3075:127:51"},{"body":{"nativeSrc":"3253:207:51","nodeType":"YulBlock","src":"3253:207:51","statements":[{"nativeSrc":"3263:19:51","nodeType":"YulAssignment","src":"3263:19:51","value":{"arguments":[{"kind":"number","nativeSrc":"3279:2:51","nodeType":"YulLiteral","src":"3279:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"3273:5:51","nodeType":"YulIdentifier","src":"3273:5:51"},"nativeSrc":"3273:9:51","nodeType":"YulFunctionCall","src":"3273:9:51"},"variableNames":[{"name":"memPtr","nativeSrc":"3263:6:51","nodeType":"YulIdentifier","src":"3263:6:51"}]},{"nativeSrc":"3291:35:51","nodeType":"YulVariableDeclaration","src":"3291:35:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"3313:6:51","nodeType":"YulIdentifier","src":"3313:6:51"},{"kind":"number","nativeSrc":"3321:4:51","nodeType":"YulLiteral","src":"3321:4:51","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"3309:3:51","nodeType":"YulIdentifier","src":"3309:3:51"},"nativeSrc":"3309:17:51","nodeType":"YulFunctionCall","src":"3309:17:51"},"variables":[{"name":"newFreePtr","nativeSrc":"3295:10:51","nodeType":"YulTypedName","src":"3295:10:51","type":""}]},{"body":{"nativeSrc":"3401:22:51","nodeType":"YulBlock","src":"3401:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3403:16:51","nodeType":"YulIdentifier","src":"3403:16:51"},"nativeSrc":"3403:18:51","nodeType":"YulFunctionCall","src":"3403:18:51"},"nativeSrc":"3403:18:51","nodeType":"YulExpressionStatement","src":"3403:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"3344:10:51","nodeType":"YulIdentifier","src":"3344:10:51"},{"kind":"number","nativeSrc":"3356:18:51","nodeType":"YulLiteral","src":"3356:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3341:2:51","nodeType":"YulIdentifier","src":"3341:2:51"},"nativeSrc":"3341:34:51","nodeType":"YulFunctionCall","src":"3341:34:51"},{"arguments":[{"name":"newFreePtr","nativeSrc":"3380:10:51","nodeType":"YulIdentifier","src":"3380:10:51"},{"name":"memPtr","nativeSrc":"3392:6:51","nodeType":"YulIdentifier","src":"3392:6:51"}],"functionName":{"name":"lt","nativeSrc":"3377:2:51","nodeType":"YulIdentifier","src":"3377:2:51"},"nativeSrc":"3377:22:51","nodeType":"YulFunctionCall","src":"3377:22:51"}],"functionName":{"name":"or","nativeSrc":"3338:2:51","nodeType":"YulIdentifier","src":"3338:2:51"},"nativeSrc":"3338:62:51","nodeType":"YulFunctionCall","src":"3338:62:51"},"nativeSrc":"3335:88:51","nodeType":"YulIf","src":"3335:88:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3439:2:51","nodeType":"YulLiteral","src":"3439:2:51","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"3443:10:51","nodeType":"YulIdentifier","src":"3443:10:51"}],"functionName":{"name":"mstore","nativeSrc":"3432:6:51","nodeType":"YulIdentifier","src":"3432:6:51"},"nativeSrc":"3432:22:51","nodeType":"YulFunctionCall","src":"3432:22:51"},"nativeSrc":"3432:22:51","nodeType":"YulExpressionStatement","src":"3432:22:51"}]},"name":"allocate_memory_2704","nativeSrc":"3207:253:51","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"3242:6:51","nodeType":"YulTypedName","src":"3242:6:51","type":""}],"src":"3207:253:51"},{"body":{"nativeSrc":"3511:211:51","nodeType":"YulBlock","src":"3511:211:51","statements":[{"nativeSrc":"3521:21:51","nodeType":"YulAssignment","src":"3521:21:51","value":{"arguments":[{"kind":"number","nativeSrc":"3537:4:51","nodeType":"YulLiteral","src":"3537:4:51","type":"","value":"0x40"}],"functionName":{"name":"mload","nativeSrc":"3531:5:51","nodeType":"YulIdentifier","src":"3531:5:51"},"nativeSrc":"3531:11:51","nodeType":"YulFunctionCall","src":"3531:11:51"},"variableNames":[{"name":"memPtr","nativeSrc":"3521:6:51","nodeType":"YulIdentifier","src":"3521:6:51"}]},{"nativeSrc":"3551:35:51","nodeType":"YulVariableDeclaration","src":"3551:35:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"3573:6:51","nodeType":"YulIdentifier","src":"3573:6:51"},{"kind":"number","nativeSrc":"3581:4:51","nodeType":"YulLiteral","src":"3581:4:51","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"3569:3:51","nodeType":"YulIdentifier","src":"3569:3:51"},"nativeSrc":"3569:17:51","nodeType":"YulFunctionCall","src":"3569:17:51"},"variables":[{"name":"newFreePtr","nativeSrc":"3555:10:51","nodeType":"YulTypedName","src":"3555:10:51","type":""}]},{"body":{"nativeSrc":"3661:22:51","nodeType":"YulBlock","src":"3661:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3663:16:51","nodeType":"YulIdentifier","src":"3663:16:51"},"nativeSrc":"3663:18:51","nodeType":"YulFunctionCall","src":"3663:18:51"},"nativeSrc":"3663:18:51","nodeType":"YulExpressionStatement","src":"3663:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"3604:10:51","nodeType":"YulIdentifier","src":"3604:10:51"},{"kind":"number","nativeSrc":"3616:18:51","nodeType":"YulLiteral","src":"3616:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3601:2:51","nodeType":"YulIdentifier","src":"3601:2:51"},"nativeSrc":"3601:34:51","nodeType":"YulFunctionCall","src":"3601:34:51"},{"arguments":[{"name":"newFreePtr","nativeSrc":"3640:10:51","nodeType":"YulIdentifier","src":"3640:10:51"},{"name":"memPtr","nativeSrc":"3652:6:51","nodeType":"YulIdentifier","src":"3652:6:51"}],"functionName":{"name":"lt","nativeSrc":"3637:2:51","nodeType":"YulIdentifier","src":"3637:2:51"},"nativeSrc":"3637:22:51","nodeType":"YulFunctionCall","src":"3637:22:51"}],"functionName":{"name":"or","nativeSrc":"3598:2:51","nodeType":"YulIdentifier","src":"3598:2:51"},"nativeSrc":"3598:62:51","nodeType":"YulFunctionCall","src":"3598:62:51"},"nativeSrc":"3595:88:51","nodeType":"YulIf","src":"3595:88:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3699:4:51","nodeType":"YulLiteral","src":"3699:4:51","type":"","value":"0x40"},{"name":"newFreePtr","nativeSrc":"3705:10:51","nodeType":"YulIdentifier","src":"3705:10:51"}],"functionName":{"name":"mstore","nativeSrc":"3692:6:51","nodeType":"YulIdentifier","src":"3692:6:51"},"nativeSrc":"3692:24:51","nodeType":"YulFunctionCall","src":"3692:24:51"},"nativeSrc":"3692:24:51","nodeType":"YulExpressionStatement","src":"3692:24:51"}]},"name":"allocate_memory_2705","nativeSrc":"3465:257:51","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"3500:6:51","nodeType":"YulTypedName","src":"3500:6:51","type":""}],"src":"3465:257:51"},{"body":{"nativeSrc":"3773:207:51","nodeType":"YulBlock","src":"3773:207:51","statements":[{"nativeSrc":"3783:19:51","nodeType":"YulAssignment","src":"3783:19:51","value":{"arguments":[{"kind":"number","nativeSrc":"3799:2:51","nodeType":"YulLiteral","src":"3799:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"3793:5:51","nodeType":"YulIdentifier","src":"3793:5:51"},"nativeSrc":"3793:9:51","nodeType":"YulFunctionCall","src":"3793:9:51"},"variableNames":[{"name":"memPtr","nativeSrc":"3783:6:51","nodeType":"YulIdentifier","src":"3783:6:51"}]},{"nativeSrc":"3811:35:51","nodeType":"YulVariableDeclaration","src":"3811:35:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"3833:6:51","nodeType":"YulIdentifier","src":"3833:6:51"},{"kind":"number","nativeSrc":"3841:4:51","nodeType":"YulLiteral","src":"3841:4:51","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"3829:3:51","nodeType":"YulIdentifier","src":"3829:3:51"},"nativeSrc":"3829:17:51","nodeType":"YulFunctionCall","src":"3829:17:51"},"variables":[{"name":"newFreePtr","nativeSrc":"3815:10:51","nodeType":"YulTypedName","src":"3815:10:51","type":""}]},{"body":{"nativeSrc":"3921:22:51","nodeType":"YulBlock","src":"3921:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"3923:16:51","nodeType":"YulIdentifier","src":"3923:16:51"},"nativeSrc":"3923:18:51","nodeType":"YulFunctionCall","src":"3923:18:51"},"nativeSrc":"3923:18:51","nodeType":"YulExpressionStatement","src":"3923:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"3864:10:51","nodeType":"YulIdentifier","src":"3864:10:51"},{"kind":"number","nativeSrc":"3876:18:51","nodeType":"YulLiteral","src":"3876:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"3861:2:51","nodeType":"YulIdentifier","src":"3861:2:51"},"nativeSrc":"3861:34:51","nodeType":"YulFunctionCall","src":"3861:34:51"},{"arguments":[{"name":"newFreePtr","nativeSrc":"3900:10:51","nodeType":"YulIdentifier","src":"3900:10:51"},{"name":"memPtr","nativeSrc":"3912:6:51","nodeType":"YulIdentifier","src":"3912:6:51"}],"functionName":{"name":"lt","nativeSrc":"3897:2:51","nodeType":"YulIdentifier","src":"3897:2:51"},"nativeSrc":"3897:22:51","nodeType":"YulFunctionCall","src":"3897:22:51"}],"functionName":{"name":"or","nativeSrc":"3858:2:51","nodeType":"YulIdentifier","src":"3858:2:51"},"nativeSrc":"3858:62:51","nodeType":"YulFunctionCall","src":"3858:62:51"},"nativeSrc":"3855:88:51","nodeType":"YulIf","src":"3855:88:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3959:2:51","nodeType":"YulLiteral","src":"3959:2:51","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"3963:10:51","nodeType":"YulIdentifier","src":"3963:10:51"}],"functionName":{"name":"mstore","nativeSrc":"3952:6:51","nodeType":"YulIdentifier","src":"3952:6:51"},"nativeSrc":"3952:22:51","nodeType":"YulFunctionCall","src":"3952:22:51"},"nativeSrc":"3952:22:51","nodeType":"YulExpressionStatement","src":"3952:22:51"}]},"name":"allocate_memory_2707","nativeSrc":"3727:253:51","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"3762:6:51","nodeType":"YulTypedName","src":"3762:6:51","type":""}],"src":"3727:253:51"},{"body":{"nativeSrc":"4030:230:51","nodeType":"YulBlock","src":"4030:230:51","statements":[{"nativeSrc":"4040:19:51","nodeType":"YulAssignment","src":"4040:19:51","value":{"arguments":[{"kind":"number","nativeSrc":"4056:2:51","nodeType":"YulLiteral","src":"4056:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"4050:5:51","nodeType":"YulIdentifier","src":"4050:5:51"},"nativeSrc":"4050:9:51","nodeType":"YulFunctionCall","src":"4050:9:51"},"variableNames":[{"name":"memPtr","nativeSrc":"4040:6:51","nodeType":"YulIdentifier","src":"4040:6:51"}]},{"nativeSrc":"4068:58:51","nodeType":"YulVariableDeclaration","src":"4068:58:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"4090:6:51","nodeType":"YulIdentifier","src":"4090:6:51"},{"arguments":[{"arguments":[{"name":"size","nativeSrc":"4106:4:51","nodeType":"YulIdentifier","src":"4106:4:51"},{"kind":"number","nativeSrc":"4112:2:51","nodeType":"YulLiteral","src":"4112:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"4102:3:51","nodeType":"YulIdentifier","src":"4102:3:51"},"nativeSrc":"4102:13:51","nodeType":"YulFunctionCall","src":"4102:13:51"},{"arguments":[{"kind":"number","nativeSrc":"4121:2:51","nodeType":"YulLiteral","src":"4121:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"4117:3:51","nodeType":"YulIdentifier","src":"4117:3:51"},"nativeSrc":"4117:7:51","nodeType":"YulFunctionCall","src":"4117:7:51"}],"functionName":{"name":"and","nativeSrc":"4098:3:51","nodeType":"YulIdentifier","src":"4098:3:51"},"nativeSrc":"4098:27:51","nodeType":"YulFunctionCall","src":"4098:27:51"}],"functionName":{"name":"add","nativeSrc":"4086:3:51","nodeType":"YulIdentifier","src":"4086:3:51"},"nativeSrc":"4086:40:51","nodeType":"YulFunctionCall","src":"4086:40:51"},"variables":[{"name":"newFreePtr","nativeSrc":"4072:10:51","nodeType":"YulTypedName","src":"4072:10:51","type":""}]},{"body":{"nativeSrc":"4201:22:51","nodeType":"YulBlock","src":"4201:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"4203:16:51","nodeType":"YulIdentifier","src":"4203:16:51"},"nativeSrc":"4203:18:51","nodeType":"YulFunctionCall","src":"4203:18:51"},"nativeSrc":"4203:18:51","nodeType":"YulExpressionStatement","src":"4203:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"4144:10:51","nodeType":"YulIdentifier","src":"4144:10:51"},{"kind":"number","nativeSrc":"4156:18:51","nodeType":"YulLiteral","src":"4156:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4141:2:51","nodeType":"YulIdentifier","src":"4141:2:51"},"nativeSrc":"4141:34:51","nodeType":"YulFunctionCall","src":"4141:34:51"},{"arguments":[{"name":"newFreePtr","nativeSrc":"4180:10:51","nodeType":"YulIdentifier","src":"4180:10:51"},{"name":"memPtr","nativeSrc":"4192:6:51","nodeType":"YulIdentifier","src":"4192:6:51"}],"functionName":{"name":"lt","nativeSrc":"4177:2:51","nodeType":"YulIdentifier","src":"4177:2:51"},"nativeSrc":"4177:22:51","nodeType":"YulFunctionCall","src":"4177:22:51"}],"functionName":{"name":"or","nativeSrc":"4138:2:51","nodeType":"YulIdentifier","src":"4138:2:51"},"nativeSrc":"4138:62:51","nodeType":"YulFunctionCall","src":"4138:62:51"},"nativeSrc":"4135:88:51","nodeType":"YulIf","src":"4135:88:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"4239:2:51","nodeType":"YulLiteral","src":"4239:2:51","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"4243:10:51","nodeType":"YulIdentifier","src":"4243:10:51"}],"functionName":{"name":"mstore","nativeSrc":"4232:6:51","nodeType":"YulIdentifier","src":"4232:6:51"},"nativeSrc":"4232:22:51","nodeType":"YulFunctionCall","src":"4232:22:51"},"nativeSrc":"4232:22:51","nodeType":"YulExpressionStatement","src":"4232:22:51"}]},"name":"allocate_memory","nativeSrc":"3985:275:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nativeSrc":"4010:4:51","nodeType":"YulTypedName","src":"4010:4:51","type":""}],"returnVariables":[{"name":"memPtr","nativeSrc":"4019:6:51","nodeType":"YulTypedName","src":"4019:6:51","type":""}],"src":"3985:275:51"},{"body":{"nativeSrc":"4337:123:51","nodeType":"YulBlock","src":"4337:123:51","statements":[{"nativeSrc":"4347:29:51","nodeType":"YulAssignment","src":"4347:29:51","value":{"arguments":[{"name":"offset","nativeSrc":"4369:6:51","nodeType":"YulIdentifier","src":"4369:6:51"}],"functionName":{"name":"calldataload","nativeSrc":"4356:12:51","nodeType":"YulIdentifier","src":"4356:12:51"},"nativeSrc":"4356:20:51","nodeType":"YulFunctionCall","src":"4356:20:51"},"variableNames":[{"name":"value","nativeSrc":"4347:5:51","nodeType":"YulIdentifier","src":"4347:5:51"}]},{"body":{"nativeSrc":"4438:16:51","nodeType":"YulBlock","src":"4438:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4447:1:51","nodeType":"YulLiteral","src":"4447:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4450:1:51","nodeType":"YulLiteral","src":"4450:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4440:6:51","nodeType":"YulIdentifier","src":"4440:6:51"},"nativeSrc":"4440:12:51","nodeType":"YulFunctionCall","src":"4440:12:51"},"nativeSrc":"4440:12:51","nodeType":"YulExpressionStatement","src":"4440:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4398:5:51","nodeType":"YulIdentifier","src":"4398:5:51"},{"arguments":[{"name":"value","nativeSrc":"4409:5:51","nodeType":"YulIdentifier","src":"4409:5:51"},{"kind":"number","nativeSrc":"4416:18:51","nodeType":"YulLiteral","src":"4416:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"4405:3:51","nodeType":"YulIdentifier","src":"4405:3:51"},"nativeSrc":"4405:30:51","nodeType":"YulFunctionCall","src":"4405:30:51"}],"functionName":{"name":"eq","nativeSrc":"4395:2:51","nodeType":"YulIdentifier","src":"4395:2:51"},"nativeSrc":"4395:41:51","nodeType":"YulFunctionCall","src":"4395:41:51"}],"functionName":{"name":"iszero","nativeSrc":"4388:6:51","nodeType":"YulIdentifier","src":"4388:6:51"},"nativeSrc":"4388:49:51","nodeType":"YulFunctionCall","src":"4388:49:51"},"nativeSrc":"4385:69:51","nodeType":"YulIf","src":"4385:69:51"}]},"name":"abi_decode_userDefinedValueType_Timestamp","nativeSrc":"4265:195:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"4316:6:51","nodeType":"YulTypedName","src":"4316:6:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"4327:5:51","nodeType":"YulTypedName","src":"4327:5:51","type":""}],"src":"4265:195:51"},{"body":{"nativeSrc":"4512:109:51","nodeType":"YulBlock","src":"4512:109:51","statements":[{"nativeSrc":"4522:29:51","nodeType":"YulAssignment","src":"4522:29:51","value":{"arguments":[{"name":"offset","nativeSrc":"4544:6:51","nodeType":"YulIdentifier","src":"4544:6:51"}],"functionName":{"name":"calldataload","nativeSrc":"4531:12:51","nodeType":"YulIdentifier","src":"4531:12:51"},"nativeSrc":"4531:20:51","nodeType":"YulFunctionCall","src":"4531:20:51"},"variableNames":[{"name":"value","nativeSrc":"4522:5:51","nodeType":"YulIdentifier","src":"4522:5:51"}]},{"body":{"nativeSrc":"4599:16:51","nodeType":"YulBlock","src":"4599:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4608:1:51","nodeType":"YulLiteral","src":"4608:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4611:1:51","nodeType":"YulLiteral","src":"4611:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4601:6:51","nodeType":"YulIdentifier","src":"4601:6:51"},"nativeSrc":"4601:12:51","nodeType":"YulFunctionCall","src":"4601:12:51"},"nativeSrc":"4601:12:51","nodeType":"YulExpressionStatement","src":"4601:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4573:5:51","nodeType":"YulIdentifier","src":"4573:5:51"},{"arguments":[{"name":"value","nativeSrc":"4584:5:51","nodeType":"YulIdentifier","src":"4584:5:51"},{"kind":"number","nativeSrc":"4591:4:51","nodeType":"YulLiteral","src":"4591:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"4580:3:51","nodeType":"YulIdentifier","src":"4580:3:51"},"nativeSrc":"4580:16:51","nodeType":"YulFunctionCall","src":"4580:16:51"}],"functionName":{"name":"eq","nativeSrc":"4570:2:51","nodeType":"YulIdentifier","src":"4570:2:51"},"nativeSrc":"4570:27:51","nodeType":"YulFunctionCall","src":"4570:27:51"}],"functionName":{"name":"iszero","nativeSrc":"4563:6:51","nodeType":"YulIdentifier","src":"4563:6:51"},"nativeSrc":"4563:35:51","nodeType":"YulFunctionCall","src":"4563:35:51"},"nativeSrc":"4560:55:51","nodeType":"YulIf","src":"4560:55:51"}]},"name":"abi_decode_uint8","nativeSrc":"4465:156:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"4491:6:51","nodeType":"YulTypedName","src":"4491:6:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"4502:5:51","nodeType":"YulTypedName","src":"4502:5:51","type":""}],"src":"4465:156:51"},{"body":{"nativeSrc":"4687:1523:51","nodeType":"YulBlock","src":"4687:1523:51","statements":[{"body":{"nativeSrc":"4731:16:51","nodeType":"YulBlock","src":"4731:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4740:1:51","nodeType":"YulLiteral","src":"4740:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4743:1:51","nodeType":"YulLiteral","src":"4743:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4733:6:51","nodeType":"YulIdentifier","src":"4733:6:51"},"nativeSrc":"4733:12:51","nodeType":"YulFunctionCall","src":"4733:12:51"},"nativeSrc":"4733:12:51","nodeType":"YulExpressionStatement","src":"4733:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"4708:3:51","nodeType":"YulIdentifier","src":"4708:3:51"},{"name":"headStart","nativeSrc":"4713:9:51","nodeType":"YulIdentifier","src":"4713:9:51"}],"functionName":{"name":"sub","nativeSrc":"4704:3:51","nodeType":"YulIdentifier","src":"4704:3:51"},"nativeSrc":"4704:19:51","nodeType":"YulFunctionCall","src":"4704:19:51"},{"kind":"number","nativeSrc":"4725:4:51","nodeType":"YulLiteral","src":"4725:4:51","type":"","value":"0xc0"}],"functionName":{"name":"slt","nativeSrc":"4700:3:51","nodeType":"YulIdentifier","src":"4700:3:51"},"nativeSrc":"4700:30:51","nodeType":"YulFunctionCall","src":"4700:30:51"},"nativeSrc":"4697:50:51","nodeType":"YulIf","src":"4697:50:51"},{"nativeSrc":"4756:31:51","nodeType":"YulAssignment","src":"4756:31:51","value":{"arguments":[],"functionName":{"name":"allocate_memory_2704","nativeSrc":"4765:20:51","nodeType":"YulIdentifier","src":"4765:20:51"},"nativeSrc":"4765:22:51","nodeType":"YulFunctionCall","src":"4765:22:51"},"variableNames":[{"name":"value","nativeSrc":"4756:5:51","nodeType":"YulIdentifier","src":"4756:5:51"}]},{"nativeSrc":"4796:37:51","nodeType":"YulVariableDeclaration","src":"4796:37:51","value":{"arguments":[{"name":"headStart","nativeSrc":"4823:9:51","nodeType":"YulIdentifier","src":"4823:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"4810:12:51","nodeType":"YulIdentifier","src":"4810:12:51"},"nativeSrc":"4810:23:51","nodeType":"YulFunctionCall","src":"4810:23:51"},"variables":[{"name":"offset","nativeSrc":"4800:6:51","nodeType":"YulTypedName","src":"4800:6:51","type":""}]},{"body":{"nativeSrc":"4876:16:51","nodeType":"YulBlock","src":"4876:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4885:1:51","nodeType":"YulLiteral","src":"4885:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4888:1:51","nodeType":"YulLiteral","src":"4888:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4878:6:51","nodeType":"YulIdentifier","src":"4878:6:51"},"nativeSrc":"4878:12:51","nodeType":"YulFunctionCall","src":"4878:12:51"},"nativeSrc":"4878:12:51","nodeType":"YulExpressionStatement","src":"4878:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"4848:6:51","nodeType":"YulIdentifier","src":"4848:6:51"},{"kind":"number","nativeSrc":"4856:18:51","nodeType":"YulLiteral","src":"4856:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4845:2:51","nodeType":"YulIdentifier","src":"4845:2:51"},"nativeSrc":"4845:30:51","nodeType":"YulFunctionCall","src":"4845:30:51"},"nativeSrc":"4842:50:51","nodeType":"YulIf","src":"4842:50:51"},{"nativeSrc":"4901:32:51","nodeType":"YulVariableDeclaration","src":"4901:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"4915:9:51","nodeType":"YulIdentifier","src":"4915:9:51"},{"name":"offset","nativeSrc":"4926:6:51","nodeType":"YulIdentifier","src":"4926:6:51"}],"functionName":{"name":"add","nativeSrc":"4911:3:51","nodeType":"YulIdentifier","src":"4911:3:51"},"nativeSrc":"4911:22:51","nodeType":"YulFunctionCall","src":"4911:22:51"},"variables":[{"name":"_1","nativeSrc":"4905:2:51","nodeType":"YulTypedName","src":"4905:2:51","type":""}]},{"body":{"nativeSrc":"4969:16:51","nodeType":"YulBlock","src":"4969:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4978:1:51","nodeType":"YulLiteral","src":"4978:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4981:1:51","nodeType":"YulLiteral","src":"4981:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4971:6:51","nodeType":"YulIdentifier","src":"4971:6:51"},"nativeSrc":"4971:12:51","nodeType":"YulFunctionCall","src":"4971:12:51"},"nativeSrc":"4971:12:51","nodeType":"YulExpressionStatement","src":"4971:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"4953:3:51","nodeType":"YulIdentifier","src":"4953:3:51"},{"name":"_1","nativeSrc":"4958:2:51","nodeType":"YulIdentifier","src":"4958:2:51"}],"functionName":{"name":"sub","nativeSrc":"4949:3:51","nodeType":"YulIdentifier","src":"4949:3:51"},"nativeSrc":"4949:12:51","nodeType":"YulFunctionCall","src":"4949:12:51"},{"kind":"number","nativeSrc":"4963:4:51","nodeType":"YulLiteral","src":"4963:4:51","type":"","value":"0x40"}],"functionName":{"name":"slt","nativeSrc":"4945:3:51","nodeType":"YulIdentifier","src":"4945:3:51"},"nativeSrc":"4945:23:51","nodeType":"YulFunctionCall","src":"4945:23:51"},"nativeSrc":"4942:43:51","nodeType":"YulIf","src":"4942:43:51"},{"nativeSrc":"4994:37:51","nodeType":"YulVariableDeclaration","src":"4994:37:51","value":{"arguments":[],"functionName":{"name":"allocate_memory_2705","nativeSrc":"5009:20:51","nodeType":"YulIdentifier","src":"5009:20:51"},"nativeSrc":"5009:22:51","nodeType":"YulFunctionCall","src":"5009:22:51"},"variables":[{"name":"value_1","nativeSrc":"4998:7:51","nodeType":"YulTypedName","src":"4998:7:51","type":""}]},{"nativeSrc":"5040:32:51","nodeType":"YulVariableDeclaration","src":"5040:32:51","value":{"arguments":[{"name":"_1","nativeSrc":"5069:2:51","nodeType":"YulIdentifier","src":"5069:2:51"}],"functionName":{"name":"calldataload","nativeSrc":"5056:12:51","nodeType":"YulIdentifier","src":"5056:12:51"},"nativeSrc":"5056:16:51","nodeType":"YulFunctionCall","src":"5056:16:51"},"variables":[{"name":"offset_1","nativeSrc":"5044:8:51","nodeType":"YulTypedName","src":"5044:8:51","type":""}]},{"body":{"nativeSrc":"5117:16:51","nodeType":"YulBlock","src":"5117:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5126:1:51","nodeType":"YulLiteral","src":"5126:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"5129:1:51","nodeType":"YulLiteral","src":"5129:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5119:6:51","nodeType":"YulIdentifier","src":"5119:6:51"},"nativeSrc":"5119:12:51","nodeType":"YulFunctionCall","src":"5119:12:51"},"nativeSrc":"5119:12:51","nodeType":"YulExpressionStatement","src":"5119:12:51"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"5087:8:51","nodeType":"YulIdentifier","src":"5087:8:51"},{"kind":"number","nativeSrc":"5097:18:51","nodeType":"YulLiteral","src":"5097:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"5084:2:51","nodeType":"YulIdentifier","src":"5084:2:51"},"nativeSrc":"5084:32:51","nodeType":"YulFunctionCall","src":"5084:32:51"},"nativeSrc":"5081:52:51","nodeType":"YulIf","src":"5081:52:51"},{"nativeSrc":"5142:27:51","nodeType":"YulVariableDeclaration","src":"5142:27:51","value":{"arguments":[{"name":"_1","nativeSrc":"5156:2:51","nodeType":"YulIdentifier","src":"5156:2:51"},{"name":"offset_1","nativeSrc":"5160:8:51","nodeType":"YulIdentifier","src":"5160:8:51"}],"functionName":{"name":"add","nativeSrc":"5152:3:51","nodeType":"YulIdentifier","src":"5152:3:51"},"nativeSrc":"5152:17:51","nodeType":"YulFunctionCall","src":"5152:17:51"},"variables":[{"name":"_2","nativeSrc":"5146:2:51","nodeType":"YulTypedName","src":"5146:2:51","type":""}]},{"body":{"nativeSrc":"5213:16:51","nodeType":"YulBlock","src":"5213:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5222:1:51","nodeType":"YulLiteral","src":"5222:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"5225:1:51","nodeType":"YulLiteral","src":"5225:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5215:6:51","nodeType":"YulIdentifier","src":"5215:6:51"},"nativeSrc":"5215:12:51","nodeType":"YulFunctionCall","src":"5215:12:51"},"nativeSrc":"5215:12:51","nodeType":"YulExpressionStatement","src":"5215:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"5196:2:51","nodeType":"YulIdentifier","src":"5196:2:51"},{"kind":"number","nativeSrc":"5200:4:51","nodeType":"YulLiteral","src":"5200:4:51","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"5192:3:51","nodeType":"YulIdentifier","src":"5192:3:51"},"nativeSrc":"5192:13:51","nodeType":"YulFunctionCall","src":"5192:13:51"},{"name":"end","nativeSrc":"5207:3:51","nodeType":"YulIdentifier","src":"5207:3:51"}],"functionName":{"name":"slt","nativeSrc":"5188:3:51","nodeType":"YulIdentifier","src":"5188:3:51"},"nativeSrc":"5188:23:51","nodeType":"YulFunctionCall","src":"5188:23:51"}],"functionName":{"name":"iszero","nativeSrc":"5181:6:51","nodeType":"YulIdentifier","src":"5181:6:51"},"nativeSrc":"5181:31:51","nodeType":"YulFunctionCall","src":"5181:31:51"},"nativeSrc":"5178:51:51","nodeType":"YulIf","src":"5178:51:51"},{"nativeSrc":"5238:30:51","nodeType":"YulVariableDeclaration","src":"5238:30:51","value":{"arguments":[{"name":"_2","nativeSrc":"5265:2:51","nodeType":"YulIdentifier","src":"5265:2:51"}],"functionName":{"name":"calldataload","nativeSrc":"5252:12:51","nodeType":"YulIdentifier","src":"5252:12:51"},"nativeSrc":"5252:16:51","nodeType":"YulFunctionCall","src":"5252:16:51"},"variables":[{"name":"length","nativeSrc":"5242:6:51","nodeType":"YulTypedName","src":"5242:6:51","type":""}]},{"body":{"nativeSrc":"5311:22:51","nodeType":"YulBlock","src":"5311:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"5313:16:51","nodeType":"YulIdentifier","src":"5313:16:51"},"nativeSrc":"5313:18:51","nodeType":"YulFunctionCall","src":"5313:18:51"},"nativeSrc":"5313:18:51","nodeType":"YulExpressionStatement","src":"5313:18:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"5283:6:51","nodeType":"YulIdentifier","src":"5283:6:51"},{"kind":"number","nativeSrc":"5291:18:51","nodeType":"YulLiteral","src":"5291:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"5280:2:51","nodeType":"YulIdentifier","src":"5280:2:51"},"nativeSrc":"5280:30:51","nodeType":"YulFunctionCall","src":"5280:30:51"},"nativeSrc":"5277:56:51","nodeType":"YulIf","src":"5277:56:51"},{"nativeSrc":"5342:72:51","nodeType":"YulVariableDeclaration","src":"5342:72:51","value":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"5383:6:51","nodeType":"YulIdentifier","src":"5383:6:51"},{"kind":"number","nativeSrc":"5391:4:51","nodeType":"YulLiteral","src":"5391:4:51","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"5379:3:51","nodeType":"YulIdentifier","src":"5379:3:51"},"nativeSrc":"5379:17:51","nodeType":"YulFunctionCall","src":"5379:17:51"},{"arguments":[{"kind":"number","nativeSrc":"5402:2:51","nodeType":"YulLiteral","src":"5402:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"5398:3:51","nodeType":"YulIdentifier","src":"5398:3:51"},"nativeSrc":"5398:7:51","nodeType":"YulFunctionCall","src":"5398:7:51"}],"functionName":{"name":"and","nativeSrc":"5375:3:51","nodeType":"YulIdentifier","src":"5375:3:51"},"nativeSrc":"5375:31:51","nodeType":"YulFunctionCall","src":"5375:31:51"},{"kind":"number","nativeSrc":"5408:4:51","nodeType":"YulLiteral","src":"5408:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5371:3:51","nodeType":"YulIdentifier","src":"5371:3:51"},"nativeSrc":"5371:42:51","nodeType":"YulFunctionCall","src":"5371:42:51"}],"functionName":{"name":"allocate_memory","nativeSrc":"5355:15:51","nodeType":"YulIdentifier","src":"5355:15:51"},"nativeSrc":"5355:59:51","nodeType":"YulFunctionCall","src":"5355:59:51"},"variables":[{"name":"array","nativeSrc":"5346:5:51","nodeType":"YulTypedName","src":"5346:5:51","type":""}]},{"expression":{"arguments":[{"name":"array","nativeSrc":"5430:5:51","nodeType":"YulIdentifier","src":"5430:5:51"},{"name":"length","nativeSrc":"5437:6:51","nodeType":"YulIdentifier","src":"5437:6:51"}],"functionName":{"name":"mstore","nativeSrc":"5423:6:51","nodeType":"YulIdentifier","src":"5423:6:51"},"nativeSrc":"5423:21:51","nodeType":"YulFunctionCall","src":"5423:21:51"},"nativeSrc":"5423:21:51","nodeType":"YulExpressionStatement","src":"5423:21:51"},{"body":{"nativeSrc":"5492:16:51","nodeType":"YulBlock","src":"5492:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5501:1:51","nodeType":"YulLiteral","src":"5501:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"5504:1:51","nodeType":"YulLiteral","src":"5504:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5494:6:51","nodeType":"YulIdentifier","src":"5494:6:51"},"nativeSrc":"5494:12:51","nodeType":"YulFunctionCall","src":"5494:12:51"},"nativeSrc":"5494:12:51","nodeType":"YulExpressionStatement","src":"5494:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"5467:2:51","nodeType":"YulIdentifier","src":"5467:2:51"},{"name":"length","nativeSrc":"5471:6:51","nodeType":"YulIdentifier","src":"5471:6:51"}],"functionName":{"name":"add","nativeSrc":"5463:3:51","nodeType":"YulIdentifier","src":"5463:3:51"},"nativeSrc":"5463:15:51","nodeType":"YulFunctionCall","src":"5463:15:51"},{"kind":"number","nativeSrc":"5480:4:51","nodeType":"YulLiteral","src":"5480:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5459:3:51","nodeType":"YulIdentifier","src":"5459:3:51"},"nativeSrc":"5459:26:51","nodeType":"YulFunctionCall","src":"5459:26:51"},{"name":"end","nativeSrc":"5487:3:51","nodeType":"YulIdentifier","src":"5487:3:51"}],"functionName":{"name":"gt","nativeSrc":"5456:2:51","nodeType":"YulIdentifier","src":"5456:2:51"},"nativeSrc":"5456:35:51","nodeType":"YulFunctionCall","src":"5456:35:51"},"nativeSrc":"5453:55:51","nodeType":"YulIf","src":"5453:55:51"},{"expression":{"arguments":[{"arguments":[{"name":"array","nativeSrc":"5534:5:51","nodeType":"YulIdentifier","src":"5534:5:51"},{"kind":"number","nativeSrc":"5541:4:51","nodeType":"YulLiteral","src":"5541:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5530:3:51","nodeType":"YulIdentifier","src":"5530:3:51"},"nativeSrc":"5530:16:51","nodeType":"YulFunctionCall","src":"5530:16:51"},{"arguments":[{"name":"_2","nativeSrc":"5552:2:51","nodeType":"YulIdentifier","src":"5552:2:51"},{"kind":"number","nativeSrc":"5556:4:51","nodeType":"YulLiteral","src":"5556:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5548:3:51","nodeType":"YulIdentifier","src":"5548:3:51"},"nativeSrc":"5548:13:51","nodeType":"YulFunctionCall","src":"5548:13:51"},{"name":"length","nativeSrc":"5563:6:51","nodeType":"YulIdentifier","src":"5563:6:51"}],"functionName":{"name":"calldatacopy","nativeSrc":"5517:12:51","nodeType":"YulIdentifier","src":"5517:12:51"},"nativeSrc":"5517:53:51","nodeType":"YulFunctionCall","src":"5517:53:51"},"nativeSrc":"5517:53:51","nodeType":"YulExpressionStatement","src":"5517:53:51"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"array","nativeSrc":"5594:5:51","nodeType":"YulIdentifier","src":"5594:5:51"},{"name":"length","nativeSrc":"5601:6:51","nodeType":"YulIdentifier","src":"5601:6:51"}],"functionName":{"name":"add","nativeSrc":"5590:3:51","nodeType":"YulIdentifier","src":"5590:3:51"},"nativeSrc":"5590:18:51","nodeType":"YulFunctionCall","src":"5590:18:51"},{"kind":"number","nativeSrc":"5610:4:51","nodeType":"YulLiteral","src":"5610:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5586:3:51","nodeType":"YulIdentifier","src":"5586:3:51"},"nativeSrc":"5586:29:51","nodeType":"YulFunctionCall","src":"5586:29:51"},{"kind":"number","nativeSrc":"5617:1:51","nodeType":"YulLiteral","src":"5617:1:51","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"5579:6:51","nodeType":"YulIdentifier","src":"5579:6:51"},"nativeSrc":"5579:40:51","nodeType":"YulFunctionCall","src":"5579:40:51"},"nativeSrc":"5579:40:51","nodeType":"YulExpressionStatement","src":"5579:40:51"},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"5635:7:51","nodeType":"YulIdentifier","src":"5635:7:51"},{"name":"array","nativeSrc":"5644:5:51","nodeType":"YulIdentifier","src":"5644:5:51"}],"functionName":{"name":"mstore","nativeSrc":"5628:6:51","nodeType":"YulIdentifier","src":"5628:6:51"},"nativeSrc":"5628:22:51","nodeType":"YulFunctionCall","src":"5628:22:51"},"nativeSrc":"5628:22:51","nodeType":"YulExpressionStatement","src":"5628:22:51"},{"nativeSrc":"5659:16:51","nodeType":"YulVariableDeclaration","src":"5659:16:51","value":{"kind":"number","nativeSrc":"5674:1:51","nodeType":"YulLiteral","src":"5674:1:51","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"5663:7:51","nodeType":"YulTypedName","src":"5663:7:51","type":""}]},{"nativeSrc":"5684:38:51","nodeType":"YulAssignment","src":"5684:38:51","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"5712:2:51","nodeType":"YulIdentifier","src":"5712:2:51"},{"kind":"number","nativeSrc":"5716:4:51","nodeType":"YulLiteral","src":"5716:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5708:3:51","nodeType":"YulIdentifier","src":"5708:3:51"},"nativeSrc":"5708:13:51","nodeType":"YulFunctionCall","src":"5708:13:51"}],"functionName":{"name":"calldataload","nativeSrc":"5695:12:51","nodeType":"YulIdentifier","src":"5695:12:51"},"nativeSrc":"5695:27:51","nodeType":"YulFunctionCall","src":"5695:27:51"},"variableNames":[{"name":"value_2","nativeSrc":"5684:7:51","nodeType":"YulIdentifier","src":"5684:7:51"}]},{"expression":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"5742:7:51","nodeType":"YulIdentifier","src":"5742:7:51"},{"kind":"number","nativeSrc":"5751:4:51","nodeType":"YulLiteral","src":"5751:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5738:3:51","nodeType":"YulIdentifier","src":"5738:3:51"},"nativeSrc":"5738:18:51","nodeType":"YulFunctionCall","src":"5738:18:51"},{"name":"value_2","nativeSrc":"5758:7:51","nodeType":"YulIdentifier","src":"5758:7:51"}],"functionName":{"name":"mstore","nativeSrc":"5731:6:51","nodeType":"YulIdentifier","src":"5731:6:51"},"nativeSrc":"5731:35:51","nodeType":"YulFunctionCall","src":"5731:35:51"},"nativeSrc":"5731:35:51","nodeType":"YulExpressionStatement","src":"5731:35:51"},{"expression":{"arguments":[{"name":"value","nativeSrc":"5782:5:51","nodeType":"YulIdentifier","src":"5782:5:51"},{"name":"value_1","nativeSrc":"5789:7:51","nodeType":"YulIdentifier","src":"5789:7:51"}],"functionName":{"name":"mstore","nativeSrc":"5775:6:51","nodeType":"YulIdentifier","src":"5775:6:51"},"nativeSrc":"5775:22:51","nodeType":"YulFunctionCall","src":"5775:22:51"},"nativeSrc":"5775:22:51","nodeType":"YulExpressionStatement","src":"5775:22:51"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5817:5:51","nodeType":"YulIdentifier","src":"5817:5:51"},{"kind":"number","nativeSrc":"5824:4:51","nodeType":"YulLiteral","src":"5824:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5813:3:51","nodeType":"YulIdentifier","src":"5813:3:51"},"nativeSrc":"5813:16:51","nodeType":"YulFunctionCall","src":"5813:16:51"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5852:9:51","nodeType":"YulIdentifier","src":"5852:9:51"},{"kind":"number","nativeSrc":"5863:4:51","nodeType":"YulLiteral","src":"5863:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"5848:3:51","nodeType":"YulIdentifier","src":"5848:3:51"},"nativeSrc":"5848:20:51","nodeType":"YulFunctionCall","src":"5848:20:51"}],"functionName":{"name":"abi_decode_uint8","nativeSrc":"5831:16:51","nodeType":"YulIdentifier","src":"5831:16:51"},"nativeSrc":"5831:38:51","nodeType":"YulFunctionCall","src":"5831:38:51"}],"functionName":{"name":"mstore","nativeSrc":"5806:6:51","nodeType":"YulIdentifier","src":"5806:6:51"},"nativeSrc":"5806:64:51","nodeType":"YulFunctionCall","src":"5806:64:51"},"nativeSrc":"5806:64:51","nodeType":"YulExpressionStatement","src":"5806:64:51"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5890:5:51","nodeType":"YulIdentifier","src":"5890:5:51"},{"kind":"number","nativeSrc":"5897:4:51","nodeType":"YulLiteral","src":"5897:4:51","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"5886:3:51","nodeType":"YulIdentifier","src":"5886:3:51"},"nativeSrc":"5886:16:51","nodeType":"YulFunctionCall","src":"5886:16:51"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5925:9:51","nodeType":"YulIdentifier","src":"5925:9:51"},{"kind":"number","nativeSrc":"5936:4:51","nodeType":"YulLiteral","src":"5936:4:51","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"5921:3:51","nodeType":"YulIdentifier","src":"5921:3:51"},"nativeSrc":"5921:20:51","nodeType":"YulFunctionCall","src":"5921:20:51"}],"functionName":{"name":"abi_decode_uint8","nativeSrc":"5904:16:51","nodeType":"YulIdentifier","src":"5904:16:51"},"nativeSrc":"5904:38:51","nodeType":"YulFunctionCall","src":"5904:38:51"}],"functionName":{"name":"mstore","nativeSrc":"5879:6:51","nodeType":"YulIdentifier","src":"5879:6:51"},"nativeSrc":"5879:64:51","nodeType":"YulFunctionCall","src":"5879:64:51"},"nativeSrc":"5879:64:51","nodeType":"YulExpressionStatement","src":"5879:64:51"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5963:5:51","nodeType":"YulIdentifier","src":"5963:5:51"},{"kind":"number","nativeSrc":"5970:2:51","nodeType":"YulLiteral","src":"5970:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5959:3:51","nodeType":"YulIdentifier","src":"5959:3:51"},"nativeSrc":"5959:14:51","nodeType":"YulFunctionCall","src":"5959:14:51"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5996:9:51","nodeType":"YulIdentifier","src":"5996:9:51"},{"kind":"number","nativeSrc":"6007:2:51","nodeType":"YulLiteral","src":"6007:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5992:3:51","nodeType":"YulIdentifier","src":"5992:3:51"},"nativeSrc":"5992:18:51","nodeType":"YulFunctionCall","src":"5992:18:51"}],"functionName":{"name":"abi_decode_uint8","nativeSrc":"5975:16:51","nodeType":"YulIdentifier","src":"5975:16:51"},"nativeSrc":"5975:36:51","nodeType":"YulFunctionCall","src":"5975:36:51"}],"functionName":{"name":"mstore","nativeSrc":"5952:6:51","nodeType":"YulIdentifier","src":"5952:6:51"},"nativeSrc":"5952:60:51","nodeType":"YulFunctionCall","src":"5952:60:51"},"nativeSrc":"5952:60:51","nodeType":"YulExpressionStatement","src":"5952:60:51"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6032:5:51","nodeType":"YulIdentifier","src":"6032:5:51"},{"kind":"number","nativeSrc":"6039:3:51","nodeType":"YulLiteral","src":"6039:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"6028:3:51","nodeType":"YulIdentifier","src":"6028:3:51"},"nativeSrc":"6028:15:51","nodeType":"YulFunctionCall","src":"6028:15:51"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6091:9:51","nodeType":"YulIdentifier","src":"6091:9:51"},{"kind":"number","nativeSrc":"6102:3:51","nodeType":"YulLiteral","src":"6102:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"6087:3:51","nodeType":"YulIdentifier","src":"6087:3:51"},"nativeSrc":"6087:19:51","nodeType":"YulFunctionCall","src":"6087:19:51"}],"functionName":{"name":"abi_decode_userDefinedValueType_Timestamp","nativeSrc":"6045:41:51","nodeType":"YulIdentifier","src":"6045:41:51"},"nativeSrc":"6045:62:51","nodeType":"YulFunctionCall","src":"6045:62:51"}],"functionName":{"name":"mstore","nativeSrc":"6021:6:51","nodeType":"YulIdentifier","src":"6021:6:51"},"nativeSrc":"6021:87:51","nodeType":"YulFunctionCall","src":"6021:87:51"},"nativeSrc":"6021:87:51","nodeType":"YulExpressionStatement","src":"6021:87:51"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6128:5:51","nodeType":"YulIdentifier","src":"6128:5:51"},{"kind":"number","nativeSrc":"6135:3:51","nodeType":"YulLiteral","src":"6135:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"6124:3:51","nodeType":"YulIdentifier","src":"6124:3:51"},"nativeSrc":"6124:15:51","nodeType":"YulFunctionCall","src":"6124:15:51"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6187:9:51","nodeType":"YulIdentifier","src":"6187:9:51"},{"kind":"number","nativeSrc":"6198:3:51","nodeType":"YulLiteral","src":"6198:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"6183:3:51","nodeType":"YulIdentifier","src":"6183:3:51"},"nativeSrc":"6183:19:51","nodeType":"YulFunctionCall","src":"6183:19:51"}],"functionName":{"name":"abi_decode_userDefinedValueType_Timestamp","nativeSrc":"6141:41:51","nodeType":"YulIdentifier","src":"6141:41:51"},"nativeSrc":"6141:62:51","nodeType":"YulFunctionCall","src":"6141:62:51"}],"functionName":{"name":"mstore","nativeSrc":"6117:6:51","nodeType":"YulIdentifier","src":"6117:6:51"},"nativeSrc":"6117:87:51","nodeType":"YulFunctionCall","src":"6117:87:51"},"nativeSrc":"6117:87:51","nodeType":"YulExpressionStatement","src":"6117:87:51"}]},"name":"abi_decode_struct_CBOR","nativeSrc":"4626:1584:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4658:9:51","nodeType":"YulTypedName","src":"4658:9:51","type":""},{"name":"end","nativeSrc":"4669:3:51","nodeType":"YulTypedName","src":"4669:3:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"4677:5:51","nodeType":"YulTypedName","src":"4677:5:51","type":""}],"src":"4626:1584:51"},{"body":{"nativeSrc":"6314:996:51","nodeType":"YulBlock","src":"6314:996:51","statements":[{"body":{"nativeSrc":"6360:16:51","nodeType":"YulBlock","src":"6360:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6369:1:51","nodeType":"YulLiteral","src":"6369:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"6372:1:51","nodeType":"YulLiteral","src":"6372:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6362:6:51","nodeType":"YulIdentifier","src":"6362:6:51"},"nativeSrc":"6362:12:51","nodeType":"YulFunctionCall","src":"6362:12:51"},"nativeSrc":"6362:12:51","nodeType":"YulExpressionStatement","src":"6362:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6335:7:51","nodeType":"YulIdentifier","src":"6335:7:51"},{"name":"headStart","nativeSrc":"6344:9:51","nodeType":"YulIdentifier","src":"6344:9:51"}],"functionName":{"name":"sub","nativeSrc":"6331:3:51","nodeType":"YulIdentifier","src":"6331:3:51"},"nativeSrc":"6331:23:51","nodeType":"YulFunctionCall","src":"6331:23:51"},{"kind":"number","nativeSrc":"6356:2:51","nodeType":"YulLiteral","src":"6356:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"6327:3:51","nodeType":"YulIdentifier","src":"6327:3:51"},"nativeSrc":"6327:32:51","nodeType":"YulFunctionCall","src":"6327:32:51"},"nativeSrc":"6324:52:51","nodeType":"YulIf","src":"6324:52:51"},{"nativeSrc":"6385:37:51","nodeType":"YulVariableDeclaration","src":"6385:37:51","value":{"arguments":[{"name":"headStart","nativeSrc":"6412:9:51","nodeType":"YulIdentifier","src":"6412:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"6399:12:51","nodeType":"YulIdentifier","src":"6399:12:51"},"nativeSrc":"6399:23:51","nodeType":"YulFunctionCall","src":"6399:23:51"},"variables":[{"name":"offset","nativeSrc":"6389:6:51","nodeType":"YulTypedName","src":"6389:6:51","type":""}]},{"body":{"nativeSrc":"6465:16:51","nodeType":"YulBlock","src":"6465:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6474:1:51","nodeType":"YulLiteral","src":"6474:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"6477:1:51","nodeType":"YulLiteral","src":"6477:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6467:6:51","nodeType":"YulIdentifier","src":"6467:6:51"},"nativeSrc":"6467:12:51","nodeType":"YulFunctionCall","src":"6467:12:51"},"nativeSrc":"6467:12:51","nodeType":"YulExpressionStatement","src":"6467:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"6437:6:51","nodeType":"YulIdentifier","src":"6437:6:51"},{"kind":"number","nativeSrc":"6445:18:51","nodeType":"YulLiteral","src":"6445:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6434:2:51","nodeType":"YulIdentifier","src":"6434:2:51"},"nativeSrc":"6434:30:51","nodeType":"YulFunctionCall","src":"6434:30:51"},"nativeSrc":"6431:50:51","nodeType":"YulIf","src":"6431:50:51"},{"nativeSrc":"6490:32:51","nodeType":"YulVariableDeclaration","src":"6490:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"6504:9:51","nodeType":"YulIdentifier","src":"6504:9:51"},{"name":"offset","nativeSrc":"6515:6:51","nodeType":"YulIdentifier","src":"6515:6:51"}],"functionName":{"name":"add","nativeSrc":"6500:3:51","nodeType":"YulIdentifier","src":"6500:3:51"},"nativeSrc":"6500:22:51","nodeType":"YulFunctionCall","src":"6500:22:51"},"variables":[{"name":"_1","nativeSrc":"6494:2:51","nodeType":"YulTypedName","src":"6494:2:51","type":""}]},{"body":{"nativeSrc":"6562:16:51","nodeType":"YulBlock","src":"6562:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6571:1:51","nodeType":"YulLiteral","src":"6571:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"6574:1:51","nodeType":"YulLiteral","src":"6574:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6564:6:51","nodeType":"YulIdentifier","src":"6564:6:51"},"nativeSrc":"6564:12:51","nodeType":"YulFunctionCall","src":"6564:12:51"},"nativeSrc":"6564:12:51","nodeType":"YulExpressionStatement","src":"6564:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6542:7:51","nodeType":"YulIdentifier","src":"6542:7:51"},{"name":"_1","nativeSrc":"6551:2:51","nodeType":"YulIdentifier","src":"6551:2:51"}],"functionName":{"name":"sub","nativeSrc":"6538:3:51","nodeType":"YulIdentifier","src":"6538:3:51"},"nativeSrc":"6538:16:51","nodeType":"YulFunctionCall","src":"6538:16:51"},{"kind":"number","nativeSrc":"6556:4:51","nodeType":"YulLiteral","src":"6556:4:51","type":"","value":"0xa0"}],"functionName":{"name":"slt","nativeSrc":"6534:3:51","nodeType":"YulIdentifier","src":"6534:3:51"},"nativeSrc":"6534:27:51","nodeType":"YulFunctionCall","src":"6534:27:51"},"nativeSrc":"6531:47:51","nodeType":"YulIf","src":"6531:47:51"},{"nativeSrc":"6587:35:51","nodeType":"YulVariableDeclaration","src":"6587:35:51","value":{"arguments":[],"functionName":{"name":"allocate_memory_2707","nativeSrc":"6600:20:51","nodeType":"YulIdentifier","src":"6600:20:51"},"nativeSrc":"6600:22:51","nodeType":"YulFunctionCall","src":"6600:22:51"},"variables":[{"name":"value","nativeSrc":"6591:5:51","nodeType":"YulTypedName","src":"6591:5:51","type":""}]},{"nativeSrc":"6631:31:51","nodeType":"YulVariableDeclaration","src":"6631:31:51","value":{"arguments":[{"name":"_1","nativeSrc":"6659:2:51","nodeType":"YulIdentifier","src":"6659:2:51"}],"functionName":{"name":"calldataload","nativeSrc":"6646:12:51","nodeType":"YulIdentifier","src":"6646:12:51"},"nativeSrc":"6646:16:51","nodeType":"YulFunctionCall","src":"6646:16:51"},"variables":[{"name":"value_1","nativeSrc":"6635:7:51","nodeType":"YulTypedName","src":"6635:7:51","type":""}]},{"body":{"nativeSrc":"6699:16:51","nodeType":"YulBlock","src":"6699:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6708:1:51","nodeType":"YulLiteral","src":"6708:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"6711:1:51","nodeType":"YulLiteral","src":"6711:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6701:6:51","nodeType":"YulIdentifier","src":"6701:6:51"},"nativeSrc":"6701:12:51","nodeType":"YulFunctionCall","src":"6701:12:51"},"nativeSrc":"6701:12:51","nodeType":"YulExpressionStatement","src":"6701:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"6684:7:51","nodeType":"YulIdentifier","src":"6684:7:51"},{"kind":"number","nativeSrc":"6693:3:51","nodeType":"YulLiteral","src":"6693:3:51","type":"","value":"256"}],"functionName":{"name":"lt","nativeSrc":"6681:2:51","nodeType":"YulIdentifier","src":"6681:2:51"},"nativeSrc":"6681:16:51","nodeType":"YulFunctionCall","src":"6681:16:51"}],"functionName":{"name":"iszero","nativeSrc":"6674:6:51","nodeType":"YulIdentifier","src":"6674:6:51"},"nativeSrc":"6674:24:51","nodeType":"YulFunctionCall","src":"6674:24:51"},"nativeSrc":"6671:44:51","nodeType":"YulIf","src":"6671:44:51"},{"expression":{"arguments":[{"name":"value","nativeSrc":"6731:5:51","nodeType":"YulIdentifier","src":"6731:5:51"},{"name":"value_1","nativeSrc":"6738:7:51","nodeType":"YulIdentifier","src":"6738:7:51"}],"functionName":{"name":"mstore","nativeSrc":"6724:6:51","nodeType":"YulIdentifier","src":"6724:6:51"},"nativeSrc":"6724:22:51","nodeType":"YulFunctionCall","src":"6724:22:51"},"nativeSrc":"6724:22:51","nodeType":"YulExpressionStatement","src":"6724:22:51"},{"nativeSrc":"6755:40:51","nodeType":"YulVariableDeclaration","src":"6755:40:51","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"6787:2:51","nodeType":"YulIdentifier","src":"6787:2:51"},{"kind":"number","nativeSrc":"6791:2:51","nodeType":"YulLiteral","src":"6791:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6783:3:51","nodeType":"YulIdentifier","src":"6783:3:51"},"nativeSrc":"6783:11:51","nodeType":"YulFunctionCall","src":"6783:11:51"}],"functionName":{"name":"calldataload","nativeSrc":"6770:12:51","nodeType":"YulIdentifier","src":"6770:12:51"},"nativeSrc":"6770:25:51","nodeType":"YulFunctionCall","src":"6770:25:51"},"variables":[{"name":"value_2","nativeSrc":"6759:7:51","nodeType":"YulTypedName","src":"6759:7:51","type":""}]},{"body":{"nativeSrc":"6831:16:51","nodeType":"YulBlock","src":"6831:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6840:1:51","nodeType":"YulLiteral","src":"6840:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"6843:1:51","nodeType":"YulLiteral","src":"6843:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6833:6:51","nodeType":"YulIdentifier","src":"6833:6:51"},"nativeSrc":"6833:12:51","nodeType":"YulFunctionCall","src":"6833:12:51"},"nativeSrc":"6833:12:51","nodeType":"YulExpressionStatement","src":"6833:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value_2","nativeSrc":"6817:7:51","nodeType":"YulIdentifier","src":"6817:7:51"},{"kind":"number","nativeSrc":"6826:2:51","nodeType":"YulLiteral","src":"6826:2:51","type":"","value":"20"}],"functionName":{"name":"lt","nativeSrc":"6814:2:51","nodeType":"YulIdentifier","src":"6814:2:51"},"nativeSrc":"6814:15:51","nodeType":"YulFunctionCall","src":"6814:15:51"}],"functionName":{"name":"iszero","nativeSrc":"6807:6:51","nodeType":"YulIdentifier","src":"6807:6:51"},"nativeSrc":"6807:23:51","nodeType":"YulFunctionCall","src":"6807:23:51"},"nativeSrc":"6804:43:51","nodeType":"YulIf","src":"6804:43:51"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6867:5:51","nodeType":"YulIdentifier","src":"6867:5:51"},{"kind":"number","nativeSrc":"6874:2:51","nodeType":"YulLiteral","src":"6874:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6863:3:51","nodeType":"YulIdentifier","src":"6863:3:51"},"nativeSrc":"6863:14:51","nodeType":"YulFunctionCall","src":"6863:14:51"},{"name":"value_2","nativeSrc":"6879:7:51","nodeType":"YulIdentifier","src":"6879:7:51"}],"functionName":{"name":"mstore","nativeSrc":"6856:6:51","nodeType":"YulIdentifier","src":"6856:6:51"},"nativeSrc":"6856:31:51","nodeType":"YulFunctionCall","src":"6856:31:51"},"nativeSrc":"6856:31:51","nodeType":"YulExpressionStatement","src":"6856:31:51"},{"nativeSrc":"6896:16:51","nodeType":"YulVariableDeclaration","src":"6896:16:51","value":{"kind":"number","nativeSrc":"6911:1:51","nodeType":"YulLiteral","src":"6911:1:51","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"6900:7:51","nodeType":"YulTypedName","src":"6900:7:51","type":""}]},{"nativeSrc":"6921:36:51","nodeType":"YulAssignment","src":"6921:36:51","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"6949:2:51","nodeType":"YulIdentifier","src":"6949:2:51"},{"kind":"number","nativeSrc":"6953:2:51","nodeType":"YulLiteral","src":"6953:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6945:3:51","nodeType":"YulIdentifier","src":"6945:3:51"},"nativeSrc":"6945:11:51","nodeType":"YulFunctionCall","src":"6945:11:51"}],"functionName":{"name":"calldataload","nativeSrc":"6932:12:51","nodeType":"YulIdentifier","src":"6932:12:51"},"nativeSrc":"6932:25:51","nodeType":"YulFunctionCall","src":"6932:25:51"},"variableNames":[{"name":"value_3","nativeSrc":"6921:7:51","nodeType":"YulIdentifier","src":"6921:7:51"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6977:5:51","nodeType":"YulIdentifier","src":"6977:5:51"},{"kind":"number","nativeSrc":"6984:2:51","nodeType":"YulLiteral","src":"6984:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6973:3:51","nodeType":"YulIdentifier","src":"6973:3:51"},"nativeSrc":"6973:14:51","nodeType":"YulFunctionCall","src":"6973:14:51"},{"name":"value_3","nativeSrc":"6989:7:51","nodeType":"YulIdentifier","src":"6989:7:51"}],"functionName":{"name":"mstore","nativeSrc":"6966:6:51","nodeType":"YulIdentifier","src":"6966:6:51"},"nativeSrc":"6966:31:51","nodeType":"YulFunctionCall","src":"6966:31:51"},"nativeSrc":"6966:31:51","nodeType":"YulExpressionStatement","src":"6966:31:51"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7017:5:51","nodeType":"YulIdentifier","src":"7017:5:51"},{"kind":"number","nativeSrc":"7024:2:51","nodeType":"YulLiteral","src":"7024:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"7013:3:51","nodeType":"YulIdentifier","src":"7013:3:51"},"nativeSrc":"7013:14:51","nodeType":"YulFunctionCall","src":"7013:14:51"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"7075:2:51","nodeType":"YulIdentifier","src":"7075:2:51"},{"kind":"number","nativeSrc":"7079:2:51","nodeType":"YulLiteral","src":"7079:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"7071:3:51","nodeType":"YulIdentifier","src":"7071:3:51"},"nativeSrc":"7071:11:51","nodeType":"YulFunctionCall","src":"7071:11:51"}],"functionName":{"name":"abi_decode_userDefinedValueType_Timestamp","nativeSrc":"7029:41:51","nodeType":"YulIdentifier","src":"7029:41:51"},"nativeSrc":"7029:54:51","nodeType":"YulFunctionCall","src":"7029:54:51"}],"functionName":{"name":"mstore","nativeSrc":"7006:6:51","nodeType":"YulIdentifier","src":"7006:6:51"},"nativeSrc":"7006:78:51","nodeType":"YulFunctionCall","src":"7006:78:51"},"nativeSrc":"7006:78:51","nodeType":"YulExpressionStatement","src":"7006:78:51"},{"nativeSrc":"7093:42:51","nodeType":"YulVariableDeclaration","src":"7093:42:51","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"7126:2:51","nodeType":"YulIdentifier","src":"7126:2:51"},{"kind":"number","nativeSrc":"7130:3:51","nodeType":"YulLiteral","src":"7130:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"7122:3:51","nodeType":"YulIdentifier","src":"7122:3:51"},"nativeSrc":"7122:12:51","nodeType":"YulFunctionCall","src":"7122:12:51"}],"functionName":{"name":"calldataload","nativeSrc":"7109:12:51","nodeType":"YulIdentifier","src":"7109:12:51"},"nativeSrc":"7109:26:51","nodeType":"YulFunctionCall","src":"7109:26:51"},"variables":[{"name":"offset_1","nativeSrc":"7097:8:51","nodeType":"YulTypedName","src":"7097:8:51","type":""}]},{"body":{"nativeSrc":"7180:16:51","nodeType":"YulBlock","src":"7180:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7189:1:51","nodeType":"YulLiteral","src":"7189:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"7192:1:51","nodeType":"YulLiteral","src":"7192:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7182:6:51","nodeType":"YulIdentifier","src":"7182:6:51"},"nativeSrc":"7182:12:51","nodeType":"YulFunctionCall","src":"7182:12:51"},"nativeSrc":"7182:12:51","nodeType":"YulExpressionStatement","src":"7182:12:51"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"7150:8:51","nodeType":"YulIdentifier","src":"7150:8:51"},{"kind":"number","nativeSrc":"7160:18:51","nodeType":"YulLiteral","src":"7160:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7147:2:51","nodeType":"YulIdentifier","src":"7147:2:51"},"nativeSrc":"7147:32:51","nodeType":"YulFunctionCall","src":"7147:32:51"},"nativeSrc":"7144:52:51","nodeType":"YulIf","src":"7144:52:51"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7216:5:51","nodeType":"YulIdentifier","src":"7216:5:51"},{"kind":"number","nativeSrc":"7223:3:51","nodeType":"YulLiteral","src":"7223:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"7212:3:51","nodeType":"YulIdentifier","src":"7212:3:51"},"nativeSrc":"7212:15:51","nodeType":"YulFunctionCall","src":"7212:15:51"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"7256:2:51","nodeType":"YulIdentifier","src":"7256:2:51"},{"name":"offset_1","nativeSrc":"7260:8:51","nodeType":"YulIdentifier","src":"7260:8:51"}],"functionName":{"name":"add","nativeSrc":"7252:3:51","nodeType":"YulIdentifier","src":"7252:3:51"},"nativeSrc":"7252:17:51","nodeType":"YulFunctionCall","src":"7252:17:51"},{"name":"dataEnd","nativeSrc":"7271:7:51","nodeType":"YulIdentifier","src":"7271:7:51"}],"functionName":{"name":"abi_decode_struct_CBOR","nativeSrc":"7229:22:51","nodeType":"YulIdentifier","src":"7229:22:51"},"nativeSrc":"7229:50:51","nodeType":"YulFunctionCall","src":"7229:50:51"}],"functionName":{"name":"mstore","nativeSrc":"7205:6:51","nodeType":"YulIdentifier","src":"7205:6:51"},"nativeSrc":"7205:75:51","nodeType":"YulFunctionCall","src":"7205:75:51"},"nativeSrc":"7205:75:51","nodeType":"YulExpressionStatement","src":"7205:75:51"},{"nativeSrc":"7289:15:51","nodeType":"YulAssignment","src":"7289:15:51","value":{"name":"value","nativeSrc":"7299:5:51","nodeType":"YulIdentifier","src":"7299:5:51"},"variableNames":[{"name":"value0","nativeSrc":"7289:6:51","nodeType":"YulIdentifier","src":"7289:6:51"}]}]},"name":"abi_decode_tuple_t_struct$_DataResult_$13388_memory_ptr","nativeSrc":"6215:1095:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6280:9:51","nodeType":"YulTypedName","src":"6280:9:51","type":""},{"name":"dataEnd","nativeSrc":"6291:7:51","nodeType":"YulTypedName","src":"6291:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6303:6:51","nodeType":"YulTypedName","src":"6303:6:51","type":""}],"src":"6215:1095:51"},{"body":{"nativeSrc":"7422:101:51","nodeType":"YulBlock","src":"7422:101:51","statements":[{"nativeSrc":"7432:26:51","nodeType":"YulAssignment","src":"7432:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"7444:9:51","nodeType":"YulIdentifier","src":"7444:9:51"},{"kind":"number","nativeSrc":"7455:2:51","nodeType":"YulLiteral","src":"7455:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7440:3:51","nodeType":"YulIdentifier","src":"7440:3:51"},"nativeSrc":"7440:18:51","nodeType":"YulFunctionCall","src":"7440:18:51"},"variableNames":[{"name":"tail","nativeSrc":"7432:4:51","nodeType":"YulIdentifier","src":"7432:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7474:9:51","nodeType":"YulIdentifier","src":"7474:9:51"},{"arguments":[{"name":"value0","nativeSrc":"7489:6:51","nodeType":"YulIdentifier","src":"7489:6:51"},{"kind":"number","nativeSrc":"7497:18:51","nodeType":"YulLiteral","src":"7497:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"7485:3:51","nodeType":"YulIdentifier","src":"7485:3:51"},"nativeSrc":"7485:31:51","nodeType":"YulFunctionCall","src":"7485:31:51"}],"functionName":{"name":"mstore","nativeSrc":"7467:6:51","nodeType":"YulIdentifier","src":"7467:6:51"},"nativeSrc":"7467:50:51","nodeType":"YulFunctionCall","src":"7467:50:51"},"nativeSrc":"7467:50:51","nodeType":"YulExpressionStatement","src":"7467:50:51"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_library_reversed","nativeSrc":"7315:208:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7391:9:51","nodeType":"YulTypedName","src":"7391:9:51","type":""},{"name":"value0","nativeSrc":"7402:6:51","nodeType":"YulTypedName","src":"7402:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7413:4:51","nodeType":"YulTypedName","src":"7413:4:51","type":""}],"src":"7315:208:51"},{"body":{"nativeSrc":"7560:95:51","nodeType":"YulBlock","src":"7560:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7577:1:51","nodeType":"YulLiteral","src":"7577:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"7584:3:51","nodeType":"YulLiteral","src":"7584:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"7589:10:51","nodeType":"YulLiteral","src":"7589:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"7580:3:51","nodeType":"YulIdentifier","src":"7580:3:51"},"nativeSrc":"7580:20:51","nodeType":"YulFunctionCall","src":"7580:20:51"}],"functionName":{"name":"mstore","nativeSrc":"7570:6:51","nodeType":"YulIdentifier","src":"7570:6:51"},"nativeSrc":"7570:31:51","nodeType":"YulFunctionCall","src":"7570:31:51"},"nativeSrc":"7570:31:51","nodeType":"YulExpressionStatement","src":"7570:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7617:1:51","nodeType":"YulLiteral","src":"7617:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"7620:4:51","nodeType":"YulLiteral","src":"7620:4:51","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"7610:6:51","nodeType":"YulIdentifier","src":"7610:6:51"},"nativeSrc":"7610:15:51","nodeType":"YulFunctionCall","src":"7610:15:51"},"nativeSrc":"7610:15:51","nodeType":"YulExpressionStatement","src":"7610:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7641:1:51","nodeType":"YulLiteral","src":"7641:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"7644:4:51","nodeType":"YulLiteral","src":"7644:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"7634:6:51","nodeType":"YulIdentifier","src":"7634:6:51"},"nativeSrc":"7634:15:51","nodeType":"YulFunctionCall","src":"7634:15:51"},"nativeSrc":"7634:15:51","nodeType":"YulExpressionStatement","src":"7634:15:51"}]},"name":"panic_error_0x32","nativeSrc":"7528:127:51","nodeType":"YulFunctionDefinition","src":"7528:127:51"},{"body":{"nativeSrc":"7726:65:51","nodeType":"YulBlock","src":"7726:65:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7743:1:51","nodeType":"YulLiteral","src":"7743:1:51","type":"","value":"0"},{"name":"ptr","nativeSrc":"7746:3:51","nodeType":"YulIdentifier","src":"7746:3:51"}],"functionName":{"name":"mstore","nativeSrc":"7736:6:51","nodeType":"YulIdentifier","src":"7736:6:51"},"nativeSrc":"7736:14:51","nodeType":"YulFunctionCall","src":"7736:14:51"},"nativeSrc":"7736:14:51","nodeType":"YulExpressionStatement","src":"7736:14:51"},{"nativeSrc":"7759:26:51","nodeType":"YulAssignment","src":"7759:26:51","value":{"arguments":[{"kind":"number","nativeSrc":"7777:1:51","nodeType":"YulLiteral","src":"7777:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"7780:4:51","nodeType":"YulLiteral","src":"7780:4:51","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"7767:9:51","nodeType":"YulIdentifier","src":"7767:9:51"},"nativeSrc":"7767:18:51","nodeType":"YulFunctionCall","src":"7767:18:51"},"variableNames":[{"name":"data","nativeSrc":"7759:4:51","nodeType":"YulIdentifier","src":"7759:4:51"}]}]},"name":"array_dataslot_array_string_storage_dyn","nativeSrc":"7660:131:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"7709:3:51","nodeType":"YulTypedName","src":"7709:3:51","type":""}],"returnVariables":[{"name":"data","nativeSrc":"7717:4:51","nodeType":"YulTypedName","src":"7717:4:51","type":""}],"src":"7660:131:51"},{"body":{"nativeSrc":"8059:2407:51","nodeType":"YulBlock","src":"8059:2407:51","statements":[{"nativeSrc":"8069:32:51","nodeType":"YulVariableDeclaration","src":"8069:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"8087:9:51","nodeType":"YulIdentifier","src":"8087:9:51"},{"kind":"number","nativeSrc":"8098:2:51","nodeType":"YulLiteral","src":"8098:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8083:3:51","nodeType":"YulIdentifier","src":"8083:3:51"},"nativeSrc":"8083:18:51","nodeType":"YulFunctionCall","src":"8083:18:51"},"variables":[{"name":"tail_1","nativeSrc":"8073:6:51","nodeType":"YulTypedName","src":"8073:6:51","type":""}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8117:9:51","nodeType":"YulIdentifier","src":"8117:9:51"},{"kind":"number","nativeSrc":"8128:2:51","nodeType":"YulLiteral","src":"8128:2:51","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"8110:6:51","nodeType":"YulIdentifier","src":"8110:6:51"},"nativeSrc":"8110:21:51","nodeType":"YulFunctionCall","src":"8110:21:51"},"nativeSrc":"8110:21:51","nodeType":"YulExpressionStatement","src":"8110:21:51"},{"nativeSrc":"8140:17:51","nodeType":"YulVariableDeclaration","src":"8140:17:51","value":{"name":"tail_1","nativeSrc":"8151:6:51","nodeType":"YulIdentifier","src":"8151:6:51"},"variables":[{"name":"pos","nativeSrc":"8144:3:51","nodeType":"YulTypedName","src":"8144:3:51","type":""}]},{"nativeSrc":"8166:27:51","nodeType":"YulVariableDeclaration","src":"8166:27:51","value":{"arguments":[{"name":"value0","nativeSrc":"8186:6:51","nodeType":"YulIdentifier","src":"8186:6:51"}],"functionName":{"name":"mload","nativeSrc":"8180:5:51","nodeType":"YulIdentifier","src":"8180:5:51"},"nativeSrc":"8180:13:51","nodeType":"YulFunctionCall","src":"8180:13:51"},"variables":[{"name":"length","nativeSrc":"8170:6:51","nodeType":"YulTypedName","src":"8170:6:51","type":""}]},{"expression":{"arguments":[{"name":"tail_1","nativeSrc":"8209:6:51","nodeType":"YulIdentifier","src":"8209:6:51"},{"name":"length","nativeSrc":"8217:6:51","nodeType":"YulIdentifier","src":"8217:6:51"}],"functionName":{"name":"mstore","nativeSrc":"8202:6:51","nodeType":"YulIdentifier","src":"8202:6:51"},"nativeSrc":"8202:22:51","nodeType":"YulFunctionCall","src":"8202:22:51"},"nativeSrc":"8202:22:51","nodeType":"YulExpressionStatement","src":"8202:22:51"},{"nativeSrc":"8233:25:51","nodeType":"YulAssignment","src":"8233:25:51","value":{"arguments":[{"name":"headStart","nativeSrc":"8244:9:51","nodeType":"YulIdentifier","src":"8244:9:51"},{"kind":"number","nativeSrc":"8255:2:51","nodeType":"YulLiteral","src":"8255:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8240:3:51","nodeType":"YulIdentifier","src":"8240:3:51"},"nativeSrc":"8240:18:51","nodeType":"YulFunctionCall","src":"8240:18:51"},"variableNames":[{"name":"pos","nativeSrc":"8233:3:51","nodeType":"YulIdentifier","src":"8233:3:51"}]},{"nativeSrc":"8267:53:51","nodeType":"YulVariableDeclaration","src":"8267:53:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8289:9:51","nodeType":"YulIdentifier","src":"8289:9:51"},{"arguments":[{"kind":"number","nativeSrc":"8304:1:51","nodeType":"YulLiteral","src":"8304:1:51","type":"","value":"5"},{"name":"length","nativeSrc":"8307:6:51","nodeType":"YulIdentifier","src":"8307:6:51"}],"functionName":{"name":"shl","nativeSrc":"8300:3:51","nodeType":"YulIdentifier","src":"8300:3:51"},"nativeSrc":"8300:14:51","nodeType":"YulFunctionCall","src":"8300:14:51"}],"functionName":{"name":"add","nativeSrc":"8285:3:51","nodeType":"YulIdentifier","src":"8285:3:51"},"nativeSrc":"8285:30:51","nodeType":"YulFunctionCall","src":"8285:30:51"},{"kind":"number","nativeSrc":"8317:2:51","nodeType":"YulLiteral","src":"8317:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8281:3:51","nodeType":"YulIdentifier","src":"8281:3:51"},"nativeSrc":"8281:39:51","nodeType":"YulFunctionCall","src":"8281:39:51"},"variables":[{"name":"tail_2","nativeSrc":"8271:6:51","nodeType":"YulTypedName","src":"8271:6:51","type":""}]},{"nativeSrc":"8329:31:51","nodeType":"YulVariableDeclaration","src":"8329:31:51","value":{"arguments":[{"name":"value0","nativeSrc":"8347:6:51","nodeType":"YulIdentifier","src":"8347:6:51"},{"kind":"number","nativeSrc":"8355:4:51","nodeType":"YulLiteral","src":"8355:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8343:3:51","nodeType":"YulIdentifier","src":"8343:3:51"},"nativeSrc":"8343:17:51","nodeType":"YulFunctionCall","src":"8343:17:51"},"variables":[{"name":"srcPtr","nativeSrc":"8333:6:51","nodeType":"YulTypedName","src":"8333:6:51","type":""}]},{"nativeSrc":"8369:10:51","nodeType":"YulVariableDeclaration","src":"8369:10:51","value":{"kind":"number","nativeSrc":"8378:1:51","nodeType":"YulLiteral","src":"8378:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"8373:1:51","nodeType":"YulTypedName","src":"8373:1:51","type":""}]},{"body":{"nativeSrc":"8437:210:51","nodeType":"YulBlock","src":"8437:210:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"8458:3:51","nodeType":"YulIdentifier","src":"8458:3:51"},{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"8471:6:51","nodeType":"YulIdentifier","src":"8471:6:51"},{"name":"headStart","nativeSrc":"8479:9:51","nodeType":"YulIdentifier","src":"8479:9:51"}],"functionName":{"name":"sub","nativeSrc":"8467:3:51","nodeType":"YulIdentifier","src":"8467:3:51"},"nativeSrc":"8467:22:51","nodeType":"YulFunctionCall","src":"8467:22:51"},{"arguments":[{"kind":"number","nativeSrc":"8495:2:51","nodeType":"YulLiteral","src":"8495:2:51","type":"","value":"95"}],"functionName":{"name":"not","nativeSrc":"8491:3:51","nodeType":"YulIdentifier","src":"8491:3:51"},"nativeSrc":"8491:7:51","nodeType":"YulFunctionCall","src":"8491:7:51"}],"functionName":{"name":"add","nativeSrc":"8463:3:51","nodeType":"YulIdentifier","src":"8463:3:51"},"nativeSrc":"8463:36:51","nodeType":"YulFunctionCall","src":"8463:36:51"}],"functionName":{"name":"mstore","nativeSrc":"8451:6:51","nodeType":"YulIdentifier","src":"8451:6:51"},"nativeSrc":"8451:49:51","nodeType":"YulFunctionCall","src":"8451:49:51"},"nativeSrc":"8451:49:51","nodeType":"YulExpressionStatement","src":"8451:49:51"},{"nativeSrc":"8513:50:51","nodeType":"YulAssignment","src":"8513:50:51","value":{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"8547:6:51","nodeType":"YulIdentifier","src":"8547:6:51"}],"functionName":{"name":"mload","nativeSrc":"8541:5:51","nodeType":"YulIdentifier","src":"8541:5:51"},"nativeSrc":"8541:13:51","nodeType":"YulFunctionCall","src":"8541:13:51"},{"name":"tail_2","nativeSrc":"8556:6:51","nodeType":"YulIdentifier","src":"8556:6:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"8523:17:51","nodeType":"YulIdentifier","src":"8523:17:51"},"nativeSrc":"8523:40:51","nodeType":"YulFunctionCall","src":"8523:40:51"},"variableNames":[{"name":"tail_2","nativeSrc":"8513:6:51","nodeType":"YulIdentifier","src":"8513:6:51"}]},{"nativeSrc":"8576:27:51","nodeType":"YulAssignment","src":"8576:27:51","value":{"arguments":[{"name":"srcPtr","nativeSrc":"8590:6:51","nodeType":"YulIdentifier","src":"8590:6:51"},{"kind":"number","nativeSrc":"8598:4:51","nodeType":"YulLiteral","src":"8598:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8586:3:51","nodeType":"YulIdentifier","src":"8586:3:51"},"nativeSrc":"8586:17:51","nodeType":"YulFunctionCall","src":"8586:17:51"},"variableNames":[{"name":"srcPtr","nativeSrc":"8576:6:51","nodeType":"YulIdentifier","src":"8576:6:51"}]},{"nativeSrc":"8616:21:51","nodeType":"YulAssignment","src":"8616:21:51","value":{"arguments":[{"name":"pos","nativeSrc":"8627:3:51","nodeType":"YulIdentifier","src":"8627:3:51"},{"kind":"number","nativeSrc":"8632:4:51","nodeType":"YulLiteral","src":"8632:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8623:3:51","nodeType":"YulIdentifier","src":"8623:3:51"},"nativeSrc":"8623:14:51","nodeType":"YulFunctionCall","src":"8623:14:51"},"variableNames":[{"name":"pos","nativeSrc":"8616:3:51","nodeType":"YulIdentifier","src":"8616:3:51"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"8399:1:51","nodeType":"YulIdentifier","src":"8399:1:51"},{"name":"length","nativeSrc":"8402:6:51","nodeType":"YulIdentifier","src":"8402:6:51"}],"functionName":{"name":"lt","nativeSrc":"8396:2:51","nodeType":"YulIdentifier","src":"8396:2:51"},"nativeSrc":"8396:13:51","nodeType":"YulFunctionCall","src":"8396:13:51"},"nativeSrc":"8388:259:51","nodeType":"YulForLoop","post":{"nativeSrc":"8410:18:51","nodeType":"YulBlock","src":"8410:18:51","statements":[{"nativeSrc":"8412:14:51","nodeType":"YulAssignment","src":"8412:14:51","value":{"arguments":[{"name":"i","nativeSrc":"8421:1:51","nodeType":"YulIdentifier","src":"8421:1:51"},{"kind":"number","nativeSrc":"8424:1:51","nodeType":"YulLiteral","src":"8424:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"8417:3:51","nodeType":"YulIdentifier","src":"8417:3:51"},"nativeSrc":"8417:9:51","nodeType":"YulFunctionCall","src":"8417:9:51"},"variableNames":[{"name":"i","nativeSrc":"8412:1:51","nodeType":"YulIdentifier","src":"8412:1:51"}]}]},"pre":{"nativeSrc":"8392:3:51","nodeType":"YulBlock","src":"8392:3:51","statements":[]},"src":"8388:259:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8667:9:51","nodeType":"YulIdentifier","src":"8667:9:51"},{"kind":"number","nativeSrc":"8678:4:51","nodeType":"YulLiteral","src":"8678:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8663:3:51","nodeType":"YulIdentifier","src":"8663:3:51"},"nativeSrc":"8663:20:51","nodeType":"YulFunctionCall","src":"8663:20:51"},{"arguments":[{"name":"tail_2","nativeSrc":"8689:6:51","nodeType":"YulIdentifier","src":"8689:6:51"},{"name":"headStart","nativeSrc":"8697:9:51","nodeType":"YulIdentifier","src":"8697:9:51"}],"functionName":{"name":"sub","nativeSrc":"8685:3:51","nodeType":"YulIdentifier","src":"8685:3:51"},"nativeSrc":"8685:22:51","nodeType":"YulFunctionCall","src":"8685:22:51"}],"functionName":{"name":"mstore","nativeSrc":"8656:6:51","nodeType":"YulIdentifier","src":"8656:6:51"},"nativeSrc":"8656:52:51","nodeType":"YulFunctionCall","src":"8656:52:51"},"nativeSrc":"8656:52:51","nodeType":"YulExpressionStatement","src":"8656:52:51"},{"nativeSrc":"8717:19:51","nodeType":"YulVariableDeclaration","src":"8717:19:51","value":{"name":"tail_2","nativeSrc":"8730:6:51","nodeType":"YulIdentifier","src":"8730:6:51"},"variables":[{"name":"pos_1","nativeSrc":"8721:5:51","nodeType":"YulTypedName","src":"8721:5:51","type":""}]},{"nativeSrc":"8745:29:51","nodeType":"YulVariableDeclaration","src":"8745:29:51","value":{"arguments":[{"name":"value1","nativeSrc":"8767:6:51","nodeType":"YulIdentifier","src":"8767:6:51"}],"functionName":{"name":"sload","nativeSrc":"8761:5:51","nodeType":"YulIdentifier","src":"8761:5:51"},"nativeSrc":"8761:13:51","nodeType":"YulFunctionCall","src":"8761:13:51"},"variables":[{"name":"length_1","nativeSrc":"8749:8:51","nodeType":"YulTypedName","src":"8749:8:51","type":""}]},{"expression":{"arguments":[{"name":"tail_2","nativeSrc":"8790:6:51","nodeType":"YulIdentifier","src":"8790:6:51"},{"name":"length_1","nativeSrc":"8798:8:51","nodeType":"YulIdentifier","src":"8798:8:51"}],"functionName":{"name":"mstore","nativeSrc":"8783:6:51","nodeType":"YulIdentifier","src":"8783:6:51"},"nativeSrc":"8783:24:51","nodeType":"YulFunctionCall","src":"8783:24:51"},"nativeSrc":"8783:24:51","nodeType":"YulExpressionStatement","src":"8783:24:51"},{"nativeSrc":"8816:26:51","nodeType":"YulAssignment","src":"8816:26:51","value":{"arguments":[{"name":"tail_2","nativeSrc":"8829:6:51","nodeType":"YulIdentifier","src":"8829:6:51"},{"kind":"number","nativeSrc":"8837:4:51","nodeType":"YulLiteral","src":"8837:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8825:3:51","nodeType":"YulIdentifier","src":"8825:3:51"},"nativeSrc":"8825:17:51","nodeType":"YulFunctionCall","src":"8825:17:51"},"variableNames":[{"name":"pos_1","nativeSrc":"8816:5:51","nodeType":"YulIdentifier","src":"8816:5:51"}]},{"nativeSrc":"8851:54:51","nodeType":"YulVariableDeclaration","src":"8851:54:51","value":{"arguments":[{"arguments":[{"name":"tail_2","nativeSrc":"8873:6:51","nodeType":"YulIdentifier","src":"8873:6:51"},{"arguments":[{"kind":"number","nativeSrc":"8885:1:51","nodeType":"YulLiteral","src":"8885:1:51","type":"","value":"5"},{"name":"length_1","nativeSrc":"8888:8:51","nodeType":"YulIdentifier","src":"8888:8:51"}],"functionName":{"name":"shl","nativeSrc":"8881:3:51","nodeType":"YulIdentifier","src":"8881:3:51"},"nativeSrc":"8881:16:51","nodeType":"YulFunctionCall","src":"8881:16:51"}],"functionName":{"name":"add","nativeSrc":"8869:3:51","nodeType":"YulIdentifier","src":"8869:3:51"},"nativeSrc":"8869:29:51","nodeType":"YulFunctionCall","src":"8869:29:51"},{"kind":"number","nativeSrc":"8900:4:51","nodeType":"YulLiteral","src":"8900:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8865:3:51","nodeType":"YulIdentifier","src":"8865:3:51"},"nativeSrc":"8865:40:51","nodeType":"YulFunctionCall","src":"8865:40:51"},"variables":[{"name":"tail_3","nativeSrc":"8855:6:51","nodeType":"YulTypedName","src":"8855:6:51","type":""}]},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8921:1:51","nodeType":"YulLiteral","src":"8921:1:51","type":"","value":"0"},{"name":"value1","nativeSrc":"8924:6:51","nodeType":"YulIdentifier","src":"8924:6:51"}],"functionName":{"name":"mstore","nativeSrc":"8914:6:51","nodeType":"YulIdentifier","src":"8914:6:51"},"nativeSrc":"8914:17:51","nodeType":"YulFunctionCall","src":"8914:17:51"},"nativeSrc":"8914:17:51","nodeType":"YulExpressionStatement","src":"8914:17:51"},{"nativeSrc":"8940:34:51","nodeType":"YulVariableDeclaration","src":"8940:34:51","value":{"arguments":[{"kind":"number","nativeSrc":"8966:1:51","nodeType":"YulLiteral","src":"8966:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"8969:4:51","nodeType":"YulLiteral","src":"8969:4:51","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"8956:9:51","nodeType":"YulIdentifier","src":"8956:9:51"},"nativeSrc":"8956:18:51","nodeType":"YulFunctionCall","src":"8956:18:51"},"variables":[{"name":"srcPtr_1","nativeSrc":"8944:8:51","nodeType":"YulTypedName","src":"8944:8:51","type":""}]},{"nativeSrc":"8983:12:51","nodeType":"YulVariableDeclaration","src":"8983:12:51","value":{"kind":"number","nativeSrc":"8994:1:51","nodeType":"YulLiteral","src":"8994:1:51","type":"","value":"0"},"variables":[{"name":"i_1","nativeSrc":"8987:3:51","nodeType":"YulTypedName","src":"8987:3:51","type":""}]},{"body":{"nativeSrc":"9061:1376:51","nodeType":"YulBlock","src":"9061:1376:51","statements":[{"expression":{"arguments":[{"name":"pos_1","nativeSrc":"9082:5:51","nodeType":"YulIdentifier","src":"9082:5:51"},{"arguments":[{"arguments":[{"name":"tail_3","nativeSrc":"9097:6:51","nodeType":"YulIdentifier","src":"9097:6:51"},{"name":"tail_2","nativeSrc":"9105:6:51","nodeType":"YulIdentifier","src":"9105:6:51"}],"functionName":{"name":"sub","nativeSrc":"9093:3:51","nodeType":"YulIdentifier","src":"9093:3:51"},"nativeSrc":"9093:19:51","nodeType":"YulFunctionCall","src":"9093:19:51"},{"arguments":[{"kind":"number","nativeSrc":"9118:2:51","nodeType":"YulLiteral","src":"9118:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"9114:3:51","nodeType":"YulIdentifier","src":"9114:3:51"},"nativeSrc":"9114:7:51","nodeType":"YulFunctionCall","src":"9114:7:51"}],"functionName":{"name":"add","nativeSrc":"9089:3:51","nodeType":"YulIdentifier","src":"9089:3:51"},"nativeSrc":"9089:33:51","nodeType":"YulFunctionCall","src":"9089:33:51"}],"functionName":{"name":"mstore","nativeSrc":"9075:6:51","nodeType":"YulIdentifier","src":"9075:6:51"},"nativeSrc":"9075:48:51","nodeType":"YulFunctionCall","src":"9075:48:51"},"nativeSrc":"9075:48:51","nodeType":"YulExpressionStatement","src":"9075:48:51"},{"nativeSrc":"9136:12:51","nodeType":"YulVariableDeclaration","src":"9136:12:51","value":{"kind":"number","nativeSrc":"9147:1:51","nodeType":"YulLiteral","src":"9147:1:51","type":"","value":"0"},"variables":[{"name":"ret","nativeSrc":"9140:3:51","nodeType":"YulTypedName","src":"9140:3:51","type":""}]},{"nativeSrc":"9161:32:51","nodeType":"YulVariableDeclaration","src":"9161:32:51","value":{"arguments":[{"name":"srcPtr_1","nativeSrc":"9184:8:51","nodeType":"YulIdentifier","src":"9184:8:51"}],"functionName":{"name":"sload","nativeSrc":"9178:5:51","nodeType":"YulIdentifier","src":"9178:5:51"},"nativeSrc":"9178:15:51","nodeType":"YulFunctionCall","src":"9178:15:51"},"variables":[{"name":"slotValue","nativeSrc":"9165:9:51","nodeType":"YulTypedName","src":"9165:9:51","type":""}]},{"nativeSrc":"9206:19:51","nodeType":"YulVariableDeclaration","src":"9206:19:51","value":{"name":"ret","nativeSrc":"9222:3:51","nodeType":"YulIdentifier","src":"9222:3:51"},"variables":[{"name":"length_2","nativeSrc":"9210:8:51","nodeType":"YulTypedName","src":"9210:8:51","type":""}]},{"nativeSrc":"9238:29:51","nodeType":"YulAssignment","src":"9238:29:51","value":{"arguments":[{"kind":"number","nativeSrc":"9254:1:51","nodeType":"YulLiteral","src":"9254:1:51","type":"","value":"1"},{"name":"slotValue","nativeSrc":"9257:9:51","nodeType":"YulIdentifier","src":"9257:9:51"}],"functionName":{"name":"shr","nativeSrc":"9250:3:51","nodeType":"YulIdentifier","src":"9250:3:51"},"nativeSrc":"9250:17:51","nodeType":"YulFunctionCall","src":"9250:17:51"},"variableNames":[{"name":"length_2","nativeSrc":"9238:8:51","nodeType":"YulIdentifier","src":"9238:8:51"}]},{"nativeSrc":"9280:43:51","nodeType":"YulVariableDeclaration","src":"9280:43:51","value":{"arguments":[{"name":"slotValue","nativeSrc":"9310:9:51","nodeType":"YulIdentifier","src":"9310:9:51"},{"kind":"number","nativeSrc":"9321:1:51","nodeType":"YulLiteral","src":"9321:1:51","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"9306:3:51","nodeType":"YulIdentifier","src":"9306:3:51"},"nativeSrc":"9306:17:51","nodeType":"YulFunctionCall","src":"9306:17:51"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"9284:18:51","nodeType":"YulTypedName","src":"9284:18:51","type":""}]},{"body":{"nativeSrc":"9378:63:51","nodeType":"YulBlock","src":"9378:63:51","statements":[{"nativeSrc":"9396:31:51","nodeType":"YulAssignment","src":"9396:31:51","value":{"arguments":[{"name":"length_2","nativeSrc":"9412:8:51","nodeType":"YulIdentifier","src":"9412:8:51"},{"kind":"number","nativeSrc":"9422:4:51","nodeType":"YulLiteral","src":"9422:4:51","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"9408:3:51","nodeType":"YulIdentifier","src":"9408:3:51"},"nativeSrc":"9408:19:51","nodeType":"YulFunctionCall","src":"9408:19:51"},"variableNames":[{"name":"length_2","nativeSrc":"9396:8:51","nodeType":"YulIdentifier","src":"9396:8:51"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"9346:18:51","nodeType":"YulIdentifier","src":"9346:18:51"}],"functionName":{"name":"iszero","nativeSrc":"9339:6:51","nodeType":"YulIdentifier","src":"9339:6:51"},"nativeSrc":"9339:26:51","nodeType":"YulFunctionCall","src":"9339:26:51"},"nativeSrc":"9336:105:51","nodeType":"YulIf","src":"9336:105:51"},{"body":{"nativeSrc":"9512:131:51","nodeType":"YulBlock","src":"9512:131:51","statements":[{"expression":{"arguments":[{"name":"ret","nativeSrc":"9537:3:51","nodeType":"YulIdentifier","src":"9537:3:51"},{"arguments":[{"kind":"number","nativeSrc":"9546:3:51","nodeType":"YulLiteral","src":"9546:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"9551:10:51","nodeType":"YulLiteral","src":"9551:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"9542:3:51","nodeType":"YulIdentifier","src":"9542:3:51"},"nativeSrc":"9542:20:51","nodeType":"YulFunctionCall","src":"9542:20:51"}],"functionName":{"name":"mstore","nativeSrc":"9530:6:51","nodeType":"YulIdentifier","src":"9530:6:51"},"nativeSrc":"9530:33:51","nodeType":"YulFunctionCall","src":"9530:33:51"},"nativeSrc":"9530:33:51","nodeType":"YulExpressionStatement","src":"9530:33:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9587:1:51","nodeType":"YulLiteral","src":"9587:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"9590:4:51","nodeType":"YulLiteral","src":"9590:4:51","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"9580:6:51","nodeType":"YulIdentifier","src":"9580:6:51"},"nativeSrc":"9580:15:51","nodeType":"YulFunctionCall","src":"9580:15:51"},"nativeSrc":"9580:15:51","nodeType":"YulExpressionStatement","src":"9580:15:51"},{"expression":{"arguments":[{"name":"ret","nativeSrc":"9619:3:51","nodeType":"YulIdentifier","src":"9619:3:51"},{"kind":"number","nativeSrc":"9624:4:51","nodeType":"YulLiteral","src":"9624:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"9612:6:51","nodeType":"YulIdentifier","src":"9612:6:51"},"nativeSrc":"9612:17:51","nodeType":"YulFunctionCall","src":"9612:17:51"},"nativeSrc":"9612:17:51","nodeType":"YulExpressionStatement","src":"9612:17:51"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"9460:18:51","nodeType":"YulIdentifier","src":"9460:18:51"},{"arguments":[{"name":"length_2","nativeSrc":"9483:8:51","nodeType":"YulIdentifier","src":"9483:8:51"},{"kind":"number","nativeSrc":"9493:4:51","nodeType":"YulLiteral","src":"9493:4:51","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"9480:2:51","nodeType":"YulIdentifier","src":"9480:2:51"},"nativeSrc":"9480:18:51","nodeType":"YulFunctionCall","src":"9480:18:51"}],"functionName":{"name":"eq","nativeSrc":"9457:2:51","nodeType":"YulIdentifier","src":"9457:2:51"},"nativeSrc":"9457:42:51","nodeType":"YulFunctionCall","src":"9457:42:51"},"nativeSrc":"9454:189:51","nodeType":"YulIf","src":"9454:189:51"},{"nativeSrc":"9656:74:51","nodeType":"YulVariableDeclaration","src":"9656:74:51","value":{"arguments":[{"name":"tail_3","nativeSrc":"9713:6:51","nodeType":"YulIdentifier","src":"9713:6:51"},{"name":"length_2","nativeSrc":"9721:8:51","nodeType":"YulIdentifier","src":"9721:8:51"}],"functionName":{"name":"array_storeLengthForEncoding_string_library","nativeSrc":"9669:43:51","nodeType":"YulIdentifier","src":"9669:43:51"},"nativeSrc":"9669:61:51","nodeType":"YulFunctionCall","src":"9669:61:51"},"variables":[{"name":"pos_2","nativeSrc":"9660:5:51","nodeType":"YulTypedName","src":"9660:5:51","type":""}]},{"cases":[{"body":{"nativeSrc":"9788:139:51","nodeType":"YulBlock","src":"9788:139:51","statements":[{"expression":{"arguments":[{"name":"pos_2","nativeSrc":"9813:5:51","nodeType":"YulIdentifier","src":"9813:5:51"},{"arguments":[{"name":"slotValue","nativeSrc":"9824:9:51","nodeType":"YulIdentifier","src":"9824:9:51"},{"arguments":[{"kind":"number","nativeSrc":"9839:3:51","nodeType":"YulLiteral","src":"9839:3:51","type":"","value":"255"}],"functionName":{"name":"not","nativeSrc":"9835:3:51","nodeType":"YulIdentifier","src":"9835:3:51"},"nativeSrc":"9835:8:51","nodeType":"YulFunctionCall","src":"9835:8:51"}],"functionName":{"name":"and","nativeSrc":"9820:3:51","nodeType":"YulIdentifier","src":"9820:3:51"},"nativeSrc":"9820:24:51","nodeType":"YulFunctionCall","src":"9820:24:51"}],"functionName":{"name":"mstore","nativeSrc":"9806:6:51","nodeType":"YulIdentifier","src":"9806:6:51"},"nativeSrc":"9806:39:51","nodeType":"YulFunctionCall","src":"9806:39:51"},"nativeSrc":"9806:39:51","nodeType":"YulExpressionStatement","src":"9806:39:51"},{"nativeSrc":"9862:51:51","nodeType":"YulAssignment","src":"9862:51:51","value":{"arguments":[{"name":"pos_2","nativeSrc":"9873:5:51","nodeType":"YulIdentifier","src":"9873:5:51"},{"arguments":[{"kind":"number","nativeSrc":"9884:1:51","nodeType":"YulLiteral","src":"9884:1:51","type":"","value":"5"},{"arguments":[{"arguments":[{"name":"length_2","nativeSrc":"9901:8:51","nodeType":"YulIdentifier","src":"9901:8:51"}],"functionName":{"name":"iszero","nativeSrc":"9894:6:51","nodeType":"YulIdentifier","src":"9894:6:51"},"nativeSrc":"9894:16:51","nodeType":"YulFunctionCall","src":"9894:16:51"}],"functionName":{"name":"iszero","nativeSrc":"9887:6:51","nodeType":"YulIdentifier","src":"9887:6:51"},"nativeSrc":"9887:24:51","nodeType":"YulFunctionCall","src":"9887:24:51"}],"functionName":{"name":"shl","nativeSrc":"9880:3:51","nodeType":"YulIdentifier","src":"9880:3:51"},"nativeSrc":"9880:32:51","nodeType":"YulFunctionCall","src":"9880:32:51"}],"functionName":{"name":"add","nativeSrc":"9869:3:51","nodeType":"YulIdentifier","src":"9869:3:51"},"nativeSrc":"9869:44:51","nodeType":"YulFunctionCall","src":"9869:44:51"},"variableNames":[{"name":"ret","nativeSrc":"9862:3:51","nodeType":"YulIdentifier","src":"9862:3:51"}]}]},"nativeSrc":"9781:146:51","nodeType":"YulCase","src":"9781:146:51","value":{"kind":"number","nativeSrc":"9786:1:51","nodeType":"YulLiteral","src":"9786:1:51","type":"","value":"0"}},{"body":{"nativeSrc":"9947:375:51","nodeType":"YulBlock","src":"9947:375:51","statements":[{"nativeSrc":"9965:64:51","nodeType":"YulVariableDeclaration","src":"9965:64:51","value":{"arguments":[{"name":"srcPtr_1","nativeSrc":"10020:8:51","nodeType":"YulIdentifier","src":"10020:8:51"}],"functionName":{"name":"array_dataslot_array_string_storage_dyn","nativeSrc":"9980:39:51","nodeType":"YulIdentifier","src":"9980:39:51"},"nativeSrc":"9980:49:51","nodeType":"YulFunctionCall","src":"9980:49:51"},"variables":[{"name":"dataPos","nativeSrc":"9969:7:51","nodeType":"YulTypedName","src":"9969:7:51","type":""}]},{"nativeSrc":"10046:12:51","nodeType":"YulVariableDeclaration","src":"10046:12:51","value":{"kind":"number","nativeSrc":"10057:1:51","nodeType":"YulLiteral","src":"10057:1:51","type":"","value":"0"},"variables":[{"name":"i_2","nativeSrc":"10050:3:51","nodeType":"YulTypedName","src":"10050:3:51","type":""}]},{"body":{"nativeSrc":"10143:126:51","nodeType":"YulBlock","src":"10143:126:51","statements":[{"expression":{"arguments":[{"arguments":[{"name":"pos_2","nativeSrc":"10176:5:51","nodeType":"YulIdentifier","src":"10176:5:51"},{"name":"i_2","nativeSrc":"10183:3:51","nodeType":"YulIdentifier","src":"10183:3:51"}],"functionName":{"name":"add","nativeSrc":"10172:3:51","nodeType":"YulIdentifier","src":"10172:3:51"},"nativeSrc":"10172:15:51","nodeType":"YulFunctionCall","src":"10172:15:51"},{"arguments":[{"name":"dataPos","nativeSrc":"10195:7:51","nodeType":"YulIdentifier","src":"10195:7:51"}],"functionName":{"name":"sload","nativeSrc":"10189:5:51","nodeType":"YulIdentifier","src":"10189:5:51"},"nativeSrc":"10189:14:51","nodeType":"YulFunctionCall","src":"10189:14:51"}],"functionName":{"name":"mstore","nativeSrc":"10165:6:51","nodeType":"YulIdentifier","src":"10165:6:51"},"nativeSrc":"10165:39:51","nodeType":"YulFunctionCall","src":"10165:39:51"},"nativeSrc":"10165:39:51","nodeType":"YulExpressionStatement","src":"10165:39:51"},{"nativeSrc":"10225:26:51","nodeType":"YulAssignment","src":"10225:26:51","value":{"arguments":[{"name":"dataPos","nativeSrc":"10240:7:51","nodeType":"YulIdentifier","src":"10240:7:51"},{"kind":"number","nativeSrc":"10249:1:51","nodeType":"YulLiteral","src":"10249:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"10236:3:51","nodeType":"YulIdentifier","src":"10236:3:51"},"nativeSrc":"10236:15:51","nodeType":"YulFunctionCall","src":"10236:15:51"},"variableNames":[{"name":"dataPos","nativeSrc":"10225:7:51","nodeType":"YulIdentifier","src":"10225:7:51"}]}]},"condition":{"arguments":[{"name":"i_2","nativeSrc":"10086:3:51","nodeType":"YulIdentifier","src":"10086:3:51"},{"name":"length_2","nativeSrc":"10091:8:51","nodeType":"YulIdentifier","src":"10091:8:51"}],"functionName":{"name":"lt","nativeSrc":"10083:2:51","nodeType":"YulIdentifier","src":"10083:2:51"},"nativeSrc":"10083:17:51","nodeType":"YulFunctionCall","src":"10083:17:51"},"nativeSrc":"10075:194:51","nodeType":"YulForLoop","post":{"nativeSrc":"10101:25:51","nodeType":"YulBlock","src":"10101:25:51","statements":[{"nativeSrc":"10103:21:51","nodeType":"YulAssignment","src":"10103:21:51","value":{"arguments":[{"name":"i_2","nativeSrc":"10114:3:51","nodeType":"YulIdentifier","src":"10114:3:51"},{"kind":"number","nativeSrc":"10119:4:51","nodeType":"YulLiteral","src":"10119:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"10110:3:51","nodeType":"YulIdentifier","src":"10110:3:51"},"nativeSrc":"10110:14:51","nodeType":"YulFunctionCall","src":"10110:14:51"},"variableNames":[{"name":"i_2","nativeSrc":"10103:3:51","nodeType":"YulIdentifier","src":"10103:3:51"}]}]},"pre":{"nativeSrc":"10079:3:51","nodeType":"YulBlock","src":"10079:3:51","statements":[]},"src":"10075:194:51"},{"nativeSrc":"10286:22:51","nodeType":"YulAssignment","src":"10286:22:51","value":{"arguments":[{"name":"pos_2","nativeSrc":"10297:5:51","nodeType":"YulIdentifier","src":"10297:5:51"},{"name":"i_2","nativeSrc":"10304:3:51","nodeType":"YulIdentifier","src":"10304:3:51"}],"functionName":{"name":"add","nativeSrc":"10293:3:51","nodeType":"YulIdentifier","src":"10293:3:51"},"nativeSrc":"10293:15:51","nodeType":"YulFunctionCall","src":"10293:15:51"},"variableNames":[{"name":"ret","nativeSrc":"10286:3:51","nodeType":"YulIdentifier","src":"10286:3:51"}]}]},"nativeSrc":"9940:382:51","nodeType":"YulCase","src":"9940:382:51","value":{"kind":"number","nativeSrc":"9945:1:51","nodeType":"YulLiteral","src":"9945:1:51","type":"","value":"1"}}],"expression":{"name":"outOfPlaceEncoding","nativeSrc":"9750:18:51","nodeType":"YulIdentifier","src":"9750:18:51"},"nativeSrc":"9743:579:51","nodeType":"YulSwitch","src":"9743:579:51"},{"nativeSrc":"10335:13:51","nodeType":"YulAssignment","src":"10335:13:51","value":{"name":"ret","nativeSrc":"10345:3:51","nodeType":"YulIdentifier","src":"10345:3:51"},"variableNames":[{"name":"tail_3","nativeSrc":"10335:6:51","nodeType":"YulIdentifier","src":"10335:6:51"}]},{"nativeSrc":"10361:28:51","nodeType":"YulAssignment","src":"10361:28:51","value":{"arguments":[{"name":"srcPtr_1","nativeSrc":"10377:8:51","nodeType":"YulIdentifier","src":"10377:8:51"},{"kind":"number","nativeSrc":"10387:1:51","nodeType":"YulLiteral","src":"10387:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"10373:3:51","nodeType":"YulIdentifier","src":"10373:3:51"},"nativeSrc":"10373:16:51","nodeType":"YulFunctionCall","src":"10373:16:51"},"variableNames":[{"name":"srcPtr_1","nativeSrc":"10361:8:51","nodeType":"YulIdentifier","src":"10361:8:51"}]},{"nativeSrc":"10402:25:51","nodeType":"YulAssignment","src":"10402:25:51","value":{"arguments":[{"name":"pos_1","nativeSrc":"10415:5:51","nodeType":"YulIdentifier","src":"10415:5:51"},{"kind":"number","nativeSrc":"10422:4:51","nodeType":"YulLiteral","src":"10422:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"10411:3:51","nodeType":"YulIdentifier","src":"10411:3:51"},"nativeSrc":"10411:16:51","nodeType":"YulFunctionCall","src":"10411:16:51"},"variableNames":[{"name":"pos_1","nativeSrc":"10402:5:51","nodeType":"YulIdentifier","src":"10402:5:51"}]}]},"condition":{"arguments":[{"name":"i_1","nativeSrc":"9015:3:51","nodeType":"YulIdentifier","src":"9015:3:51"},{"name":"length_1","nativeSrc":"9020:8:51","nodeType":"YulIdentifier","src":"9020:8:51"}],"functionName":{"name":"lt","nativeSrc":"9012:2:51","nodeType":"YulIdentifier","src":"9012:2:51"},"nativeSrc":"9012:17:51","nodeType":"YulFunctionCall","src":"9012:17:51"},"nativeSrc":"9004:1433:51","nodeType":"YulForLoop","post":{"nativeSrc":"9030:22:51","nodeType":"YulBlock","src":"9030:22:51","statements":[{"nativeSrc":"9032:18:51","nodeType":"YulAssignment","src":"9032:18:51","value":{"arguments":[{"name":"i_1","nativeSrc":"9043:3:51","nodeType":"YulIdentifier","src":"9043:3:51"},{"kind":"number","nativeSrc":"9048:1:51","nodeType":"YulLiteral","src":"9048:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"9039:3:51","nodeType":"YulIdentifier","src":"9039:3:51"},"nativeSrc":"9039:11:51","nodeType":"YulFunctionCall","src":"9039:11:51"},"variableNames":[{"name":"i_1","nativeSrc":"9032:3:51","nodeType":"YulIdentifier","src":"9032:3:51"}]}]},"pre":{"nativeSrc":"9008:3:51","nodeType":"YulBlock","src":"9008:3:51","statements":[]},"src":"9004:1433:51"},{"nativeSrc":"10446:14:51","nodeType":"YulAssignment","src":"10446:14:51","value":{"name":"tail_3","nativeSrc":"10454:6:51","nodeType":"YulIdentifier","src":"10454:6:51"},"variableNames":[{"name":"tail","nativeSrc":"10446:4:51","nodeType":"YulIdentifier","src":"10446:4:51"}]}]},"name":"abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr_t_array$_t_string_storage_$dyn_storage__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"7796:2670:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8020:9:51","nodeType":"YulTypedName","src":"8020:9:51","type":""},{"name":"value1","nativeSrc":"8031:6:51","nodeType":"YulTypedName","src":"8031:6:51","type":""},{"name":"value0","nativeSrc":"8039:6:51","nodeType":"YulTypedName","src":"8039:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8050:4:51","nodeType":"YulTypedName","src":"8050:4:51","type":""}],"src":"7796:2670:51"},{"body":{"nativeSrc":"10583:103:51","nodeType":"YulBlock","src":"10583:103:51","statements":[{"body":{"nativeSrc":"10629:16:51","nodeType":"YulBlock","src":"10629:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10638:1:51","nodeType":"YulLiteral","src":"10638:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"10641:1:51","nodeType":"YulLiteral","src":"10641:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10631:6:51","nodeType":"YulIdentifier","src":"10631:6:51"},"nativeSrc":"10631:12:51","nodeType":"YulFunctionCall","src":"10631:12:51"},"nativeSrc":"10631:12:51","nodeType":"YulExpressionStatement","src":"10631:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10604:7:51","nodeType":"YulIdentifier","src":"10604:7:51"},{"name":"headStart","nativeSrc":"10613:9:51","nodeType":"YulIdentifier","src":"10613:9:51"}],"functionName":{"name":"sub","nativeSrc":"10600:3:51","nodeType":"YulIdentifier","src":"10600:3:51"},"nativeSrc":"10600:23:51","nodeType":"YulFunctionCall","src":"10600:23:51"},{"kind":"number","nativeSrc":"10625:2:51","nodeType":"YulLiteral","src":"10625:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"10596:3:51","nodeType":"YulIdentifier","src":"10596:3:51"},"nativeSrc":"10596:32:51","nodeType":"YulFunctionCall","src":"10596:32:51"},"nativeSrc":"10593:52:51","nodeType":"YulIf","src":"10593:52:51"},{"nativeSrc":"10654:26:51","nodeType":"YulAssignment","src":"10654:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"10670:9:51","nodeType":"YulIdentifier","src":"10670:9:51"}],"functionName":{"name":"mload","nativeSrc":"10664:5:51","nodeType":"YulIdentifier","src":"10664:5:51"},"nativeSrc":"10664:16:51","nodeType":"YulFunctionCall","src":"10664:16:51"},"variableNames":[{"name":"value0","nativeSrc":"10654:6:51","nodeType":"YulIdentifier","src":"10654:6:51"}]}]},"name":"abi_decode_tuple_t_userDefinedValueType$_RadonHash_$13250_fromMemory","nativeSrc":"10471:215:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10549:9:51","nodeType":"YulTypedName","src":"10549:9:51","type":""},{"name":"dataEnd","nativeSrc":"10560:7:51","nodeType":"YulTypedName","src":"10560:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10572:6:51","nodeType":"YulTypedName","src":"10572:6:51","type":""}],"src":"10471:215:51"},{"body":{"nativeSrc":"10997:448:51","nodeType":"YulBlock","src":"10997:448:51","statements":[{"nativeSrc":"11007:27:51","nodeType":"YulAssignment","src":"11007:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"11019:9:51","nodeType":"YulIdentifier","src":"11019:9:51"},{"kind":"number","nativeSrc":"11030:3:51","nodeType":"YulLiteral","src":"11030:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"11015:3:51","nodeType":"YulIdentifier","src":"11015:3:51"},"nativeSrc":"11015:19:51","nodeType":"YulFunctionCall","src":"11015:19:51"},"variableNames":[{"name":"tail","nativeSrc":"11007:4:51","nodeType":"YulIdentifier","src":"11007:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11050:9:51","nodeType":"YulIdentifier","src":"11050:9:51"},{"name":"value0","nativeSrc":"11061:6:51","nodeType":"YulIdentifier","src":"11061:6:51"}],"functionName":{"name":"mstore","nativeSrc":"11043:6:51","nodeType":"YulIdentifier","src":"11043:6:51"},"nativeSrc":"11043:25:51","nodeType":"YulFunctionCall","src":"11043:25:51"},"nativeSrc":"11043:25:51","nodeType":"YulExpressionStatement","src":"11043:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11088:9:51","nodeType":"YulIdentifier","src":"11088:9:51"},{"kind":"number","nativeSrc":"11099:2:51","nodeType":"YulLiteral","src":"11099:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11084:3:51","nodeType":"YulIdentifier","src":"11084:3:51"},"nativeSrc":"11084:18:51","nodeType":"YulFunctionCall","src":"11084:18:51"},{"arguments":[{"arguments":[{"name":"value1","nativeSrc":"11114:6:51","nodeType":"YulIdentifier","src":"11114:6:51"}],"functionName":{"name":"mload","nativeSrc":"11108:5:51","nodeType":"YulIdentifier","src":"11108:5:51"},"nativeSrc":"11108:13:51","nodeType":"YulFunctionCall","src":"11108:13:51"},{"kind":"number","nativeSrc":"11123:6:51","nodeType":"YulLiteral","src":"11123:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"11104:3:51","nodeType":"YulIdentifier","src":"11104:3:51"},"nativeSrc":"11104:26:51","nodeType":"YulFunctionCall","src":"11104:26:51"}],"functionName":{"name":"mstore","nativeSrc":"11077:6:51","nodeType":"YulIdentifier","src":"11077:6:51"},"nativeSrc":"11077:54:51","nodeType":"YulFunctionCall","src":"11077:54:51"},"nativeSrc":"11077:54:51","nodeType":"YulExpressionStatement","src":"11077:54:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11151:9:51","nodeType":"YulIdentifier","src":"11151:9:51"},{"kind":"number","nativeSrc":"11162:2:51","nodeType":"YulLiteral","src":"11162:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11147:3:51","nodeType":"YulIdentifier","src":"11147:3:51"},"nativeSrc":"11147:18:51","nodeType":"YulFunctionCall","src":"11147:18:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"value1","nativeSrc":"11181:6:51","nodeType":"YulIdentifier","src":"11181:6:51"},{"kind":"number","nativeSrc":"11189:2:51","nodeType":"YulLiteral","src":"11189:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11177:3:51","nodeType":"YulIdentifier","src":"11177:3:51"},"nativeSrc":"11177:15:51","nodeType":"YulFunctionCall","src":"11177:15:51"}],"functionName":{"name":"mload","nativeSrc":"11171:5:51","nodeType":"YulIdentifier","src":"11171:5:51"},"nativeSrc":"11171:22:51","nodeType":"YulFunctionCall","src":"11171:22:51"},{"kind":"number","nativeSrc":"11195:6:51","nodeType":"YulLiteral","src":"11195:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"11167:3:51","nodeType":"YulIdentifier","src":"11167:3:51"},"nativeSrc":"11167:35:51","nodeType":"YulFunctionCall","src":"11167:35:51"}],"functionName":{"name":"mstore","nativeSrc":"11140:6:51","nodeType":"YulIdentifier","src":"11140:6:51"},"nativeSrc":"11140:63:51","nodeType":"YulFunctionCall","src":"11140:63:51"},"nativeSrc":"11140:63:51","nodeType":"YulExpressionStatement","src":"11140:63:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11223:9:51","nodeType":"YulIdentifier","src":"11223:9:51"},{"kind":"number","nativeSrc":"11234:2:51","nodeType":"YulLiteral","src":"11234:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11219:3:51","nodeType":"YulIdentifier","src":"11219:3:51"},"nativeSrc":"11219:18:51","nodeType":"YulFunctionCall","src":"11219:18:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"value1","nativeSrc":"11253:6:51","nodeType":"YulIdentifier","src":"11253:6:51"},{"kind":"number","nativeSrc":"11261:2:51","nodeType":"YulLiteral","src":"11261:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11249:3:51","nodeType":"YulIdentifier","src":"11249:3:51"},"nativeSrc":"11249:15:51","nodeType":"YulFunctionCall","src":"11249:15:51"}],"functionName":{"name":"mload","nativeSrc":"11243:5:51","nodeType":"YulIdentifier","src":"11243:5:51"},"nativeSrc":"11243:22:51","nodeType":"YulFunctionCall","src":"11243:22:51"},{"kind":"number","nativeSrc":"11267:18:51","nodeType":"YulLiteral","src":"11267:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"11239:3:51","nodeType":"YulIdentifier","src":"11239:3:51"},"nativeSrc":"11239:47:51","nodeType":"YulFunctionCall","src":"11239:47:51"}],"functionName":{"name":"mstore","nativeSrc":"11212:6:51","nodeType":"YulIdentifier","src":"11212:6:51"},"nativeSrc":"11212:75:51","nodeType":"YulFunctionCall","src":"11212:75:51"},"nativeSrc":"11212:75:51","nodeType":"YulExpressionStatement","src":"11212:75:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11307:9:51","nodeType":"YulIdentifier","src":"11307:9:51"},{"kind":"number","nativeSrc":"11318:3:51","nodeType":"YulLiteral","src":"11318:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"11303:3:51","nodeType":"YulIdentifier","src":"11303:3:51"},"nativeSrc":"11303:19:51","nodeType":"YulFunctionCall","src":"11303:19:51"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"11334:6:51","nodeType":"YulIdentifier","src":"11334:6:51"}],"functionName":{"name":"mload","nativeSrc":"11328:5:51","nodeType":"YulIdentifier","src":"11328:5:51"},"nativeSrc":"11328:13:51","nodeType":"YulFunctionCall","src":"11328:13:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11351:3:51","nodeType":"YulLiteral","src":"11351:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"11356:1:51","nodeType":"YulLiteral","src":"11356:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11347:3:51","nodeType":"YulIdentifier","src":"11347:3:51"},"nativeSrc":"11347:11:51","nodeType":"YulFunctionCall","src":"11347:11:51"},{"kind":"number","nativeSrc":"11360:1:51","nodeType":"YulLiteral","src":"11360:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11343:3:51","nodeType":"YulIdentifier","src":"11343:3:51"},"nativeSrc":"11343:19:51","nodeType":"YulFunctionCall","src":"11343:19:51"}],"functionName":{"name":"and","nativeSrc":"11324:3:51","nodeType":"YulIdentifier","src":"11324:3:51"},"nativeSrc":"11324:39:51","nodeType":"YulFunctionCall","src":"11324:39:51"}],"functionName":{"name":"mstore","nativeSrc":"11296:6:51","nodeType":"YulIdentifier","src":"11296:6:51"},"nativeSrc":"11296:68:51","nodeType":"YulFunctionCall","src":"11296:68:51"},"nativeSrc":"11296:68:51","nodeType":"YulExpressionStatement","src":"11296:68:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11384:9:51","nodeType":"YulIdentifier","src":"11384:9:51"},{"kind":"number","nativeSrc":"11395:3:51","nodeType":"YulLiteral","src":"11395:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"11380:3:51","nodeType":"YulIdentifier","src":"11380:3:51"},"nativeSrc":"11380:19:51","nodeType":"YulFunctionCall","src":"11380:19:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"11415:6:51","nodeType":"YulIdentifier","src":"11415:6:51"},{"kind":"number","nativeSrc":"11423:2:51","nodeType":"YulLiteral","src":"11423:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11411:3:51","nodeType":"YulIdentifier","src":"11411:3:51"},"nativeSrc":"11411:15:51","nodeType":"YulFunctionCall","src":"11411:15:51"}],"functionName":{"name":"mload","nativeSrc":"11405:5:51","nodeType":"YulIdentifier","src":"11405:5:51"},"nativeSrc":"11405:22:51","nodeType":"YulFunctionCall","src":"11405:22:51"},{"kind":"number","nativeSrc":"11429:8:51","nodeType":"YulLiteral","src":"11429:8:51","type":"","value":"0xffffff"}],"functionName":{"name":"and","nativeSrc":"11401:3:51","nodeType":"YulIdentifier","src":"11401:3:51"},"nativeSrc":"11401:37:51","nodeType":"YulFunctionCall","src":"11401:37:51"}],"functionName":{"name":"mstore","nativeSrc":"11373:6:51","nodeType":"YulIdentifier","src":"11373:6:51"},"nativeSrc":"11373:66:51","nodeType":"YulFunctionCall","src":"11373:66:51"},"nativeSrc":"11373:66:51","nodeType":"YulExpressionStatement","src":"11373:66:51"}]},"name":"abi_encode_tuple_t_userDefinedValueType$_RadonHash_$13250_t_struct$_QuerySLA_$13472_memory_ptr_t_struct$_QueryCallback_$13435_memory_ptr__to_t_bytes32_t_struct$_QuerySLA_$13472_memory_ptr_t_struct$_QueryCallback_$13435_memory_ptr__fromStack_reversed","nativeSrc":"10691:754:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10950:9:51","nodeType":"YulTypedName","src":"10950:9:51","type":""},{"name":"value2","nativeSrc":"10961:6:51","nodeType":"YulTypedName","src":"10961:6:51","type":""},{"name":"value1","nativeSrc":"10969:6:51","nodeType":"YulTypedName","src":"10969:6:51","type":""},{"name":"value0","nativeSrc":"10977:6:51","nodeType":"YulTypedName","src":"10977:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10988:4:51","nodeType":"YulTypedName","src":"10988:4:51","type":""}],"src":"10691:754:51"},{"body":{"nativeSrc":"11531:103:51","nodeType":"YulBlock","src":"11531:103:51","statements":[{"body":{"nativeSrc":"11577:16:51","nodeType":"YulBlock","src":"11577:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11586:1:51","nodeType":"YulLiteral","src":"11586:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"11589:1:51","nodeType":"YulLiteral","src":"11589:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11579:6:51","nodeType":"YulIdentifier","src":"11579:6:51"},"nativeSrc":"11579:12:51","nodeType":"YulFunctionCall","src":"11579:12:51"},"nativeSrc":"11579:12:51","nodeType":"YulExpressionStatement","src":"11579:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11552:7:51","nodeType":"YulIdentifier","src":"11552:7:51"},{"name":"headStart","nativeSrc":"11561:9:51","nodeType":"YulIdentifier","src":"11561:9:51"}],"functionName":{"name":"sub","nativeSrc":"11548:3:51","nodeType":"YulIdentifier","src":"11548:3:51"},"nativeSrc":"11548:23:51","nodeType":"YulFunctionCall","src":"11548:23:51"},{"kind":"number","nativeSrc":"11573:2:51","nodeType":"YulLiteral","src":"11573:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"11544:3:51","nodeType":"YulIdentifier","src":"11544:3:51"},"nativeSrc":"11544:32:51","nodeType":"YulFunctionCall","src":"11544:32:51"},"nativeSrc":"11541:52:51","nodeType":"YulIf","src":"11541:52:51"},{"nativeSrc":"11602:26:51","nodeType":"YulAssignment","src":"11602:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"11618:9:51","nodeType":"YulIdentifier","src":"11618:9:51"}],"functionName":{"name":"mload","nativeSrc":"11612:5:51","nodeType":"YulIdentifier","src":"11612:5:51"},"nativeSrc":"11612:16:51","nodeType":"YulFunctionCall","src":"11612:16:51"},"variableNames":[{"name":"value0","nativeSrc":"11602:6:51","nodeType":"YulIdentifier","src":"11602:6:51"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"11450:184:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11497:9:51","nodeType":"YulTypedName","src":"11497:9:51","type":""},{"name":"dataEnd","nativeSrc":"11508:7:51","nodeType":"YulTypedName","src":"11508:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11520:6:51","nodeType":"YulTypedName","src":"11520:6:51","type":""}],"src":"11450:184:51"},{"body":{"nativeSrc":"11813:166:51","nodeType":"YulBlock","src":"11813:166:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11830:9:51","nodeType":"YulIdentifier","src":"11830:9:51"},{"kind":"number","nativeSrc":"11841:2:51","nodeType":"YulLiteral","src":"11841:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"11823:6:51","nodeType":"YulIdentifier","src":"11823:6:51"},"nativeSrc":"11823:21:51","nodeType":"YulFunctionCall","src":"11823:21:51"},"nativeSrc":"11823:21:51","nodeType":"YulExpressionStatement","src":"11823:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11864:9:51","nodeType":"YulIdentifier","src":"11864:9:51"},{"kind":"number","nativeSrc":"11875:2:51","nodeType":"YulLiteral","src":"11875:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11860:3:51","nodeType":"YulIdentifier","src":"11860:3:51"},"nativeSrc":"11860:18:51","nodeType":"YulFunctionCall","src":"11860:18:51"},{"kind":"number","nativeSrc":"11880:2:51","nodeType":"YulLiteral","src":"11880:2:51","type":"","value":"16"}],"functionName":{"name":"mstore","nativeSrc":"11853:6:51","nodeType":"YulIdentifier","src":"11853:6:51"},"nativeSrc":"11853:30:51","nodeType":"YulFunctionCall","src":"11853:30:51"},"nativeSrc":"11853:30:51","nodeType":"YulExpressionStatement","src":"11853:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11903:9:51","nodeType":"YulIdentifier","src":"11903:9:51"},{"kind":"number","nativeSrc":"11914:2:51","nodeType":"YulLiteral","src":"11914:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11899:3:51","nodeType":"YulIdentifier","src":"11899:3:51"},"nativeSrc":"11899:18:51","nodeType":"YulFunctionCall","src":"11899:18:51"},{"hexValue":"696e76616c6964207175657279206964","kind":"string","nativeSrc":"11919:18:51","nodeType":"YulLiteral","src":"11919:18:51","type":"","value":"invalid query id"}],"functionName":{"name":"mstore","nativeSrc":"11892:6:51","nodeType":"YulIdentifier","src":"11892:6:51"},"nativeSrc":"11892:46:51","nodeType":"YulFunctionCall","src":"11892:46:51"},"nativeSrc":"11892:46:51","nodeType":"YulExpressionStatement","src":"11892:46:51"},{"nativeSrc":"11947:26:51","nodeType":"YulAssignment","src":"11947:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"11959:9:51","nodeType":"YulIdentifier","src":"11959:9:51"},{"kind":"number","nativeSrc":"11970:2:51","nodeType":"YulLiteral","src":"11970:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11955:3:51","nodeType":"YulIdentifier","src":"11955:3:51"},"nativeSrc":"11955:18:51","nodeType":"YulFunctionCall","src":"11955:18:51"},"variableNames":[{"name":"tail","nativeSrc":"11947:4:51","nodeType":"YulIdentifier","src":"11947:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_a70485f3df10f36042e7631cf9bc7cfff2923fda111ae82f3320179a3f1a9c65__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"11639:340:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11790:9:51","nodeType":"YulTypedName","src":"11790:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11804:4:51","nodeType":"YulTypedName","src":"11804:4:51","type":""}],"src":"11639:340:51"},{"body":{"nativeSrc":"12158:176:51","nodeType":"YulBlock","src":"12158:176:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12175:9:51","nodeType":"YulIdentifier","src":"12175:9:51"},{"kind":"number","nativeSrc":"12186:2:51","nodeType":"YulLiteral","src":"12186:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"12168:6:51","nodeType":"YulIdentifier","src":"12168:6:51"},"nativeSrc":"12168:21:51","nodeType":"YulFunctionCall","src":"12168:21:51"},"nativeSrc":"12168:21:51","nodeType":"YulExpressionStatement","src":"12168:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12209:9:51","nodeType":"YulIdentifier","src":"12209:9:51"},{"kind":"number","nativeSrc":"12220:2:51","nodeType":"YulLiteral","src":"12220:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12205:3:51","nodeType":"YulIdentifier","src":"12205:3:51"},"nativeSrc":"12205:18:51","nodeType":"YulFunctionCall","src":"12205:18:51"},{"kind":"number","nativeSrc":"12225:2:51","nodeType":"YulLiteral","src":"12225:2:51","type":"","value":"26"}],"functionName":{"name":"mstore","nativeSrc":"12198:6:51","nodeType":"YulIdentifier","src":"12198:6:51"},"nativeSrc":"12198:30:51","nodeType":"YulFunctionCall","src":"12198:30:51"},"nativeSrc":"12198:30:51","nodeType":"YulExpressionStatement","src":"12198:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12248:9:51","nodeType":"YulIdentifier","src":"12248:9:51"},{"kind":"number","nativeSrc":"12259:2:51","nodeType":"YulLiteral","src":"12259:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12244:3:51","nodeType":"YulIdentifier","src":"12244:3:51"},"nativeSrc":"12244:18:51","nodeType":"YulFunctionCall","src":"12244:18:51"},{"hexValue":"7769742f7772617020747820616c7265616479206d696e746564","kind":"string","nativeSrc":"12264:28:51","nodeType":"YulLiteral","src":"12264:28:51","type":"","value":"wit/wrap tx already minted"}],"functionName":{"name":"mstore","nativeSrc":"12237:6:51","nodeType":"YulIdentifier","src":"12237:6:51"},"nativeSrc":"12237:56:51","nodeType":"YulFunctionCall","src":"12237:56:51"},"nativeSrc":"12237:56:51","nodeType":"YulExpressionStatement","src":"12237:56:51"},{"nativeSrc":"12302:26:51","nodeType":"YulAssignment","src":"12302:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"12314:9:51","nodeType":"YulIdentifier","src":"12314:9:51"},{"kind":"number","nativeSrc":"12325:2:51","nodeType":"YulLiteral","src":"12325:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12310:3:51","nodeType":"YulIdentifier","src":"12310:3:51"},"nativeSrc":"12310:18:51","nodeType":"YulFunctionCall","src":"12310:18:51"},"variableNames":[{"name":"tail","nativeSrc":"12302:4:51","nodeType":"YulIdentifier","src":"12302:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_dc598d76fa83f6ee02aa2a85fa4a344836c798f64f101c149de97b066339f648__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"11984:350:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12135:9:51","nodeType":"YulTypedName","src":"12135:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12149:4:51","nodeType":"YulTypedName","src":"12149:4:51","type":""}],"src":"11984:350:51"},{"body":{"nativeSrc":"12371:95:51","nodeType":"YulBlock","src":"12371:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12388:1:51","nodeType":"YulLiteral","src":"12388:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"12395:3:51","nodeType":"YulLiteral","src":"12395:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"12400:10:51","nodeType":"YulLiteral","src":"12400:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"12391:3:51","nodeType":"YulIdentifier","src":"12391:3:51"},"nativeSrc":"12391:20:51","nodeType":"YulFunctionCall","src":"12391:20:51"}],"functionName":{"name":"mstore","nativeSrc":"12381:6:51","nodeType":"YulIdentifier","src":"12381:6:51"},"nativeSrc":"12381:31:51","nodeType":"YulFunctionCall","src":"12381:31:51"},"nativeSrc":"12381:31:51","nodeType":"YulExpressionStatement","src":"12381:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12428:1:51","nodeType":"YulLiteral","src":"12428:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"12431:4:51","nodeType":"YulLiteral","src":"12431:4:51","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"12421:6:51","nodeType":"YulIdentifier","src":"12421:6:51"},"nativeSrc":"12421:15:51","nodeType":"YulFunctionCall","src":"12421:15:51"},"nativeSrc":"12421:15:51","nodeType":"YulExpressionStatement","src":"12421:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12452:1:51","nodeType":"YulLiteral","src":"12452:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"12455:4:51","nodeType":"YulLiteral","src":"12455:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"12445:6:51","nodeType":"YulIdentifier","src":"12445:6:51"},"nativeSrc":"12445:15:51","nodeType":"YulFunctionCall","src":"12445:15:51"},"nativeSrc":"12445:15:51","nodeType":"YulExpressionStatement","src":"12445:15:51"}]},"name":"panic_error_0x21","nativeSrc":"12339:127:51","nodeType":"YulFunctionDefinition","src":"12339:127:51"},{"body":{"nativeSrc":"12645:174:51","nodeType":"YulBlock","src":"12645:174:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12662:9:51","nodeType":"YulIdentifier","src":"12662:9:51"},{"kind":"number","nativeSrc":"12673:2:51","nodeType":"YulLiteral","src":"12673:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"12655:6:51","nodeType":"YulIdentifier","src":"12655:6:51"},"nativeSrc":"12655:21:51","nodeType":"YulFunctionCall","src":"12655:21:51"},"nativeSrc":"12655:21:51","nodeType":"YulExpressionStatement","src":"12655:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12696:9:51","nodeType":"YulIdentifier","src":"12696:9:51"},{"kind":"number","nativeSrc":"12707:2:51","nodeType":"YulLiteral","src":"12707:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12692:3:51","nodeType":"YulIdentifier","src":"12692:3:51"},"nativeSrc":"12692:18:51","nodeType":"YulFunctionCall","src":"12692:18:51"},{"kind":"number","nativeSrc":"12712:2:51","nodeType":"YulLiteral","src":"12712:2:51","type":"","value":"24"}],"functionName":{"name":"mstore","nativeSrc":"12685:6:51","nodeType":"YulIdentifier","src":"12685:6:51"},"nativeSrc":"12685:30:51","nodeType":"YulFunctionCall","src":"12685:30:51"},"nativeSrc":"12685:30:51","nodeType":"YulExpressionStatement","src":"12685:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12735:9:51","nodeType":"YulIdentifier","src":"12735:9:51"},{"kind":"number","nativeSrc":"12746:2:51","nodeType":"YulLiteral","src":"12746:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12731:3:51","nodeType":"YulIdentifier","src":"12731:3:51"},"nativeSrc":"12731:18:51","nodeType":"YulFunctionCall","src":"12731:18:51"},{"hexValue":"717565727920736f6c7665642077697468206572726f7273","kind":"string","nativeSrc":"12751:26:51","nodeType":"YulLiteral","src":"12751:26:51","type":"","value":"query solved with errors"}],"functionName":{"name":"mstore","nativeSrc":"12724:6:51","nodeType":"YulIdentifier","src":"12724:6:51"},"nativeSrc":"12724:54:51","nodeType":"YulFunctionCall","src":"12724:54:51"},"nativeSrc":"12724:54:51","nodeType":"YulExpressionStatement","src":"12724:54:51"},{"nativeSrc":"12787:26:51","nodeType":"YulAssignment","src":"12787:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"12799:9:51","nodeType":"YulIdentifier","src":"12799:9:51"},{"kind":"number","nativeSrc":"12810:2:51","nodeType":"YulLiteral","src":"12810:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12795:3:51","nodeType":"YulIdentifier","src":"12795:3:51"},"nativeSrc":"12795:18:51","nodeType":"YulFunctionCall","src":"12795:18:51"},"variableNames":[{"name":"tail","nativeSrc":"12787:4:51","nodeType":"YulIdentifier","src":"12787:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_fdd334fdf7e6fae9f5312aa3c59478f1e12a48beff4641205e14335f60fec3d9__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"12471:348:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12622:9:51","nodeType":"YulTypedName","src":"12622:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12636:4:51","nodeType":"YulTypedName","src":"12636:4:51","type":""}],"src":"12471:348:51"},{"body":{"nativeSrc":"12998:170:51","nodeType":"YulBlock","src":"12998:170:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13015:9:51","nodeType":"YulIdentifier","src":"13015:9:51"},{"kind":"number","nativeSrc":"13026:2:51","nodeType":"YulLiteral","src":"13026:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13008:6:51","nodeType":"YulIdentifier","src":"13008:6:51"},"nativeSrc":"13008:21:51","nodeType":"YulFunctionCall","src":"13008:21:51"},"nativeSrc":"13008:21:51","nodeType":"YulExpressionStatement","src":"13008:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13049:9:51","nodeType":"YulIdentifier","src":"13049:9:51"},{"kind":"number","nativeSrc":"13060:2:51","nodeType":"YulLiteral","src":"13060:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13045:3:51","nodeType":"YulIdentifier","src":"13045:3:51"},"nativeSrc":"13045:18:51","nodeType":"YulFunctionCall","src":"13045:18:51"},{"kind":"number","nativeSrc":"13065:2:51","nodeType":"YulLiteral","src":"13065:2:51","type":"","value":"20"}],"functionName":{"name":"mstore","nativeSrc":"13038:6:51","nodeType":"YulIdentifier","src":"13038:6:51"},"nativeSrc":"13038:30:51","nodeType":"YulFunctionCall","src":"13038:30:51"},"nativeSrc":"13038:30:51","nodeType":"YulExpressionStatement","src":"13038:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13088:9:51","nodeType":"YulIdentifier","src":"13088:9:51"},{"kind":"number","nativeSrc":"13099:2:51","nodeType":"YulLiteral","src":"13099:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13084:3:51","nodeType":"YulIdentifier","src":"13084:3:51"},"nativeSrc":"13084:18:51","nodeType":"YulFunctionCall","src":"13084:18:51"},{"hexValue":"696e76616c696420717565727920726573756c74","kind":"string","nativeSrc":"13104:22:51","nodeType":"YulLiteral","src":"13104:22:51","type":"","value":"invalid query result"}],"functionName":{"name":"mstore","nativeSrc":"13077:6:51","nodeType":"YulIdentifier","src":"13077:6:51"},"nativeSrc":"13077:50:51","nodeType":"YulFunctionCall","src":"13077:50:51"},"nativeSrc":"13077:50:51","nodeType":"YulExpressionStatement","src":"13077:50:51"},{"nativeSrc":"13136:26:51","nodeType":"YulAssignment","src":"13136:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"13148:9:51","nodeType":"YulIdentifier","src":"13148:9:51"},{"kind":"number","nativeSrc":"13159:2:51","nodeType":"YulLiteral","src":"13159:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13144:3:51","nodeType":"YulIdentifier","src":"13144:3:51"},"nativeSrc":"13144:18:51","nodeType":"YulFunctionCall","src":"13144:18:51"},"variableNames":[{"name":"tail","nativeSrc":"13136:4:51","nodeType":"YulIdentifier","src":"13136:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_38d45eac4f3206b66b0878b83795d9a0ce11d11e2db36d1c229a31b6f19f3503__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"12824:344:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12975:9:51","nodeType":"YulTypedName","src":"12975:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12989:4:51","nodeType":"YulTypedName","src":"12989:4:51","type":""}],"src":"12824:344:51"},{"body":{"nativeSrc":"13347:174:51","nodeType":"YulBlock","src":"13347:174:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13364:9:51","nodeType":"YulIdentifier","src":"13364:9:51"},{"kind":"number","nativeSrc":"13375:2:51","nodeType":"YulLiteral","src":"13375:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13357:6:51","nodeType":"YulIdentifier","src":"13357:6:51"},"nativeSrc":"13357:21:51","nodeType":"YulFunctionCall","src":"13357:21:51"},"nativeSrc":"13357:21:51","nodeType":"YulExpressionStatement","src":"13357:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13398:9:51","nodeType":"YulIdentifier","src":"13398:9:51"},{"kind":"number","nativeSrc":"13409:2:51","nodeType":"YulLiteral","src":"13409:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13394:3:51","nodeType":"YulIdentifier","src":"13394:3:51"},"nativeSrc":"13394:18:51","nodeType":"YulFunctionCall","src":"13394:18:51"},{"kind":"number","nativeSrc":"13414:2:51","nodeType":"YulLiteral","src":"13414:2:51","type":"","value":"24"}],"functionName":{"name":"mstore","nativeSrc":"13387:6:51","nodeType":"YulIdentifier","src":"13387:6:51"},"nativeSrc":"13387:30:51","nodeType":"YulFunctionCall","src":"13387:30:51"},"nativeSrc":"13387:30:51","nodeType":"YulExpressionStatement","src":"13387:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13437:9:51","nodeType":"YulIdentifier","src":"13437:9:51"},{"kind":"number","nativeSrc":"13448:2:51","nodeType":"YulLiteral","src":"13448:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13433:3:51","nodeType":"YulIdentifier","src":"13433:3:51"},"nativeSrc":"13433:18:51","nodeType":"YulFunctionCall","src":"13433:18:51"},{"hexValue":"756e66696e616c697a656420717565727920726573756c74","kind":"string","nativeSrc":"13453:26:51","nodeType":"YulLiteral","src":"13453:26:51","type":"","value":"unfinalized query result"}],"functionName":{"name":"mstore","nativeSrc":"13426:6:51","nodeType":"YulIdentifier","src":"13426:6:51"},"nativeSrc":"13426:54:51","nodeType":"YulFunctionCall","src":"13426:54:51"},"nativeSrc":"13426:54:51","nodeType":"YulExpressionStatement","src":"13426:54:51"},{"nativeSrc":"13489:26:51","nodeType":"YulAssignment","src":"13489:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"13501:9:51","nodeType":"YulIdentifier","src":"13501:9:51"},{"kind":"number","nativeSrc":"13512:2:51","nodeType":"YulLiteral","src":"13512:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13497:3:51","nodeType":"YulIdentifier","src":"13497:3:51"},"nativeSrc":"13497:18:51","nodeType":"YulFunctionCall","src":"13497:18:51"},"variableNames":[{"name":"tail","nativeSrc":"13489:4:51","nodeType":"YulIdentifier","src":"13489:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_c89b7a96616bc952cfce88db0441421c39a3927671c9d55f879ee1b493eba7b2__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13173:348:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13324:9:51","nodeType":"YulTypedName","src":"13324:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13338:4:51","nodeType":"YulTypedName","src":"13338:4:51","type":""}],"src":"13173:348:51"},{"body":{"nativeSrc":"13558:95:51","nodeType":"YulBlock","src":"13558:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13575:1:51","nodeType":"YulLiteral","src":"13575:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"13582:3:51","nodeType":"YulLiteral","src":"13582:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"13587:10:51","nodeType":"YulLiteral","src":"13587:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"13578:3:51","nodeType":"YulIdentifier","src":"13578:3:51"},"nativeSrc":"13578:20:51","nodeType":"YulFunctionCall","src":"13578:20:51"}],"functionName":{"name":"mstore","nativeSrc":"13568:6:51","nodeType":"YulIdentifier","src":"13568:6:51"},"nativeSrc":"13568:31:51","nodeType":"YulFunctionCall","src":"13568:31:51"},"nativeSrc":"13568:31:51","nodeType":"YulExpressionStatement","src":"13568:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13615:1:51","nodeType":"YulLiteral","src":"13615:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"13618:4:51","nodeType":"YulLiteral","src":"13618:4:51","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"13608:6:51","nodeType":"YulIdentifier","src":"13608:6:51"},"nativeSrc":"13608:15:51","nodeType":"YulFunctionCall","src":"13608:15:51"},"nativeSrc":"13608:15:51","nodeType":"YulExpressionStatement","src":"13608:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13639:1:51","nodeType":"YulLiteral","src":"13639:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"13642:4:51","nodeType":"YulLiteral","src":"13642:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"13632:6:51","nodeType":"YulIdentifier","src":"13632:6:51"},"nativeSrc":"13632:15:51","nodeType":"YulFunctionCall","src":"13632:15:51"},"nativeSrc":"13632:15:51","nodeType":"YulExpressionStatement","src":"13632:15:51"}]},"name":"panic_error_0x11","nativeSrc":"13526:127:51","nodeType":"YulFunctionDefinition","src":"13526:127:51"},{"body":{"nativeSrc":"13704:158:51","nodeType":"YulBlock","src":"13704:158:51","statements":[{"nativeSrc":"13714:45:51","nodeType":"YulVariableDeclaration","src":"13714:45:51","value":{"arguments":[{"name":"value","nativeSrc":"13733:5:51","nodeType":"YulIdentifier","src":"13733:5:51"},{"kind":"number","nativeSrc":"13740:18:51","nodeType":"YulLiteral","src":"13740:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"13729:3:51","nodeType":"YulIdentifier","src":"13729:3:51"},"nativeSrc":"13729:30:51","nodeType":"YulFunctionCall","src":"13729:30:51"},"variables":[{"name":"value_1","nativeSrc":"13718:7:51","nodeType":"YulTypedName","src":"13718:7:51","type":""}]},{"body":{"nativeSrc":"13803:22:51","nodeType":"YulBlock","src":"13803:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"13805:16:51","nodeType":"YulIdentifier","src":"13805:16:51"},"nativeSrc":"13805:18:51","nodeType":"YulFunctionCall","src":"13805:18:51"},"nativeSrc":"13805:18:51","nodeType":"YulExpressionStatement","src":"13805:18:51"}]},"condition":{"arguments":[{"name":"value_1","nativeSrc":"13774:7:51","nodeType":"YulIdentifier","src":"13774:7:51"},{"kind":"number","nativeSrc":"13783:18:51","nodeType":"YulLiteral","src":"13783:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"eq","nativeSrc":"13771:2:51","nodeType":"YulIdentifier","src":"13771:2:51"},"nativeSrc":"13771:31:51","nodeType":"YulFunctionCall","src":"13771:31:51"},"nativeSrc":"13768:57:51","nodeType":"YulIf","src":"13768:57:51"},{"nativeSrc":"13834:22:51","nodeType":"YulAssignment","src":"13834:22:51","value":{"arguments":[{"name":"value_1","nativeSrc":"13845:7:51","nodeType":"YulIdentifier","src":"13845:7:51"},{"kind":"number","nativeSrc":"13854:1:51","nodeType":"YulLiteral","src":"13854:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"13841:3:51","nodeType":"YulIdentifier","src":"13841:3:51"},"nativeSrc":"13841:15:51","nodeType":"YulFunctionCall","src":"13841:15:51"},"variableNames":[{"name":"ret","nativeSrc":"13834:3:51","nodeType":"YulIdentifier","src":"13834:3:51"}]}]},"name":"increment_t_uint64","nativeSrc":"13658:204:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"13686:5:51","nodeType":"YulTypedName","src":"13686:5:51","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"13696:3:51","nodeType":"YulTypedName","src":"13696:3:51","type":""}],"src":"13658:204:51"},{"body":{"nativeSrc":"13914:144:51","nodeType":"YulBlock","src":"13914:144:51","statements":[{"nativeSrc":"13924:66:51","nodeType":"YulAssignment","src":"13924:66:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"13939:1:51","nodeType":"YulIdentifier","src":"13939:1:51"},{"kind":"number","nativeSrc":"13942:18:51","nodeType":"YulLiteral","src":"13942:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"13935:3:51","nodeType":"YulIdentifier","src":"13935:3:51"},"nativeSrc":"13935:26:51","nodeType":"YulFunctionCall","src":"13935:26:51"},{"arguments":[{"name":"y","nativeSrc":"13967:1:51","nodeType":"YulIdentifier","src":"13967:1:51"},{"kind":"number","nativeSrc":"13970:18:51","nodeType":"YulLiteral","src":"13970:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"13963:3:51","nodeType":"YulIdentifier","src":"13963:3:51"},"nativeSrc":"13963:26:51","nodeType":"YulFunctionCall","src":"13963:26:51"}],"functionName":{"name":"add","nativeSrc":"13931:3:51","nodeType":"YulIdentifier","src":"13931:3:51"},"nativeSrc":"13931:59:51","nodeType":"YulFunctionCall","src":"13931:59:51"},"variableNames":[{"name":"sum","nativeSrc":"13924:3:51","nodeType":"YulIdentifier","src":"13924:3:51"}]},{"body":{"nativeSrc":"14030:22:51","nodeType":"YulBlock","src":"14030:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"14032:16:51","nodeType":"YulIdentifier","src":"14032:16:51"},"nativeSrc":"14032:18:51","nodeType":"YulFunctionCall","src":"14032:18:51"},"nativeSrc":"14032:18:51","nodeType":"YulExpressionStatement","src":"14032:18:51"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"14005:3:51","nodeType":"YulIdentifier","src":"14005:3:51"},{"kind":"number","nativeSrc":"14010:18:51","nodeType":"YulLiteral","src":"14010:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"14002:2:51","nodeType":"YulIdentifier","src":"14002:2:51"},"nativeSrc":"14002:27:51","nodeType":"YulFunctionCall","src":"14002:27:51"},"nativeSrc":"13999:53:51","nodeType":"YulIf","src":"13999:53:51"}]},"name":"checked_add_t_uint64","nativeSrc":"13867:191:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"13897:1:51","nodeType":"YulTypedName","src":"13897:1:51","type":""},{"name":"y","nativeSrc":"13900:1:51","nodeType":"YulTypedName","src":"13900:1:51","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"13906:3:51","nodeType":"YulTypedName","src":"13906:3:51","type":""}],"src":"13867:191:51"},{"body":{"nativeSrc":"14237:164:51","nodeType":"YulBlock","src":"14237:164:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14254:9:51","nodeType":"YulIdentifier","src":"14254:9:51"},{"kind":"number","nativeSrc":"14265:2:51","nodeType":"YulLiteral","src":"14265:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"14247:6:51","nodeType":"YulIdentifier","src":"14247:6:51"},"nativeSrc":"14247:21:51","nodeType":"YulFunctionCall","src":"14247:21:51"},"nativeSrc":"14247:21:51","nodeType":"YulExpressionStatement","src":"14247:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14288:9:51","nodeType":"YulIdentifier","src":"14288:9:51"},{"kind":"number","nativeSrc":"14299:2:51","nodeType":"YulLiteral","src":"14299:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14284:3:51","nodeType":"YulIdentifier","src":"14284:3:51"},"nativeSrc":"14284:18:51","nodeType":"YulFunctionCall","src":"14284:18:51"},{"kind":"number","nativeSrc":"14304:2:51","nodeType":"YulLiteral","src":"14304:2:51","type":"","value":"14"}],"functionName":{"name":"mstore","nativeSrc":"14277:6:51","nodeType":"YulIdentifier","src":"14277:6:51"},"nativeSrc":"14277:30:51","nodeType":"YulFunctionCall","src":"14277:30:51"},"nativeSrc":"14277:30:51","nodeType":"YulExpressionStatement","src":"14277:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14327:9:51","nodeType":"YulIdentifier","src":"14327:9:51"},{"kind":"number","nativeSrc":"14338:2:51","nodeType":"YulLiteral","src":"14338:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14323:3:51","nodeType":"YulIdentifier","src":"14323:3:51"},"nativeSrc":"14323:18:51","nodeType":"YulFunctionCall","src":"14323:18:51"},{"hexValue":"696e76616c6964207265706f7274","kind":"string","nativeSrc":"14343:16:51","nodeType":"YulLiteral","src":"14343:16:51","type":"","value":"invalid report"}],"functionName":{"name":"mstore","nativeSrc":"14316:6:51","nodeType":"YulIdentifier","src":"14316:6:51"},"nativeSrc":"14316:44:51","nodeType":"YulFunctionCall","src":"14316:44:51"},"nativeSrc":"14316:44:51","nodeType":"YulExpressionStatement","src":"14316:44:51"},{"nativeSrc":"14369:26:51","nodeType":"YulAssignment","src":"14369:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"14381:9:51","nodeType":"YulIdentifier","src":"14381:9:51"},{"kind":"number","nativeSrc":"14392:2:51","nodeType":"YulLiteral","src":"14392:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14377:3:51","nodeType":"YulIdentifier","src":"14377:3:51"},"nativeSrc":"14377:18:51","nodeType":"YulFunctionCall","src":"14377:18:51"},"variableNames":[{"name":"tail","nativeSrc":"14369:4:51","nodeType":"YulIdentifier","src":"14369:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_efa3da54425289ec39e5b74649f827cb6b11f755cde117b4b47bf615b5961b8c__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"14063:338:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14214:9:51","nodeType":"YulTypedName","src":"14214:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14228:4:51","nodeType":"YulTypedName","src":"14228:4:51","type":""}],"src":"14063:338:51"},{"body":{"nativeSrc":"14438:95:51","nodeType":"YulBlock","src":"14438:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14455:1:51","nodeType":"YulLiteral","src":"14455:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14462:3:51","nodeType":"YulLiteral","src":"14462:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"14467:10:51","nodeType":"YulLiteral","src":"14467:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14458:3:51","nodeType":"YulIdentifier","src":"14458:3:51"},"nativeSrc":"14458:20:51","nodeType":"YulFunctionCall","src":"14458:20:51"}],"functionName":{"name":"mstore","nativeSrc":"14448:6:51","nodeType":"YulIdentifier","src":"14448:6:51"},"nativeSrc":"14448:31:51","nodeType":"YulFunctionCall","src":"14448:31:51"},"nativeSrc":"14448:31:51","nodeType":"YulExpressionStatement","src":"14448:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14495:1:51","nodeType":"YulLiteral","src":"14495:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"14498:4:51","nodeType":"YulLiteral","src":"14498:4:51","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"14488:6:51","nodeType":"YulIdentifier","src":"14488:6:51"},"nativeSrc":"14488:15:51","nodeType":"YulFunctionCall","src":"14488:15:51"},"nativeSrc":"14488:15:51","nodeType":"YulExpressionStatement","src":"14488:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14519:1:51","nodeType":"YulLiteral","src":"14519:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"14522:4:51","nodeType":"YulLiteral","src":"14522:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14512:6:51","nodeType":"YulIdentifier","src":"14512:6:51"},"nativeSrc":"14512:15:51","nodeType":"YulFunctionCall","src":"14512:15:51"},"nativeSrc":"14512:15:51","nodeType":"YulExpressionStatement","src":"14512:15:51"}]},"name":"panic_error_0x12","nativeSrc":"14406:127:51","nodeType":"YulFunctionDefinition","src":"14406:127:51"},{"body":{"nativeSrc":"14582:121:51","nodeType":"YulBlock","src":"14582:121:51","statements":[{"nativeSrc":"14592:23:51","nodeType":"YulVariableDeclaration","src":"14592:23:51","value":{"arguments":[{"name":"y","nativeSrc":"14607:1:51","nodeType":"YulIdentifier","src":"14607:1:51"},{"kind":"number","nativeSrc":"14610:4:51","nodeType":"YulLiteral","src":"14610:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"14603:3:51","nodeType":"YulIdentifier","src":"14603:3:51"},"nativeSrc":"14603:12:51","nodeType":"YulFunctionCall","src":"14603:12:51"},"variables":[{"name":"y_1","nativeSrc":"14596:3:51","nodeType":"YulTypedName","src":"14596:3:51","type":""}]},{"body":{"nativeSrc":"14639:22:51","nodeType":"YulBlock","src":"14639:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"14641:16:51","nodeType":"YulIdentifier","src":"14641:16:51"},"nativeSrc":"14641:18:51","nodeType":"YulFunctionCall","src":"14641:18:51"},"nativeSrc":"14641:18:51","nodeType":"YulExpressionStatement","src":"14641:18:51"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"14634:3:51","nodeType":"YulIdentifier","src":"14634:3:51"}],"functionName":{"name":"iszero","nativeSrc":"14627:6:51","nodeType":"YulIdentifier","src":"14627:6:51"},"nativeSrc":"14627:11:51","nodeType":"YulFunctionCall","src":"14627:11:51"},"nativeSrc":"14624:37:51","nodeType":"YulIf","src":"14624:37:51"},{"nativeSrc":"14670:27:51","nodeType":"YulAssignment","src":"14670:27:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"14683:1:51","nodeType":"YulIdentifier","src":"14683:1:51"},{"kind":"number","nativeSrc":"14686:4:51","nodeType":"YulLiteral","src":"14686:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"14679:3:51","nodeType":"YulIdentifier","src":"14679:3:51"},"nativeSrc":"14679:12:51","nodeType":"YulFunctionCall","src":"14679:12:51"},{"name":"y_1","nativeSrc":"14693:3:51","nodeType":"YulIdentifier","src":"14693:3:51"}],"functionName":{"name":"div","nativeSrc":"14675:3:51","nodeType":"YulIdentifier","src":"14675:3:51"},"nativeSrc":"14675:22:51","nodeType":"YulFunctionCall","src":"14675:22:51"},"variableNames":[{"name":"r","nativeSrc":"14670:1:51","nodeType":"YulIdentifier","src":"14670:1:51"}]}]},"name":"checked_div_t_uint8","nativeSrc":"14538:165:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"14567:1:51","nodeType":"YulTypedName","src":"14567:1:51","type":""},{"name":"y","nativeSrc":"14570:1:51","nodeType":"YulTypedName","src":"14570:1:51","type":""}],"returnVariables":[{"name":"r","nativeSrc":"14576:1:51","nodeType":"YulTypedName","src":"14576:1:51","type":""}],"src":"14538:165:51"},{"body":{"nativeSrc":"14753:130:51","nodeType":"YulBlock","src":"14753:130:51","statements":[{"nativeSrc":"14763:31:51","nodeType":"YulVariableDeclaration","src":"14763:31:51","value":{"arguments":[{"name":"value","nativeSrc":"14782:5:51","nodeType":"YulIdentifier","src":"14782:5:51"},{"kind":"number","nativeSrc":"14789:4:51","nodeType":"YulLiteral","src":"14789:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"14778:3:51","nodeType":"YulIdentifier","src":"14778:3:51"},"nativeSrc":"14778:16:51","nodeType":"YulFunctionCall","src":"14778:16:51"},"variables":[{"name":"value_1","nativeSrc":"14767:7:51","nodeType":"YulTypedName","src":"14767:7:51","type":""}]},{"body":{"nativeSrc":"14824:22:51","nodeType":"YulBlock","src":"14824:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"14826:16:51","nodeType":"YulIdentifier","src":"14826:16:51"},"nativeSrc":"14826:18:51","nodeType":"YulFunctionCall","src":"14826:18:51"},"nativeSrc":"14826:18:51","nodeType":"YulExpressionStatement","src":"14826:18:51"}]},"condition":{"arguments":[{"name":"value_1","nativeSrc":"14809:7:51","nodeType":"YulIdentifier","src":"14809:7:51"},{"kind":"number","nativeSrc":"14818:4:51","nodeType":"YulLiteral","src":"14818:4:51","type":"","value":"0xff"}],"functionName":{"name":"eq","nativeSrc":"14806:2:51","nodeType":"YulIdentifier","src":"14806:2:51"},"nativeSrc":"14806:17:51","nodeType":"YulFunctionCall","src":"14806:17:51"},"nativeSrc":"14803:43:51","nodeType":"YulIf","src":"14803:43:51"},{"nativeSrc":"14855:22:51","nodeType":"YulAssignment","src":"14855:22:51","value":{"arguments":[{"name":"value_1","nativeSrc":"14866:7:51","nodeType":"YulIdentifier","src":"14866:7:51"},{"kind":"number","nativeSrc":"14875:1:51","nodeType":"YulLiteral","src":"14875:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"14862:3:51","nodeType":"YulIdentifier","src":"14862:3:51"},"nativeSrc":"14862:15:51","nodeType":"YulFunctionCall","src":"14862:15:51"},"variableNames":[{"name":"ret","nativeSrc":"14855:3:51","nodeType":"YulIdentifier","src":"14855:3:51"}]}]},"name":"increment_t_uint8","nativeSrc":"14708:175:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"14735:5:51","nodeType":"YulTypedName","src":"14735:5:51","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"14745:3:51","nodeType":"YulTypedName","src":"14745:3:51","type":""}],"src":"14708:175:51"},{"body":{"nativeSrc":"15062:173:51","nodeType":"YulBlock","src":"15062:173:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15079:9:51","nodeType":"YulIdentifier","src":"15079:9:51"},{"kind":"number","nativeSrc":"15090:2:51","nodeType":"YulLiteral","src":"15090:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"15072:6:51","nodeType":"YulIdentifier","src":"15072:6:51"},"nativeSrc":"15072:21:51","nodeType":"YulFunctionCall","src":"15072:21:51"},"nativeSrc":"15072:21:51","nodeType":"YulExpressionStatement","src":"15072:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15113:9:51","nodeType":"YulIdentifier","src":"15113:9:51"},{"kind":"number","nativeSrc":"15124:2:51","nodeType":"YulLiteral","src":"15124:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15109:3:51","nodeType":"YulIdentifier","src":"15109:3:51"},"nativeSrc":"15109:18:51","nodeType":"YulFunctionCall","src":"15109:18:51"},{"kind":"number","nativeSrc":"15129:2:51","nodeType":"YulLiteral","src":"15129:2:51","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"15102:6:51","nodeType":"YulIdentifier","src":"15102:6:51"},"nativeSrc":"15102:30:51","nodeType":"YulFunctionCall","src":"15102:30:51"},"nativeSrc":"15102:30:51","nodeType":"YulExpressionStatement","src":"15102:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15152:9:51","nodeType":"YulIdentifier","src":"15152:9:51"},{"kind":"number","nativeSrc":"15163:2:51","nodeType":"YulLiteral","src":"15163:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15148:3:51","nodeType":"YulIdentifier","src":"15148:3:51"},"nativeSrc":"15148:18:51","nodeType":"YulFunctionCall","src":"15148:18:51"},{"hexValue":"63626f723a2063616e6e6f742066657463682064617461","kind":"string","nativeSrc":"15168:25:51","nodeType":"YulLiteral","src":"15168:25:51","type":"","value":"cbor: cannot fetch data"}],"functionName":{"name":"mstore","nativeSrc":"15141:6:51","nodeType":"YulIdentifier","src":"15141:6:51"},"nativeSrc":"15141:53:51","nodeType":"YulFunctionCall","src":"15141:53:51"},"nativeSrc":"15141:53:51","nodeType":"YulExpressionStatement","src":"15141:53:51"},{"nativeSrc":"15203:26:51","nodeType":"YulAssignment","src":"15203:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"15215:9:51","nodeType":"YulIdentifier","src":"15215:9:51"},{"kind":"number","nativeSrc":"15226:2:51","nodeType":"YulLiteral","src":"15226:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15211:3:51","nodeType":"YulIdentifier","src":"15211:3:51"},"nativeSrc":"15211:18:51","nodeType":"YulFunctionCall","src":"15211:18:51"},"variableNames":[{"name":"tail","nativeSrc":"15203:4:51","nodeType":"YulIdentifier","src":"15203:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_f9e00dcd71685f8522f8d07872510c3a81c2039687b393455d27e0cdc22dcafa__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"14888:347:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15039:9:51","nodeType":"YulTypedName","src":"15039:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15053:4:51","nodeType":"YulTypedName","src":"15053:4:51","type":""}],"src":"14888:347:51"},{"body":{"nativeSrc":"15365:141:51","nodeType":"YulBlock","src":"15365:141:51","statements":[{"nativeSrc":"15375:26:51","nodeType":"YulAssignment","src":"15375:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"15387:9:51","nodeType":"YulIdentifier","src":"15387:9:51"},{"kind":"number","nativeSrc":"15398:2:51","nodeType":"YulLiteral","src":"15398:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15383:3:51","nodeType":"YulIdentifier","src":"15383:3:51"},"nativeSrc":"15383:18:51","nodeType":"YulFunctionCall","src":"15383:18:51"},"variableNames":[{"name":"tail","nativeSrc":"15375:4:51","nodeType":"YulIdentifier","src":"15375:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15417:9:51","nodeType":"YulIdentifier","src":"15417:9:51"},{"arguments":[{"name":"value0","nativeSrc":"15432:6:51","nodeType":"YulIdentifier","src":"15432:6:51"},{"kind":"number","nativeSrc":"15440:4:51","nodeType":"YulLiteral","src":"15440:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"15428:3:51","nodeType":"YulIdentifier","src":"15428:3:51"},"nativeSrc":"15428:17:51","nodeType":"YulFunctionCall","src":"15428:17:51"}],"functionName":{"name":"mstore","nativeSrc":"15410:6:51","nodeType":"YulIdentifier","src":"15410:6:51"},"nativeSrc":"15410:36:51","nodeType":"YulFunctionCall","src":"15410:36:51"},"nativeSrc":"15410:36:51","nodeType":"YulExpressionStatement","src":"15410:36:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15466:9:51","nodeType":"YulIdentifier","src":"15466:9:51"},{"kind":"number","nativeSrc":"15477:2:51","nodeType":"YulLiteral","src":"15477:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15462:3:51","nodeType":"YulIdentifier","src":"15462:3:51"},"nativeSrc":"15462:18:51","nodeType":"YulFunctionCall","src":"15462:18:51"},{"arguments":[{"name":"value1","nativeSrc":"15486:6:51","nodeType":"YulIdentifier","src":"15486:6:51"},{"kind":"number","nativeSrc":"15494:4:51","nodeType":"YulLiteral","src":"15494:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"15482:3:51","nodeType":"YulIdentifier","src":"15482:3:51"},"nativeSrc":"15482:17:51","nodeType":"YulFunctionCall","src":"15482:17:51"}],"functionName":{"name":"mstore","nativeSrc":"15455:6:51","nodeType":"YulIdentifier","src":"15455:6:51"},"nativeSrc":"15455:45:51","nodeType":"YulFunctionCall","src":"15455:45:51"},"nativeSrc":"15455:45:51","nodeType":"YulExpressionStatement","src":"15455:45:51"}]},"name":"abi_encode_tuple_t_uint8_t_uint8__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"15240:266:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15326:9:51","nodeType":"YulTypedName","src":"15326:9:51","type":""},{"name":"value1","nativeSrc":"15337:6:51","nodeType":"YulTypedName","src":"15337:6:51","type":""},{"name":"value0","nativeSrc":"15345:6:51","nodeType":"YulTypedName","src":"15345:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15356:4:51","nodeType":"YulTypedName","src":"15356:4:51","type":""}],"src":"15240:266:51"},{"body":{"nativeSrc":"15556:149:51","nodeType":"YulBlock","src":"15556:149:51","statements":[{"nativeSrc":"15566:37:51","nodeType":"YulVariableDeclaration","src":"15566:37:51","value":{"arguments":[{"name":"y","nativeSrc":"15581:1:51","nodeType":"YulIdentifier","src":"15581:1:51"},{"kind":"number","nativeSrc":"15584:18:51","nodeType":"YulLiteral","src":"15584:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"15577:3:51","nodeType":"YulIdentifier","src":"15577:3:51"},"nativeSrc":"15577:26:51","nodeType":"YulFunctionCall","src":"15577:26:51"},"variables":[{"name":"y_1","nativeSrc":"15570:3:51","nodeType":"YulTypedName","src":"15570:3:51","type":""}]},{"body":{"nativeSrc":"15627:22:51","nodeType":"YulBlock","src":"15627:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"15629:16:51","nodeType":"YulIdentifier","src":"15629:16:51"},"nativeSrc":"15629:18:51","nodeType":"YulFunctionCall","src":"15629:18:51"},"nativeSrc":"15629:18:51","nodeType":"YulExpressionStatement","src":"15629:18:51"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"15622:3:51","nodeType":"YulIdentifier","src":"15622:3:51"}],"functionName":{"name":"iszero","nativeSrc":"15615:6:51","nodeType":"YulIdentifier","src":"15615:6:51"},"nativeSrc":"15615:11:51","nodeType":"YulFunctionCall","src":"15615:11:51"},"nativeSrc":"15612:37:51","nodeType":"YulIf","src":"15612:37:51"},{"nativeSrc":"15658:41:51","nodeType":"YulAssignment","src":"15658:41:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"15671:1:51","nodeType":"YulIdentifier","src":"15671:1:51"},{"kind":"number","nativeSrc":"15674:18:51","nodeType":"YulLiteral","src":"15674:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"15667:3:51","nodeType":"YulIdentifier","src":"15667:3:51"},"nativeSrc":"15667:26:51","nodeType":"YulFunctionCall","src":"15667:26:51"},{"name":"y_1","nativeSrc":"15695:3:51","nodeType":"YulIdentifier","src":"15695:3:51"}],"functionName":{"name":"div","nativeSrc":"15663:3:51","nodeType":"YulIdentifier","src":"15663:3:51"},"nativeSrc":"15663:36:51","nodeType":"YulFunctionCall","src":"15663:36:51"},"variableNames":[{"name":"r","nativeSrc":"15658:1:51","nodeType":"YulIdentifier","src":"15658:1:51"}]}]},"name":"checked_div_t_uint64","nativeSrc":"15511:194:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"15541:1:51","nodeType":"YulTypedName","src":"15541:1:51","type":""},{"name":"y","nativeSrc":"15544:1:51","nodeType":"YulTypedName","src":"15544:1:51","type":""}],"returnVariables":[{"name":"r","nativeSrc":"15550:1:51","nodeType":"YulTypedName","src":"15550:1:51","type":""}],"src":"15511:194:51"},{"body":{"nativeSrc":"15895:309:51","nodeType":"YulBlock","src":"15895:309:51","statements":[{"nativeSrc":"15905:27:51","nodeType":"YulVariableDeclaration","src":"15905:27:51","value":{"arguments":[{"name":"value0","nativeSrc":"15925:6:51","nodeType":"YulIdentifier","src":"15925:6:51"}],"functionName":{"name":"mload","nativeSrc":"15919:5:51","nodeType":"YulIdentifier","src":"15919:5:51"},"nativeSrc":"15919:13:51","nodeType":"YulFunctionCall","src":"15919:13:51"},"variables":[{"name":"length","nativeSrc":"15909:6:51","nodeType":"YulTypedName","src":"15909:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"15980:6:51","nodeType":"YulIdentifier","src":"15980:6:51"},{"kind":"number","nativeSrc":"15988:4:51","nodeType":"YulLiteral","src":"15988:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15976:3:51","nodeType":"YulIdentifier","src":"15976:3:51"},"nativeSrc":"15976:17:51","nodeType":"YulFunctionCall","src":"15976:17:51"},{"name":"pos","nativeSrc":"15995:3:51","nodeType":"YulIdentifier","src":"15995:3:51"},{"name":"length","nativeSrc":"16000:6:51","nodeType":"YulIdentifier","src":"16000:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"15941:34:51","nodeType":"YulIdentifier","src":"15941:34:51"},"nativeSrc":"15941:66:51","nodeType":"YulFunctionCall","src":"15941:66:51"},"nativeSrc":"15941:66:51","nodeType":"YulExpressionStatement","src":"15941:66:51"},{"nativeSrc":"16016:29:51","nodeType":"YulVariableDeclaration","src":"16016:29:51","value":{"arguments":[{"name":"pos","nativeSrc":"16033:3:51","nodeType":"YulIdentifier","src":"16033:3:51"},{"name":"length","nativeSrc":"16038:6:51","nodeType":"YulIdentifier","src":"16038:6:51"}],"functionName":{"name":"add","nativeSrc":"16029:3:51","nodeType":"YulIdentifier","src":"16029:3:51"},"nativeSrc":"16029:16:51","nodeType":"YulFunctionCall","src":"16029:16:51"},"variables":[{"name":"end_1","nativeSrc":"16020:5:51","nodeType":"YulTypedName","src":"16020:5:51","type":""}]},{"nativeSrc":"16054:29:51","nodeType":"YulVariableDeclaration","src":"16054:29:51","value":{"arguments":[{"name":"value1","nativeSrc":"16076:6:51","nodeType":"YulIdentifier","src":"16076:6:51"}],"functionName":{"name":"mload","nativeSrc":"16070:5:51","nodeType":"YulIdentifier","src":"16070:5:51"},"nativeSrc":"16070:13:51","nodeType":"YulFunctionCall","src":"16070:13:51"},"variables":[{"name":"length_1","nativeSrc":"16058:8:51","nodeType":"YulTypedName","src":"16058:8:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value1","nativeSrc":"16131:6:51","nodeType":"YulIdentifier","src":"16131:6:51"},{"kind":"number","nativeSrc":"16139:4:51","nodeType":"YulLiteral","src":"16139:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"16127:3:51","nodeType":"YulIdentifier","src":"16127:3:51"},"nativeSrc":"16127:17:51","nodeType":"YulFunctionCall","src":"16127:17:51"},{"name":"end_1","nativeSrc":"16146:5:51","nodeType":"YulIdentifier","src":"16146:5:51"},{"name":"length_1","nativeSrc":"16153:8:51","nodeType":"YulIdentifier","src":"16153:8:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"16092:34:51","nodeType":"YulIdentifier","src":"16092:34:51"},"nativeSrc":"16092:70:51","nodeType":"YulFunctionCall","src":"16092:70:51"},"nativeSrc":"16092:70:51","nodeType":"YulExpressionStatement","src":"16092:70:51"},{"nativeSrc":"16171:27:51","nodeType":"YulAssignment","src":"16171:27:51","value":{"arguments":[{"name":"end_1","nativeSrc":"16182:5:51","nodeType":"YulIdentifier","src":"16182:5:51"},{"name":"length_1","nativeSrc":"16189:8:51","nodeType":"YulIdentifier","src":"16189:8:51"}],"functionName":{"name":"add","nativeSrc":"16178:3:51","nodeType":"YulIdentifier","src":"16178:3:51"},"nativeSrc":"16178:20:51","nodeType":"YulFunctionCall","src":"16178:20:51"},"variableNames":[{"name":"end","nativeSrc":"16171:3:51","nodeType":"YulIdentifier","src":"16171:3:51"}]}]},"name":"abi_encode_tuple_packed_t_string_memory_ptr_t_bytes_memory_ptr__to_t_string_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"15710:494:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"15863:3:51","nodeType":"YulTypedName","src":"15863:3:51","type":""},{"name":"value1","nativeSrc":"15868:6:51","nodeType":"YulTypedName","src":"15868:6:51","type":""},{"name":"value0","nativeSrc":"15876:6:51","nodeType":"YulTypedName","src":"15876:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"15887:3:51","nodeType":"YulTypedName","src":"15887:3:51","type":""}],"src":"15710:494:51"},{"body":{"nativeSrc":"16255:102:51","nodeType":"YulBlock","src":"16255:102:51","statements":[{"nativeSrc":"16265:38:51","nodeType":"YulAssignment","src":"16265:38:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"16280:1:51","nodeType":"YulIdentifier","src":"16280:1:51"},{"kind":"number","nativeSrc":"16283:4:51","nodeType":"YulLiteral","src":"16283:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"16276:3:51","nodeType":"YulIdentifier","src":"16276:3:51"},"nativeSrc":"16276:12:51","nodeType":"YulFunctionCall","src":"16276:12:51"},{"arguments":[{"name":"y","nativeSrc":"16294:1:51","nodeType":"YulIdentifier","src":"16294:1:51"},{"kind":"number","nativeSrc":"16297:4:51","nodeType":"YulLiteral","src":"16297:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"16290:3:51","nodeType":"YulIdentifier","src":"16290:3:51"},"nativeSrc":"16290:12:51","nodeType":"YulFunctionCall","src":"16290:12:51"}],"functionName":{"name":"add","nativeSrc":"16272:3:51","nodeType":"YulIdentifier","src":"16272:3:51"},"nativeSrc":"16272:31:51","nodeType":"YulFunctionCall","src":"16272:31:51"},"variableNames":[{"name":"sum","nativeSrc":"16265:3:51","nodeType":"YulIdentifier","src":"16265:3:51"}]},{"body":{"nativeSrc":"16329:22:51","nodeType":"YulBlock","src":"16329:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16331:16:51","nodeType":"YulIdentifier","src":"16331:16:51"},"nativeSrc":"16331:18:51","nodeType":"YulFunctionCall","src":"16331:18:51"},"nativeSrc":"16331:18:51","nodeType":"YulExpressionStatement","src":"16331:18:51"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"16318:3:51","nodeType":"YulIdentifier","src":"16318:3:51"},{"kind":"number","nativeSrc":"16323:4:51","nodeType":"YulLiteral","src":"16323:4:51","type":"","value":"0xff"}],"functionName":{"name":"gt","nativeSrc":"16315:2:51","nodeType":"YulIdentifier","src":"16315:2:51"},"nativeSrc":"16315:13:51","nodeType":"YulFunctionCall","src":"16315:13:51"},"nativeSrc":"16312:39:51","nodeType":"YulIf","src":"16312:39:51"}]},"name":"checked_add_t_uint8","nativeSrc":"16209:148:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16238:1:51","nodeType":"YulTypedName","src":"16238:1:51","type":""},{"name":"y","nativeSrc":"16241:1:51","nodeType":"YulTypedName","src":"16241:1:51","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"16247:3:51","nodeType":"YulTypedName","src":"16247:3:51","type":""}],"src":"16209:148:51"},{"body":{"nativeSrc":"16411:79:51","nodeType":"YulBlock","src":"16411:79:51","statements":[{"nativeSrc":"16421:17:51","nodeType":"YulAssignment","src":"16421:17:51","value":{"arguments":[{"name":"x","nativeSrc":"16433:1:51","nodeType":"YulIdentifier","src":"16433:1:51"},{"name":"y","nativeSrc":"16436:1:51","nodeType":"YulIdentifier","src":"16436:1:51"}],"functionName":{"name":"sub","nativeSrc":"16429:3:51","nodeType":"YulIdentifier","src":"16429:3:51"},"nativeSrc":"16429:9:51","nodeType":"YulFunctionCall","src":"16429:9:51"},"variableNames":[{"name":"diff","nativeSrc":"16421:4:51","nodeType":"YulIdentifier","src":"16421:4:51"}]},{"body":{"nativeSrc":"16462:22:51","nodeType":"YulBlock","src":"16462:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16464:16:51","nodeType":"YulIdentifier","src":"16464:16:51"},"nativeSrc":"16464:18:51","nodeType":"YulFunctionCall","src":"16464:18:51"},"nativeSrc":"16464:18:51","nodeType":"YulExpressionStatement","src":"16464:18:51"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"16453:4:51","nodeType":"YulIdentifier","src":"16453:4:51"},{"name":"x","nativeSrc":"16459:1:51","nodeType":"YulIdentifier","src":"16459:1:51"}],"functionName":{"name":"gt","nativeSrc":"16450:2:51","nodeType":"YulIdentifier","src":"16450:2:51"},"nativeSrc":"16450:11:51","nodeType":"YulFunctionCall","src":"16450:11:51"},"nativeSrc":"16447:37:51","nodeType":"YulIf","src":"16447:37:51"}]},"name":"checked_sub_t_uint256","nativeSrc":"16362:128:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16393:1:51","nodeType":"YulTypedName","src":"16393:1:51","type":""},{"name":"y","nativeSrc":"16396:1:51","nodeType":"YulTypedName","src":"16396:1:51","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"16402:4:51","nodeType":"YulTypedName","src":"16402:4:51","type":""}],"src":"16362:128:51"},{"body":{"nativeSrc":"16594:87:51","nodeType":"YulBlock","src":"16594:87:51","statements":[{"nativeSrc":"16604:26:51","nodeType":"YulAssignment","src":"16604:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"16616:9:51","nodeType":"YulIdentifier","src":"16616:9:51"},{"kind":"number","nativeSrc":"16627:2:51","nodeType":"YulLiteral","src":"16627:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16612:3:51","nodeType":"YulIdentifier","src":"16612:3:51"},"nativeSrc":"16612:18:51","nodeType":"YulFunctionCall","src":"16612:18:51"},"variableNames":[{"name":"tail","nativeSrc":"16604:4:51","nodeType":"YulIdentifier","src":"16604:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16646:9:51","nodeType":"YulIdentifier","src":"16646:9:51"},{"arguments":[{"name":"value0","nativeSrc":"16661:6:51","nodeType":"YulIdentifier","src":"16661:6:51"},{"kind":"number","nativeSrc":"16669:4:51","nodeType":"YulLiteral","src":"16669:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"16657:3:51","nodeType":"YulIdentifier","src":"16657:3:51"},"nativeSrc":"16657:17:51","nodeType":"YulFunctionCall","src":"16657:17:51"}],"functionName":{"name":"mstore","nativeSrc":"16639:6:51","nodeType":"YulIdentifier","src":"16639:6:51"},"nativeSrc":"16639:36:51","nodeType":"YulFunctionCall","src":"16639:36:51"},"nativeSrc":"16639:36:51","nodeType":"YulExpressionStatement","src":"16639:36:51"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint256__fromStack_reversed","nativeSrc":"16495:186:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16563:9:51","nodeType":"YulTypedName","src":"16563:9:51","type":""},{"name":"value0","nativeSrc":"16574:6:51","nodeType":"YulTypedName","src":"16574:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16585:4:51","nodeType":"YulTypedName","src":"16585:4:51","type":""}],"src":"16495:186:51"},{"body":{"nativeSrc":"16786:101:51","nodeType":"YulBlock","src":"16786:101:51","statements":[{"nativeSrc":"16796:26:51","nodeType":"YulAssignment","src":"16796:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"16808:9:51","nodeType":"YulIdentifier","src":"16808:9:51"},{"kind":"number","nativeSrc":"16819:2:51","nodeType":"YulLiteral","src":"16819:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16804:3:51","nodeType":"YulIdentifier","src":"16804:3:51"},"nativeSrc":"16804:18:51","nodeType":"YulFunctionCall","src":"16804:18:51"},"variableNames":[{"name":"tail","nativeSrc":"16796:4:51","nodeType":"YulIdentifier","src":"16796:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16838:9:51","nodeType":"YulIdentifier","src":"16838:9:51"},{"arguments":[{"name":"value0","nativeSrc":"16853:6:51","nodeType":"YulIdentifier","src":"16853:6:51"},{"kind":"number","nativeSrc":"16861:18:51","nodeType":"YulLiteral","src":"16861:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16849:3:51","nodeType":"YulIdentifier","src":"16849:3:51"},"nativeSrc":"16849:31:51","nodeType":"YulFunctionCall","src":"16849:31:51"}],"functionName":{"name":"mstore","nativeSrc":"16831:6:51","nodeType":"YulIdentifier","src":"16831:6:51"},"nativeSrc":"16831:50:51","nodeType":"YulFunctionCall","src":"16831:50:51"},"nativeSrc":"16831:50:51","nodeType":"YulExpressionStatement","src":"16831:50:51"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint256__fromStack_reversed","nativeSrc":"16686:201:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16755:9:51","nodeType":"YulTypedName","src":"16755:9:51","type":""},{"name":"value0","nativeSrc":"16766:6:51","nodeType":"YulTypedName","src":"16766:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16777:4:51","nodeType":"YulTypedName","src":"16777:4:51","type":""}],"src":"16686:201:51"},{"body":{"nativeSrc":"16939:104:51","nodeType":"YulBlock","src":"16939:104:51","statements":[{"nativeSrc":"16949:39:51","nodeType":"YulAssignment","src":"16949:39:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"16965:1:51","nodeType":"YulIdentifier","src":"16965:1:51"},{"kind":"number","nativeSrc":"16968:4:51","nodeType":"YulLiteral","src":"16968:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"16961:3:51","nodeType":"YulIdentifier","src":"16961:3:51"},"nativeSrc":"16961:12:51","nodeType":"YulFunctionCall","src":"16961:12:51"},{"arguments":[{"name":"y","nativeSrc":"16979:1:51","nodeType":"YulIdentifier","src":"16979:1:51"},{"kind":"number","nativeSrc":"16982:4:51","nodeType":"YulLiteral","src":"16982:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"16975:3:51","nodeType":"YulIdentifier","src":"16975:3:51"},"nativeSrc":"16975:12:51","nodeType":"YulFunctionCall","src":"16975:12:51"}],"functionName":{"name":"sub","nativeSrc":"16957:3:51","nodeType":"YulIdentifier","src":"16957:3:51"},"nativeSrc":"16957:31:51","nodeType":"YulFunctionCall","src":"16957:31:51"},"variableNames":[{"name":"diff","nativeSrc":"16949:4:51","nodeType":"YulIdentifier","src":"16949:4:51"}]},{"body":{"nativeSrc":"17015:22:51","nodeType":"YulBlock","src":"17015:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"17017:16:51","nodeType":"YulIdentifier","src":"17017:16:51"},"nativeSrc":"17017:18:51","nodeType":"YulFunctionCall","src":"17017:18:51"},"nativeSrc":"17017:18:51","nodeType":"YulExpressionStatement","src":"17017:18:51"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"17003:4:51","nodeType":"YulIdentifier","src":"17003:4:51"},{"kind":"number","nativeSrc":"17009:4:51","nodeType":"YulLiteral","src":"17009:4:51","type":"","value":"0xff"}],"functionName":{"name":"gt","nativeSrc":"17000:2:51","nodeType":"YulIdentifier","src":"17000:2:51"},"nativeSrc":"17000:14:51","nodeType":"YulFunctionCall","src":"17000:14:51"},"nativeSrc":"16997:40:51","nodeType":"YulIf","src":"16997:40:51"}]},"name":"checked_sub_t_uint8","nativeSrc":"16892:151:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16921:1:51","nodeType":"YulTypedName","src":"16921:1:51","type":""},{"name":"y","nativeSrc":"16924:1:51","nodeType":"YulTypedName","src":"16924:1:51","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"16930:4:51","nodeType":"YulTypedName","src":"16930:4:51","type":""}],"src":"16892:151:51"},{"body":{"nativeSrc":"17222:171:51","nodeType":"YulBlock","src":"17222:171:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17239:9:51","nodeType":"YulIdentifier","src":"17239:9:51"},{"kind":"number","nativeSrc":"17250:2:51","nodeType":"YulLiteral","src":"17250:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"17232:6:51","nodeType":"YulIdentifier","src":"17232:6:51"},"nativeSrc":"17232:21:51","nodeType":"YulFunctionCall","src":"17232:21:51"},"nativeSrc":"17232:21:51","nodeType":"YulExpressionStatement","src":"17232:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17273:9:51","nodeType":"YulIdentifier","src":"17273:9:51"},{"kind":"number","nativeSrc":"17284:2:51","nodeType":"YulLiteral","src":"17284:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17269:3:51","nodeType":"YulIdentifier","src":"17269:3:51"},"nativeSrc":"17269:18:51","nodeType":"YulFunctionCall","src":"17269:18:51"},{"kind":"number","nativeSrc":"17289:2:51","nodeType":"YulLiteral","src":"17289:2:51","type":"","value":"21"}],"functionName":{"name":"mstore","nativeSrc":"17262:6:51","nodeType":"YulIdentifier","src":"17262:6:51"},"nativeSrc":"17262:30:51","nodeType":"YulFunctionCall","src":"17262:30:51"},"nativeSrc":"17262:30:51","nodeType":"YulExpressionStatement","src":"17262:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17312:9:51","nodeType":"YulIdentifier","src":"17312:9:51"},{"kind":"number","nativeSrc":"17323:2:51","nodeType":"YulLiteral","src":"17323:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17308:3:51","nodeType":"YulIdentifier","src":"17308:3:51"},"nativeSrc":"17308:18:51","nodeType":"YulFunctionCall","src":"17308:18:51"},{"hexValue":"496e76616c69642068657820636861726163746572","kind":"string","nativeSrc":"17328:23:51","nodeType":"YulLiteral","src":"17328:23:51","type":"","value":"Invalid hex character"}],"functionName":{"name":"mstore","nativeSrc":"17301:6:51","nodeType":"YulIdentifier","src":"17301:6:51"},"nativeSrc":"17301:51:51","nodeType":"YulFunctionCall","src":"17301:51:51"},"nativeSrc":"17301:51:51","nodeType":"YulExpressionStatement","src":"17301:51:51"},{"nativeSrc":"17361:26:51","nodeType":"YulAssignment","src":"17361:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"17373:9:51","nodeType":"YulIdentifier","src":"17373:9:51"},{"kind":"number","nativeSrc":"17384:2:51","nodeType":"YulLiteral","src":"17384:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"17369:3:51","nodeType":"YulIdentifier","src":"17369:3:51"},"nativeSrc":"17369:18:51","nodeType":"YulFunctionCall","src":"17369:18:51"},"variableNames":[{"name":"tail","nativeSrc":"17361:4:51","nodeType":"YulIdentifier","src":"17361:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_3f6add0457b55e0d28d0df6cb630dd22967d6dac9673bb47e06495bccd4ca35c__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"17048:345:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17199:9:51","nodeType":"YulTypedName","src":"17199:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17213:4:51","nodeType":"YulTypedName","src":"17213:4:51","type":""}],"src":"17048:345:51"},{"body":{"nativeSrc":"17449:217:51","nodeType":"YulBlock","src":"17449:217:51","statements":[{"nativeSrc":"17459:78:51","nodeType":"YulVariableDeclaration","src":"17459:78:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"17486:1:51","nodeType":"YulIdentifier","src":"17486:1:51"},{"kind":"number","nativeSrc":"17489:18:51","nodeType":"YulLiteral","src":"17489:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17482:3:51","nodeType":"YulIdentifier","src":"17482:3:51"},"nativeSrc":"17482:26:51","nodeType":"YulFunctionCall","src":"17482:26:51"},{"arguments":[{"name":"y","nativeSrc":"17514:1:51","nodeType":"YulIdentifier","src":"17514:1:51"},{"kind":"number","nativeSrc":"17517:18:51","nodeType":"YulLiteral","src":"17517:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17510:3:51","nodeType":"YulIdentifier","src":"17510:3:51"},"nativeSrc":"17510:26:51","nodeType":"YulFunctionCall","src":"17510:26:51"}],"functionName":{"name":"mul","nativeSrc":"17478:3:51","nodeType":"YulIdentifier","src":"17478:3:51"},"nativeSrc":"17478:59:51","nodeType":"YulFunctionCall","src":"17478:59:51"},"variables":[{"name":"product_raw","nativeSrc":"17463:11:51","nodeType":"YulTypedName","src":"17463:11:51","type":""}]},{"nativeSrc":"17546:47:51","nodeType":"YulAssignment","src":"17546:47:51","value":{"arguments":[{"name":"product_raw","nativeSrc":"17561:11:51","nodeType":"YulIdentifier","src":"17561:11:51"},{"kind":"number","nativeSrc":"17574:18:51","nodeType":"YulLiteral","src":"17574:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17557:3:51","nodeType":"YulIdentifier","src":"17557:3:51"},"nativeSrc":"17557:36:51","nodeType":"YulFunctionCall","src":"17557:36:51"},"variableNames":[{"name":"product","nativeSrc":"17546:7:51","nodeType":"YulIdentifier","src":"17546:7:51"}]},{"body":{"nativeSrc":"17638:22:51","nodeType":"YulBlock","src":"17638:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"17640:16:51","nodeType":"YulIdentifier","src":"17640:16:51"},"nativeSrc":"17640:18:51","nodeType":"YulFunctionCall","src":"17640:18:51"},"nativeSrc":"17640:18:51","nodeType":"YulExpressionStatement","src":"17640:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"product","nativeSrc":"17615:7:51","nodeType":"YulIdentifier","src":"17615:7:51"},{"name":"product_raw","nativeSrc":"17624:11:51","nodeType":"YulIdentifier","src":"17624:11:51"}],"functionName":{"name":"eq","nativeSrc":"17612:2:51","nodeType":"YulIdentifier","src":"17612:2:51"},"nativeSrc":"17612:24:51","nodeType":"YulFunctionCall","src":"17612:24:51"}],"functionName":{"name":"iszero","nativeSrc":"17605:6:51","nodeType":"YulIdentifier","src":"17605:6:51"},"nativeSrc":"17605:32:51","nodeType":"YulFunctionCall","src":"17605:32:51"},"nativeSrc":"17602:58:51","nodeType":"YulIf","src":"17602:58:51"}]},"name":"checked_mul_t_uint64","nativeSrc":"17398:268:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"17428:1:51","nodeType":"YulTypedName","src":"17428:1:51","type":""},{"name":"y","nativeSrc":"17431:1:51","nodeType":"YulTypedName","src":"17431:1:51","type":""}],"returnVariables":[{"name":"product","nativeSrc":"17437:7:51","nodeType":"YulTypedName","src":"17437:7:51","type":""}],"src":"17398:268:51"},{"body":{"nativeSrc":"17709:74:51","nodeType":"YulBlock","src":"17709:74:51","statements":[{"body":{"nativeSrc":"17732:22:51","nodeType":"YulBlock","src":"17732:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"17734:16:51","nodeType":"YulIdentifier","src":"17734:16:51"},"nativeSrc":"17734:18:51","nodeType":"YulFunctionCall","src":"17734:18:51"},"nativeSrc":"17734:18:51","nodeType":"YulExpressionStatement","src":"17734:18:51"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"17729:1:51","nodeType":"YulIdentifier","src":"17729:1:51"}],"functionName":{"name":"iszero","nativeSrc":"17722:6:51","nodeType":"YulIdentifier","src":"17722:6:51"},"nativeSrc":"17722:9:51","nodeType":"YulFunctionCall","src":"17722:9:51"},"nativeSrc":"17719:35:51","nodeType":"YulIf","src":"17719:35:51"},{"nativeSrc":"17763:14:51","nodeType":"YulAssignment","src":"17763:14:51","value":{"arguments":[{"name":"x","nativeSrc":"17772:1:51","nodeType":"YulIdentifier","src":"17772:1:51"},{"name":"y","nativeSrc":"17775:1:51","nodeType":"YulIdentifier","src":"17775:1:51"}],"functionName":{"name":"mod","nativeSrc":"17768:3:51","nodeType":"YulIdentifier","src":"17768:3:51"},"nativeSrc":"17768:9:51","nodeType":"YulFunctionCall","src":"17768:9:51"},"variableNames":[{"name":"r","nativeSrc":"17763:1:51","nodeType":"YulIdentifier","src":"17763:1:51"}]}]},"name":"mod_t_uint256","nativeSrc":"17671:112:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"17694:1:51","nodeType":"YulTypedName","src":"17694:1:51","type":""},{"name":"y","nativeSrc":"17697:1:51","nodeType":"YulTypedName","src":"17697:1:51","type":""}],"returnVariables":[{"name":"r","nativeSrc":"17703:1:51","nodeType":"YulTypedName","src":"17703:1:51","type":""}],"src":"17671:112:51"},{"body":{"nativeSrc":"17836:77:51","nodeType":"YulBlock","src":"17836:77:51","statements":[{"nativeSrc":"17846:16:51","nodeType":"YulAssignment","src":"17846:16:51","value":{"arguments":[{"name":"x","nativeSrc":"17857:1:51","nodeType":"YulIdentifier","src":"17857:1:51"},{"name":"y","nativeSrc":"17860:1:51","nodeType":"YulIdentifier","src":"17860:1:51"}],"functionName":{"name":"add","nativeSrc":"17853:3:51","nodeType":"YulIdentifier","src":"17853:3:51"},"nativeSrc":"17853:9:51","nodeType":"YulFunctionCall","src":"17853:9:51"},"variableNames":[{"name":"sum","nativeSrc":"17846:3:51","nodeType":"YulIdentifier","src":"17846:3:51"}]},{"body":{"nativeSrc":"17885:22:51","nodeType":"YulBlock","src":"17885:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"17887:16:51","nodeType":"YulIdentifier","src":"17887:16:51"},"nativeSrc":"17887:18:51","nodeType":"YulFunctionCall","src":"17887:18:51"},"nativeSrc":"17887:18:51","nodeType":"YulExpressionStatement","src":"17887:18:51"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"17877:1:51","nodeType":"YulIdentifier","src":"17877:1:51"},{"name":"sum","nativeSrc":"17880:3:51","nodeType":"YulIdentifier","src":"17880:3:51"}],"functionName":{"name":"gt","nativeSrc":"17874:2:51","nodeType":"YulIdentifier","src":"17874:2:51"},"nativeSrc":"17874:10:51","nodeType":"YulFunctionCall","src":"17874:10:51"},"nativeSrc":"17871:36:51","nodeType":"YulIf","src":"17871:36:51"}]},"name":"checked_add_t_uint256","nativeSrc":"17788:125:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"17819:1:51","nodeType":"YulTypedName","src":"17819:1:51","type":""},{"name":"y","nativeSrc":"17822:1:51","nodeType":"YulTypedName","src":"17822:1:51","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"17828:3:51","nodeType":"YulTypedName","src":"17828:3:51","type":""}],"src":"17788:125:51"},{"body":{"nativeSrc":"18092:229:51","nodeType":"YulBlock","src":"18092:229:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18109:9:51","nodeType":"YulIdentifier","src":"18109:9:51"},{"kind":"number","nativeSrc":"18120:2:51","nodeType":"YulLiteral","src":"18120:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"18102:6:51","nodeType":"YulIdentifier","src":"18102:6:51"},"nativeSrc":"18102:21:51","nodeType":"YulFunctionCall","src":"18102:21:51"},"nativeSrc":"18102:21:51","nodeType":"YulExpressionStatement","src":"18102:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18143:9:51","nodeType":"YulIdentifier","src":"18143:9:51"},{"kind":"number","nativeSrc":"18154:2:51","nodeType":"YulLiteral","src":"18154:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18139:3:51","nodeType":"YulIdentifier","src":"18139:3:51"},"nativeSrc":"18139:18:51","nodeType":"YulFunctionCall","src":"18139:18:51"},{"kind":"number","nativeSrc":"18159:2:51","nodeType":"YulLiteral","src":"18159:2:51","type":"","value":"39"}],"functionName":{"name":"mstore","nativeSrc":"18132:6:51","nodeType":"YulIdentifier","src":"18132:6:51"},"nativeSrc":"18132:30:51","nodeType":"YulFunctionCall","src":"18132:30:51"},"nativeSrc":"18132:30:51","nodeType":"YulExpressionStatement","src":"18132:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18182:9:51","nodeType":"YulIdentifier","src":"18182:9:51"},{"kind":"number","nativeSrc":"18193:2:51","nodeType":"YulLiteral","src":"18193:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18178:3:51","nodeType":"YulIdentifier","src":"18178:3:51"},"nativeSrc":"18178:18:51","nodeType":"YulFunctionCall","src":"18178:18:51"},{"hexValue":"5769746e657443424f522e736b69703a20756e737570706f72746564206d616a","kind":"string","nativeSrc":"18198:34:51","nodeType":"YulLiteral","src":"18198:34:51","type":"","value":"WitnetCBOR.skip: unsupported maj"}],"functionName":{"name":"mstore","nativeSrc":"18171:6:51","nodeType":"YulIdentifier","src":"18171:6:51"},"nativeSrc":"18171:62:51","nodeType":"YulFunctionCall","src":"18171:62:51"},"nativeSrc":"18171:62:51","nodeType":"YulExpressionStatement","src":"18171:62:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18253:9:51","nodeType":"YulIdentifier","src":"18253:9:51"},{"kind":"number","nativeSrc":"18264:2:51","nodeType":"YulLiteral","src":"18264:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18249:3:51","nodeType":"YulIdentifier","src":"18249:3:51"},"nativeSrc":"18249:18:51","nodeType":"YulFunctionCall","src":"18249:18:51"},{"hexValue":"6f722074797065","kind":"string","nativeSrc":"18269:9:51","nodeType":"YulLiteral","src":"18269:9:51","type":"","value":"or type"}],"functionName":{"name":"mstore","nativeSrc":"18242:6:51","nodeType":"YulIdentifier","src":"18242:6:51"},"nativeSrc":"18242:37:51","nodeType":"YulFunctionCall","src":"18242:37:51"},"nativeSrc":"18242:37:51","nodeType":"YulExpressionStatement","src":"18242:37:51"},{"nativeSrc":"18288:27:51","nodeType":"YulAssignment","src":"18288:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"18300:9:51","nodeType":"YulIdentifier","src":"18300:9:51"},{"kind":"number","nativeSrc":"18311:3:51","nodeType":"YulLiteral","src":"18311:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"18296:3:51","nodeType":"YulIdentifier","src":"18296:3:51"},"nativeSrc":"18296:19:51","nodeType":"YulFunctionCall","src":"18296:19:51"},"variableNames":[{"name":"tail","nativeSrc":"18288:4:51","nodeType":"YulIdentifier","src":"18288:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_92a4e60c9c8a6bab113d51719bd32c972951c92a48fb0ef633db4f8d512f86fe__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"17918:403:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18069:9:51","nodeType":"YulTypedName","src":"18069:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18083:4:51","nodeType":"YulTypedName","src":"18083:4:51","type":""}],"src":"17918:403:51"},{"body":{"nativeSrc":"18455:119:51","nodeType":"YulBlock","src":"18455:119:51","statements":[{"nativeSrc":"18465:26:51","nodeType":"YulAssignment","src":"18465:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"18477:9:51","nodeType":"YulIdentifier","src":"18477:9:51"},{"kind":"number","nativeSrc":"18488:2:51","nodeType":"YulLiteral","src":"18488:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18473:3:51","nodeType":"YulIdentifier","src":"18473:3:51"},"nativeSrc":"18473:18:51","nodeType":"YulFunctionCall","src":"18473:18:51"},"variableNames":[{"name":"tail","nativeSrc":"18465:4:51","nodeType":"YulIdentifier","src":"18465:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18507:9:51","nodeType":"YulIdentifier","src":"18507:9:51"},{"name":"value0","nativeSrc":"18518:6:51","nodeType":"YulIdentifier","src":"18518:6:51"}],"functionName":{"name":"mstore","nativeSrc":"18500:6:51","nodeType":"YulIdentifier","src":"18500:6:51"},"nativeSrc":"18500:25:51","nodeType":"YulFunctionCall","src":"18500:25:51"},"nativeSrc":"18500:25:51","nodeType":"YulExpressionStatement","src":"18500:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18545:9:51","nodeType":"YulIdentifier","src":"18545:9:51"},{"kind":"number","nativeSrc":"18556:2:51","nodeType":"YulLiteral","src":"18556:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18541:3:51","nodeType":"YulIdentifier","src":"18541:3:51"},"nativeSrc":"18541:18:51","nodeType":"YulFunctionCall","src":"18541:18:51"},{"name":"value1","nativeSrc":"18561:6:51","nodeType":"YulIdentifier","src":"18561:6:51"}],"functionName":{"name":"mstore","nativeSrc":"18534:6:51","nodeType":"YulIdentifier","src":"18534:6:51"},"nativeSrc":"18534:34:51","nodeType":"YulFunctionCall","src":"18534:34:51"},"nativeSrc":"18534:34:51","nodeType":"YulExpressionStatement","src":"18534:34:51"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"18326:248:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18416:9:51","nodeType":"YulTypedName","src":"18416:9:51","type":""},{"name":"value1","nativeSrc":"18427:6:51","nodeType":"YulTypedName","src":"18427:6:51","type":""},{"name":"value0","nativeSrc":"18435:6:51","nodeType":"YulTypedName","src":"18435:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18446:4:51","nodeType":"YulTypedName","src":"18446:4:51","type":""}],"src":"18326:248:51"},{"body":{"nativeSrc":"18626:88:51","nodeType":"YulBlock","src":"18626:88:51","statements":[{"body":{"nativeSrc":"18657:22:51","nodeType":"YulBlock","src":"18657:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"18659:16:51","nodeType":"YulIdentifier","src":"18659:16:51"},"nativeSrc":"18659:18:51","nodeType":"YulFunctionCall","src":"18659:18:51"},"nativeSrc":"18659:18:51","nodeType":"YulExpressionStatement","src":"18659:18:51"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"18642:5:51","nodeType":"YulIdentifier","src":"18642:5:51"},{"arguments":[{"kind":"number","nativeSrc":"18653:1:51","nodeType":"YulLiteral","src":"18653:1:51","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"18649:3:51","nodeType":"YulIdentifier","src":"18649:3:51"},"nativeSrc":"18649:6:51","nodeType":"YulFunctionCall","src":"18649:6:51"}],"functionName":{"name":"eq","nativeSrc":"18639:2:51","nodeType":"YulIdentifier","src":"18639:2:51"},"nativeSrc":"18639:17:51","nodeType":"YulFunctionCall","src":"18639:17:51"},"nativeSrc":"18636:43:51","nodeType":"YulIf","src":"18636:43:51"},{"nativeSrc":"18688:20:51","nodeType":"YulAssignment","src":"18688:20:51","value":{"arguments":[{"name":"value","nativeSrc":"18699:5:51","nodeType":"YulIdentifier","src":"18699:5:51"},{"kind":"number","nativeSrc":"18706:1:51","nodeType":"YulLiteral","src":"18706:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"18695:3:51","nodeType":"YulIdentifier","src":"18695:3:51"},"nativeSrc":"18695:13:51","nodeType":"YulFunctionCall","src":"18695:13:51"},"variableNames":[{"name":"ret","nativeSrc":"18688:3:51","nodeType":"YulIdentifier","src":"18688:3:51"}]}]},"name":"increment_t_uint256","nativeSrc":"18579:135:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"18608:5:51","nodeType":"YulTypedName","src":"18608:5:51","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"18618:3:51","nodeType":"YulTypedName","src":"18618:3:51","type":""}],"src":"18579:135:51"},{"body":{"nativeSrc":"18751:95:51","nodeType":"YulBlock","src":"18751:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18768:1:51","nodeType":"YulLiteral","src":"18768:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"18775:3:51","nodeType":"YulLiteral","src":"18775:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"18780:10:51","nodeType":"YulLiteral","src":"18780:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"18771:3:51","nodeType":"YulIdentifier","src":"18771:3:51"},"nativeSrc":"18771:20:51","nodeType":"YulFunctionCall","src":"18771:20:51"}],"functionName":{"name":"mstore","nativeSrc":"18761:6:51","nodeType":"YulIdentifier","src":"18761:6:51"},"nativeSrc":"18761:31:51","nodeType":"YulFunctionCall","src":"18761:31:51"},"nativeSrc":"18761:31:51","nodeType":"YulExpressionStatement","src":"18761:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18808:1:51","nodeType":"YulLiteral","src":"18808:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"18811:4:51","nodeType":"YulLiteral","src":"18811:4:51","type":"","value":"0x01"}],"functionName":{"name":"mstore","nativeSrc":"18801:6:51","nodeType":"YulIdentifier","src":"18801:6:51"},"nativeSrc":"18801:15:51","nodeType":"YulFunctionCall","src":"18801:15:51"},"nativeSrc":"18801:15:51","nodeType":"YulExpressionStatement","src":"18801:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18832:1:51","nodeType":"YulLiteral","src":"18832:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"18835:4:51","nodeType":"YulLiteral","src":"18835:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"18825:6:51","nodeType":"YulIdentifier","src":"18825:6:51"},"nativeSrc":"18825:15:51","nodeType":"YulFunctionCall","src":"18825:15:51"},"nativeSrc":"18825:15:51","nodeType":"YulExpressionStatement","src":"18825:15:51"}]},"name":"panic_error_0x01","nativeSrc":"18719:127:51","nodeType":"YulFunctionDefinition","src":"18719:127:51"}]},"contents":"{\n    { }\n    function validator_revert_contract_WitOracle(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_WitOracle_$9915t_contract$_IWitOracleRadonRequestModal_$10761t_userDefinedValueType$_TransactionHash_$13256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_contract_WitOracle(value)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_contract_WitOracle(value_1)\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_library_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\n    }\n    function abi_decode_tuple_t_uint256t_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let offset := calldataload(add(headStart, 32))\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n        if gt(add(add(_1, length), 32), dataEnd) { revert(0, 0) }\n        value1 := add(_1, 32)\n        value2 := length\n    }\n    function array_storeLengthForEncoding_string_library(pos, length) -> updated_pos\n    {\n        mstore(pos, length)\n        updated_pos := add(pos, 0x20)\n    }\n    function copy_memory_to_memory_with_cleanup(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        mstore(add(dst, length), 0)\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory_with_cleanup(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_userDefinedValueType$_TransactionHash_$13256_t_string_memory_ptr_t_string_memory_ptr_t_address_t_uint64__to_t_bytes32_t_string_memory_ptr_t_string_memory_ptr_t_address_t_uint64__fromStack_library_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), 160)\n        let tail_1 := abi_encode_string(value1, add(headStart, 160))\n        mstore(add(headStart, 64), sub(tail_1, headStart))\n        tail := abi_encode_string(value2, tail_1)\n        mstore(add(headStart, 96), and(value3, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 128), and(value4, 0xffffffffffffffff))\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function allocate_memory_2704() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0xc0)\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function allocate_memory_2705() -> 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_2707() -> 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(size) -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, and(add(size, 31), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_userDefinedValueType_Timestamp(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_struct_CBOR(headStart, end) -> value\n    {\n        if slt(sub(end, headStart), 0xc0) { revert(0, 0) }\n        value := allocate_memory_2704()\n        let offset := calldataload(headStart)\n        if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n        let _1 := add(headStart, offset)\n        if slt(sub(end, _1), 0x40) { revert(0, 0) }\n        let value_1 := allocate_memory_2705()\n        let offset_1 := calldataload(_1)\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        let _2 := add(_1, offset_1)\n        if iszero(slt(add(_2, 0x1f), end)) { revert(0, 0) }\n        let length := calldataload(_2)\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let array := allocate_memory(add(and(add(length, 0x1f), not(31)), 0x20))\n        mstore(array, length)\n        if gt(add(add(_2, length), 0x20), end) { revert(0, 0) }\n        calldatacopy(add(array, 0x20), add(_2, 0x20), length)\n        mstore(add(add(array, length), 0x20), 0)\n        mstore(value_1, array)\n        let value_2 := 0\n        value_2 := calldataload(add(_1, 0x20))\n        mstore(add(value_1, 0x20), value_2)\n        mstore(value, value_1)\n        mstore(add(value, 0x20), abi_decode_uint8(add(headStart, 0x20)))\n        mstore(add(value, 0x40), abi_decode_uint8(add(headStart, 0x40)))\n        mstore(add(value, 96), abi_decode_uint8(add(headStart, 96)))\n        mstore(add(value, 128), abi_decode_userDefinedValueType_Timestamp(add(headStart, 128)))\n        mstore(add(value, 160), abi_decode_userDefinedValueType_Timestamp(add(headStart, 160)))\n    }\n    function abi_decode_tuple_t_struct$_DataResult_$13388_memory_ptr(headStart, dataEnd) -> value0\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 _1 := add(headStart, offset)\n        if slt(sub(dataEnd, _1), 0xa0) { revert(0, 0) }\n        let value := allocate_memory_2707()\n        let value_1 := calldataload(_1)\n        if iszero(lt(value_1, 256)) { revert(0, 0) }\n        mstore(value, value_1)\n        let value_2 := calldataload(add(_1, 32))\n        if iszero(lt(value_2, 20)) { revert(0, 0) }\n        mstore(add(value, 32), value_2)\n        let value_3 := 0\n        value_3 := calldataload(add(_1, 64))\n        mstore(add(value, 64), value_3)\n        mstore(add(value, 96), abi_decode_userDefinedValueType_Timestamp(add(_1, 96)))\n        let offset_1 := calldataload(add(_1, 128))\n        if gt(offset_1, 0xffffffffffffffff) { revert(0, 0) }\n        mstore(add(value, 128), abi_decode_struct_CBOR(add(_1, offset_1), dataEnd))\n        value0 := value\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_library_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\n    }\n    function array_dataslot_array_string_storage_dyn(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\n    }\n    function abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr_t_array$_t_string_storage_$dyn_storage__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_t_array$_t_string_memory_ptr_$dyn_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 tail_2 := add(add(headStart, shl(5, length)), 96)\n        let srcPtr := add(value0, 0x20)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, add(sub(tail_2, headStart), not(95)))\n            tail_2 := abi_encode_string(mload(srcPtr), tail_2)\n            srcPtr := add(srcPtr, 0x20)\n            pos := add(pos, 0x20)\n        }\n        mstore(add(headStart, 0x20), sub(tail_2, headStart))\n        let pos_1 := tail_2\n        let length_1 := sload(value1)\n        mstore(tail_2, length_1)\n        pos_1 := add(tail_2, 0x20)\n        let tail_3 := add(add(tail_2, shl(5, length_1)), 0x20)\n        mstore(0, value1)\n        let srcPtr_1 := keccak256(0, 0x20)\n        let i_1 := 0\n        for { } lt(i_1, length_1) { i_1 := add(i_1, 1) }\n        {\n            mstore(pos_1, add(sub(tail_3, tail_2), not(31)))\n            let ret := 0\n            let slotValue := sload(srcPtr_1)\n            let length_2 := ret\n            length_2 := shr(1, slotValue)\n            let outOfPlaceEncoding := and(slotValue, 1)\n            if iszero(outOfPlaceEncoding)\n            {\n                length_2 := and(length_2, 0x7f)\n            }\n            if eq(outOfPlaceEncoding, lt(length_2, 0x20))\n            {\n                mstore(ret, shl(224, 0x4e487b71))\n                mstore(4, 0x22)\n                revert(ret, 0x24)\n            }\n            let pos_2 := array_storeLengthForEncoding_string_library(tail_3, length_2)\n            switch outOfPlaceEncoding\n            case 0 {\n                mstore(pos_2, and(slotValue, not(255)))\n                ret := add(pos_2, shl(5, iszero(iszero(length_2))))\n            }\n            case 1 {\n                let dataPos := array_dataslot_array_string_storage_dyn(srcPtr_1)\n                let i_2 := 0\n                for { } lt(i_2, length_2) { i_2 := add(i_2, 0x20) }\n                {\n                    mstore(add(pos_2, i_2), sload(dataPos))\n                    dataPos := add(dataPos, 1)\n                }\n                ret := add(pos_2, i_2)\n            }\n            tail_3 := ret\n            srcPtr_1 := add(srcPtr_1, 1)\n            pos_1 := add(pos_1, 0x20)\n        }\n        tail := tail_3\n    }\n    function abi_decode_tuple_t_userDefinedValueType$_RadonHash_$13250_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_userDefinedValueType$_RadonHash_$13250_t_struct$_QuerySLA_$13472_memory_ptr_t_struct$_QueryCallback_$13435_memory_ptr__to_t_bytes32_t_struct$_QuerySLA_$13472_memory_ptr_t_struct$_QueryCallback_$13435_memory_ptr__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 192)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(mload(value1), 0xffff))\n        mstore(add(headStart, 64), and(mload(add(value1, 32)), 0xffff))\n        mstore(add(headStart, 96), and(mload(add(value1, 64)), 0xffffffffffffffff))\n        mstore(add(headStart, 128), and(mload(value2), sub(shl(160, 1), 1)))\n        mstore(add(headStart, 160), and(mload(add(value2, 32)), 0xffffff))\n    }\n    function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        value0 := mload(headStart)\n    }\n    function abi_encode_tuple_t_stringliteral_a70485f3df10f36042e7631cf9bc7cfff2923fda111ae82f3320179a3f1a9c65__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), \"invalid query id\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_dc598d76fa83f6ee02aa2a85fa4a344836c798f64f101c149de97b066339f648__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), \"wit/wrap tx already minted\")\n        tail := add(headStart, 96)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_stringliteral_fdd334fdf7e6fae9f5312aa3c59478f1e12a48beff4641205e14335f60fec3d9__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), \"query solved with errors\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_38d45eac4f3206b66b0878b83795d9a0ce11d11e2db36d1c229a31b6f19f3503__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), \"invalid query result\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c89b7a96616bc952cfce88db0441421c39a3927671c9d55f879ee1b493eba7b2__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), \"unfinalized query result\")\n        tail := add(headStart, 96)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function increment_t_uint64(value) -> ret\n    {\n        let value_1 := and(value, 0xffffffffffffffff)\n        if eq(value_1, 0xffffffffffffffff) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function checked_add_t_uint64(x, y) -> sum\n    {\n        sum := add(and(x, 0xffffffffffffffff), and(y, 0xffffffffffffffff))\n        if gt(sum, 0xffffffffffffffff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_stringliteral_efa3da54425289ec39e5b74649f827cb6b11f755cde117b4b47bf615b5961b8c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 14)\n        mstore(add(headStart, 64), \"invalid report\")\n        tail := add(headStart, 96)\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function checked_div_t_uint8(x, y) -> r\n    {\n        let y_1 := and(y, 0xff)\n        if iszero(y_1) { panic_error_0x12() }\n        r := div(and(x, 0xff), y_1)\n    }\n    function increment_t_uint8(value) -> ret\n    {\n        let value_1 := and(value, 0xff)\n        if eq(value_1, 0xff) { panic_error_0x11() }\n        ret := add(value_1, 1)\n    }\n    function abi_encode_tuple_t_stringliteral_f9e00dcd71685f8522f8d07872510c3a81c2039687b393455d27e0cdc22dcafa__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), \"cbor: cannot fetch data\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint8_t_uint8__to_t_uint256_t_uint256__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xff))\n        mstore(add(headStart, 32), and(value1, 0xff))\n    }\n    function checked_div_t_uint64(x, y) -> r\n    {\n        let y_1 := and(y, 0xffffffffffffffff)\n        if iszero(y_1) { panic_error_0x12() }\n        r := div(and(x, 0xffffffffffffffff), y_1)\n    }\n    function abi_encode_tuple_packed_t_string_memory_ptr_t_bytes_memory_ptr__to_t_string_memory_ptr_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n    {\n        let length := mload(value0)\n        copy_memory_to_memory_with_cleanup(add(value0, 0x20), pos, length)\n        let end_1 := add(pos, length)\n        let length_1 := mload(value1)\n        copy_memory_to_memory_with_cleanup(add(value1, 0x20), end_1, length_1)\n        end := add(end_1, length_1)\n    }\n    function checked_add_t_uint8(x, y) -> sum\n    {\n        sum := add(and(x, 0xff), and(y, 0xff))\n        if gt(sum, 0xff) { panic_error_0x11() }\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_uint8__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\n    }\n    function abi_encode_tuple_t_uint64__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffff))\n    }\n    function checked_sub_t_uint8(x, y) -> diff\n    {\n        diff := sub(and(x, 0xff), and(y, 0xff))\n        if gt(diff, 0xff) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_stringliteral_3f6add0457b55e0d28d0df6cb630dd22967d6dac9673bb47e06495bccd4ca35c__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), \"Invalid hex character\")\n        tail := add(headStart, 96)\n    }\n    function checked_mul_t_uint64(x, y) -> product\n    {\n        let product_raw := mul(and(x, 0xffffffffffffffff), and(y, 0xffffffffffffffff))\n        product := and(product_raw, 0xffffffffffffffff)\n        if iszero(eq(product, product_raw)) { panic_error_0x11() }\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 checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_stringliteral_92a4e60c9c8a6bab113d51719bd32c972951c92a48fb0ef633db4f8d512f86fe__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), \"WitnetCBOR.skip: unsupported maj\")\n        mstore(add(headStart, 96), \"or type\")\n        tail := add(headStart, 128)\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 increment_t_uint256(value) -> ret\n    {\n        if eq(value, not(0)) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function panic_error_0x01()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x01)\n        revert(0, 0x24)\n    }\n}","id":51,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040526004361061004b5760003560e01c80633752120b146100505780635d933eb71461008357806367c4440f146100b4575b600080fd5b81801561005c57600080fd5b5061007061006b366004611dd2565b6100df565b6040519081526020015b60405180910390f35b81801561008f57600080fd5b506100a361009e366004611e13565b61037c565b60405161007a959493929190611edf565b6100c76100c236600461213f565b610757565b6040516001600160401b03909116815260200161007a565b600081815260008051602061255c8339815191526020526040902054600019811461037557604080516001808252818301909252600091816020015b606081526020019060019003908161011b57905050905061013b8361087d565b8160008151811061014e5761014e6121f8565b60200260200101819052506000846001600160a01b031663f0e271bc8361018060008051602061257c83398151915290565b6004016040518363ffffffff1660e01b81526004016101a092919061220e565b6020604051808303816000875af11580156101bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101e39190612364565b9050856001600160a01b0316633b3195b73483604051806060016040528061010061ffff16815260200161022260008051602061257c83398151915290565b6003015461ffff90811682527f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58fc546001600160401b036401000000008204811660209485015260408051808201825230815262ffffff600160601b909404841681870190815282516001600160e01b031960e08d901b16815260048101999099528751861660248a015287870151909516604489015295810151909116606487015293516001600160a01b0316608486015290511660a4840152905160c480840193829003018185885af11580156102fe573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906103239190612364565b600085815260008051602061255c833981519152602090815260408083208490558383527f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c59009091529020859055925050505b9392505050565b60008381527f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c5900602052604081205490606090819080846103f65760405162461bcd60e51b815260206004820152601060248201526f1a5b9d985b1a59081c5d595c9e481a5960821b60448201526064015b60405180910390fd5b600085815260008051602061255c83398151915260205260409020546001016104615760405162461bcd60e51b815260206004820152601a60248201527f7769742f7772617020747820616c7265616479206d696e74656400000000000060448201526064016103ed565b600061046f8789018961213f565b90506000815160ff8111156104865761048661237d565b146104d35760405162461bcd60e51b815260206004820152601860248201527f717565727920736f6c7665642077697468206572726f7273000000000000000060448201526064016103ed565b6001816020015160138111156104eb576104eb61237d565b1461052f5760405162461bcd60e51b81526020600482015260146024820152731a5b9d985b1a59081c5d595c9e481c995cdd5b1d60621b60448201526064016103ed565b600086815260008051602061255c8339815191526020526040812060001990556105588261098f565b905061057d81600081518110610570576105706121f8565b6020026020010151610a65565b6001600160401b03166001146105d55760405162461bcd60e51b815260206004820152601860248201527f756e66696e616c697a656420717565727920726573756c74000000000000000060448201526064016103ed565b6105f8816002815181106105eb576105eb6121f8565b6020026020010151610ac1565b9550610610816003815181106105eb576105eb6121f8565b945061063861063361062e836001815181106105eb576105eb6121f8565b610bc7565b610cb5565b9350600061065282600481518110610570576105706121f8565b905061066a82600581518110610570576105706121f8565b935060008051602061257c8339815191526001018054600160801b90046001600160401b031690601061069c836123a9565b91906101000a8154816001600160401b0302191690836001600160401b03160217905550506106f36106d960008051602061257c83398151915290565b546001600160401b0383811691600160c01b900416610cc9565b15610749578360008051602061257c83398151915260010180546000906107249084906001600160401b03166123d4565b92506101000a8154816001600160401b0302191690836001600160401b031602179055505b505050939792965093509350565b6000606081835160ff81111561076f5761076f61237d565b036107805761077d83610cdf565b90505b6000835160ff8111156107955761079561237d565b1480156107ce57506107ce60008051602061257c8339815191525460608501516001600160401b0390811691600160c01b900416610cc9565b80156107db575080516003145b6108185760405162461bcd60e51b815260206004820152600e60248201526d1a5b9d985b1a59081c995c1bdc9d60921b60448201526064016103ed565b8060028151811061082b5761082b6121f8565b602002602001015181600181518110610846576108466121f8565b602002602001015182600081518110610861576108616121f8565b602002602001015161087391906123d4565b61037591906123d4565b6040805181815260608181018352916000919060208201818036833701905050905060005b81518160ff161015610988576108ea6004856108bf600285612409565b60ff16602081106108d2576108d26121f8565b1a60f81b6001600160f81b031916901c60f81c610d72565b82826108f58161242b565b935060ff168151811061090a5761090a6121f8565b60200101906001600160f81b031916908160001a90535061094c84610930600284612409565b60ff1660208110610943576109436121f8565b1a600f16610d72565b82826109578161242b565b935060ff168151811061096c5761096c6121f8565b60200101906001600160f81b031916908160001a9053506108a2565b5092915050565b606081600161099d82610da6565b1580156109cf57508060138111156109b7576109b761237d565b826020015160138111156109cd576109cd61237d565b145b610a155760405162461bcd60e51b815260206004820152601760248201527663626f723a2063616e6e6f74206665746368206461746160481b60448201526064016103ed565b610a228460800151610db5565b9250610a318260800151610f65565b82602001906013811115610a4757610a4761237d565b90816013811115610a5a57610a5a61237d565b815250505050919050565b60008160008060ff16826040015160ff1614610aa557604080830151905161800560e51b815260ff918216600482015290821660248201526044016103ed565b610ab78460000151856060015161102d565b92505b5050919050565b60608160038060ff16826040015160ff1614610b0157604080830151905161800560e51b815260ff918216600482015290821660248201526044016103ed565b610b138460000151856060015161102d565b6001600160401b03166080850181905267fffffffffffffffe1901610bb05760005b80610baa576000610b4e866000015187604001516110f5565b90506001600160401b038082161015610b9f5784610b78610b70600484612441565b88519061119b565b604051602001610b8992919061246f565b6040516020818303038152906040529450610ba4565b600191505b50610b35565b50610aba565b60808401518451610bc09161119b565b9250610aba565b60606002825181610bda57610bda6123f3565b046001600160401b03811115610bf257610bf2611f36565b6040519080825280601f01601f191660200182016040528015610c1c576020820181803683370190505b50905060005b8151811015610caf576000610c52848360020281518110610c4557610c456121f8565b016020015160f81c611322565b90506000610c71858460020260010181518110610c4557610c456121f8565b905080826010020160f81b848481518110610c8e57610c8e6121f8565b60200101906001600160f81b031916908160001a9053505050600101610c22565b50919050565b6000610cc0826113e7565b60601c92915050565b6001600160401b03808216908316115b92915050565b6060816001610ced82610da6565b158015610d1f5750806013811115610d0757610d0761237d565b82602001516013811115610d1d57610d1d61237d565b145b610d655760405162461bcd60e51b815260206004820152601760248201527663626f723a2063616e6e6f74206665746368206461746160481b60448201526064016103ed565b610a2284608001516113f4565b6000600a8260ff1610610d9257610d8a82605761249e565b60f81b610cd9565b610d9d82603061249e565b60f81b92915050565b6000610cd9826000015161153b565b60608160048060ff16826040015160ff1614610df557604080830151905161800560e51b815260ff918216600482015290821660248201526044016103ed565b6000610e098560000151866060015161102d565b9050610e168160016123d4565b6001600160401b03166001600160401b03811115610e3657610e36611f36565b604051908082528060200260200182016040528015610e6f57816020015b610e5c611d73565b815260200190600190039081610e545790505b50935060005b816001600160401b0316811015610f3557610e8f86611573565b9550610e9a8661159b565b858281518110610eac57610eac6121f8565b6020026020010181905250600460ff16866040015160ff1603610f05576000610ed487610db5565b90508060018251610ee591906124b7565b81518110610ef557610ef56121f8565b6020026020010151965050610f2d565b600560ff16866040015160ff1603610f22576000610ed487611633565b610f2b8661181d565b505b600101610e75565b508484826001600160401b031681518110610f5257610f526121f8565b6020026020010181905250505050919050565b6000610f7a8251805151602090910151101590565b611028576006826040015160ff1611610fc25760408201516502020183808360d11b9060ff1660078110610fb057610fb06121f8565b1a6013811115610cd957610cd961237d565b816040015160ff1660070361102857816060015160ff1660141480610fee5750816060015160ff166015145b15610ffb57506002919050565b6019826060015160ff161015801561101b5750601b826060015160ff1611155b1561102857506005919050565b919050565b600060188260ff161015611045575060ff8116610cd9565b8160ff1660180361106357611059836119e2565b60ff169050610cd9565b8160ff166019036110825761107783611a44565b61ffff169050610cd9565b8160ff16601a036110a35761109683611ab0565b63ffffffff169050610cd9565b8160ff16601b036110be576110b783611b0f565b9050610cd9565b8160ff16601f036110d757506001600160401b03610cd9565b604051636d785b1360e01b815260ff831660048201526024016103ed565b600080611101846119e2565b90508060ff1660ff0361111e576001600160401b03915050610cd9565b61112b8482601f1661102d565b91506001600160401b038083161061116157604051636d785b1360e01b81526001600160401b03831660048201526024016103ed565b60ff83166007600583901c16146109885760405161800560e51b81526007600583901c16600482015260ff841660248201526044016103ed565b6060816001600160401b03166001600160401b038111156111be576111be611f36565b6040519080825280601f01601f1916602001820160405280156111e8576020820181803683370190505b50905060005b826001600160401b0316816001600160401b03161015611319576000611213856119e2565b905060808116156112da5760e08160ff16101561124f57611233856119e2565b603f16600682601f1660ff16901b1790506001840393506112da565b60f08160ff16101561129457611264856119e2565b603f166006611272876119e2565b603f1660ff16901b600c83600f1660ff16901b171790506002840393506112da565b61129d856119e2565b603f1660066112ab876119e2565b603f16901b600c6112bb886119e2565b603f1660ff16901b601284600f1660ff16901b17171790506003840393505b8060f81b83836001600160401b0316815181106112f9576112f96121f8565b60200101906001600160f81b031916908160001a905350506001016111ee565b50908152919050565b600060308260ff161015801561133c575060398260ff1611155b1561134c57610cd96030836124ca565b60418260ff1610158015611364575060468260ff1611155b1561137f576113746041836124ca565b610cd990600a61249e565b60618260ff1610158015611397575060668260ff1611155b156113a7576113746061836124ca565b60405162461bcd60e51b815260206004820152601560248201527424b73b30b634b2103432bc1031b430b930b1ba32b960591b60448201526064016103ed565b6000610cd9826014611b6e565b60608160048060ff16826040015160ff161461143457604080830151905161800560e51b815260ff918216600482015290821660248201526044016103ed565b60006114488560000151866060015161102d565b90506001600160401b03808216101561150f57806001600160401b03166001600160401b0381111561147c5761147c611f36565b6040519080825280602002602001820160405280156114a5578160200160208202803683370190505b50935060005b816001600160401b03168110156115095760006114cb8760000151611be6565b90506114d681610a65565b8683815181106114e8576114e86121f8565b6001600160401b0390921660209283029190910190910152506001016114ab565b50611533565b604051636d785b1360e01b81526001600160401b03821660048201526024016103ed565b505050919050565b600060f08260ff8111156115515761155161237d565b1480610cd9575060f18260ff81111561156c5761156c61237d565b1492915050565b61157b611d73565b81518051516020909101511015611597578151610cd990611be6565b5090565b6115a3611d73565b6040805160c081018083528451610100830184526060909152600060e0830152825180840190935280518352602090810151908301529081908152602001836020015160ff168152602001836040015160ff168152602001836060015160ff16815260200183608001516001600160401b031681526020018360a001516001600160401b03168152509050919050565b60608160058060ff16826040015160ff161461167357604080830151905161800560e51b815260ff918216600482015290821660248201526044016103ed565b60006116878560000151866060015161102d565b6116929060026124e3565b905061169f8160016123d4565b6001600160401b03166001600160401b038111156116bf576116bf611f36565b6040519080825280602002602001820160405280156116f857816020015b6116e5611d73565b8152602001906001900390816116dd5790505b50935060005b816001600160401b0316811015610f355761171886611573565b95506117238661159b565b858281518110611735576117356121f8565b602090810291909101015261174b600282612505565b1580156117605750604086015160ff16600314155b1561178e57604080870151905161800560e51b815260ff9091166004820152600360248201526044016103ed565b604086015160ff16600414806117ab5750604086015160ff166005145b1561180a57604086015160009060ff166004146117d0576117cb87611633565b6117d9565b6117d987610db5565b905080600182516117ea91906124b7565b815181106117fa576117fa6121f8565b6020026020010151965050611815565b6118138661181d565b505b6001016116fe565b611825611d73565b604082015160ff1615806118405750604082015160ff166001145b806118795750604082015160ff16600714801561186557506019826060015160ff1610155b80156118795750601b826060015160ff1611155b156118ac5761188782611d06565b6001600160401b031682600001516020018181516118a59190612519565b9052505090565b604082015160ff16600314806118c95750604082015160ff166002145b1561190d5760006118e28360000151846060015161102d565b9050806001600160401b031683600001516020018181516119039190612519565b9052506115979050565b604082015160ff166004148061192a5750604082015160ff166005145b15611953576119418260000151836060015161102d565b6001600160401b031660808301525090565b604082015160ff1660071415806119855750816060015160ff166014141580156119855750816060015160ff16601514155b156115975760405162461bcd60e51b815260206004820152602760248201527f5769746e657443424f522e736b69703a20756e737570706f72746564206d616a6044820152666f72207479706560c81b60648201526084016103ed565b6000816020015182600001515180821115611a1a576040516363a056dd60e01b815260048101839052602481018290526044016103ed565b8351602085018051808301600101519550908190611a378261252c565b8152505050505050919050565b600081602001516002611a579190612519565b82515180821115611a85576040516363a056dd60e01b815260048101839052602481018290526044016103ed565b8351602085018051600281840181015196509091611aa38284612519565b9052509395945050505050565b600081602001516004611ac39190612519565b82515180821115611af1576040516363a056dd60e01b815260048101839052602481018290526044016103ed565b8351602085018051600481840181015196509091611aa38284612519565b600081602001516008611b229190612519565b82515180821115611b50576040516363a056dd60e01b815260048101839052602481018290526044016103ed565b8351602085018051600881840181015196509091611aa38284612519565b600060208260ff161115611b8457611b84612545565b60008260ff16845111611b98578351611b9d565b8260ff165b905060005b81811015611bde5780600802858281518110611bc057611bc06121f8565b01602001516001600160f81b031916901c9290921791600101611ba2565b505092915050565b611bee611d73565b8151518290600003611c13576040516309036d4760e21b815260040160405180910390fd5b600060ff816001600160401b038160015b8015611c9657611c33896119e2565b955081611c3f8161252c565b6007600589901c169650601f881695509250506005198501611c8e576020890151611c6a8a8661102d565b9350808a60200151611c7c91906124b7565b611c869084612519565b925050611c24565b506000611c24565b600760ff86161115611cc05760405163bd2ac87960e01b815260ff861660048201526024016103ed565b506040805160c08101825298895260ff95861660208a015293851693880193909352921660608601526001600160401b0390811660808601521660a08401525090919050565b60006018826060015160ff161015611d2057506000919050565b601c826060015160ff161015611d4f5760188260600151611d4191906124ca565b60ff166001901b9050919050565b6060820151604051636d785b1360e01b815260ff90911660048201526024016103ed565b604080516101008101909152606060c08201908152600060e08301528190815260006020820181905260408201819052606082018190526080820181905260a09091015290565b6001600160a01b0381168114611dcf57600080fd5b50565b600080600060608486031215611de757600080fd5b8335611df281611dba565b92506020840135611e0281611dba565b929592945050506040919091013590565b600080600060408486031215611e2857600080fd5b8335925060208401356001600160401b03811115611e4557600080fd5b8401601f81018613611e5657600080fd5b80356001600160401b03811115611e6c57600080fd5b866020828401011115611e7e57600080fd5b939660209190910195509293505050565b60005b83811015611eaa578181015183820152602001611e92565b50506000910152565b60008151808452611ecb816020860160208601611e8f565b601f01601f19169290920160200192915050565b85815260a060208201526000611ef860a0830187611eb3565b8281036040840152611f0a8187611eb3565b6001600160a01b0395909516606084015250506001600160401b03919091166080909101529392505050565b634e487b7160e01b600052604160045260246000fd5b60405160c081016001600160401b0381118282101715611f6e57611f6e611f36565b60405290565b604080519081016001600160401b0381118282101715611f6e57611f6e611f36565b60405160a081016001600160401b0381118282101715611f6e57611f6e611f36565b604051601f8201601f191681016001600160401b0381118282101715611fe057611fe0611f36565b604052919050565b80356001600160401b038116811461102857600080fd5b803560ff8116811461102857600080fd5b600060c0828403121561202257600080fd5b61202a611f4c565b905081356001600160401b0381111561204257600080fd5b82016040818503121561205457600080fd5b61205c611f74565b81356001600160401b0381111561207257600080fd5b8201601f8101861361208357600080fd5b80356001600160401b0381111561209c5761209c611f36565b6120af601f8201601f1916602001611fb8565b8181528760208385010111156120c457600080fd5b8160208401602083013760006020928201830152835292830135828401525082526120f0908301611fff565b602082015261210160408301611fff565b604082015261211260608301611fff565b606082015261212360808301611fe8565b608082015261213460a08301611fe8565b60a082015292915050565b60006020828403121561215157600080fd5b81356001600160401b0381111561216757600080fd5b820160a0818503121561217957600080fd5b612181611f96565b8135610100811061219157600080fd5b81526020820135601481106121a557600080fd5b6020820152604082810135908201526121c060608301611fe8565b606082015260808201356001600160401b038111156121de57600080fd5b6121ea86828501612010565b608083015250949350505050565b634e487b7160e01b600052603260045260246000fd5b6000604082016040835280855180835260608501915060608160051b86010192506020870160005b8281101561226757605f19878603018452612252858351611eb3565b94506020938401939190910190600101612236565b50505050828103602084015280845480835260208301915060208160051b84010186600052602060002060005b8381101561235657858303601f190185528154600090600181811c908216806122be57607f821691505b6020821081036122dc57634e487b7160e01b84526022600452602484fd5b818752602087018180156122f7576001811461230d5761233b565b60ff198516825283151560051b8201955061233b565b60008881526020902060005b8581101561233557815484820152600190910190602001612319565b83019650505b50505060209790970196509093505060019182019101612294565b509098975050505050505050565b60006020828403121561237657600080fd5b5051919050565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001600160401b0382166001600160401b0381036123cb576123cb612393565b60010192915050565b6001600160401b038181168382160190811115610cd957610cd9612393565b634e487b7160e01b600052601260045260246000fd5b600060ff83168061241c5761241c6123f3565b8060ff84160491505092915050565b600060ff821660ff81036123cb576123cb612393565b60006001600160401b0383168061245a5761245a6123f3565b806001600160401b0384160491505092915050565b60008351612481818460208801611e8f565b835190830190612495818360208801611e8f565b01949350505050565b60ff8181168382160190811115610cd957610cd9612393565b81810381811115610cd957610cd9612393565b60ff8281168282160390811115610cd957610cd9612393565b6001600160401b03818116838216029081169081811461098857610988612393565b600082612514576125146123f3565b500690565b80820180821115610cd957610cd9612393565b60006001820161253e5761253e612393565b5060010190565b634e487b7160e01b600052600160045260246000fdfe6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58ff6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58f9a264697066735822122004df0e6774b6ee639155dac5be438aebd5868e3ab77761428d3aefa6c59a6be964736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3752120B EQ PUSH2 0x50 JUMPI DUP1 PUSH4 0x5D933EB7 EQ PUSH2 0x83 JUMPI DUP1 PUSH4 0x67C4440F EQ PUSH2 0xB4 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x70 PUSH2 0x6B CALLDATASIZE PUSH1 0x4 PUSH2 0x1DD2 JUMP JUMPDEST PUSH2 0xDF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x8F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xA3 PUSH2 0x9E CALLDATASIZE PUSH1 0x4 PUSH2 0x1E13 JUMP JUMPDEST PUSH2 0x37C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7A SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1EDF JUMP JUMPDEST PUSH2 0xC7 PUSH2 0xC2 CALLDATASIZE PUSH1 0x4 PUSH2 0x213F JUMP JUMPDEST PUSH2 0x757 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x7A JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x255C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x0 NOT DUP2 EQ PUSH2 0x375 JUMPI PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x11B JUMPI SWAP1 POP POP SWAP1 POP PUSH2 0x13B DUP4 PUSH2 0x87D JUMP JUMPDEST DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x14E JUMPI PUSH2 0x14E PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH1 0x0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xF0E271BC DUP4 PUSH2 0x180 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x257C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A0 SWAP3 SWAP2 SWAP1 PUSH2 0x220E JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1BF 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 0x1E3 SWAP2 SWAP1 PUSH2 0x2364 JUMP JUMPDEST SWAP1 POP DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x3B3195B7 CALLVALUE DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x100 PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x222 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x257C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x3 ADD SLOAD PUSH2 0xFFFF SWAP1 DUP2 AND DUP3 MSTORE PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58FC SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH5 0x100000000 DUP3 DIV DUP2 AND PUSH1 0x20 SWAP5 DUP6 ADD MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE ADDRESS DUP2 MSTORE PUSH3 0xFFFFFF PUSH1 0x1 PUSH1 0x60 SHL SWAP1 SWAP5 DIV DUP5 AND DUP2 DUP8 ADD SWAP1 DUP2 MSTORE DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP14 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP10 SWAP1 SWAP10 MSTORE DUP8 MLOAD DUP7 AND PUSH1 0x24 DUP11 ADD MSTORE DUP8 DUP8 ADD MLOAD SWAP1 SWAP6 AND PUSH1 0x44 DUP10 ADD MSTORE SWAP6 DUP2 ADD MLOAD SWAP1 SWAP2 AND PUSH1 0x64 DUP8 ADD MSTORE SWAP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x84 DUP7 ADD MSTORE SWAP1 MLOAD AND PUSH1 0xA4 DUP5 ADD MSTORE SWAP1 MLOAD PUSH1 0xC4 DUP1 DUP5 ADD SWAP4 DUP3 SWAP1 SUB ADD DUP2 DUP6 DUP9 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2FE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP 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 0x323 SWAP2 SWAP1 PUSH2 0x2364 JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x255C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP5 SWAP1 SSTORE DUP4 DUP4 MSTORE PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C5900 SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP3 POP POP POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C5900 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 PUSH1 0x60 SWAP1 DUP2 SWAP1 DUP1 DUP5 PUSH2 0x3F6 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 PUSH16 0x1A5B9D985B1A59081C5D595C9E481A59 PUSH1 0x82 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x255C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 ADD PUSH2 0x461 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 0x7769742F7772617020747820616C7265616479206D696E746564000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 PUSH2 0x46F DUP8 DUP10 ADD DUP10 PUSH2 0x213F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x486 JUMPI PUSH2 0x486 PUSH2 0x237D JUMP JUMPDEST EQ PUSH2 0x4D3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x717565727920736F6C7665642077697468206572726F72730000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x4EB JUMPI PUSH2 0x4EB PUSH2 0x237D JUMP JUMPDEST EQ PUSH2 0x52F 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 PUSH20 0x1A5B9D985B1A59081C5D595C9E481C995CDD5B1D PUSH1 0x62 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 DUP7 DUP2 MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x255C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH1 0x0 NOT SWAP1 SSTORE PUSH2 0x558 DUP3 PUSH2 0x98F JUMP JUMPDEST SWAP1 POP PUSH2 0x57D DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x570 JUMPI PUSH2 0x570 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xA65 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ PUSH2 0x5D5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x756E66696E616C697A656420717565727920726573756C740000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH2 0x5F8 DUP2 PUSH1 0x2 DUP2 MLOAD DUP2 LT PUSH2 0x5EB JUMPI PUSH2 0x5EB PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xAC1 JUMP JUMPDEST SWAP6 POP PUSH2 0x610 DUP2 PUSH1 0x3 DUP2 MLOAD DUP2 LT PUSH2 0x5EB JUMPI PUSH2 0x5EB PUSH2 0x21F8 JUMP JUMPDEST SWAP5 POP PUSH2 0x638 PUSH2 0x633 PUSH2 0x62E DUP4 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x5EB JUMPI PUSH2 0x5EB PUSH2 0x21F8 JUMP JUMPDEST PUSH2 0xBC7 JUMP JUMPDEST PUSH2 0xCB5 JUMP JUMPDEST SWAP4 POP PUSH1 0x0 PUSH2 0x652 DUP3 PUSH1 0x4 DUP2 MLOAD DUP2 LT PUSH2 0x570 JUMPI PUSH2 0x570 PUSH2 0x21F8 JUMP JUMPDEST SWAP1 POP PUSH2 0x66A DUP3 PUSH1 0x5 DUP2 MLOAD DUP2 LT PUSH2 0x570 JUMPI PUSH2 0x570 PUSH2 0x21F8 JUMP JUMPDEST SWAP4 POP PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x257C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x1 ADD DUP1 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP1 PUSH1 0x10 PUSH2 0x69C DUP4 PUSH2 0x23A9 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND MUL OR SWAP1 SSTORE POP POP PUSH2 0x6F3 PUSH2 0x6D9 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x257C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SWAP1 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 DUP2 AND SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV AND PUSH2 0xCC9 JUMP JUMPDEST ISZERO PUSH2 0x749 JUMPI DUP4 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x257C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x1 ADD DUP1 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x724 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH2 0x23D4 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND MUL OR SWAP1 SSTORE POP JUMPDEST POP POP POP SWAP4 SWAP8 SWAP3 SWAP7 POP SWAP4 POP SWAP4 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP2 DUP4 MLOAD PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x76F JUMPI PUSH2 0x76F PUSH2 0x237D JUMP JUMPDEST SUB PUSH2 0x780 JUMPI PUSH2 0x77D DUP4 PUSH2 0xCDF JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x795 JUMPI PUSH2 0x795 PUSH2 0x237D JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x7CE JUMPI POP PUSH2 0x7CE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x257C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE SLOAD PUSH1 0x60 DUP6 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV AND PUSH2 0xCC9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x7DB JUMPI POP DUP1 MLOAD PUSH1 0x3 EQ JUMPDEST PUSH2 0x818 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xE PUSH1 0x24 DUP3 ADD MSTORE PUSH14 0x1A5B9D985B1A59081C995C1BDC9D PUSH1 0x92 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST DUP1 PUSH1 0x2 DUP2 MLOAD DUP2 LT PUSH2 0x82B JUMPI PUSH2 0x82B PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x846 JUMPI PUSH2 0x846 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x861 JUMPI PUSH2 0x861 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x873 SWAP2 SWAP1 PUSH2 0x23D4 JUMP JUMPDEST PUSH2 0x375 SWAP2 SWAP1 PUSH2 0x23D4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP2 DUP2 MSTORE PUSH1 0x60 DUP2 DUP2 ADD DUP4 MSTORE SWAP2 PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x988 JUMPI PUSH2 0x8EA PUSH1 0x4 DUP6 PUSH2 0x8BF PUSH1 0x2 DUP6 PUSH2 0x2409 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x20 DUP2 LT PUSH2 0x8D2 JUMPI PUSH2 0x8D2 PUSH2 0x21F8 JUMP JUMPDEST BYTE PUSH1 0xF8 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 SHR PUSH1 0xF8 SHR PUSH2 0xD72 JUMP JUMPDEST DUP3 DUP3 PUSH2 0x8F5 DUP2 PUSH2 0x242B JUMP JUMPDEST SWAP4 POP PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x90A JUMPI PUSH2 0x90A PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x94C DUP5 PUSH2 0x930 PUSH1 0x2 DUP5 PUSH2 0x2409 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x20 DUP2 LT PUSH2 0x943 JUMPI PUSH2 0x943 PUSH2 0x21F8 JUMP JUMPDEST BYTE PUSH1 0xF AND PUSH2 0xD72 JUMP JUMPDEST DUP3 DUP3 PUSH2 0x957 DUP2 PUSH2 0x242B JUMP JUMPDEST SWAP4 POP PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x96C JUMPI PUSH2 0x96C PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x8A2 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x1 PUSH2 0x99D DUP3 PUSH2 0xDA6 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x9CF JUMPI POP DUP1 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x9B7 JUMPI PUSH2 0x9B7 PUSH2 0x237D JUMP JUMPDEST DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x9CD JUMPI PUSH2 0x9CD PUSH2 0x237D JUMP JUMPDEST EQ JUMPDEST PUSH2 0xA15 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 PUSH23 0x63626F723A2063616E6E6F742066657463682064617461 PUSH1 0x48 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH2 0xA22 DUP5 PUSH1 0x80 ADD MLOAD PUSH2 0xDB5 JUMP JUMPDEST SWAP3 POP PUSH2 0xA31 DUP3 PUSH1 0x80 ADD MLOAD PUSH2 0xF65 JUMP JUMPDEST DUP3 PUSH1 0x20 ADD SWAP1 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xA47 JUMPI PUSH2 0xA47 PUSH2 0x237D JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xA5A JUMPI PUSH2 0xA5A PUSH2 0x237D JUMP JUMPDEST DUP2 MSTORE POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0xAA5 JUMPI PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 MLOAD PUSH2 0x8005 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0xFF SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH2 0xAB7 DUP5 PUSH1 0x0 ADD MLOAD DUP6 PUSH1 0x60 ADD MLOAD PUSH2 0x102D JUMP JUMPDEST SWAP3 POP JUMPDEST POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x3 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0xB01 JUMPI PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 MLOAD PUSH2 0x8005 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0xFF SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH2 0xB13 DUP5 PUSH1 0x0 ADD MLOAD DUP6 PUSH1 0x60 ADD MLOAD PUSH2 0x102D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x80 DUP6 ADD DUP2 SWAP1 MSTORE PUSH8 0xFFFFFFFFFFFFFFFE NOT ADD PUSH2 0xBB0 JUMPI PUSH1 0x0 JUMPDEST DUP1 PUSH2 0xBAA JUMPI PUSH1 0x0 PUSH2 0xB4E DUP7 PUSH1 0x0 ADD MLOAD DUP8 PUSH1 0x40 ADD MLOAD PUSH2 0x10F5 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 AND LT ISZERO PUSH2 0xB9F JUMPI DUP5 PUSH2 0xB78 PUSH2 0xB70 PUSH1 0x4 DUP5 PUSH2 0x2441 JUMP JUMPDEST DUP9 MLOAD SWAP1 PUSH2 0x119B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xB89 SWAP3 SWAP2 SWAP1 PUSH2 0x246F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP5 POP PUSH2 0xBA4 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP JUMPDEST POP PUSH2 0xB35 JUMP JUMPDEST POP PUSH2 0xABA JUMP JUMPDEST PUSH1 0x80 DUP5 ADD MLOAD DUP5 MLOAD PUSH2 0xBC0 SWAP2 PUSH2 0x119B JUMP JUMPDEST SWAP3 POP PUSH2 0xABA JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP3 MLOAD DUP2 PUSH2 0xBDA JUMPI PUSH2 0xBDA PUSH2 0x23F3 JUMP JUMPDEST DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xBF2 JUMPI PUSH2 0xBF2 PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xC1C JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xCAF JUMPI PUSH1 0x0 PUSH2 0xC52 DUP5 DUP4 PUSH1 0x2 MUL DUP2 MLOAD DUP2 LT PUSH2 0xC45 JUMPI PUSH2 0xC45 PUSH2 0x21F8 JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD PUSH1 0xF8 SHR PUSH2 0x1322 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xC71 DUP6 DUP5 PUSH1 0x2 MUL PUSH1 0x1 ADD DUP2 MLOAD DUP2 LT PUSH2 0xC45 JUMPI PUSH2 0xC45 PUSH2 0x21F8 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 PUSH1 0x10 MUL ADD PUSH1 0xF8 SHL DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xC8E JUMPI PUSH2 0xC8E PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP POP POP PUSH1 0x1 ADD PUSH2 0xC22 JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCC0 DUP3 PUSH2 0x13E7 JUMP JUMPDEST PUSH1 0x60 SHR SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 AND SWAP1 DUP4 AND GT JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x1 PUSH2 0xCED DUP3 PUSH2 0xDA6 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0xD1F JUMPI POP DUP1 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xD07 JUMPI PUSH2 0xD07 PUSH2 0x237D JUMP JUMPDEST DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xD1D JUMPI PUSH2 0xD1D PUSH2 0x237D JUMP JUMPDEST EQ JUMPDEST PUSH2 0xD65 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 PUSH23 0x63626F723A2063616E6E6F742066657463682064617461 PUSH1 0x48 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH2 0xA22 DUP5 PUSH1 0x80 ADD MLOAD PUSH2 0x13F4 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA DUP3 PUSH1 0xFF AND LT PUSH2 0xD92 JUMPI PUSH2 0xD8A DUP3 PUSH1 0x57 PUSH2 0x249E JUMP JUMPDEST PUSH1 0xF8 SHL PUSH2 0xCD9 JUMP JUMPDEST PUSH2 0xD9D DUP3 PUSH1 0x30 PUSH2 0x249E JUMP JUMPDEST PUSH1 0xF8 SHL SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCD9 DUP3 PUSH1 0x0 ADD MLOAD PUSH2 0x153B JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x4 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0xDF5 JUMPI PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 MLOAD PUSH2 0x8005 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0xFF SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE09 DUP6 PUSH1 0x0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0x102D JUMP JUMPDEST SWAP1 POP PUSH2 0xE16 DUP2 PUSH1 0x1 PUSH2 0x23D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xE36 JUMPI PUSH2 0xE36 PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xE6F JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0xE5C PUSH2 0x1D73 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xE54 JUMPI SWAP1 POP JUMPDEST POP SWAP4 POP PUSH1 0x0 JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 LT ISZERO PUSH2 0xF35 JUMPI PUSH2 0xE8F DUP7 PUSH2 0x1573 JUMP JUMPDEST SWAP6 POP PUSH2 0xE9A DUP7 PUSH2 0x159B JUMP JUMPDEST DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xEAC JUMPI PUSH2 0xEAC PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH1 0x4 PUSH1 0xFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND SUB PUSH2 0xF05 JUMPI PUSH1 0x0 PUSH2 0xED4 DUP8 PUSH2 0xDB5 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 DUP3 MLOAD PUSH2 0xEE5 SWAP2 SWAP1 PUSH2 0x24B7 JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0xEF5 JUMPI PUSH2 0xEF5 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP7 POP POP PUSH2 0xF2D JUMP JUMPDEST PUSH1 0x5 PUSH1 0xFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND SUB PUSH2 0xF22 JUMPI PUSH1 0x0 PUSH2 0xED4 DUP8 PUSH2 0x1633 JUMP JUMPDEST PUSH2 0xF2B DUP7 PUSH2 0x181D JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 ADD PUSH2 0xE75 JUMP JUMPDEST POP DUP5 DUP5 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 MLOAD DUP2 LT PUSH2 0xF52 JUMPI PUSH2 0xF52 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF7A DUP3 MLOAD DUP1 MLOAD MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MLOAD LT ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x1028 JUMPI PUSH1 0x6 DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND GT PUSH2 0xFC2 JUMPI PUSH1 0x40 DUP3 ADD MLOAD PUSH6 0x20201838083 PUSH1 0xD1 SHL SWAP1 PUSH1 0xFF AND PUSH1 0x7 DUP2 LT PUSH2 0xFB0 JUMPI PUSH2 0xFB0 PUSH2 0x21F8 JUMP JUMPDEST BYTE PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xCD9 JUMPI PUSH2 0xCD9 PUSH2 0x237D JUMP JUMPDEST DUP2 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND PUSH1 0x7 SUB PUSH2 0x1028 JUMPI DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x14 EQ DUP1 PUSH2 0xFEE JUMPI POP DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x15 EQ JUMPDEST ISZERO PUSH2 0xFFB JUMPI POP PUSH1 0x2 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x19 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0x101B JUMPI POP PUSH1 0x1B DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x1028 JUMPI POP PUSH1 0x5 SWAP2 SWAP1 POP JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x18 DUP3 PUSH1 0xFF AND LT ISZERO PUSH2 0x1045 JUMPI POP PUSH1 0xFF DUP2 AND PUSH2 0xCD9 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x18 SUB PUSH2 0x1063 JUMPI PUSH2 0x1059 DUP4 PUSH2 0x19E2 JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP PUSH2 0xCD9 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x19 SUB PUSH2 0x1082 JUMPI PUSH2 0x1077 DUP4 PUSH2 0x1A44 JUMP JUMPDEST PUSH2 0xFFFF AND SWAP1 POP PUSH2 0xCD9 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x1A SUB PUSH2 0x10A3 JUMPI PUSH2 0x1096 DUP4 PUSH2 0x1AB0 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH2 0xCD9 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x1B SUB PUSH2 0x10BE JUMPI PUSH2 0x10B7 DUP4 PUSH2 0x1B0F JUMP JUMPDEST SWAP1 POP PUSH2 0xCD9 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x1F SUB PUSH2 0x10D7 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH2 0xCD9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6D785B13 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0xFF DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x1101 DUP5 PUSH2 0x19E2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0xFF AND PUSH1 0xFF SUB PUSH2 0x111E JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP2 POP POP PUSH2 0xCD9 JUMP JUMPDEST PUSH2 0x112B DUP5 DUP3 PUSH1 0x1F AND PUSH2 0x102D JUMP JUMPDEST SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP4 AND LT PUSH2 0x1161 JUMPI PUSH1 0x40 MLOAD PUSH4 0x6D785B13 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0xFF DUP4 AND PUSH1 0x7 PUSH1 0x5 DUP4 SWAP1 SHR AND EQ PUSH2 0x988 JUMPI PUSH1 0x40 MLOAD PUSH2 0x8005 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x7 PUSH1 0x5 DUP4 SWAP1 SHR AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xFF DUP5 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x11BE JUMPI PUSH2 0x11BE PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x11E8 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND LT ISZERO PUSH2 0x1319 JUMPI PUSH1 0x0 PUSH2 0x1213 DUP6 PUSH2 0x19E2 JUMP JUMPDEST SWAP1 POP PUSH1 0x80 DUP2 AND ISZERO PUSH2 0x12DA JUMPI PUSH1 0xE0 DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x124F JUMPI PUSH2 0x1233 DUP6 PUSH2 0x19E2 JUMP JUMPDEST PUSH1 0x3F AND PUSH1 0x6 DUP3 PUSH1 0x1F AND PUSH1 0xFF AND SWAP1 SHL OR SWAP1 POP PUSH1 0x1 DUP5 SUB SWAP4 POP PUSH2 0x12DA JUMP JUMPDEST PUSH1 0xF0 DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x1294 JUMPI PUSH2 0x1264 DUP6 PUSH2 0x19E2 JUMP JUMPDEST PUSH1 0x3F AND PUSH1 0x6 PUSH2 0x1272 DUP8 PUSH2 0x19E2 JUMP JUMPDEST PUSH1 0x3F AND PUSH1 0xFF AND SWAP1 SHL PUSH1 0xC DUP4 PUSH1 0xF AND PUSH1 0xFF AND SWAP1 SHL OR OR SWAP1 POP PUSH1 0x2 DUP5 SUB SWAP4 POP PUSH2 0x12DA JUMP JUMPDEST PUSH2 0x129D DUP6 PUSH2 0x19E2 JUMP JUMPDEST PUSH1 0x3F AND PUSH1 0x6 PUSH2 0x12AB DUP8 PUSH2 0x19E2 JUMP JUMPDEST PUSH1 0x3F AND SWAP1 SHL PUSH1 0xC PUSH2 0x12BB DUP9 PUSH2 0x19E2 JUMP JUMPDEST PUSH1 0x3F AND PUSH1 0xFF AND SWAP1 SHL PUSH1 0x12 DUP5 PUSH1 0xF AND PUSH1 0xFF AND SWAP1 SHL OR OR OR SWAP1 POP PUSH1 0x3 DUP5 SUB SWAP4 POP JUMPDEST DUP1 PUSH1 0xF8 SHL DUP4 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 MLOAD DUP2 LT PUSH2 0x12F9 JUMPI PUSH2 0x12F9 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP POP PUSH1 0x1 ADD PUSH2 0x11EE JUMP JUMPDEST POP SWAP1 DUP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x30 DUP3 PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0x133C JUMPI POP PUSH1 0x39 DUP3 PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x134C JUMPI PUSH2 0xCD9 PUSH1 0x30 DUP4 PUSH2 0x24CA JUMP JUMPDEST PUSH1 0x41 DUP3 PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0x1364 JUMPI POP PUSH1 0x46 DUP3 PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x137F JUMPI PUSH2 0x1374 PUSH1 0x41 DUP4 PUSH2 0x24CA JUMP JUMPDEST PUSH2 0xCD9 SWAP1 PUSH1 0xA PUSH2 0x249E JUMP JUMPDEST PUSH1 0x61 DUP3 PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0x1397 JUMPI POP PUSH1 0x66 DUP3 PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x13A7 JUMPI PUSH2 0x1374 PUSH1 0x61 DUP4 PUSH2 0x24CA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x15 PUSH1 0x24 DUP3 ADD MSTORE PUSH21 0x24B73B30B634B2103432BC1031B430B930B1BA32B9 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCD9 DUP3 PUSH1 0x14 PUSH2 0x1B6E JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x4 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0x1434 JUMPI PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 MLOAD PUSH2 0x8005 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0xFF SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1448 DUP6 PUSH1 0x0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0x102D JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 AND LT ISZERO PUSH2 0x150F JUMPI DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x147C JUMPI PUSH2 0x147C PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x14A5 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP4 POP PUSH1 0x0 JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 LT ISZERO PUSH2 0x1509 JUMPI PUSH1 0x0 PUSH2 0x14CB DUP8 PUSH1 0x0 ADD MLOAD PUSH2 0x1BE6 JUMP JUMPDEST SWAP1 POP PUSH2 0x14D6 DUP2 PUSH2 0xA65 JUMP JUMPDEST DUP7 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x14E8 JUMPI PUSH2 0x14E8 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE POP PUSH1 0x1 ADD PUSH2 0x14AB JUMP JUMPDEST POP PUSH2 0x1533 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x6D785B13 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3ED JUMP JUMPDEST POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xF0 DUP3 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x1551 JUMPI PUSH2 0x1551 PUSH2 0x237D JUMP JUMPDEST EQ DUP1 PUSH2 0xCD9 JUMPI POP PUSH1 0xF1 DUP3 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x156C JUMPI PUSH2 0x156C PUSH2 0x237D JUMP JUMPDEST EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x157B PUSH2 0x1D73 JUMP JUMPDEST DUP2 MLOAD DUP1 MLOAD MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MLOAD LT ISZERO PUSH2 0x1597 JUMPI DUP2 MLOAD PUSH2 0xCD9 SWAP1 PUSH2 0x1BE6 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x15A3 PUSH2 0x1D73 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xC0 DUP2 ADD DUP1 DUP4 MSTORE DUP5 MLOAD PUSH2 0x100 DUP4 ADD DUP5 MSTORE PUSH1 0x60 SWAP1 SWAP2 MSTORE PUSH1 0x0 PUSH1 0xE0 DUP4 ADD MSTORE DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE DUP1 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP1 DUP2 ADD MLOAD SWAP1 DUP4 ADD MSTORE SWAP1 DUP2 SWAP1 DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH1 0x20 ADD MLOAD PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH1 0x80 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD DUP4 PUSH1 0xA0 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 MSTORE POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x5 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0x1673 JUMPI PUSH1 0x40 DUP1 DUP4 ADD MLOAD SWAP1 MLOAD PUSH2 0x8005 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0xFF SWAP2 DUP3 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP1 DUP3 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1687 DUP6 PUSH1 0x0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0x102D JUMP JUMPDEST PUSH2 0x1692 SWAP1 PUSH1 0x2 PUSH2 0x24E3 JUMP JUMPDEST SWAP1 POP PUSH2 0x169F DUP2 PUSH1 0x1 PUSH2 0x23D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x16BF JUMPI PUSH2 0x16BF PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x16F8 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x16E5 PUSH2 0x1D73 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x16DD JUMPI SWAP1 POP JUMPDEST POP SWAP4 POP PUSH1 0x0 JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 LT ISZERO PUSH2 0xF35 JUMPI PUSH2 0x1718 DUP7 PUSH2 0x1573 JUMP JUMPDEST SWAP6 POP PUSH2 0x1723 DUP7 PUSH2 0x159B JUMP JUMPDEST DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1735 JUMPI PUSH2 0x1735 PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0x174B PUSH1 0x2 DUP3 PUSH2 0x2505 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x1760 JUMPI POP PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0xFF AND PUSH1 0x3 EQ ISZERO JUMPDEST ISZERO PUSH2 0x178E JUMPI PUSH1 0x40 DUP1 DUP8 ADD MLOAD SWAP1 MLOAD PUSH2 0x8005 PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0xFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x3 PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0xFF AND PUSH1 0x4 EQ DUP1 PUSH2 0x17AB JUMPI POP PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0xFF AND PUSH1 0x5 EQ JUMPDEST ISZERO PUSH2 0x180A JUMPI PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0x0 SWAP1 PUSH1 0xFF AND PUSH1 0x4 EQ PUSH2 0x17D0 JUMPI PUSH2 0x17CB DUP8 PUSH2 0x1633 JUMP JUMPDEST PUSH2 0x17D9 JUMP JUMPDEST PUSH2 0x17D9 DUP8 PUSH2 0xDB5 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 DUP3 MLOAD PUSH2 0x17EA SWAP2 SWAP1 PUSH2 0x24B7 JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x17FA JUMPI PUSH2 0x17FA PUSH2 0x21F8 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP7 POP POP PUSH2 0x1815 JUMP JUMPDEST PUSH2 0x1813 DUP7 PUSH2 0x181D JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x16FE JUMP JUMPDEST PUSH2 0x1825 PUSH2 0x1D73 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND ISZERO DUP1 PUSH2 0x1840 JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x1 EQ JUMPDEST DUP1 PUSH2 0x1879 JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x7 EQ DUP1 ISZERO PUSH2 0x1865 JUMPI POP PUSH1 0x19 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1879 JUMPI POP PUSH1 0x1B DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x18AC JUMPI PUSH2 0x1887 DUP3 PUSH2 0x1D06 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP3 PUSH1 0x0 ADD MLOAD PUSH1 0x20 ADD DUP2 DUP2 MLOAD PUSH2 0x18A5 SWAP2 SWAP1 PUSH2 0x2519 JUMP JUMPDEST SWAP1 MSTORE POP POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x3 EQ DUP1 PUSH2 0x18C9 JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x2 EQ JUMPDEST ISZERO PUSH2 0x190D JUMPI PUSH1 0x0 PUSH2 0x18E2 DUP4 PUSH1 0x0 ADD MLOAD DUP5 PUSH1 0x60 ADD MLOAD PUSH2 0x102D JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP4 PUSH1 0x0 ADD MLOAD PUSH1 0x20 ADD DUP2 DUP2 MLOAD PUSH2 0x1903 SWAP2 SWAP1 PUSH2 0x2519 JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0x1597 SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x4 EQ DUP1 PUSH2 0x192A JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x5 EQ JUMPDEST ISZERO PUSH2 0x1953 JUMPI PUSH2 0x1941 DUP3 PUSH1 0x0 ADD MLOAD DUP4 PUSH1 0x60 ADD MLOAD PUSH2 0x102D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x80 DUP4 ADD MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x7 EQ ISZERO DUP1 PUSH2 0x1985 JUMPI POP DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x14 EQ ISZERO DUP1 ISZERO PUSH2 0x1985 JUMPI POP DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x15 EQ ISZERO JUMPDEST ISZERO PUSH2 0x1597 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 0x5769746E657443424F522E736B69703A20756E737570706F72746564206D616A PUSH1 0x44 DUP3 ADD MSTORE PUSH7 0x6F722074797065 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD DUP3 PUSH1 0x0 ADD MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x1A1A JUMPI PUSH1 0x40 MLOAD PUSH4 0x63A056DD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD DUP1 DUP4 ADD PUSH1 0x1 ADD MLOAD SWAP6 POP SWAP1 DUP2 SWAP1 PUSH2 0x1A37 DUP3 PUSH2 0x252C JUMP JUMPDEST DUP2 MSTORE POP POP POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x2 PUSH2 0x1A57 SWAP2 SWAP1 PUSH2 0x2519 JUMP JUMPDEST DUP3 MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x1A85 JUMPI PUSH1 0x40 MLOAD PUSH4 0x63A056DD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD PUSH1 0x2 DUP2 DUP5 ADD DUP2 ADD MLOAD SWAP7 POP SWAP1 SWAP2 PUSH2 0x1AA3 DUP3 DUP5 PUSH2 0x2519 JUMP JUMPDEST SWAP1 MSTORE POP SWAP4 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x4 PUSH2 0x1AC3 SWAP2 SWAP1 PUSH2 0x2519 JUMP JUMPDEST DUP3 MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x1AF1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x63A056DD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD PUSH1 0x4 DUP2 DUP5 ADD DUP2 ADD MLOAD SWAP7 POP SWAP1 SWAP2 PUSH2 0x1AA3 DUP3 DUP5 PUSH2 0x2519 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x8 PUSH2 0x1B22 SWAP2 SWAP1 PUSH2 0x2519 JUMP JUMPDEST DUP3 MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x1B50 JUMPI PUSH1 0x40 MLOAD PUSH4 0x63A056DD PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 ADD PUSH2 0x3ED JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD PUSH1 0x8 DUP2 DUP5 ADD DUP2 ADD MLOAD SWAP7 POP SWAP1 SWAP2 PUSH2 0x1AA3 DUP3 DUP5 PUSH2 0x2519 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 PUSH1 0xFF AND GT ISZERO PUSH2 0x1B84 JUMPI PUSH2 0x1B84 PUSH2 0x2545 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0xFF AND DUP5 MLOAD GT PUSH2 0x1B98 JUMPI DUP4 MLOAD PUSH2 0x1B9D JUMP JUMPDEST DUP3 PUSH1 0xFF AND JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1BDE JUMPI DUP1 PUSH1 0x8 MUL DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1BC0 JUMPI PUSH2 0x1BC0 PUSH2 0x21F8 JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 SHR SWAP3 SWAP1 SWAP3 OR SWAP2 PUSH1 0x1 ADD PUSH2 0x1BA2 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1BEE PUSH2 0x1D73 JUMP JUMPDEST DUP2 MLOAD MLOAD DUP3 SWAP1 PUSH1 0x0 SUB PUSH2 0x1C13 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9036D47 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 PUSH1 0x1 JUMPDEST DUP1 ISZERO PUSH2 0x1C96 JUMPI PUSH2 0x1C33 DUP10 PUSH2 0x19E2 JUMP JUMPDEST SWAP6 POP DUP2 PUSH2 0x1C3F DUP2 PUSH2 0x252C JUMP JUMPDEST PUSH1 0x7 PUSH1 0x5 DUP10 SWAP1 SHR AND SWAP7 POP PUSH1 0x1F DUP9 AND SWAP6 POP SWAP3 POP POP PUSH1 0x5 NOT DUP6 ADD PUSH2 0x1C8E JUMPI PUSH1 0x20 DUP10 ADD MLOAD PUSH2 0x1C6A DUP11 DUP7 PUSH2 0x102D JUMP JUMPDEST SWAP4 POP DUP1 DUP11 PUSH1 0x20 ADD MLOAD PUSH2 0x1C7C SWAP2 SWAP1 PUSH2 0x24B7 JUMP JUMPDEST PUSH2 0x1C86 SWAP1 DUP5 PUSH2 0x2519 JUMP JUMPDEST SWAP3 POP POP PUSH2 0x1C24 JUMP JUMPDEST POP PUSH1 0x0 PUSH2 0x1C24 JUMP JUMPDEST PUSH1 0x7 PUSH1 0xFF DUP7 AND GT ISZERO PUSH2 0x1CC0 JUMPI PUSH1 0x40 MLOAD PUSH4 0xBD2AC879 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0xFF DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3ED JUMP JUMPDEST POP PUSH1 0x40 DUP1 MLOAD PUSH1 0xC0 DUP2 ADD DUP3 MSTORE SWAP9 DUP10 MSTORE PUSH1 0xFF SWAP6 DUP7 AND PUSH1 0x20 DUP11 ADD MSTORE SWAP4 DUP6 AND SWAP4 DUP9 ADD SWAP4 SWAP1 SWAP4 MSTORE SWAP3 AND PUSH1 0x60 DUP7 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND PUSH1 0x80 DUP7 ADD MSTORE AND PUSH1 0xA0 DUP5 ADD MSTORE POP SWAP1 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x18 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO PUSH2 0x1D20 JUMPI POP PUSH1 0x0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1C DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO PUSH2 0x1D4F JUMPI PUSH1 0x18 DUP3 PUSH1 0x60 ADD MLOAD PUSH2 0x1D41 SWAP2 SWAP1 PUSH2 0x24CA JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x1 SWAP1 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MLOAD PUSH1 0x40 MLOAD PUSH4 0x6D785B13 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0xFF SWAP1 SWAP2 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3ED JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x100 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 PUSH1 0xC0 DUP3 ADD SWAP1 DUP2 MSTORE PUSH1 0x0 PUSH1 0xE0 DUP4 ADD MSTORE DUP2 SWAP1 DUP2 MSTORE PUSH1 0x0 PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x40 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x80 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0xA0 SWAP1 SWAP2 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1DCF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1DE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x1DF2 DUP2 PUSH2 0x1DBA JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x1E02 DUP2 PUSH2 0x1DBA JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1E28 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1E45 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x1E56 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1E6C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x1E7E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1EAA JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1E92 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x1ECB DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x1E8F JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP6 DUP2 MSTORE PUSH1 0xA0 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0x1EF8 PUSH1 0xA0 DUP4 ADD DUP8 PUSH2 0x1EB3 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x1F0A DUP2 DUP8 PUSH2 0x1EB3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP6 SWAP1 SWAP6 AND PUSH1 0x60 DUP5 ADD MSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x80 SWAP1 SWAP2 ADD MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xC0 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1F6E JUMPI PUSH2 0x1F6E PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP1 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1F6E JUMPI PUSH2 0x1F6E PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xA0 DUP2 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x1F6E JUMPI PUSH2 0x1F6E PUSH2 0x1F36 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 PUSH2 0x1FE0 JUMPI PUSH2 0x1FE0 PUSH2 0x1F36 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1028 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1028 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xC0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2022 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x202A PUSH2 0x1F4C JUMP JUMPDEST SWAP1 POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2042 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x40 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x2054 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x205C PUSH2 0x1F74 JUMP JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2072 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x2083 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x209C JUMPI PUSH2 0x209C PUSH2 0x1F36 JUMP JUMPDEST PUSH2 0x20AF PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x1FB8 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP8 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x20C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 SWAP3 DUP3 ADD DUP4 ADD MSTORE DUP4 MSTORE SWAP3 DUP4 ADD CALLDATALOAD DUP3 DUP5 ADD MSTORE POP DUP3 MSTORE PUSH2 0x20F0 SWAP1 DUP4 ADD PUSH2 0x1FFF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2101 PUSH1 0x40 DUP4 ADD PUSH2 0x1FFF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x2112 PUSH1 0x60 DUP4 ADD PUSH2 0x1FFF JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x2123 PUSH1 0x80 DUP4 ADD PUSH2 0x1FE8 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x2134 PUSH1 0xA0 DUP4 ADD PUSH2 0x1FE8 JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2151 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2167 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0xA0 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x2179 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2181 PUSH2 0x1F96 JUMP JUMPDEST DUP2 CALLDATALOAD PUSH2 0x100 DUP2 LT PUSH2 0x2191 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP3 ADD CALLDATALOAD PUSH1 0x14 DUP2 LT PUSH2 0x21A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP3 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x21C0 PUSH1 0x60 DUP4 ADD PUSH2 0x1FE8 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP3 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x21DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x21EA DUP7 DUP3 DUP6 ADD PUSH2 0x2010 JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD PUSH1 0x40 DUP4 MSTORE DUP1 DUP6 MLOAD DUP1 DUP4 MSTORE PUSH1 0x60 DUP6 ADD SWAP2 POP PUSH1 0x60 DUP2 PUSH1 0x5 SHL DUP7 ADD ADD SWAP3 POP PUSH1 0x20 DUP8 ADD PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x2267 JUMPI PUSH1 0x5F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x2252 DUP6 DUP4 MLOAD PUSH2 0x1EB3 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x2236 JUMP JUMPDEST POP POP POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE DUP1 DUP5 SLOAD DUP1 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP2 POP PUSH1 0x20 DUP2 PUSH1 0x5 SHL DUP5 ADD ADD DUP7 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2356 JUMPI DUP6 DUP4 SUB PUSH1 0x1F NOT ADD DUP6 MSTORE DUP2 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x22BE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x22DC JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP5 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 DUP5 REVERT JUMPDEST DUP2 DUP8 MSTORE PUSH1 0x20 DUP8 ADD DUP2 DUP1 ISZERO PUSH2 0x22F7 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x230D JUMPI PUSH2 0x233B JUMP JUMPDEST PUSH1 0xFF NOT DUP6 AND DUP3 MSTORE DUP4 ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD SWAP6 POP PUSH2 0x233B JUMP JUMPDEST PUSH1 0x0 DUP9 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x2335 JUMPI DUP2 SLOAD DUP5 DUP3 ADD MSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x20 ADD PUSH2 0x2319 JUMP JUMPDEST DUP4 ADD SWAP7 POP POP JUMPDEST POP POP POP PUSH1 0x20 SWAP8 SWAP1 SWAP8 ADD SWAP7 POP SWAP1 SWAP4 POP POP PUSH1 0x1 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x2294 JUMP JUMPDEST POP SWAP1 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2376 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP 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 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 SUB PUSH2 0x23CB JUMPI PUSH2 0x23CB PUSH2 0x2393 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0xCD9 JUMPI PUSH2 0xCD9 PUSH2 0x2393 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x241C JUMPI PUSH2 0x241C PUSH2 0x23F3 JUMP JUMPDEST DUP1 PUSH1 0xFF DUP5 AND DIV SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 SUB PUSH2 0x23CB JUMPI PUSH2 0x23CB PUSH2 0x2393 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND DUP1 PUSH2 0x245A JUMPI PUSH2 0x245A PUSH2 0x23F3 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND DIV SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x2481 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x1E8F JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x2495 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x1E8F JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0xFF DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0xCD9 JUMPI PUSH2 0xCD9 PUSH2 0x2393 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xCD9 JUMPI PUSH2 0xCD9 PUSH2 0x2393 JUMP JUMPDEST PUSH1 0xFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0xCD9 JUMPI PUSH2 0xCD9 PUSH2 0x2393 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 DUP2 AND DUP4 DUP3 AND MUL SWAP1 DUP2 AND SWAP1 DUP2 DUP2 EQ PUSH2 0x988 JUMPI PUSH2 0x988 PUSH2 0x2393 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x2514 JUMPI PUSH2 0x2514 PUSH2 0x23F3 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xCD9 JUMPI PUSH2 0xCD9 PUSH2 0x2393 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x253E JUMPI PUSH2 0x253E PUSH2 0x2393 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID PUSH2 0x1647 CALLDATASIZE PC 0xE8 PUSH28 0x23E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58FF611647 CALLDATASIZE PC 0xE8 PUSH28 0x23E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58F9A26469 PUSH17 0x66735822122004DF0E6774B6EE639155DA 0xC5 0xBE NUMBER DUP11 0xEB 0xD5 DUP7 DUP15 GASPRICE 0xB7 PUSH24 0x61428D3AEFA6C59A6BE964736F6C634300081C0033000000 ","sourceMap":"307:8443:30:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6036:1864;;;;;;;;;;-1:-1:-1;6036:1864:30;;;;;:::i;:::-;;:::i;:::-;;;942:25:51;;;930:2;915:18;6036:1864:30;;;;;;;;2635:3393;;;;;;;;;;-1:-1:-1;2635:3393:30;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;1882:745::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7485:31:51;;;7467:50;;7455:2;7440:18;1882:745:30;7315:208:51;6036:1864:30;6334:19;6385:79;;;-1:-1:-1;;;;;;;;;;;6385:79:30;;;;;;-1:-1:-1;;6493:64:30;;6475:1418;;6614:15;;;6627:1;6614:15;;;;;;;;;6584:27;;6614:15;;;;;;;;;;;;;;;;;;;;6584:45;;6661:82;6710:31;6661:18;:82::i;:::-;6644:11;6656:1;6644:14;;;;;;;;:::i;:::-;;;;;;:99;;;;6758:27;6788:43;-1:-1:-1;;;;;6788:80:30;;6891:11;6925:6;-1:-1:-1;;;;;;;;;;;8263:25:30;8154:152;6925:6;:38;;6788:194;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6758:224;;7031:9;-1:-1:-1;;;;;7011:52:30;;7089:9;7132:10;7161:298;;;;;;;;981:3;7161:298;;;;;;7218:6;-1:-1:-1;;;;;;;;;;;8263:25:30;8154:152;7218:6;:29;;:42;;;;;7161:298;;7301:29;:51;-1:-1:-1;;;;;7301:51:30;;;;;7161:298;;;;;7478:174;;;;;;;;7540:4;7478:174;;7578:54;-1:-1:-1;;;7578:54:30;;;;;7478:174;;;;;;7011:656;;-1:-1:-1;;;;;;7011:656:30;;;;;;;;;;11043:25:51;;;;11108:13;;11104:26;;11084:18;;;11077:54;11177:15;;;11171:22;11167:35;;;11147:18;;;11140:63;11249:15;;;11243:22;11239:47;;;11219:18;;;11212:75;11328:13;;-1:-1:-1;;;;;11324:39:51;11303:19;;;11296:68;11405:22;;11401:37;11380:19;;;11373:66;7011:656:30;;11015:19:51;;;;;7011:656:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7682:79;;;;-1:-1:-1;;;;;;;;;;;7682:79:30;;;;;;;;:93;;;7790:57;;;:44;:57;;;;;:91;;;6997:670;-1:-1:-1;;;6475:1418:30;6036:1864;;;;;:::o;2635:3393::-;2822:55;3098:62;;;:44;:62;;;;;;;2892:33;;;;2822:55;3098:62;3266:144;;;;-1:-1:-1;;;3266:144:30;;11841:2:51;3266:144:30;;;11823:21:51;11880:2;11860:18;;;11853:30;-1:-1:-1;;;11899:18:51;;;11892:46;11955:18;;3266:144:30;;;;;;;;;3527:80;;;;-1:-1:-1;;;;;;;;;;;3527:80:30;;;;;;:150;;3505:227;;;;-1:-1:-1;;;3505:227:30;;12186:2:51;3505:227:30;;;12168:21:51;12225:2;12205:18;;;12198:30;12264:28;12244:18;;;12237:56;12310:18;;3505:227:30;11984:350:51;3505:227:30;3794:46;3843:53;;;;3854:20;3843:53;:::i;:::-;3794:102;-1:-1:-1;4029:28:30;3997;;:60;;;;;;;;:::i;:::-;;3975:134;;;;-1:-1:-1;;;3975:134:30;;12673:2:51;3975:134:30;;;12655:21:51;12712:2;12692:18;;;12685:30;12751:26;12731:18;;;12724:54;12795:18;;3975:134:30;12471:348:51;3975:134:30;4268:27;4234:21;:30;;;:61;;;;;;;;:::i;:::-;;4212:132;;;;-1:-1:-1;;;4212:132:30;;13026:2:51;4212:132:30;;;13008:21:51;13065:2;13045:18;;;13038:30;-1:-1:-1;;;13084:18:51;;;13077:50;13144:18;;4212:132:30;12824:344:51;4212:132:30;4478:80;;;;-1:-1:-1;;;;;;;;;;;4478:80:30;;;;;-1:-1:-1;;4478:132:30;;4732:38;:21;:36;:38::i;:::-;4695:75;;5161:23;:9;5171:1;5161:12;;;;;;;;:::i;:::-;;;;;;;:21;:23::i;:::-;-1:-1:-1;;;;;5161:28:30;5188:1;5161:28;5153:65;;;;-1:-1:-1;;;5153:65:30;;13375:2:51;5153:65:30;;;13357:21:51;13414:2;13394:18;;;13387:30;13453:26;13433:18;;;13426:54;13497:18;;5153:65:30;13173:348:51;5153:65:30;5292:25;:9;5302:1;5292:12;;;;;;;;:::i;:::-;;;;;;;:23;:25::i;:::-;5270:47;;5348:25;:9;5358:1;5348:12;;;;;;;;:::i;:25::-;5328:45;;5400:122;5431:80;5471:25;:9;5481:1;5471:12;;;;;;;;:::i;:25::-;5431:21;:80::i;:::-;5400:16;:122::i;:::-;5384:138;;5533:32;5590:23;:9;5600:1;5590:12;;;;;;;;:::i;:23::-;5533:81;;5634:23;:9;5644:1;5634:12;;;;;;;;:::i;:23::-;5625:32;-1:-1:-1;;;;;;;;;;;;5737:15:30;;:18;;-1:-1:-1;;;5737:18:30;;-1:-1:-1;;;;;5737:18:30;;:15;:18;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;5737:18:30;;;;;-1:-1:-1;;;;;5737:18:30;;;;;;;5903:50;5922:6;-1:-1:-1;;;;;;;;;;;8263:25:30;8154:152;5922:6;:30;-1:-1:-1;;;;;5903:18:30;;;;-1:-1:-1;;;5922:30:30;;;5903:18;:50::i;:::-;5899:122;;;6003:6;-1:-1:-1;;;;;;;;;;;5970:29:30;;:39;;:29;;:39;;;;-1:-1:-1;;;;;5970:39:30;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;5970:39:30;;;;;-1:-1:-1;;;;;5970:39:30;;;;;;5899:122;3052:2976;;;2635:3393;;;;;;;;;:::o;1882:745::-;2011:6;2035:27;2011:6;2077:30;;:62;;;;;;;;:::i;:::-;;2073:151;;2170:42;:23;:40;:42::i;:::-;2156:56;;2073:151;2290:28;2256:30;;:62;;;;;;;;:::i;:::-;;:151;;;;-1:-1:-1;2339:68:30;-1:-1:-1;;;;;;;;;;;2376:30:30;2339:33;;;;-1:-1:-1;;;;;2339:36:30;;;;-1:-1:-1;;;2376:30:30;;;2339:36;:68::i;:::-;2256:195;;;;;2428:11;:18;2450:1;2428:23;2256:195;2234:259;;;;-1:-1:-1;;;2234:259:30;;14265:2:51;2234:259:30;;;14247:21:51;14304:2;14284:18;;;14277:30;-1:-1:-1;;;14323:18:51;;;14316:44;14377:18;;2234:259:30;14063:338:51;2234:259:30;2594:11;2606:1;2594:14;;;;;;;;:::i;:::-;;;;;;;2560:11;2572:1;2560:14;;;;;;;;:::i;:::-;;;;;;;2526:11;2538:1;2526:14;;;;;;;;:::i;:::-;;;;;;;:48;;;;:::i;:::-;:82;;;;:::i;44444:389:48:-;44588:2;44578:13;;;;;44525;44578;;;;;44525;44556:19;;44578:13;;;;;;;;;;;-1:-1:-1;44578:13:48;44556:35;;44607:8;44602:192;44622:6;:13;44617:2;:18;;;44602:192;;;44669:40;44706:1;44686:8;44695:6;44700:1;44695:2;:6;:::i;:::-;44686:16;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;44686:21:48;;;;44680:28;;44669:10;:40::i;:::-;44653:6;44660:5;;;;:::i;:::-;;;44653:13;;;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;44653:56:48;;;;;;;;-1:-1:-1;44740:42:48;44757:8;44766:6;44771:1;44766:2;:6;:::i;:::-;44757:16;;;;;;;;;:::i;:::-;;44776:4;44751:30;44740:10;:42::i;:::-;44724:6;44731:5;;;;:::i;:::-;;;44724:13;;;;;;;;;;:::i;:::-;;;;:58;-1:-1:-1;;;;;44724:58:48;;;;;;;;;44602:192;;;-1:-1:-1;44818:6:48;44444:389;-1:-1:-1;;44444:389:48:o;29285:222::-;29428:24;29381:4;29387:20;27999:17;28011:4;27999:11;:17::i;:::-;27998:18;:72;;;;;28054:16;28037:33;;;;;;;;:::i;:::-;:4;:13;;;:33;;;;;;;;:::i;:::-;;27998:72;27976:146;;;;-1:-1:-1;;;27976:146:48;;15090:2:51;27976:146:48;;;15072:21:51;15129:2;15109:18;;;15102:30;-1:-1:-1;;;15148:18:51;;;15141:53;15211:18;;27976:146:48;14888:347:51;27976:146:48;29477:22:::1;:4;:10;;;:20;:22::i;:::-;29470:29;;28153::::0;28171:4;:10;;;28153:17;:29::i;:::-;28137:4;:13;;:45;;;;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;29285:222;;;;;:::o;17873:211:50:-;17981:6;17945:4;966:1;1787:8;1769:26;;:4;:14;;;:26;;;1765:101;;1833:14;;;;;1813:45;;-1:-1:-1;;;1813:45:50;;15440:4:51;15428:17;;;1813:45:50;;;15410:36:51;15482:17;;;15462:18;;;15455:45;15383:18;;1813:45:50;15240:266:51;1765:101:50;18006:72:::1;18025:4;:11;;;18045:4;:26;;;18006:10;:72::i;:::-;17999:79;;1872:1;17873:211:::0;;;;;:::o;16224:702::-;16337:18;16298:4;1121:1;1787:8;1769:26;;:4;:14;;;:26;;;1765:101;;1833:14;;;;;1813:45;;-1:-1:-1;;;1813:45:50;;15440:4:51;15428:17;;;1813:45:50;;;15410:36:51;15482:17;;;15462:18;;;15455:45;15383:18;;1813:45:50;15240:266:51;1765:101:50;16378:51:::1;16389:4;:11;;;16402:4;:26;;;16378:10;:51::i;:::-;-1:-1:-1::0;;;;;16367:62:50::1;:8;::::0;::::1;:62:::0;;;-1:-1:-1;;16440:22:50;16436:485:::1;;16473:10;16492:354;16500:5;16492:354;;16518:13;16534:89;16574:4;:11;;;16598:4;:14;;;16534:27;:89::i;:::-;16518:105:::0;-1:-1:-1;;;;;;16638:19:50;;::::1;;16634:203;;;16717:4:::0;16736:32:::1;16757:10;16766:1;16757:6:::0;:10:::1;:::i;:::-;16736:11:::0;;;:20:::1;:32::i;:::-;16686:95;;;;;;;;;:::i;:::-;;;;;;;;;;;;;16672:110;;16634:203;;;16821:4;16813:12;;16634:203;16507:339;16492:354;;;16464:389;16436:485;;;16903:8;::::0;::::1;::::0;16882:11;;:30:::1;::::0;:20:::1;:30::i;:::-;16868:45;;;;45708:531:48::0;45780:19;45882:1;45862:9;45856:23;:27;;;;;:::i;:::-;;-1:-1:-1;;;;;45846:38:48;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45846:38:48;;45837:47;;45904:9;45899:322;45919:6;:13;45915:1;:17;45899:322;;;45959:11;45973:46;46000:9;46015:1;46011;:5;45994:23;;;;;;;;:::i;:::-;;;;;;;45973:14;:46::i;:::-;45959:60;;46038:11;46052:50;46079:9;46094:1;46090;:5;46098:1;46090:9;46073:27;;;;;;;;:::i;46052:50::-;46038:64;;46153:5;46140;46148:2;46140:10;:18;46133:26;;46121:6;46128:1;46121:9;;;;;;;;:::i;:::-;;;;:38;-1:-1:-1;;;;;46121:38:48;;;;;;;;-1:-1:-1;;;45934:4:48;;45899:322;;;;45708:531;;;:::o;43050:124::-;43113:7;43148:17;43158:6;43148:9;:17::i;:::-;43140:26;;;43050:124;-1:-1:-1;;43050:124:48:o;37831:134::-;-1:-1:-1;;;;;37916:41:48;;;;;;;37831:134;;;;;:::o;31719:217::-;31862:15;31816:4;31822:20;27999:17;28011:4;27999:11;:17::i;:::-;27998:18;:72;;;;;28054:16;28037:33;;;;;;;;:::i;:::-;:4;:13;;;:33;;;;;;;;:::i;:::-;;27998:72;27976:146;;;;-1:-1:-1;;;27976:146:48;;15090:2:51;27976:146:48;;;15072:21:51;15129:2;15109:18;;;15102:30;-1:-1:-1;;;15148:18:51;;;15141:53;15211:18;;27976:146:48;14888:347:51;27976:146:48;31902:26:::1;:4;:10;;;:24;:26::i;52278:145::-:0;52334:6;52369:2;52360:6;:11;;;:55;;52403:11;:6;52412:2;52403:11;:::i;:::-;52396:19;;52360:55;;;52381:11;:6;52390:2;52381:11;:::i;:::-;52374:19;;52353:62;52278:145;-1:-1:-1;;52278:145:48:o;27624:124::-;27692:4;27716:24;27728:4;:11;;;27716;:24::i;6109:1231:50:-;6220:19;6182:4;1170:1;1787:8;1769:26;;:4;:14;;;:26;;;1765:101;;1833:14;;;;;1813:45;;-1:-1:-1;;;1813:45:50;;15440:4:51;15428:17;;;1813:45:50;;;15410:36:51;15482:17;;;15462:18;;;15455:45;15383:18;;1813:45:50;15240:266:51;1765:101:50;6336:10:::1;6349:51;6360:4;:11;;;6373:4;:26;;;6349:10;:51::i;:::-;6336:64:::0;-1:-1:-1;6426:7:50::1;6336:64:::0;6432:1:::1;6426:7;:::i;:::-;-1:-1:-1::0;;;;;6415:19:50::1;-1:-1:-1::0;;;;;6415:19:50::1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;6407:27;;6446:7;6441:739;6464:3;-1:-1:-1::0;;;;;6459:8:50::1;:2;:8;6441:739;;;6536:13;:4;:11;:13::i;:::-;6529:20;;6635:11;:4;:9;:11::i;:::-;6623:5;6629:2;6623:9;;;;;;;;:::i;:::-;;;;;;:23;;;;1170:1;6659:34;;:4;:14;;;:34;;::::0;6655:518:::1;;6706:23;6732:16;:4;:14;:16::i;:::-;6706:42;;6831:9;6860:1;6841:9;:16;:20;;;;:::i;:::-;6831:31;;;;;;;;:::i;:::-;;;;;;;6824:38;;6695:177;6655:518;;;1217:1;6882:32;;:4;:14;;;:32;;::::0;6878:295:::1;;6927:23;6953:14;:4;:12;:14::i;6878:295::-;7152:11;:4;:9;:11::i;:::-;;6878:295;6469:5;;6441:739;;;;7330:4;7317:5;7323:3;-1:-1:-1::0;;;;;7317:10:50::1;;;;;;;;;:::i;:::-;;;;;;:17;;;;6244:1096;6109:1231:::0;;;;;:::o;32034:743:48:-;32113:20;32188:10;:4;2152:11:50;:16;;:23;2130:18;;;;;:45;;;2043:138;32188:10:48;32183:587;;32237:1;32219:4;:14;;;:19;;;32215:544;;32335:14;;;;-1:-1:-1;;;32294:40:48;:56;;;;;;;;;:::i;:::-;;32266:87;;;;;;;;:::i;32215:544::-;32393:4;:14;;;:19;;32411:1;32393:19;32389:370;;32437:4;:26;;;:32;;32467:2;32437:32;:68;;;;32473:4;:26;;;:32;;32503:2;32473:32;32437:68;32433:311;;;-1:-1:-1;32537:19:48;;32034:743;-1:-1:-1;32034:743:48:o;32433:311::-;32634:2;32604:4;:26;;;:32;;;;:68;;;;;32670:2;32640:4;:26;;;:32;;;;32604:68;32600:144;;;-1:-1:-1;32704:20:48;;32034:743;-1:-1:-1;32034:743:48:o;32600:144::-;32034:743;;;:::o;8833:697:50:-;8972:6;9018:2;8994:21;:26;;;8990:77;;;-1:-1:-1;9031:28:50;;;;;8990:77;9077:21;:27;;9102:2;9077:27;9073:75;;9122:18;:6;:16;:18::i;:::-;9115:25;;;;;;9073:75;9158:21;:27;;9183:2;9158:27;9154:76;;9203:19;:6;:17;:19::i;:::-;9196:26;;;;;;9154:76;9240:21;:27;;9265:2;9240:27;9236:76;;9285:19;:6;:17;:19::i;:::-;9278:26;;;;;;9236:76;9322:21;:27;;9347:2;9322:27;9318:76;;9367:19;:6;:17;:19::i;:::-;9360:26;;;;9318:76;9404:21;:27;;9429:2;9404:27;9400:67;;-1:-1:-1;;;;;;9442:17:50;;9400:67;9480:44;;-1:-1:-1;;;9480:44:50;;16669:4:51;16657:17;;9480:44:50;;;16639:36:51;16612:18;;9480:44:50;16495:186:51;19017:541:50;19159:10;19181:17;19201:18;:6;:16;:18::i;:::-;19181:38;;19230:11;:19;;19245:4;19230:19;19226:59;;-1:-1:-1;;;;;19260:17:50;;;;;19226:59;19297;19316:6;19331:11;19345:4;19331:18;19297:10;:59::i;:::-;19291:65;-1:-1:-1;;;;;;19367:17:50;;;;19363:190;;19402:26;;-1:-1:-1;;;19402:26:50;;-1:-1:-1;;;;;7485:31:51;;19402:26:50;;;7467:50:51;7440:18;;19402:26:50;7315:208:51;19363:190:50;19460:16;19446:31;;19460:16;19475:1;19460:16;;;;19446:31;19442:111;;19495:50;;-1:-1:-1;;;19495:50:50;;19516:16;19531:1;19516:16;;;;19495:50;;;15410:36:51;19516:16:50;15482:17:51;;15462:18;;;15455:45;15383:18;;19495:50:50;15240:266:51;12423:1074:49;12545:17;12591:6;-1:-1:-1;;;;;12581:17:49;-1:-1:-1;;;;;12581:17:49;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12581:17:49;;12574:24;;12629:12;12624:764;12655:6;-1:-1:-1;;;;;12647:14:49;:5;-1:-1:-1;;;;;12647:14:49;;12624:764;;;12684:10;12697:17;12707:6;12697:9;:17::i;:::-;12684:30;-1:-1:-1;12736:4:49;12729:11;;:16;12725:617;;12771:4;12764;:11;;;12760:571;;;12836:17;12846:6;12836:9;:17::i;:::-;12856:4;12836:24;12816:1;12800:4;12807;12800:11;12799:18;;;;:62;12792:69;;12886:1;12876:11;;;;12760:571;;;12918:4;12911;:11;;;12907:424;;;13034:17;13044:6;13034:9;:17::i;:::-;13054:4;13034:24;13014:1;12985:17;12995:6;12985:9;:17::i;:::-;13005:4;12985:24;12984:31;;;;12964:2;12948:4;12955;12948:11;12947:19;;;;:68;:112;12939:120;;13084:1;13074:11;;;;12907:424;;;13266:17;13276:6;13266:9;:17::i;:::-;13286:4;13266:24;13244:1;13215:17;13225:6;13215:9;:17::i;:::-;13235:4;13215:24;13214:31;;13194:2;13165:17;13175:6;13165:9;:17::i;:::-;13185:4;13165:24;13164:32;;;;13144:2;13128:4;13135;13128:11;13127:19;;;;:69;:118;:164;13120:171;;13316:1;13306:11;;;;12907:424;13373:4;13366:12;;13352:4;13357:5;-1:-1:-1;;;;;13352:11:49;;;;;;;;;:::i;:::-;;;;:26;-1:-1:-1;;;;;13352:26:49;;;;;;;;-1:-1:-1;;12663:8:49;;12624:764;;;-1:-1:-1;13456:20:49;;;13463:4;12423:1074;-1:-1:-1;12423:1074:49:o;51545:494:48:-;51606:5;51639:4;51628:7;:15;;;;:34;;;;;51658:4;51647:7;:15;;;;51628:34;51624:408;;;51686:14;51696:4;51686:7;:14;:::i;51624:408::-;51751:4;51740:7;:15;;;;:34;;;;;51770:4;51759:7;:15;;;;51740:34;51736:296;;;51798:14;51808:4;51798:7;:14;:::i;:::-;:19;;51815:2;51798:19;:::i;51736:296::-;51870:4;51859:7;:15;;;;:34;;;;;51889:4;51878:7;:15;;;;51859:34;51855:177;;;51917:14;51927:4;51917:7;:14;:::i;51855:177::-;51989:31;;-1:-1:-1;;;51989:31:48;;17250:2:51;51989:31:48;;;17232:21:51;17289:2;17269:18;;;17262:30;-1:-1:-1;;;17308:18:51;;;17301:51;17369:18;;51989:31:48;17048:345:51;43321:131:48;43384:7;43419:24;43432:6;43440:2;43419:12;:24::i;18287:550:50:-;18402:22;18364:4;1170:1;1787:8;1769:26;;:4;:14;;;:26;;;1765:101;;1833:14;;;;;1813:45;;-1:-1:-1;;;1813:45:50;;15440:4:51;15428:17;;;1813:45:50;;;15410:36:51;15482:17;;;15462:18;;;15455:45;15383:18;;1813:45:50;15240:266:51;1765:101:50;18436:13:::1;18452:51;18463:4;:11;;;18476:4;:26;;;18452:10;:51::i;:::-;18436:67:::0;-1:-1:-1;;;;;;18514:19:50;;::::1;;18510:322;;;18566:6;-1:-1:-1::0;;;;;18553:20:50::1;-1:-1:-1::0;;;;;18553:20:50::1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;18553:20:50::1;;18544:29;;18587:7;18582:184;18605:6;-1:-1:-1::0;;;;;18600:11:50::1;:2;:11;18582:184;;;18626:16;18645:23;18656:4;:11;;;18645:10;:23::i;:::-;18626:42;;18692:14;18701:4;18692:8;:14::i;:::-;18679:6;18686:2;18679:10;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18679:27:50;;::::1;:10;::::0;;::::1;::::0;;;;;;;:27;-1:-1:-1;18740:5:50::1;;18582:184;;;;18510:322;;;18795:29;::::0;-1:-1:-1;;;18795:29:50;;-1:-1:-1;;;;;7485:31:51;;18795:29:50::1;::::0;::::1;7467:50:51::0;7440:18;;18795:29:50::1;7315:208:51::0;18510:322:50::1;18429:408;18287:550:::0;;;;;:::o;36693:224:48:-;36756:4;36803:32;36795:4;:40;;;;;;;;:::i;:::-;;:103;;;-1:-1:-1;36864:34:48;36856:4;:42;;;;;;;;:::i;:::-;;36773:136;36693:224;-1:-1:-1;;36693:224:48:o;4400:208:50:-;4471:22;;:::i;:::-;2152:11;;:16;;:23;2130:18;;;;;:45;;4505:98;;4549:11;;4538:23;;:10;:23::i;4505:98::-;-1:-1:-1;4591:4:50;4400:208::o;4049:345::-;4125:22;;:::i;:::-;4166:222;;;;;;;;;4188:11;;-1:-1:-1;;;;;;;;;;;;;;2776:55:49;;;;;;;;2791:11;;2776:55;;-1:-1:-1;2811:13:49;;;;2776:55;;;;4166:222:50;;;;;;;4228:4;:16;;;4166:222;;;;;;4264:4;:14;;;4166:222;;;;;;4310:4;:26;;;4166:222;;;;;;4350:4;:8;;;-1:-1:-1;;;;;4166:222:50;;;;;4372:4;:8;;;-1:-1:-1;;;;;4166:222:50;;;;4159:229;;4049:345;;;:::o;7346:1309::-;7453:19;7417:4;1217:1;1787:8;1769:26;;:4;:14;;;:26;;;1765:101;;1833:14;;;;;1813:45;;-1:-1:-1;;;1813:45:50;;15440:4:51;15428:17;;;1813:45:50;;;15410:36:51;15482:17;;;15462:18;;;15455:45;15383:18;;1813:45:50;15240:266:51;1765:101:50;7585:10:::1;7598:51;7609:4;:11;;;7622:4;:26;;;7598:10;:51::i;:::-;:55;::::0;7652:1:::1;7598:55;:::i;:::-;7585:68:::0;-1:-1:-1;7679:7:50::1;7585:68:::0;7685:1:::1;7679:7;:::i;:::-;-1:-1:-1::0;;;;;7668:19:50::1;-1:-1:-1::0;;;;;7668:19:50::1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;7660:27;;7699:7;7694:801;7717:3;-1:-1:-1::0;;;;;7712:8:50::1;:2;:8;7694:801;;;7789:13;:4;:11;:13::i;:::-;7782:20;;7888:11;:4;:9;:11::i;:::-;7876:5;7882:2;7876:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;:23;7912:6:::1;7917:1;7912:2:::0;:6:::1;:::i;:::-;:11:::0;:50;::::1;;;-1:-1:-1::0;7927:14:50::1;::::0;::::1;::::0;:35:::1;;1121:1;7927:35;;7912:50;7908:580;;;8002:14;::::0;;::::1;::::0;7982:54;;-1:-1:-1;;;7982:54:50;;15440:4:51;15428:17;;;7982:54:50::1;::::0;::::1;15410:36:51::0;1121:1:50::1;15462:18:51::0;;;15455:45;15383:18;;7982:54:50::1;15240:266:51::0;7908:580:50::1;8056:14;::::0;::::1;::::0;:34:::1;;1170:1;8056:34;::::0;:70:::1;;-1:-1:-1::0;8094:14:50::1;::::0;::::1;::::0;:32:::1;;1217:1;8094:32;8056:70;8052:436;;;8166:14;::::0;::::1;::::0;8139:23:::1;::::0;8166:34:::1;;1170:1;8166:34;:96;;8248:14;:4;:12;:14::i;:::-;8166:96;;;8216:16;:4;:14;:16::i;:::-;8139:134;;8363:9;8392:1;8373:9;:16;:20;;;;:::i;:::-;8363:31;;;;;;;;:::i;:::-;;;;;;;8356:38;;8128:276;8052:436;;;8467:11;:4;:9;:11::i;:::-;;8052:436;7722:5;;7694:801;;4614:1135:::0;4683:22;;:::i;:::-;4729:14;;;;:32;;;;:86;;-1:-1:-1;4774:14:50;;;;:41;;1022:1;4774:41;4729:86;:263;;;-1:-1:-1;4841:14:50;;;;:41;;1320:1;4841:41;:91;;;;;4930:2;4900:4;:26;;;:32;;;;4841:91;:140;;;;;4979:2;4949:4;:26;;;:32;;;;4841:140;4717:1009;;;5031:17;:4;:15;:17::i;:::-;-1:-1:-1;;;;;5009:39:50;:4;:11;;;:18;;:39;;;;;;;:::i;:::-;;;-1:-1:-1;;4591:4:50;4400:208::o;4717:1009::-;5076:14;;;;:35;;1121:1;5076:35;;:84;;-1:-1:-1;5126:14:50;;;;:34;;1071:1;5126:34;5076:84;5062:664;;;5177:10;5190:51;5201:4;:11;;;5214:4;:26;;;5190:10;:51::i;:::-;5177:64;;5272:3;-1:-1:-1;;;;;5250:25:50;:4;:11;;;:18;;:25;;;;;;;:::i;:::-;;;-1:-1:-1;5062:664:50;;-1:-1:-1;5062:664:50;;5301:14;;;;:34;;1170:1;5301:34;;:79;;-1:-1:-1;5348:14:50;;;;:32;;1217:1;5348:32;5301:79;5289:437;;;5409:51;5420:4;:11;;;5433:4;:26;;;5409:10;:51::i;:::-;-1:-1:-1;;;;;5398:62:50;:8;;;:62;-1:-1:-1;4591:4:50;4400:208::o;5289:437::-;5493:14;;;;:41;;1320:1;5493:41;;;:159;;;5560:4;:26;;;:32;;5590:2;5560:32;;:81;;;;;5609:4;:26;;;:32;;5639:2;5609:32;;5560:81;5480:246;;;5669:49;;-1:-1:-1;;;5669:49:50;;18120:2:51;5669:49:50;;;18102:21:51;18159:2;18139:18;;;18132:30;18198:34;18178:18;;;18171:62;-1:-1:-1;;;18249:18:51;;;18242:37;18296:19;;5669:49:50;17918:403:51;13731:315:49;13857:11;13808:6;:13;;;13823:6;:11;;;:18;1012:6;1004:5;:14;1000:75;;;1036:31;;-1:-1:-1;;;1036:31:49;;;;;18500:25:51;;;18541:18;;;18534:34;;;18473:18;;1036:31:49;18326:248:51;1000:75:49;13900:11;;13932:13:::1;::::0;::::1;::::0;;13985:25;;;13999:1:::1;13985:25:::0;13979:32;;-1:-1:-1;13932:13:49;;;14024:16:::1;13932:13:::0;14024:16:::1;:::i;:::-;;;::::0;::::1;13873:173;;13731:315:::0;;;;;:::o;14288:323::-;14419:12;14366:6;:13;;;14382:1;14366:17;;;;:::i;:::-;14385:11;;:18;1004:14;;;1000:75;;;1036:31;;-1:-1:-1;;;1036:31:49;;;;;18500:25:51;;;18541:18;;;18534:34;;;18473:18;;1036:31:49;18326:248:51;1000:75:49;14463:11;;14495:13:::1;::::0;::::1;::::0;;14562:1:::1;14548:25:::0;;;;;14542:32;;-1:-1:-1;14495:13:49;;14587:18:::1;14562:1:::0;14495:13;14587:18:::1;:::i;:::-;::::0;;-1:-1:-1;14288:323:49;;;-1:-1:-1;;;;;14288:323:49:o;14853:::-;14984:12;14931:6;:13;;;14947:1;14931:17;;;;:::i;:::-;14950:11;;:18;1004:14;;;1000:75;;;1036:31;;-1:-1:-1;;;1036:31:49;;;;;18500:25:51;;;18541:18;;;18534:34;;;18473:18;;1036:31:49;18326:248:51;1000:75:49;15028:11;;15060:13:::1;::::0;::::1;::::0;;15127:1:::1;15113:25:::0;;;;;15107:32;;-1:-1:-1;15060:13:49;;15152:18:::1;15127:1:::0;15060:13;15152:18:::1;:::i;15418:323::-:0;15549:12;15496:6;:13;;;15512:1;15496:17;;;;:::i;:::-;15515:11;;:18;1004:14;;;1000:75;;;1036:31;;-1:-1:-1;;;1036:31:49;;;;;18500:25:51;;;18541:18;;;18534:34;;;18473:18;;1036:31:49;18326:248:51;1000:75:49;15593:11;;15625:13:::1;::::0;::::1;::::0;;15692:1:::1;15678:25:::0;;;;;15672:32;;-1:-1:-1;15625:13:49;;15717:18:::1;15692:1:::0;15625:13;15717:18:::1;:::i;43594:413:48:-:0;43695:16;43749:2;43736:9;:15;;;;43729:23;;;;:::i;:::-;43788:9;43816;43800:25;;:6;:13;:25;:53;;43840:6;:13;43800:53;;;43828:9;43800:53;;;43788:65;;43873:7;43868:121;43891:4;43886:2;:9;43868:121;;;43966:2;43971:1;43966:6;43943;43950:2;43943:10;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;43943:10:48;43935:38;;43923:50;;;;;43897:5;;43868:121;;;;43763:237;43594:413;;;;:::o;3010:1033:50:-;3120:11;;:::i;:::-;1949;;:18;3098:6;;1949:11;:23;1945:79;;1990:26;;-1:-1:-1;;;1990:26:50;;;;;;;;;;;1945:79;3143:17:::1;3185:3;3143:17:::0;-1:-1:-1;;;;;3143:17:50;3293:4:::1;3304:492;3311:8;3304:492;;;3401:18;:6;:16;:18::i;:::-;3387:32:::0;-1:-1:-1;3428:6:50;::::1;::::0;::::1;:::i;:::-;3455:16:::0;3470:1:::1;3455:16:::0;;;;;-1:-1:-1;3518:4:50::1;3504:18:::0;::::1;::::0;-1:-1:-1;3428:6:50;-1:-1:-1;;;;3569:27:50;;3565:224:::1;;3624:13;::::0;::::1;::::0;3654:41:::1;3624:6:::0;3673:21;3654:10:::1;:41::i;:::-;3648:47;;3729:7;3713:6;:13;;;:23;;;;:::i;:::-;3706:30;::::0;;::::1;:::i;:::-;;;3598:148;3304:492;;3565:224;-1:-1:-1::0;3774:5:50::1;3304:492;;;1320:1;3806:35;::::0;::::1;;3802:96;;;3859:31;::::0;-1:-1:-1;;;3859:31:50;;16669:4:51;16657:17;;3859:31:50::1;::::0;::::1;16639:36:51::0;16612:18;;3859:31:50::1;16495:186:51::0;3802:96:50::1;-1:-1:-1::0;3911:126:50::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;::::0;;;;-1:-1:-1;;;;;3911:126:50;;::::1;::::0;;;;::::1;::::0;;;;-1:-1:-1;3911:126:50;;3010:1033;-1:-1:-1;3010:1033:50:o;5755:348::-;5826:6;5877:2;5848:4;:26;;;:31;;;5844:254;;;-1:-1:-1;5897:1:50;;5755:348;-1:-1:-1;5755:348:50:o;5844:254::-;5945:2;5916:4;:26;;;:31;;;5912:186;;;6007:2;5978:4;:26;;;:31;;;;:::i;:::-;5972:38;;:1;:38;;5958:53;;5755:348;;;:::o;5912:186::-;6063:26;;;;6041:49;;-1:-1:-1;;;6041:49:50;;16669:4:51;16657:17;;;6041:49:50;;;16639:36:51;16612:18;;6041:49:50;16495:186:51;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:142:51:-;-1:-1:-1;;;;;100:31:51;;90:42;;80:70;;146:1;143;136:12;80:70;14:142;:::o;161:622::-;330:6;338;346;399:2;387:9;378:7;374:23;370:32;367:52;;;415:1;412;405:12;367:52;454:9;441:23;473:42;509:5;473:42;:::i;:::-;534:5;-1:-1:-1;591:2:51;576:18;;563:32;604:44;563:32;604:44;:::i;:::-;161:622;;667:7;;-1:-1:-1;;;747:2:51;732:18;;;;719:32;;161:622::o;978:700::-;1057:6;1065;1073;1126:2;1114:9;1105:7;1101:23;1097:32;1094:52;;;1142:1;1139;1132:12;1094:52;1187:23;;;-1:-1:-1;1285:2:51;1270:18;;1257:32;-1:-1:-1;;;;;1301:30:51;;1298:50;;;1344:1;1341;1334:12;1298:50;1367:22;;1420:4;1412:13;;1408:27;-1:-1:-1;1398:55:51;;1449:1;1446;1439:12;1398:55;1489:2;1476:16;-1:-1:-1;;;;;1507:6:51;1504:30;1501:50;;;1547:1;1544;1537:12;1501:50;1592:7;1587:2;1578:6;1574:2;1570:15;1566:24;1563:37;1560:57;;;1613:1;1610;1603:12;1560:57;978:700;;1644:2;1636:11;;;;;-1:-1:-1;1666:6:51;;-1:-1:-1;;;978:700:51:o;1846:250::-;1931:1;1941:113;1955:6;1952:1;1949:13;1941:113;;;2031:11;;;2025:18;2012:11;;;2005:39;1977:2;1970:10;1941:113;;;-1:-1:-1;;2088:1:51;2070:16;;2063:27;1846:250::o;2101:271::-;2143:3;2181:5;2175:12;2208:6;2203:3;2196:19;2224:76;2293:6;2286:4;2281:3;2277:14;2270:4;2263:5;2259:16;2224:76;:::i;:::-;2354:2;2333:15;-1:-1:-1;;2329:29:51;2320:39;;;;2361:4;2316:50;;2101:271;-1:-1:-1;;2101:271:51:o;2377:693::-;2701:6;2690:9;2683:25;2744:3;2739:2;2728:9;2724:18;2717:31;2664:4;2771:46;2812:3;2801:9;2797:19;2789:6;2771:46;:::i;:::-;2865:9;2857:6;2853:22;2848:2;2837:9;2833:18;2826:50;2893:33;2919:6;2911;2893:33;:::i;:::-;-1:-1:-1;;;;;2962:32:51;;;;2957:2;2942:18;;2935:60;-1:-1:-1;;;;;;;3032:31:51;;;;3026:3;3011:19;;;3004:60;2885:41;2377:693;-1:-1:-1;;;2377:693:51:o;3075:127::-;3136:10;3131:3;3127:20;3124:1;3117:31;3167:4;3164:1;3157:15;3191:4;3188:1;3181:15;3207:253;3279:2;3273:9;3321:4;3309:17;;-1:-1:-1;;;;;3341:34:51;;3377:22;;;3338:62;3335:88;;;3403:18;;:::i;:::-;3439:2;3432:22;3207:253;:::o;3465:257::-;3537:4;3531:11;;;3569:17;;-1:-1:-1;;;;;3601:34:51;;3637:22;;;3598:62;3595:88;;;3663:18;;:::i;3727:253::-;3799:2;3793:9;3841:4;3829:17;;-1:-1:-1;;;;;3861:34:51;;3897:22;;;3858:62;3855:88;;;3923:18;;:::i;3985:275::-;4056:2;4050:9;4121:2;4102:13;;-1:-1:-1;;4098:27:51;4086:40;;-1:-1:-1;;;;;4141:34:51;;4177:22;;;4138:62;4135:88;;;4203:18;;:::i;:::-;4239:2;4232:22;3985:275;;-1:-1:-1;3985:275:51:o;4265:195::-;4356:20;;-1:-1:-1;;;;;4405:30:51;;4395:41;;4385:69;;4450:1;4447;4440:12;4465:156;4531:20;;4591:4;4580:16;;4570:27;;4560:55;;4611:1;4608;4601:12;4626:1584;4677:5;4725:4;4713:9;4708:3;4704:19;4700:30;4697:50;;;4743:1;4740;4733:12;4697:50;4765:22;;:::i;:::-;4756:31;;4823:9;4810:23;-1:-1:-1;;;;;4848:6:51;4845:30;4842:50;;;4888:1;4885;4878:12;4842:50;4911:22;;4963:4;4949:12;;;4945:23;4942:43;;;4981:1;4978;4971:12;4942:43;5009:22;;:::i;:::-;5069:2;5056:16;-1:-1:-1;;;;;5087:8:51;5084:32;5081:52;;;5129:1;5126;5119:12;5081:52;5152:17;;5200:4;5192:13;;5188:23;-1:-1:-1;5178:51:51;;5225:1;5222;5215:12;5178:51;5265:2;5252:16;-1:-1:-1;;;;;5283:6:51;5280:30;5277:56;;;5313:18;;:::i;:::-;5355:59;5402:2;5379:17;;-1:-1:-1;;5375:31:51;5408:4;5371:42;5355:59;:::i;:::-;5437:6;5430:5;5423:21;5487:3;5480:4;5471:6;5467:2;5463:15;5459:26;5456:35;5453:55;;;5504:1;5501;5494:12;5453:55;5563:6;5556:4;5552:2;5548:13;5541:4;5534:5;5530:16;5517:53;5617:1;5610:4;5590:18;;;5586:29;;5579:40;5628:22;;5708:13;;;5695:27;5738:18;;;5731:35;-1:-1:-1;5775:22:51;;5831:38;;5848:20;;5831:38;:::i;:::-;5824:4;5817:5;5813:16;5806:64;5904:38;5936:4;5925:9;5921:20;5904:38;:::i;:::-;5897:4;5890:5;5886:16;5879:64;5975:36;6007:2;5996:9;5992:18;5975:36;:::i;:::-;5970:2;5963:5;5959:14;5952:60;6045:62;6102:3;6091:9;6087:19;6045:62;:::i;:::-;6039:3;6032:5;6028:15;6021:87;6141:62;6198:3;6187:9;6183:19;6141:62;:::i;:::-;6135:3;6128:5;6124:15;6117:87;4626:1584;;;;:::o;6215:1095::-;6303:6;6356:2;6344:9;6335:7;6331:23;6327:32;6324:52;;;6372:1;6369;6362:12;6324:52;6412:9;6399:23;-1:-1:-1;;;;;6437:6:51;6434:30;6431:50;;;6477:1;6474;6467:12;6431:50;6500:22;;6556:4;6538:16;;;6534:27;6531:47;;;6574:1;6571;6564:12;6531:47;6600:22;;:::i;:::-;6659:2;6646:16;6693:3;6684:7;6681:16;6671:44;;6711:1;6708;6701:12;6671:44;6724:22;;6791:2;6783:11;;6770:25;6826:2;6814:15;;6804:43;;6843:1;6840;6833:12;6804:43;6874:2;6863:14;;6856:31;6953:2;6945:11;;;6932:25;6973:14;;;6966:31;7029:54;7079:2;7071:11;;7029:54;:::i;:::-;7024:2;7017:5;7013:14;7006:78;7130:3;7126:2;7122:12;7109:26;-1:-1:-1;;;;;7150:8:51;7147:32;7144:52;;;7192:1;7189;7182:12;7144:52;7229:50;7271:7;7260:8;7256:2;7252:17;7229:50;:::i;:::-;7223:3;7212:15;;7205:75;-1:-1:-1;7216:5:51;6215:1095;-1:-1:-1;;;;6215:1095:51:o;7528:127::-;7589:10;7584:3;7580:20;7577:1;7570:31;7620:4;7617:1;7610:15;7644:4;7641:1;7634:15;7796:2670;8050:4;8098:2;8087:9;8083:18;8128:2;8117:9;8110:21;8151:6;8186;8180:13;8217:6;8209;8202:22;8255:2;8244:9;8240:18;8233:25;;8317:2;8307:6;8304:1;8300:14;8289:9;8285:30;8281:39;8267:53;;8355:4;8347:6;8343:17;8378:1;8388:259;8402:6;8399:1;8396:13;8388:259;;;8495:2;8491:7;8479:9;8471:6;8467:22;8463:36;8458:3;8451:49;8523:40;8556:6;8547;8541:13;8523:40;:::i;:::-;8513:50;-1:-1:-1;8598:4:51;8623:14;;;;8586:17;;;;;8424:1;8417:9;8388:259;;;8392:3;;;;8697:9;8689:6;8685:22;8678:4;8667:9;8663:20;8656:52;8730:6;8767;8761:13;8798:8;8790:6;8783:24;8837:4;8829:6;8825:17;8816:26;;8900:4;8888:8;8885:1;8881:16;8873:6;8869:29;8865:40;8924:6;8921:1;8914:17;8969:4;8966:1;8956:18;8994:1;9004:1433;9020:8;9015:3;9012:17;9004:1433;;;9093:19;;;-1:-1:-1;;9089:33:51;9075:48;;9178:15;;9147:1;;9254;9250:17;;;;9306;;;9336:105;;9422:4;9412:8;9408:19;9396:31;;9336:105;9493:4;9483:8;9480:18;9460;9457:42;9454:189;;-1:-1:-1;;;9530:33:51;;9590:4;9587:1;9580:15;9624:4;9537:3;9612:17;9454:189;1778:19;;;1830:4;1821:14;;9750:18;9781:146;;;;9945:1;9940:382;;;;9743:579;;9781:146;-1:-1:-1;;9820:24:51;;9806:39;;9894:16;;9887:24;9884:1;9880:32;9869:44;;;-1:-1:-1;9781:146:51;;9940:382;7743:1;7736:14;;;7780:4;7767:18;;10057:1;10075:194;10091:8;10086:3;10083:17;10075:194;;;10189:14;;10172:15;;;10165:39;10249:1;10236:15;;;;10119:4;10110:14;10075:194;;;10293:15;;;-1:-1:-1;;9743:579:51;-1:-1:-1;;;10422:4:51;10411:16;;;;;-1:-1:-1;10345:3:51;;-1:-1:-1;;10387:1:51;10373:16;;;;9039:11;9004:1433;;;-1:-1:-1;10454:6:51;;7796:2670;-1:-1:-1;;;;;;;;7796:2670:51:o;10471:215::-;10572:6;10625:2;10613:9;10604:7;10600:23;10596:32;10593:52;;;10641:1;10638;10631:12;10593:52;-1:-1:-1;10664:16:51;;10471:215;-1:-1:-1;10471:215:51:o;12339:127::-;12400:10;12395:3;12391:20;12388:1;12381:31;12431:4;12428:1;12421:15;12455:4;12452:1;12445:15;13526:127;13587:10;13582:3;13578:20;13575:1;13568:31;13618:4;13615:1;13608:15;13642:4;13639:1;13632:15;13658:204;13696:3;-1:-1:-1;;;;;13733:5:51;13729:30;-1:-1:-1;;;;;13774:7:51;13771:31;13768:57;;13805:18;;:::i;:::-;13854:1;13841:15;;13658:204;-1:-1:-1;;13658:204:51:o;13867:191::-;-1:-1:-1;;;;;13935:26:51;;;13963;;;13931:59;;14002:27;;13999:53;;;14032:18;;:::i;14406:127::-;14467:10;14462:3;14458:20;14455:1;14448:31;14498:4;14495:1;14488:15;14522:4;14519:1;14512:15;14538:165;14576:1;14610:4;14607:1;14603:12;14634:3;14624:37;;14641:18;;:::i;:::-;14693:3;14686:4;14683:1;14679:12;14675:22;14670:27;;;14538:165;;;;:::o;14708:175::-;14745:3;14789:4;14782:5;14778:16;14818:4;14809:7;14806:17;14803:43;;14826:18;;:::i;15511:194::-;15550:1;-1:-1:-1;;;;;15581:1:51;15577:26;15622:3;15612:37;;15629:18;;:::i;:::-;15695:3;-1:-1:-1;;;;;15671:1:51;15667:26;15663:36;15658:41;;;15511:194;;;;:::o;15710:494::-;15887:3;15925:6;15919:13;15941:66;16000:6;15995:3;15988:4;15980:6;15976:17;15941:66;:::i;:::-;16070:13;;16029:16;;;;16092:70;16070:13;16029:16;16139:4;16127:17;;16092:70;:::i;:::-;16178:20;;15710:494;-1:-1:-1;;;;15710:494:51:o;16209:148::-;16297:4;16276:12;;;16290;;;16272:31;;16315:13;;16312:39;;;16331:18;;:::i;16362:128::-;16429:9;;;16450:11;;;16447:37;;;16464:18;;:::i;16892:151::-;16982:4;16975:12;;;16961;;;16957:31;;17000:14;;16997:40;;;17017:18;;:::i;17398:268::-;-1:-1:-1;;;;;17482:26:51;;;17510;;;17478:59;17557:36;;;;17612:24;;;17602:58;;17640:18;;:::i;17671:112::-;17703:1;17729;17719:35;;17734:18;;:::i;:::-;-1:-1:-1;17768:9:51;;17671:112::o;17788:125::-;17853:9;;;17874:10;;;17871:36;;;17887:18;;:::i;18579:135::-;18618:3;18639:17;;;18636:43;;18659:18;;:::i;:::-;-1:-1:-1;18706:1:51;18695:13;;18579:135::o;18719:127::-;18780:10;18775:3;18771:20;18768:1;18761:31;18811:4;18808:1;18801:15;18835:4;18832:1;18825:15"},"methodIdentifiers":{"parseWitOracleProofOfReserve(Witnet.DataResult)":"67c4440f","processWitOracleQueryResult(uint256,bytes)":"5d933eb7","witOracleQueryWitnetValueTransferProofOfInclusion(WitOracle,IWitOracleRadonRequestModal,bytes32)":"3752120b"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"EmptyBuffer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"range\",\"type\":\"uint256\"}],\"name\":\"IndexOutOfBounds\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"InvalidLengthEncoding\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"read\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expected\",\"type\":\"uint256\"}],\"name\":\"UnexpectedMajorType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"unexpected\",\"type\":\"uint256\"}],\"name\":\"UnsupportedMajorType\",\"type\":\"error\"},{\"inputs\":[{\"components\":[{\"internalType\":\"enum Witnet.ResultStatus\",\"name\":\"status\",\"type\":\"Witnet.ResultStatus\"},{\"internalType\":\"enum Witnet.RadonDataTypes\",\"name\":\"dataType\",\"type\":\"Witnet.RadonDataTypes\"},{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"drTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"components\":[{\"components\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"cursor\",\"type\":\"uint256\"}],\"internalType\":\"struct WitnetBuffer.Buffer\",\"name\":\"buffer\",\"type\":\"tuple\"},{\"internalType\":\"uint8\",\"name\":\"initialByte\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"majorType\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"additionalInformation\",\"type\":\"uint8\"},{\"internalType\":\"uint64\",\"name\":\"len\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"tag\",\"type\":\"uint64\"}],\"internalType\":\"struct WitnetCBOR.CBOR\",\"name\":\"value\",\"type\":\"tuple\"}],\"internalType\":\"struct Witnet.DataResult\",\"name\":\"witOracleProofOfReserve\",\"type\":\"tuple\"}],\"name\":\"parseWitOracleProofOfReserve\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"The Witnet Foundation.\",\"kind\":\"dev\",\"methods\":{},\"title\":\"Witnet Request Board base data model library\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/WrappedWITLib.sol\":\"WrappedWITLib\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/IWrappedWIT.sol\":{\"keccak256\":\"0x8ee19154169e6b17db3f453966a0a03f9e1080578af784f3fe4e60a0a37e7ea9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://47913180c69e02f9872887e3eede6d9491f3bf176add6fafe76dfa36f350448a\",\"dweb:/ipfs/Qmf7a61bdxVE9BnCAVBtNEYPsC88pnn9o3BSX2bTjGWNqq\"]},\"contracts/WrappedWITLib.sol\":{\"keccak256\":\"0xd103a772a78f1401ad00afed5da9cd50abda43721d1be9e51e6239a0fd15dd47\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8a6794601634b4cac98f9cc329b115e502301a4e3aadb71eb0055ac3b702da5d\",\"dweb:/ipfs/QmSarqdYNPpECaH7mhFkwpQJnk8ybCSjFWb8YiwPSbyLDd\"]},\"witnet-solidity-bridge/contracts/WitOracle.sol\":{\"keccak256\":\"0x7f20eab15140df459753dfa8e406b826918b56ebe2c46456f9d04345c02629d1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e0573ce3d48200c71d8235a1a8c055b706420b2037bd21336f3c61713c3b8349\",\"dweb:/ipfs/QmY7BnVaNXFtJs1BFdeaa7dQfvUVoZyfwtv9HuToCxUUHU\"]},\"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol\":{\"keccak256\":\"0x7aa7a7f61c2e5a61a050a3e1819e7eed11f9e8a09b15b157e1bc1b298b6118c0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d75af90a732a14fb76cd043978e09bd1e53c378c54039b9e1c2f3fee5e071fd2\",\"dweb:/ipfs/QmSSDQxsi4CueiFnKHuCTHzscgt4TroRTBDYUBywPi8o3b\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol\":{\"keccak256\":\"0xd207ca54a1049445a3d99eea497d9b34c6dbdd44d771eee825e4c031bd2f447e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f81de32d868ff2881ed6fe97cc897e40b4b11d23cbe53a0e23cf3e68f9c0f0a3\",\"dweb:/ipfs/QmeeXmzmK5MAzt7Hf5DB2L81efKtTzZg9VbQ8sUiTqEk5c\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracle.sol\":{\"keccak256\":\"0xd9f1a62989dbd33e486beb27362340565f899b143d1c4a1b022c6116b0ec317b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://00fa3a545ba871732ce1bd13241dcd24ad8c31908e764bb7e8ac1d96cb534e7f\",\"dweb:/ipfs/QmQvGiyxaULT6wu3RfvpnRrKdP8X2mbCDgQYyW9CQkH73f\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol\":{\"keccak256\":\"0xcd8e57eca7f8042c85a83264e2ff6d1cd7a9f1521831736d7f57bcc7800642e6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5c639668e9439d60770b5df77436088ae7bd0aeb1d1be446552a98b6c29138f0\",\"dweb:/ipfs/QmbN3f5YuKMSd2j9tjay3VEkiYibGWpbfbwRNyrxA8k4o4\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriable.sol\":{\"keccak256\":\"0xd7075a3c4a6744989883a9a791d9068f84872a1b1f9600665f8bde4b43ed9b3b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6fdea2451c22af317b4a699928e76fdd66d1faee2a87df951ef4d669d6b3058f\",\"dweb:/ipfs/QmcrohJfHjigPV9sXxyCucDhqwK2wP84Sc2qc5hx7RFQ6i\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableEvents.sol\":{\"keccak256\":\"0x47c283e931006d35bd2599524f86724e45eae6fad2fdd9cdecd1c85a90ff3f8c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3ad0520f99ec9298536ae9434f58caeb470c10dd3eaab1e4c7ed4cae9a97e2a2\",\"dweb:/ipfs/QmSuYCsSPweZfQc5Fbf9jYDdx4u7gwYCUdjhpcrrxmWZy6\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistry.sol\":{\"keccak256\":\"0x437bbb89129311bd1cc8f6becd333df46109ec53b24d3159be942b225614071f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ef9bcdf4a73cb126885478c994821b7fe2b87d9221b767b4c9342b89b0d6550a\",\"dweb:/ipfs/QmXzZXPMxjSiFpcEnhg6CjLFNxGCpDZt22xpUh7VHxNTGd\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistryEvents.sol\":{\"keccak256\":\"0x9bd30477aeb33de11c4f1df3cd7451452a90ffed1f6eabd9e643046bf1e60d66\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fb38c5528ed2e1bf90ff8d123bf5a9523d0dc49f448d6c39ddad1cd9048d0a\",\"dweb:/ipfs/QmQq1RUwFgnGTk3xDAmN6u2WMPBzvjZNJc7TPYtG6aZfRn\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestFactory.sol\":{\"keccak256\":\"0x4484204bd9cb0f054dfe5120409e9da5ff7e4eca03917e3c0c4cef9a322ee98a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ecd34db48b011fc94c5132ff6fead4ca36b45a464e2342b65692cc4001cde0bb\",\"dweb:/ipfs/QmNPG3hM7XpMN3iGvR7UhGiSS3Kz5qNmEZKUQRjSPggKax\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestModal.sol\":{\"keccak256\":\"0xe939497e9d6b7e6ede25f885a9079797ec91107893e974cb11d052ed40e80dab\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b3272b7a52bd122c7a9b02b07d681cdcbe9a9b58039d05b8642db86045864866\",\"dweb:/ipfs/QmQadtigEDbLL5UoqVTt35ukZHz1QaZ54eD7sMFpK82tuX\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestTemplate.sol\":{\"keccak256\":\"0xd0829d45fe03f6c8bd48e8fffa2e5cf438349b5cf853d22dde1f04cdd614d4e8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da54a909fc2f50e36092296d4d15c65c1445abc3d9f9e9e466139ace88c6d2a8\",\"dweb:/ipfs/QmW5VT5KX33QoJ6mz9wsUt6iFL9qFdcvbxqGRMz7niUB4F\"]},\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"contracts/WrappedWITSuperchain.sol":{"WrappedWITSuperchain":{"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"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":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"CrosschainBurn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"CrosschainMint","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","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":"value","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":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"crosschainBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"crosschainMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","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":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","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":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_1452":{"entryPoint":null,"id":1452,"parameterSlots":1,"returnSlots":0},"@_3957":{"entryPoint":null,"id":3957,"parameterSlots":2,"returnSlots":0},"@_862":{"entryPoint":null,"id":862,"parameterSlots":2,"returnSlots":0},"@_9855":{"entryPoint":null,"id":9855,"parameterSlots":0,"returnSlots":0},"@_buildDomainSeparator_4004":{"entryPoint":null,"id":4004,"parameterSlots":0,"returnSlots":1},"@getStringSlot_2087":{"entryPoint":null,"id":2087,"parameterSlots":1,"returnSlots":1},"@toShortStringWithFallback_1927":{"entryPoint":360,"id":1927,"parameterSlots":2,"returnSlots":1},"@toShortString_1829":{"entryPoint":411,"id":1829,"parameterSlots":1,"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__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":831,"id":null,"parameterSlots":2,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":562,"id":null,"parameterSlots":3,"returnSlots":0},"convert_bytes_to_fixedbytes_from_t_bytes_memory_ptr_to_t_bytes32":{"entryPoint":909,"id":null,"parameterSlots":1,"returnSlots":1},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":641,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":504,"id":null,"parameterSlots":1,"returnSlots":1},"extract_used_part_and_set_length_of_short_byte_array":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x41":{"entryPoint":482,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:3980:51","nodeType":"YulBlock","src":"0:3980:51","statements":[{"nativeSrc":"6:3:51","nodeType":"YulBlock","src":"6:3:51","statements":[]},{"body":{"nativeSrc":"46:95:51","nodeType":"YulBlock","src":"46:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"63:1:51","nodeType":"YulLiteral","src":"63:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"70:3:51","nodeType":"YulLiteral","src":"70:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"75:10:51","nodeType":"YulLiteral","src":"75:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"66:3:51","nodeType":"YulIdentifier","src":"66:3:51"},"nativeSrc":"66:20:51","nodeType":"YulFunctionCall","src":"66:20:51"}],"functionName":{"name":"mstore","nativeSrc":"56:6:51","nodeType":"YulIdentifier","src":"56:6:51"},"nativeSrc":"56:31:51","nodeType":"YulFunctionCall","src":"56:31:51"},"nativeSrc":"56:31:51","nodeType":"YulExpressionStatement","src":"56:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"103:1:51","nodeType":"YulLiteral","src":"103:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"106:4:51","nodeType":"YulLiteral","src":"106:4:51","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"96:6:51","nodeType":"YulIdentifier","src":"96:6:51"},"nativeSrc":"96:15:51","nodeType":"YulFunctionCall","src":"96:15:51"},"nativeSrc":"96:15:51","nodeType":"YulExpressionStatement","src":"96:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"127:1:51","nodeType":"YulLiteral","src":"127:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"130:4:51","nodeType":"YulLiteral","src":"130:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"120:6:51","nodeType":"YulIdentifier","src":"120:6:51"},"nativeSrc":"120:15:51","nodeType":"YulFunctionCall","src":"120:15:51"},"nativeSrc":"120:15:51","nodeType":"YulExpressionStatement","src":"120:15:51"}]},"name":"panic_error_0x41","nativeSrc":"14:127:51","nodeType":"YulFunctionDefinition","src":"14:127:51"},{"body":{"nativeSrc":"201:325:51","nodeType":"YulBlock","src":"201:325:51","statements":[{"nativeSrc":"211:22:51","nodeType":"YulAssignment","src":"211:22:51","value":{"arguments":[{"kind":"number","nativeSrc":"225:1:51","nodeType":"YulLiteral","src":"225:1:51","type":"","value":"1"},{"name":"data","nativeSrc":"228:4:51","nodeType":"YulIdentifier","src":"228:4:51"}],"functionName":{"name":"shr","nativeSrc":"221:3:51","nodeType":"YulIdentifier","src":"221:3:51"},"nativeSrc":"221:12:51","nodeType":"YulFunctionCall","src":"221:12:51"},"variableNames":[{"name":"length","nativeSrc":"211:6:51","nodeType":"YulIdentifier","src":"211:6:51"}]},{"nativeSrc":"242:38:51","nodeType":"YulVariableDeclaration","src":"242:38:51","value":{"arguments":[{"name":"data","nativeSrc":"272:4:51","nodeType":"YulIdentifier","src":"272:4:51"},{"kind":"number","nativeSrc":"278:1:51","nodeType":"YulLiteral","src":"278:1:51","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"268:3:51","nodeType":"YulIdentifier","src":"268:3:51"},"nativeSrc":"268:12:51","nodeType":"YulFunctionCall","src":"268:12:51"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"246:18:51","nodeType":"YulTypedName","src":"246:18:51","type":""}]},{"body":{"nativeSrc":"319:31:51","nodeType":"YulBlock","src":"319:31:51","statements":[{"nativeSrc":"321:27:51","nodeType":"YulAssignment","src":"321:27:51","value":{"arguments":[{"name":"length","nativeSrc":"335:6:51","nodeType":"YulIdentifier","src":"335:6:51"},{"kind":"number","nativeSrc":"343:4:51","nodeType":"YulLiteral","src":"343:4:51","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"331:3:51","nodeType":"YulIdentifier","src":"331:3:51"},"nativeSrc":"331:17:51","nodeType":"YulFunctionCall","src":"331:17:51"},"variableNames":[{"name":"length","nativeSrc":"321:6:51","nodeType":"YulIdentifier","src":"321:6:51"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"299:18:51","nodeType":"YulIdentifier","src":"299:18:51"}],"functionName":{"name":"iszero","nativeSrc":"292:6:51","nodeType":"YulIdentifier","src":"292:6:51"},"nativeSrc":"292:26:51","nodeType":"YulFunctionCall","src":"292:26:51"},"nativeSrc":"289:61:51","nodeType":"YulIf","src":"289:61:51"},{"body":{"nativeSrc":"409:111:51","nodeType":"YulBlock","src":"409:111:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"430:1:51","nodeType":"YulLiteral","src":"430:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"437:3:51","nodeType":"YulLiteral","src":"437:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"442:10:51","nodeType":"YulLiteral","src":"442:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"433:3:51","nodeType":"YulIdentifier","src":"433:3:51"},"nativeSrc":"433:20:51","nodeType":"YulFunctionCall","src":"433:20:51"}],"functionName":{"name":"mstore","nativeSrc":"423:6:51","nodeType":"YulIdentifier","src":"423:6:51"},"nativeSrc":"423:31:51","nodeType":"YulFunctionCall","src":"423:31:51"},"nativeSrc":"423:31:51","nodeType":"YulExpressionStatement","src":"423:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"474:1:51","nodeType":"YulLiteral","src":"474:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"477:4:51","nodeType":"YulLiteral","src":"477:4:51","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"467:6:51","nodeType":"YulIdentifier","src":"467:6:51"},"nativeSrc":"467:15:51","nodeType":"YulFunctionCall","src":"467:15:51"},"nativeSrc":"467:15:51","nodeType":"YulExpressionStatement","src":"467:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"502:1:51","nodeType":"YulLiteral","src":"502:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"505:4:51","nodeType":"YulLiteral","src":"505:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"495:6:51","nodeType":"YulIdentifier","src":"495:6:51"},"nativeSrc":"495:15:51","nodeType":"YulFunctionCall","src":"495:15:51"},"nativeSrc":"495:15:51","nodeType":"YulExpressionStatement","src":"495:15:51"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"365:18:51","nodeType":"YulIdentifier","src":"365:18:51"},{"arguments":[{"name":"length","nativeSrc":"388:6:51","nodeType":"YulIdentifier","src":"388:6:51"},{"kind":"number","nativeSrc":"396:2:51","nodeType":"YulLiteral","src":"396:2:51","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"385:2:51","nodeType":"YulIdentifier","src":"385:2:51"},"nativeSrc":"385:14:51","nodeType":"YulFunctionCall","src":"385:14:51"}],"functionName":{"name":"eq","nativeSrc":"362:2:51","nodeType":"YulIdentifier","src":"362:2:51"},"nativeSrc":"362:38:51","nodeType":"YulFunctionCall","src":"362:38:51"},"nativeSrc":"359:161:51","nodeType":"YulIf","src":"359:161:51"}]},"name":"extract_byte_array_length","nativeSrc":"146:380:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"181:4:51","nodeType":"YulTypedName","src":"181:4:51","type":""}],"returnVariables":[{"name":"length","nativeSrc":"190:6:51","nodeType":"YulTypedName","src":"190:6:51","type":""}],"src":"146:380:51"},{"body":{"nativeSrc":"587:65:51","nodeType":"YulBlock","src":"587:65:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"604:1:51","nodeType":"YulLiteral","src":"604:1:51","type":"","value":"0"},{"name":"ptr","nativeSrc":"607:3:51","nodeType":"YulIdentifier","src":"607:3:51"}],"functionName":{"name":"mstore","nativeSrc":"597:6:51","nodeType":"YulIdentifier","src":"597:6:51"},"nativeSrc":"597:14:51","nodeType":"YulFunctionCall","src":"597:14:51"},"nativeSrc":"597:14:51","nodeType":"YulExpressionStatement","src":"597:14:51"},{"nativeSrc":"620:26:51","nodeType":"YulAssignment","src":"620:26:51","value":{"arguments":[{"kind":"number","nativeSrc":"638:1:51","nodeType":"YulLiteral","src":"638:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"641:4:51","nodeType":"YulLiteral","src":"641:4:51","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"628:9:51","nodeType":"YulIdentifier","src":"628:9:51"},"nativeSrc":"628:18:51","nodeType":"YulFunctionCall","src":"628:18:51"},"variableNames":[{"name":"data","nativeSrc":"620:4:51","nodeType":"YulIdentifier","src":"620:4:51"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"531:121:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"570:3:51","nodeType":"YulTypedName","src":"570:3:51","type":""}],"returnVariables":[{"name":"data","nativeSrc":"578:4:51","nodeType":"YulTypedName","src":"578:4:51","type":""}],"src":"531:121:51"},{"body":{"nativeSrc":"738:437:51","nodeType":"YulBlock","src":"738:437:51","statements":[{"body":{"nativeSrc":"771:398:51","nodeType":"YulBlock","src":"771:398:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"792:1:51","nodeType":"YulLiteral","src":"792:1:51","type":"","value":"0"},{"name":"array","nativeSrc":"795:5:51","nodeType":"YulIdentifier","src":"795:5:51"}],"functionName":{"name":"mstore","nativeSrc":"785:6:51","nodeType":"YulIdentifier","src":"785:6:51"},"nativeSrc":"785:16:51","nodeType":"YulFunctionCall","src":"785:16:51"},"nativeSrc":"785:16:51","nodeType":"YulExpressionStatement","src":"785:16:51"},{"nativeSrc":"814:30:51","nodeType":"YulVariableDeclaration","src":"814:30:51","value":{"arguments":[{"kind":"number","nativeSrc":"836:1:51","nodeType":"YulLiteral","src":"836:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"839:4:51","nodeType":"YulLiteral","src":"839:4:51","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"826:9:51","nodeType":"YulIdentifier","src":"826:9:51"},"nativeSrc":"826:18:51","nodeType":"YulFunctionCall","src":"826:18:51"},"variables":[{"name":"data","nativeSrc":"818:4:51","nodeType":"YulTypedName","src":"818:4:51","type":""}]},{"nativeSrc":"857:57:51","nodeType":"YulVariableDeclaration","src":"857:57:51","value":{"arguments":[{"name":"data","nativeSrc":"880:4:51","nodeType":"YulIdentifier","src":"880:4:51"},{"arguments":[{"kind":"number","nativeSrc":"890:1:51","nodeType":"YulLiteral","src":"890:1:51","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"897:10:51","nodeType":"YulIdentifier","src":"897:10:51"},{"kind":"number","nativeSrc":"909:2:51","nodeType":"YulLiteral","src":"909:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"893:3:51","nodeType":"YulIdentifier","src":"893:3:51"},"nativeSrc":"893:19:51","nodeType":"YulFunctionCall","src":"893:19:51"}],"functionName":{"name":"shr","nativeSrc":"886:3:51","nodeType":"YulIdentifier","src":"886:3:51"},"nativeSrc":"886:27:51","nodeType":"YulFunctionCall","src":"886:27:51"}],"functionName":{"name":"add","nativeSrc":"876:3:51","nodeType":"YulIdentifier","src":"876:3:51"},"nativeSrc":"876:38:51","nodeType":"YulFunctionCall","src":"876:38:51"},"variables":[{"name":"deleteStart","nativeSrc":"861:11:51","nodeType":"YulTypedName","src":"861:11:51","type":""}]},{"body":{"nativeSrc":"951:23:51","nodeType":"YulBlock","src":"951:23:51","statements":[{"nativeSrc":"953:19:51","nodeType":"YulAssignment","src":"953:19:51","value":{"name":"data","nativeSrc":"968:4:51","nodeType":"YulIdentifier","src":"968:4:51"},"variableNames":[{"name":"deleteStart","nativeSrc":"953:11:51","nodeType":"YulIdentifier","src":"953:11:51"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"933:10:51","nodeType":"YulIdentifier","src":"933:10:51"},{"kind":"number","nativeSrc":"945:4:51","nodeType":"YulLiteral","src":"945:4:51","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"930:2:51","nodeType":"YulIdentifier","src":"930:2:51"},"nativeSrc":"930:20:51","nodeType":"YulFunctionCall","src":"930:20:51"},"nativeSrc":"927:47:51","nodeType":"YulIf","src":"927:47:51"},{"nativeSrc":"987:41:51","nodeType":"YulVariableDeclaration","src":"987:41:51","value":{"arguments":[{"name":"data","nativeSrc":"1001:4:51","nodeType":"YulIdentifier","src":"1001:4:51"},{"arguments":[{"kind":"number","nativeSrc":"1011:1:51","nodeType":"YulLiteral","src":"1011:1:51","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"1018:3:51","nodeType":"YulIdentifier","src":"1018:3:51"},{"kind":"number","nativeSrc":"1023:2:51","nodeType":"YulLiteral","src":"1023:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1014:3:51","nodeType":"YulIdentifier","src":"1014:3:51"},"nativeSrc":"1014:12:51","nodeType":"YulFunctionCall","src":"1014:12:51"}],"functionName":{"name":"shr","nativeSrc":"1007:3:51","nodeType":"YulIdentifier","src":"1007:3:51"},"nativeSrc":"1007:20:51","nodeType":"YulFunctionCall","src":"1007:20:51"}],"functionName":{"name":"add","nativeSrc":"997:3:51","nodeType":"YulIdentifier","src":"997:3:51"},"nativeSrc":"997:31:51","nodeType":"YulFunctionCall","src":"997:31:51"},"variables":[{"name":"_1","nativeSrc":"991:2:51","nodeType":"YulTypedName","src":"991:2:51","type":""}]},{"nativeSrc":"1041:24:51","nodeType":"YulVariableDeclaration","src":"1041:24:51","value":{"name":"deleteStart","nativeSrc":"1054:11:51","nodeType":"YulIdentifier","src":"1054:11:51"},"variables":[{"name":"start","nativeSrc":"1045:5:51","nodeType":"YulTypedName","src":"1045:5:51","type":""}]},{"body":{"nativeSrc":"1139:20:51","nodeType":"YulBlock","src":"1139:20:51","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"1148:5:51","nodeType":"YulIdentifier","src":"1148:5:51"},{"kind":"number","nativeSrc":"1155:1:51","nodeType":"YulLiteral","src":"1155:1:51","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"1141:6:51","nodeType":"YulIdentifier","src":"1141:6:51"},"nativeSrc":"1141:16:51","nodeType":"YulFunctionCall","src":"1141:16:51"},"nativeSrc":"1141:16:51","nodeType":"YulExpressionStatement","src":"1141:16:51"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"1089:5:51","nodeType":"YulIdentifier","src":"1089:5:51"},{"name":"_1","nativeSrc":"1096:2:51","nodeType":"YulIdentifier","src":"1096:2:51"}],"functionName":{"name":"lt","nativeSrc":"1086:2:51","nodeType":"YulIdentifier","src":"1086:2:51"},"nativeSrc":"1086:13:51","nodeType":"YulFunctionCall","src":"1086:13:51"},"nativeSrc":"1078:81:51","nodeType":"YulForLoop","post":{"nativeSrc":"1100:26:51","nodeType":"YulBlock","src":"1100:26:51","statements":[{"nativeSrc":"1102:22:51","nodeType":"YulAssignment","src":"1102:22:51","value":{"arguments":[{"name":"start","nativeSrc":"1115:5:51","nodeType":"YulIdentifier","src":"1115:5:51"},{"kind":"number","nativeSrc":"1122:1:51","nodeType":"YulLiteral","src":"1122:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"1111:3:51","nodeType":"YulIdentifier","src":"1111:3:51"},"nativeSrc":"1111:13:51","nodeType":"YulFunctionCall","src":"1111:13:51"},"variableNames":[{"name":"start","nativeSrc":"1102:5:51","nodeType":"YulIdentifier","src":"1102:5:51"}]}]},"pre":{"nativeSrc":"1082:3:51","nodeType":"YulBlock","src":"1082:3:51","statements":[]},"src":"1078:81:51"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"754:3:51","nodeType":"YulIdentifier","src":"754:3:51"},{"kind":"number","nativeSrc":"759:2:51","nodeType":"YulLiteral","src":"759:2:51","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"751:2:51","nodeType":"YulIdentifier","src":"751:2:51"},"nativeSrc":"751:11:51","nodeType":"YulFunctionCall","src":"751:11:51"},"nativeSrc":"748:421:51","nodeType":"YulIf","src":"748:421:51"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"657:518:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"710:5:51","nodeType":"YulTypedName","src":"710:5:51","type":""},{"name":"len","nativeSrc":"717:3:51","nodeType":"YulTypedName","src":"717:3:51","type":""},{"name":"startIndex","nativeSrc":"722:10:51","nodeType":"YulTypedName","src":"722:10:51","type":""}],"src":"657:518:51"},{"body":{"nativeSrc":"1265:81:51","nodeType":"YulBlock","src":"1265:81:51","statements":[{"nativeSrc":"1275:65:51","nodeType":"YulAssignment","src":"1275:65:51","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"1290:4:51","nodeType":"YulIdentifier","src":"1290:4:51"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1308:1:51","nodeType":"YulLiteral","src":"1308:1:51","type":"","value":"3"},{"name":"len","nativeSrc":"1311:3:51","nodeType":"YulIdentifier","src":"1311:3:51"}],"functionName":{"name":"shl","nativeSrc":"1304:3:51","nodeType":"YulIdentifier","src":"1304:3:51"},"nativeSrc":"1304:11:51","nodeType":"YulFunctionCall","src":"1304:11:51"},{"arguments":[{"kind":"number","nativeSrc":"1321:1:51","nodeType":"YulLiteral","src":"1321:1:51","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"1317:3:51","nodeType":"YulIdentifier","src":"1317:3:51"},"nativeSrc":"1317:6:51","nodeType":"YulFunctionCall","src":"1317:6:51"}],"functionName":{"name":"shr","nativeSrc":"1300:3:51","nodeType":"YulIdentifier","src":"1300:3:51"},"nativeSrc":"1300:24:51","nodeType":"YulFunctionCall","src":"1300:24:51"}],"functionName":{"name":"not","nativeSrc":"1296:3:51","nodeType":"YulIdentifier","src":"1296:3:51"},"nativeSrc":"1296:29:51","nodeType":"YulFunctionCall","src":"1296:29:51"}],"functionName":{"name":"and","nativeSrc":"1286:3:51","nodeType":"YulIdentifier","src":"1286:3:51"},"nativeSrc":"1286:40:51","nodeType":"YulFunctionCall","src":"1286:40:51"},{"arguments":[{"kind":"number","nativeSrc":"1332:1:51","nodeType":"YulLiteral","src":"1332:1:51","type":"","value":"1"},{"name":"len","nativeSrc":"1335:3:51","nodeType":"YulIdentifier","src":"1335:3:51"}],"functionName":{"name":"shl","nativeSrc":"1328:3:51","nodeType":"YulIdentifier","src":"1328:3:51"},"nativeSrc":"1328:11:51","nodeType":"YulFunctionCall","src":"1328:11:51"}],"functionName":{"name":"or","nativeSrc":"1283:2:51","nodeType":"YulIdentifier","src":"1283:2:51"},"nativeSrc":"1283:57:51","nodeType":"YulFunctionCall","src":"1283:57:51"},"variableNames":[{"name":"used","nativeSrc":"1275:4:51","nodeType":"YulIdentifier","src":"1275:4:51"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"1180:166:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"1242:4:51","nodeType":"YulTypedName","src":"1242:4:51","type":""},{"name":"len","nativeSrc":"1248:3:51","nodeType":"YulTypedName","src":"1248:3:51","type":""}],"returnVariables":[{"name":"used","nativeSrc":"1256:4:51","nodeType":"YulTypedName","src":"1256:4:51","type":""}],"src":"1180:166:51"},{"body":{"nativeSrc":"1447:1203:51","nodeType":"YulBlock","src":"1447:1203:51","statements":[{"nativeSrc":"1457:24:51","nodeType":"YulVariableDeclaration","src":"1457:24:51","value":{"arguments":[{"name":"src","nativeSrc":"1477:3:51","nodeType":"YulIdentifier","src":"1477:3:51"}],"functionName":{"name":"mload","nativeSrc":"1471:5:51","nodeType":"YulIdentifier","src":"1471:5:51"},"nativeSrc":"1471:10:51","nodeType":"YulFunctionCall","src":"1471:10:51"},"variables":[{"name":"newLen","nativeSrc":"1461:6:51","nodeType":"YulTypedName","src":"1461:6:51","type":""}]},{"body":{"nativeSrc":"1524:22:51","nodeType":"YulBlock","src":"1524:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"1526:16:51","nodeType":"YulIdentifier","src":"1526:16:51"},"nativeSrc":"1526:18:51","nodeType":"YulFunctionCall","src":"1526:18:51"},"nativeSrc":"1526:18:51","nodeType":"YulExpressionStatement","src":"1526:18:51"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"1496:6:51","nodeType":"YulIdentifier","src":"1496:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1512:2:51","nodeType":"YulLiteral","src":"1512:2:51","type":"","value":"64"},{"kind":"number","nativeSrc":"1516:1:51","nodeType":"YulLiteral","src":"1516:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1508:3:51","nodeType":"YulIdentifier","src":"1508:3:51"},"nativeSrc":"1508:10:51","nodeType":"YulFunctionCall","src":"1508:10:51"},{"kind":"number","nativeSrc":"1520:1:51","nodeType":"YulLiteral","src":"1520:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1504:3:51","nodeType":"YulIdentifier","src":"1504:3:51"},"nativeSrc":"1504:18:51","nodeType":"YulFunctionCall","src":"1504:18:51"}],"functionName":{"name":"gt","nativeSrc":"1493:2:51","nodeType":"YulIdentifier","src":"1493:2:51"},"nativeSrc":"1493:30:51","nodeType":"YulFunctionCall","src":"1493:30:51"},"nativeSrc":"1490:56:51","nodeType":"YulIf","src":"1490:56:51"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"1599:4:51","nodeType":"YulIdentifier","src":"1599:4:51"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"1637:4:51","nodeType":"YulIdentifier","src":"1637:4:51"}],"functionName":{"name":"sload","nativeSrc":"1631:5:51","nodeType":"YulIdentifier","src":"1631:5:51"},"nativeSrc":"1631:11:51","nodeType":"YulFunctionCall","src":"1631:11:51"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"1605:25:51","nodeType":"YulIdentifier","src":"1605:25:51"},"nativeSrc":"1605:38:51","nodeType":"YulFunctionCall","src":"1605:38:51"},{"name":"newLen","nativeSrc":"1645:6:51","nodeType":"YulIdentifier","src":"1645:6:51"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"1555:43:51","nodeType":"YulIdentifier","src":"1555:43:51"},"nativeSrc":"1555:97:51","nodeType":"YulFunctionCall","src":"1555:97:51"},"nativeSrc":"1555:97:51","nodeType":"YulExpressionStatement","src":"1555:97:51"},{"nativeSrc":"1661:18:51","nodeType":"YulVariableDeclaration","src":"1661:18:51","value":{"kind":"number","nativeSrc":"1678:1:51","nodeType":"YulLiteral","src":"1678:1:51","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"1665:9:51","nodeType":"YulTypedName","src":"1665:9:51","type":""}]},{"nativeSrc":"1688:17:51","nodeType":"YulAssignment","src":"1688:17:51","value":{"kind":"number","nativeSrc":"1701:4:51","nodeType":"YulLiteral","src":"1701:4:51","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"1688:9:51","nodeType":"YulIdentifier","src":"1688:9:51"}]},{"cases":[{"body":{"nativeSrc":"1751:642:51","nodeType":"YulBlock","src":"1751:642:51","statements":[{"nativeSrc":"1765:35:51","nodeType":"YulVariableDeclaration","src":"1765:35:51","value":{"arguments":[{"name":"newLen","nativeSrc":"1784:6:51","nodeType":"YulIdentifier","src":"1784:6:51"},{"arguments":[{"kind":"number","nativeSrc":"1796:2:51","nodeType":"YulLiteral","src":"1796:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1792:3:51","nodeType":"YulIdentifier","src":"1792:3:51"},"nativeSrc":"1792:7:51","nodeType":"YulFunctionCall","src":"1792:7:51"}],"functionName":{"name":"and","nativeSrc":"1780:3:51","nodeType":"YulIdentifier","src":"1780:3:51"},"nativeSrc":"1780:20:51","nodeType":"YulFunctionCall","src":"1780:20:51"},"variables":[{"name":"loopEnd","nativeSrc":"1769:7:51","nodeType":"YulTypedName","src":"1769:7:51","type":""}]},{"nativeSrc":"1813:49:51","nodeType":"YulVariableDeclaration","src":"1813:49:51","value":{"arguments":[{"name":"slot","nativeSrc":"1857:4:51","nodeType":"YulIdentifier","src":"1857:4:51"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"1827:29:51","nodeType":"YulIdentifier","src":"1827:29:51"},"nativeSrc":"1827:35:51","nodeType":"YulFunctionCall","src":"1827:35:51"},"variables":[{"name":"dstPtr","nativeSrc":"1817:6:51","nodeType":"YulTypedName","src":"1817:6:51","type":""}]},{"nativeSrc":"1875:10:51","nodeType":"YulVariableDeclaration","src":"1875:10:51","value":{"kind":"number","nativeSrc":"1884:1:51","nodeType":"YulLiteral","src":"1884:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"1879:1:51","nodeType":"YulTypedName","src":"1879:1:51","type":""}]},{"body":{"nativeSrc":"1955:165:51","nodeType":"YulBlock","src":"1955:165:51","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"1980:6:51","nodeType":"YulIdentifier","src":"1980:6:51"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"1998:3:51","nodeType":"YulIdentifier","src":"1998:3:51"},{"name":"srcOffset","nativeSrc":"2003:9:51","nodeType":"YulIdentifier","src":"2003:9:51"}],"functionName":{"name":"add","nativeSrc":"1994:3:51","nodeType":"YulIdentifier","src":"1994:3:51"},"nativeSrc":"1994:19:51","nodeType":"YulFunctionCall","src":"1994:19:51"}],"functionName":{"name":"mload","nativeSrc":"1988:5:51","nodeType":"YulIdentifier","src":"1988:5:51"},"nativeSrc":"1988:26:51","nodeType":"YulFunctionCall","src":"1988:26:51"}],"functionName":{"name":"sstore","nativeSrc":"1973:6:51","nodeType":"YulIdentifier","src":"1973:6:51"},"nativeSrc":"1973:42:51","nodeType":"YulFunctionCall","src":"1973:42:51"},"nativeSrc":"1973:42:51","nodeType":"YulExpressionStatement","src":"1973:42:51"},{"nativeSrc":"2032:24:51","nodeType":"YulAssignment","src":"2032:24:51","value":{"arguments":[{"name":"dstPtr","nativeSrc":"2046:6:51","nodeType":"YulIdentifier","src":"2046:6:51"},{"kind":"number","nativeSrc":"2054:1:51","nodeType":"YulLiteral","src":"2054:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"2042:3:51","nodeType":"YulIdentifier","src":"2042:3:51"},"nativeSrc":"2042:14:51","nodeType":"YulFunctionCall","src":"2042:14:51"},"variableNames":[{"name":"dstPtr","nativeSrc":"2032:6:51","nodeType":"YulIdentifier","src":"2032:6:51"}]},{"nativeSrc":"2073:33:51","nodeType":"YulAssignment","src":"2073:33:51","value":{"arguments":[{"name":"srcOffset","nativeSrc":"2090:9:51","nodeType":"YulIdentifier","src":"2090:9:51"},{"kind":"number","nativeSrc":"2101:4:51","nodeType":"YulLiteral","src":"2101:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"2086:3:51","nodeType":"YulIdentifier","src":"2086:3:51"},"nativeSrc":"2086:20:51","nodeType":"YulFunctionCall","src":"2086:20:51"},"variableNames":[{"name":"srcOffset","nativeSrc":"2073:9:51","nodeType":"YulIdentifier","src":"2073:9:51"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"1909:1:51","nodeType":"YulIdentifier","src":"1909:1:51"},{"name":"loopEnd","nativeSrc":"1912:7:51","nodeType":"YulIdentifier","src":"1912:7:51"}],"functionName":{"name":"lt","nativeSrc":"1906:2:51","nodeType":"YulIdentifier","src":"1906:2:51"},"nativeSrc":"1906:14:51","nodeType":"YulFunctionCall","src":"1906:14:51"},"nativeSrc":"1898:222:51","nodeType":"YulForLoop","post":{"nativeSrc":"1921:21:51","nodeType":"YulBlock","src":"1921:21:51","statements":[{"nativeSrc":"1923:17:51","nodeType":"YulAssignment","src":"1923:17:51","value":{"arguments":[{"name":"i","nativeSrc":"1932:1:51","nodeType":"YulIdentifier","src":"1932:1:51"},{"kind":"number","nativeSrc":"1935:4:51","nodeType":"YulLiteral","src":"1935:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1928:3:51","nodeType":"YulIdentifier","src":"1928:3:51"},"nativeSrc":"1928:12:51","nodeType":"YulFunctionCall","src":"1928:12:51"},"variableNames":[{"name":"i","nativeSrc":"1923:1:51","nodeType":"YulIdentifier","src":"1923:1:51"}]}]},"pre":{"nativeSrc":"1902:3:51","nodeType":"YulBlock","src":"1902:3:51","statements":[]},"src":"1898:222:51"},{"body":{"nativeSrc":"2168:166:51","nodeType":"YulBlock","src":"2168:166:51","statements":[{"nativeSrc":"2186:43:51","nodeType":"YulVariableDeclaration","src":"2186:43:51","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"2213:3:51","nodeType":"YulIdentifier","src":"2213:3:51"},{"name":"srcOffset","nativeSrc":"2218:9:51","nodeType":"YulIdentifier","src":"2218:9:51"}],"functionName":{"name":"add","nativeSrc":"2209:3:51","nodeType":"YulIdentifier","src":"2209:3:51"},"nativeSrc":"2209:19:51","nodeType":"YulFunctionCall","src":"2209:19:51"}],"functionName":{"name":"mload","nativeSrc":"2203:5:51","nodeType":"YulIdentifier","src":"2203:5:51"},"nativeSrc":"2203:26:51","nodeType":"YulFunctionCall","src":"2203:26:51"},"variables":[{"name":"lastValue","nativeSrc":"2190:9:51","nodeType":"YulTypedName","src":"2190:9:51","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"2253:6:51","nodeType":"YulIdentifier","src":"2253:6:51"},{"arguments":[{"name":"lastValue","nativeSrc":"2265:9:51","nodeType":"YulIdentifier","src":"2265:9:51"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2292:1:51","nodeType":"YulLiteral","src":"2292:1:51","type":"","value":"3"},{"name":"newLen","nativeSrc":"2295:6:51","nodeType":"YulIdentifier","src":"2295:6:51"}],"functionName":{"name":"shl","nativeSrc":"2288:3:51","nodeType":"YulIdentifier","src":"2288:3:51"},"nativeSrc":"2288:14:51","nodeType":"YulFunctionCall","src":"2288:14:51"},{"kind":"number","nativeSrc":"2304:3:51","nodeType":"YulLiteral","src":"2304:3:51","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"2284:3:51","nodeType":"YulIdentifier","src":"2284:3:51"},"nativeSrc":"2284:24:51","nodeType":"YulFunctionCall","src":"2284:24:51"},{"arguments":[{"kind":"number","nativeSrc":"2314:1:51","nodeType":"YulLiteral","src":"2314:1:51","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2310:3:51","nodeType":"YulIdentifier","src":"2310:3:51"},"nativeSrc":"2310:6:51","nodeType":"YulFunctionCall","src":"2310:6:51"}],"functionName":{"name":"shr","nativeSrc":"2280:3:51","nodeType":"YulIdentifier","src":"2280:3:51"},"nativeSrc":"2280:37:51","nodeType":"YulFunctionCall","src":"2280:37:51"}],"functionName":{"name":"not","nativeSrc":"2276:3:51","nodeType":"YulIdentifier","src":"2276:3:51"},"nativeSrc":"2276:42:51","nodeType":"YulFunctionCall","src":"2276:42:51"}],"functionName":{"name":"and","nativeSrc":"2261:3:51","nodeType":"YulIdentifier","src":"2261:3:51"},"nativeSrc":"2261:58:51","nodeType":"YulFunctionCall","src":"2261:58:51"}],"functionName":{"name":"sstore","nativeSrc":"2246:6:51","nodeType":"YulIdentifier","src":"2246:6:51"},"nativeSrc":"2246:74:51","nodeType":"YulFunctionCall","src":"2246:74:51"},"nativeSrc":"2246:74:51","nodeType":"YulExpressionStatement","src":"2246:74:51"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"2139:7:51","nodeType":"YulIdentifier","src":"2139:7:51"},{"name":"newLen","nativeSrc":"2148:6:51","nodeType":"YulIdentifier","src":"2148:6:51"}],"functionName":{"name":"lt","nativeSrc":"2136:2:51","nodeType":"YulIdentifier","src":"2136:2:51"},"nativeSrc":"2136:19:51","nodeType":"YulFunctionCall","src":"2136:19:51"},"nativeSrc":"2133:201:51","nodeType":"YulIf","src":"2133:201:51"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"2354:4:51","nodeType":"YulIdentifier","src":"2354:4:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2368:1:51","nodeType":"YulLiteral","src":"2368:1:51","type":"","value":"1"},{"name":"newLen","nativeSrc":"2371:6:51","nodeType":"YulIdentifier","src":"2371:6:51"}],"functionName":{"name":"shl","nativeSrc":"2364:3:51","nodeType":"YulIdentifier","src":"2364:3:51"},"nativeSrc":"2364:14:51","nodeType":"YulFunctionCall","src":"2364:14:51"},{"kind":"number","nativeSrc":"2380:1:51","nodeType":"YulLiteral","src":"2380:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"2360:3:51","nodeType":"YulIdentifier","src":"2360:3:51"},"nativeSrc":"2360:22:51","nodeType":"YulFunctionCall","src":"2360:22:51"}],"functionName":{"name":"sstore","nativeSrc":"2347:6:51","nodeType":"YulIdentifier","src":"2347:6:51"},"nativeSrc":"2347:36:51","nodeType":"YulFunctionCall","src":"2347:36:51"},"nativeSrc":"2347:36:51","nodeType":"YulExpressionStatement","src":"2347:36:51"}]},"nativeSrc":"1744:649:51","nodeType":"YulCase","src":"1744:649:51","value":{"kind":"number","nativeSrc":"1749:1:51","nodeType":"YulLiteral","src":"1749:1:51","type":"","value":"1"}},{"body":{"nativeSrc":"2410:234:51","nodeType":"YulBlock","src":"2410:234:51","statements":[{"nativeSrc":"2424:14:51","nodeType":"YulVariableDeclaration","src":"2424:14:51","value":{"kind":"number","nativeSrc":"2437:1:51","nodeType":"YulLiteral","src":"2437:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2428:5:51","nodeType":"YulTypedName","src":"2428:5:51","type":""}]},{"body":{"nativeSrc":"2473:67:51","nodeType":"YulBlock","src":"2473:67:51","statements":[{"nativeSrc":"2491:35:51","nodeType":"YulAssignment","src":"2491:35:51","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"2510:3:51","nodeType":"YulIdentifier","src":"2510:3:51"},{"name":"srcOffset","nativeSrc":"2515:9:51","nodeType":"YulIdentifier","src":"2515:9:51"}],"functionName":{"name":"add","nativeSrc":"2506:3:51","nodeType":"YulIdentifier","src":"2506:3:51"},"nativeSrc":"2506:19:51","nodeType":"YulFunctionCall","src":"2506:19:51"}],"functionName":{"name":"mload","nativeSrc":"2500:5:51","nodeType":"YulIdentifier","src":"2500:5:51"},"nativeSrc":"2500:26:51","nodeType":"YulFunctionCall","src":"2500:26:51"},"variableNames":[{"name":"value","nativeSrc":"2491:5:51","nodeType":"YulIdentifier","src":"2491:5:51"}]}]},"condition":{"name":"newLen","nativeSrc":"2454:6:51","nodeType":"YulIdentifier","src":"2454:6:51"},"nativeSrc":"2451:89:51","nodeType":"YulIf","src":"2451:89:51"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"2560:4:51","nodeType":"YulIdentifier","src":"2560:4:51"},{"arguments":[{"name":"value","nativeSrc":"2619:5:51","nodeType":"YulIdentifier","src":"2619:5:51"},{"name":"newLen","nativeSrc":"2626:6:51","nodeType":"YulIdentifier","src":"2626:6:51"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"2566:52:51","nodeType":"YulIdentifier","src":"2566:52:51"},"nativeSrc":"2566:67:51","nodeType":"YulFunctionCall","src":"2566:67:51"}],"functionName":{"name":"sstore","nativeSrc":"2553:6:51","nodeType":"YulIdentifier","src":"2553:6:51"},"nativeSrc":"2553:81:51","nodeType":"YulFunctionCall","src":"2553:81:51"},"nativeSrc":"2553:81:51","nodeType":"YulExpressionStatement","src":"2553:81:51"}]},"nativeSrc":"2402:242:51","nodeType":"YulCase","src":"2402:242:51","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"1724:6:51","nodeType":"YulIdentifier","src":"1724:6:51"},{"kind":"number","nativeSrc":"1732:2:51","nodeType":"YulLiteral","src":"1732:2:51","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"1721:2:51","nodeType":"YulIdentifier","src":"1721:2:51"},"nativeSrc":"1721:14:51","nodeType":"YulFunctionCall","src":"1721:14:51"},"nativeSrc":"1714:930:51","nodeType":"YulSwitch","src":"1714:930:51"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"1351:1299:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"1432:4:51","nodeType":"YulTypedName","src":"1432:4:51","type":""},{"name":"src","nativeSrc":"1438:3:51","nodeType":"YulTypedName","src":"1438:3:51","type":""}],"src":"1351:1299:51"},{"body":{"nativeSrc":"2868:276:51","nodeType":"YulBlock","src":"2868:276:51","statements":[{"nativeSrc":"2878:27:51","nodeType":"YulAssignment","src":"2878:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"2890:9:51","nodeType":"YulIdentifier","src":"2890:9:51"},{"kind":"number","nativeSrc":"2901:3:51","nodeType":"YulLiteral","src":"2901:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"2886:3:51","nodeType":"YulIdentifier","src":"2886:3:51"},"nativeSrc":"2886:19:51","nodeType":"YulFunctionCall","src":"2886:19:51"},"variableNames":[{"name":"tail","nativeSrc":"2878:4:51","nodeType":"YulIdentifier","src":"2878:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2921:9:51","nodeType":"YulIdentifier","src":"2921:9:51"},{"name":"value0","nativeSrc":"2932:6:51","nodeType":"YulIdentifier","src":"2932:6:51"}],"functionName":{"name":"mstore","nativeSrc":"2914:6:51","nodeType":"YulIdentifier","src":"2914:6:51"},"nativeSrc":"2914:25:51","nodeType":"YulFunctionCall","src":"2914:25:51"},"nativeSrc":"2914:25:51","nodeType":"YulExpressionStatement","src":"2914:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2959:9:51","nodeType":"YulIdentifier","src":"2959:9:51"},{"kind":"number","nativeSrc":"2970:2:51","nodeType":"YulLiteral","src":"2970:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2955:3:51","nodeType":"YulIdentifier","src":"2955:3:51"},"nativeSrc":"2955:18:51","nodeType":"YulFunctionCall","src":"2955:18:51"},{"name":"value1","nativeSrc":"2975:6:51","nodeType":"YulIdentifier","src":"2975:6:51"}],"functionName":{"name":"mstore","nativeSrc":"2948:6:51","nodeType":"YulIdentifier","src":"2948:6:51"},"nativeSrc":"2948:34:51","nodeType":"YulFunctionCall","src":"2948:34:51"},"nativeSrc":"2948:34:51","nodeType":"YulExpressionStatement","src":"2948:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3002:9:51","nodeType":"YulIdentifier","src":"3002:9:51"},{"kind":"number","nativeSrc":"3013:2:51","nodeType":"YulLiteral","src":"3013:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2998:3:51","nodeType":"YulIdentifier","src":"2998:3:51"},"nativeSrc":"2998:18:51","nodeType":"YulFunctionCall","src":"2998:18:51"},{"name":"value2","nativeSrc":"3018:6:51","nodeType":"YulIdentifier","src":"3018:6:51"}],"functionName":{"name":"mstore","nativeSrc":"2991:6:51","nodeType":"YulIdentifier","src":"2991:6:51"},"nativeSrc":"2991:34:51","nodeType":"YulFunctionCall","src":"2991:34:51"},"nativeSrc":"2991:34:51","nodeType":"YulExpressionStatement","src":"2991:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3045:9:51","nodeType":"YulIdentifier","src":"3045:9:51"},{"kind":"number","nativeSrc":"3056:2:51","nodeType":"YulLiteral","src":"3056:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3041:3:51","nodeType":"YulIdentifier","src":"3041:3:51"},"nativeSrc":"3041:18:51","nodeType":"YulFunctionCall","src":"3041:18:51"},{"name":"value3","nativeSrc":"3061:6:51","nodeType":"YulIdentifier","src":"3061:6:51"}],"functionName":{"name":"mstore","nativeSrc":"3034:6:51","nodeType":"YulIdentifier","src":"3034:6:51"},"nativeSrc":"3034:34:51","nodeType":"YulFunctionCall","src":"3034:34:51"},"nativeSrc":"3034:34:51","nodeType":"YulExpressionStatement","src":"3034:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3088:9:51","nodeType":"YulIdentifier","src":"3088:9:51"},{"kind":"number","nativeSrc":"3099:3:51","nodeType":"YulLiteral","src":"3099:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3084:3:51","nodeType":"YulIdentifier","src":"3084:3:51"},"nativeSrc":"3084:19:51","nodeType":"YulFunctionCall","src":"3084:19:51"},{"arguments":[{"name":"value4","nativeSrc":"3109:6:51","nodeType":"YulIdentifier","src":"3109:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3125:3:51","nodeType":"YulLiteral","src":"3125:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"3130:1:51","nodeType":"YulLiteral","src":"3130:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3121:3:51","nodeType":"YulIdentifier","src":"3121:3:51"},"nativeSrc":"3121:11:51","nodeType":"YulFunctionCall","src":"3121:11:51"},{"kind":"number","nativeSrc":"3134:1:51","nodeType":"YulLiteral","src":"3134:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3117:3:51","nodeType":"YulIdentifier","src":"3117:3:51"},"nativeSrc":"3117:19:51","nodeType":"YulFunctionCall","src":"3117:19:51"}],"functionName":{"name":"and","nativeSrc":"3105:3:51","nodeType":"YulIdentifier","src":"3105:3:51"},"nativeSrc":"3105:32:51","nodeType":"YulFunctionCall","src":"3105:32:51"}],"functionName":{"name":"mstore","nativeSrc":"3077:6:51","nodeType":"YulIdentifier","src":"3077:6:51"},"nativeSrc":"3077:61:51","nodeType":"YulFunctionCall","src":"3077:61:51"},"nativeSrc":"3077:61:51","nodeType":"YulExpressionStatement","src":"3077:61:51"}]},"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","nativeSrc":"2655:489:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2805:9:51","nodeType":"YulTypedName","src":"2805:9:51","type":""},{"name":"value4","nativeSrc":"2816:6:51","nodeType":"YulTypedName","src":"2816:6:51","type":""},{"name":"value3","nativeSrc":"2824:6:51","nodeType":"YulTypedName","src":"2824:6:51","type":""},{"name":"value2","nativeSrc":"2832:6:51","nodeType":"YulTypedName","src":"2832:6:51","type":""},{"name":"value1","nativeSrc":"2840:6:51","nodeType":"YulTypedName","src":"2840:6:51","type":""},{"name":"value0","nativeSrc":"2848:6:51","nodeType":"YulTypedName","src":"2848:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2859:4:51","nodeType":"YulTypedName","src":"2859:4:51","type":""}],"src":"2655:489:51"},{"body":{"nativeSrc":"3270:406:51","nodeType":"YulBlock","src":"3270:406:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3287:9:51","nodeType":"YulIdentifier","src":"3287:9:51"},{"kind":"number","nativeSrc":"3298:2:51","nodeType":"YulLiteral","src":"3298:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"3280:6:51","nodeType":"YulIdentifier","src":"3280:6:51"},"nativeSrc":"3280:21:51","nodeType":"YulFunctionCall","src":"3280:21:51"},"nativeSrc":"3280:21:51","nodeType":"YulExpressionStatement","src":"3280:21:51"},{"nativeSrc":"3310:27:51","nodeType":"YulVariableDeclaration","src":"3310:27:51","value":{"arguments":[{"name":"value0","nativeSrc":"3330:6:51","nodeType":"YulIdentifier","src":"3330:6:51"}],"functionName":{"name":"mload","nativeSrc":"3324:5:51","nodeType":"YulIdentifier","src":"3324:5:51"},"nativeSrc":"3324:13:51","nodeType":"YulFunctionCall","src":"3324:13:51"},"variables":[{"name":"length","nativeSrc":"3314:6:51","nodeType":"YulTypedName","src":"3314:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3357:9:51","nodeType":"YulIdentifier","src":"3357:9:51"},{"kind":"number","nativeSrc":"3368:2:51","nodeType":"YulLiteral","src":"3368:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3353:3:51","nodeType":"YulIdentifier","src":"3353:3:51"},"nativeSrc":"3353:18:51","nodeType":"YulFunctionCall","src":"3353:18:51"},{"name":"length","nativeSrc":"3373:6:51","nodeType":"YulIdentifier","src":"3373:6:51"}],"functionName":{"name":"mstore","nativeSrc":"3346:6:51","nodeType":"YulIdentifier","src":"3346:6:51"},"nativeSrc":"3346:34:51","nodeType":"YulFunctionCall","src":"3346:34:51"},"nativeSrc":"3346:34:51","nodeType":"YulExpressionStatement","src":"3346:34:51"},{"nativeSrc":"3389:10:51","nodeType":"YulVariableDeclaration","src":"3389:10:51","value":{"kind":"number","nativeSrc":"3398:1:51","nodeType":"YulLiteral","src":"3398:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"3393:1:51","nodeType":"YulTypedName","src":"3393:1:51","type":""}]},{"body":{"nativeSrc":"3458:90:51","nodeType":"YulBlock","src":"3458:90:51","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3487:9:51","nodeType":"YulIdentifier","src":"3487:9:51"},{"name":"i","nativeSrc":"3498:1:51","nodeType":"YulIdentifier","src":"3498:1:51"}],"functionName":{"name":"add","nativeSrc":"3483:3:51","nodeType":"YulIdentifier","src":"3483:3:51"},"nativeSrc":"3483:17:51","nodeType":"YulFunctionCall","src":"3483:17:51"},{"kind":"number","nativeSrc":"3502:2:51","nodeType":"YulLiteral","src":"3502:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3479:3:51","nodeType":"YulIdentifier","src":"3479:3:51"},"nativeSrc":"3479:26:51","nodeType":"YulFunctionCall","src":"3479:26:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"3521:6:51","nodeType":"YulIdentifier","src":"3521:6:51"},{"name":"i","nativeSrc":"3529:1:51","nodeType":"YulIdentifier","src":"3529:1:51"}],"functionName":{"name":"add","nativeSrc":"3517:3:51","nodeType":"YulIdentifier","src":"3517:3:51"},"nativeSrc":"3517:14:51","nodeType":"YulFunctionCall","src":"3517:14:51"},{"kind":"number","nativeSrc":"3533:2:51","nodeType":"YulLiteral","src":"3533:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3513:3:51","nodeType":"YulIdentifier","src":"3513:3:51"},"nativeSrc":"3513:23:51","nodeType":"YulFunctionCall","src":"3513:23:51"}],"functionName":{"name":"mload","nativeSrc":"3507:5:51","nodeType":"YulIdentifier","src":"3507:5:51"},"nativeSrc":"3507:30:51","nodeType":"YulFunctionCall","src":"3507:30:51"}],"functionName":{"name":"mstore","nativeSrc":"3472:6:51","nodeType":"YulIdentifier","src":"3472:6:51"},"nativeSrc":"3472:66:51","nodeType":"YulFunctionCall","src":"3472:66:51"},"nativeSrc":"3472:66:51","nodeType":"YulExpressionStatement","src":"3472:66:51"}]},"condition":{"arguments":[{"name":"i","nativeSrc":"3419:1:51","nodeType":"YulIdentifier","src":"3419:1:51"},{"name":"length","nativeSrc":"3422:6:51","nodeType":"YulIdentifier","src":"3422:6:51"}],"functionName":{"name":"lt","nativeSrc":"3416:2:51","nodeType":"YulIdentifier","src":"3416:2:51"},"nativeSrc":"3416:13:51","nodeType":"YulFunctionCall","src":"3416:13:51"},"nativeSrc":"3408:140:51","nodeType":"YulForLoop","post":{"nativeSrc":"3430:19:51","nodeType":"YulBlock","src":"3430:19:51","statements":[{"nativeSrc":"3432:15:51","nodeType":"YulAssignment","src":"3432:15:51","value":{"arguments":[{"name":"i","nativeSrc":"3441:1:51","nodeType":"YulIdentifier","src":"3441:1:51"},{"kind":"number","nativeSrc":"3444:2:51","nodeType":"YulLiteral","src":"3444:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3437:3:51","nodeType":"YulIdentifier","src":"3437:3:51"},"nativeSrc":"3437:10:51","nodeType":"YulFunctionCall","src":"3437:10:51"},"variableNames":[{"name":"i","nativeSrc":"3432:1:51","nodeType":"YulIdentifier","src":"3432:1:51"}]}]},"pre":{"nativeSrc":"3412:3:51","nodeType":"YulBlock","src":"3412:3:51","statements":[]},"src":"3408:140:51"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3572:9:51","nodeType":"YulIdentifier","src":"3572:9:51"},{"name":"length","nativeSrc":"3583:6:51","nodeType":"YulIdentifier","src":"3583:6:51"}],"functionName":{"name":"add","nativeSrc":"3568:3:51","nodeType":"YulIdentifier","src":"3568:3:51"},"nativeSrc":"3568:22:51","nodeType":"YulFunctionCall","src":"3568:22:51"},{"kind":"number","nativeSrc":"3592:2:51","nodeType":"YulLiteral","src":"3592:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3564:3:51","nodeType":"YulIdentifier","src":"3564:3:51"},"nativeSrc":"3564:31:51","nodeType":"YulFunctionCall","src":"3564:31:51"},{"kind":"number","nativeSrc":"3597:1:51","nodeType":"YulLiteral","src":"3597:1:51","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"3557:6:51","nodeType":"YulIdentifier","src":"3557:6:51"},"nativeSrc":"3557:42:51","nodeType":"YulFunctionCall","src":"3557:42:51"},"nativeSrc":"3557:42:51","nodeType":"YulExpressionStatement","src":"3557:42:51"},{"nativeSrc":"3608:62:51","nodeType":"YulAssignment","src":"3608:62:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3624:9:51","nodeType":"YulIdentifier","src":"3624:9:51"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"3643:6:51","nodeType":"YulIdentifier","src":"3643:6:51"},{"kind":"number","nativeSrc":"3651:2:51","nodeType":"YulLiteral","src":"3651:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"3639:3:51","nodeType":"YulIdentifier","src":"3639:3:51"},"nativeSrc":"3639:15:51","nodeType":"YulFunctionCall","src":"3639:15:51"},{"arguments":[{"kind":"number","nativeSrc":"3660:2:51","nodeType":"YulLiteral","src":"3660:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"3656:3:51","nodeType":"YulIdentifier","src":"3656:3:51"},"nativeSrc":"3656:7:51","nodeType":"YulFunctionCall","src":"3656:7:51"}],"functionName":{"name":"and","nativeSrc":"3635:3:51","nodeType":"YulIdentifier","src":"3635:3:51"},"nativeSrc":"3635:29:51","nodeType":"YulFunctionCall","src":"3635:29:51"}],"functionName":{"name":"add","nativeSrc":"3620:3:51","nodeType":"YulIdentifier","src":"3620:3:51"},"nativeSrc":"3620:45:51","nodeType":"YulFunctionCall","src":"3620:45:51"},{"kind":"number","nativeSrc":"3667:2:51","nodeType":"YulLiteral","src":"3667:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3616:3:51","nodeType":"YulIdentifier","src":"3616:3:51"},"nativeSrc":"3616:54:51","nodeType":"YulFunctionCall","src":"3616:54:51"},"variableNames":[{"name":"tail","nativeSrc":"3608:4:51","nodeType":"YulIdentifier","src":"3608:4:51"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"3149:527:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3239:9:51","nodeType":"YulTypedName","src":"3239:9:51","type":""},{"name":"value0","nativeSrc":"3250:6:51","nodeType":"YulTypedName","src":"3250:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3261:4:51","nodeType":"YulTypedName","src":"3261:4:51","type":""}],"src":"3149:527:51"},{"body":{"nativeSrc":"3775:203:51","nodeType":"YulBlock","src":"3775:203:51","statements":[{"nativeSrc":"3785:26:51","nodeType":"YulVariableDeclaration","src":"3785:26:51","value":{"arguments":[{"name":"array","nativeSrc":"3805:5:51","nodeType":"YulIdentifier","src":"3805:5:51"}],"functionName":{"name":"mload","nativeSrc":"3799:5:51","nodeType":"YulIdentifier","src":"3799:5:51"},"nativeSrc":"3799:12:51","nodeType":"YulFunctionCall","src":"3799:12:51"},"variables":[{"name":"length","nativeSrc":"3789:6:51","nodeType":"YulTypedName","src":"3789:6:51","type":""}]},{"nativeSrc":"3820:32:51","nodeType":"YulAssignment","src":"3820:32:51","value":{"arguments":[{"arguments":[{"name":"array","nativeSrc":"3839:5:51","nodeType":"YulIdentifier","src":"3839:5:51"},{"kind":"number","nativeSrc":"3846:4:51","nodeType":"YulLiteral","src":"3846:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"3835:3:51","nodeType":"YulIdentifier","src":"3835:3:51"},"nativeSrc":"3835:16:51","nodeType":"YulFunctionCall","src":"3835:16:51"}],"functionName":{"name":"mload","nativeSrc":"3829:5:51","nodeType":"YulIdentifier","src":"3829:5:51"},"nativeSrc":"3829:23:51","nodeType":"YulFunctionCall","src":"3829:23:51"},"variableNames":[{"name":"value","nativeSrc":"3820:5:51","nodeType":"YulIdentifier","src":"3820:5:51"}]},{"body":{"nativeSrc":"3889:83:51","nodeType":"YulBlock","src":"3889:83:51","statements":[{"nativeSrc":"3903:59:51","nodeType":"YulAssignment","src":"3903:59:51","value":{"arguments":[{"name":"value","nativeSrc":"3916:5:51","nodeType":"YulIdentifier","src":"3916:5:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3931:1:51","nodeType":"YulLiteral","src":"3931:1:51","type":"","value":"3"},{"arguments":[{"kind":"number","nativeSrc":"3938:4:51","nodeType":"YulLiteral","src":"3938:4:51","type":"","value":"0x20"},{"name":"length","nativeSrc":"3944:6:51","nodeType":"YulIdentifier","src":"3944:6:51"}],"functionName":{"name":"sub","nativeSrc":"3934:3:51","nodeType":"YulIdentifier","src":"3934:3:51"},"nativeSrc":"3934:17:51","nodeType":"YulFunctionCall","src":"3934:17:51"}],"functionName":{"name":"shl","nativeSrc":"3927:3:51","nodeType":"YulIdentifier","src":"3927:3:51"},"nativeSrc":"3927:25:51","nodeType":"YulFunctionCall","src":"3927:25:51"},{"arguments":[{"kind":"number","nativeSrc":"3958:1:51","nodeType":"YulLiteral","src":"3958:1:51","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"3954:3:51","nodeType":"YulIdentifier","src":"3954:3:51"},"nativeSrc":"3954:6:51","nodeType":"YulFunctionCall","src":"3954:6:51"}],"functionName":{"name":"shl","nativeSrc":"3923:3:51","nodeType":"YulIdentifier","src":"3923:3:51"},"nativeSrc":"3923:38:51","nodeType":"YulFunctionCall","src":"3923:38:51"}],"functionName":{"name":"and","nativeSrc":"3912:3:51","nodeType":"YulIdentifier","src":"3912:3:51"},"nativeSrc":"3912:50:51","nodeType":"YulFunctionCall","src":"3912:50:51"},"variableNames":[{"name":"value","nativeSrc":"3903:5:51","nodeType":"YulIdentifier","src":"3903:5:51"}]}]},"condition":{"arguments":[{"name":"length","nativeSrc":"3867:6:51","nodeType":"YulIdentifier","src":"3867:6:51"},{"kind":"number","nativeSrc":"3875:4:51","nodeType":"YulLiteral","src":"3875:4:51","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"3864:2:51","nodeType":"YulIdentifier","src":"3864:2:51"},"nativeSrc":"3864:16:51","nodeType":"YulFunctionCall","src":"3864:16:51"},"nativeSrc":"3861:111:51","nodeType":"YulIf","src":"3861:111:51"}]},"name":"convert_bytes_to_fixedbytes_from_t_bytes_memory_ptr_to_t_bytes32","nativeSrc":"3681:297:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"3755:5:51","nodeType":"YulTypedName","src":"3755:5:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"3765:5:51","nodeType":"YulTypedName","src":"3765:5:51","type":""}],"src":"3681:297:51"}]},"contents":"{\n    { }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\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 array_dataslot_string_storage(ptr) -> data\n    {\n        mstore(0, ptr)\n        data := keccak256(0, 0x20)\n    }\n    function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n    {\n        if gt(len, 31)\n        {\n            mstore(0, array)\n            let data := keccak256(0, 0x20)\n            let deleteStart := add(data, shr(5, add(startIndex, 31)))\n            if lt(startIndex, 0x20) { deleteStart := data }\n            let _1 := add(data, shr(5, add(len, 31)))\n            let start := deleteStart\n            for { } lt(start, _1) { start := add(start, 1) }\n            { sstore(start, 0) }\n        }\n    }\n    function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n    {\n        used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n    }\n    function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n    {\n        let newLen := mload(src)\n        if gt(newLen, sub(shl(64, 1), 1)) { panic_error_0x41() }\n        clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n        let srcOffset := 0\n        srcOffset := 0x20\n        switch gt(newLen, 31)\n        case 1 {\n            let loopEnd := and(newLen, not(31))\n            let dstPtr := array_dataslot_string_storage(slot)\n            let i := 0\n            for { } lt(i, loopEnd) { i := add(i, 0x20) }\n            {\n                sstore(dstPtr, mload(add(src, srcOffset)))\n                dstPtr := add(dstPtr, 1)\n                srcOffset := add(srcOffset, 0x20)\n            }\n            if lt(loopEnd, newLen)\n            {\n                let lastValue := mload(add(src, srcOffset))\n                sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n            }\n            sstore(slot, add(shl(1, newLen), 1))\n        }\n        default {\n            let value := 0\n            if newLen\n            {\n                value := mload(add(src, srcOffset))\n            }\n            sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n        }\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__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        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), 32)))\n        }\n        mstore(add(add(headStart, length), 64), 0)\n        tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n    }\n    function convert_bytes_to_fixedbytes_from_t_bytes_memory_ptr_to_t_bytes32(array) -> value\n    {\n        let length := mload(array)\n        value := mload(add(array, 0x20))\n        if lt(length, 0x20)\n        {\n            value := and(value, shl(shl(3, sub(0x20, length)), not(0)))\n        }\n    }\n}","id":51,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"61016060405234801561001157600080fd5b506040518060400160405280600b81526020016a15dc985c1c19590bd5d25560aa1b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600b81526020016a15dc985c1c19590815d25560aa1b8152506040518060400160405280600381526020016215d25560ea1b81525081600390816100a09190610281565b5060046100ad8282610281565b506100bd91508390506005610168565b610120526100cc816006610168565b61014052815160208084019190912060e052815190820120610100524660a05261015960e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60805250503060c052506103b1565b60006020835110156101845761017d8361019b565b9050610195565b8161018f8482610281565b5060ff90505b92915050565b600080829050601f815111156101cf578260405163305a27a960e01b81526004016101c6919061033f565b60405180910390fd5b80516101da8261038d565b179392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168061020c57607f821691505b60208210810361022c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561027c57806000526020600020601f840160051c810160208510156102595750805b601f840160051c820191505b818110156102795760008155600101610265565b50505b505050565b81516001600160401b0381111561029a5761029a6101e2565b6102ae816102a884546101f8565b84610232565b6020601f8211600181146102e257600083156102ca5750848201515b600019600385901b1c1916600184901b178455610279565b600084815260208120601f198516915b8281101561031257878501518255602094850194600190920191016102f2565b50848210156103305786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b602081526000825180602084015260005b8181101561036d5760208186018101516040868401015201610350565b506000604082850101526040601f19601f83011684010191505092915050565b8051602080830151919081101561022c5760001960209190910360031b1b16919050565b60805160a05160c05160e05161010051610120516101405161110b61040b60003960006108e4015260006108b70152600061085f0152600061083701526000610792015260006107bc015260006107e6015261110b6000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80633644e5151161009757806395d89b411161006657806395d89b4114610210578063a9059cbb14610218578063d505accf1461022b578063dd62ed3e1461023e57600080fd5b80633644e515146101b157806370a08231146101b95780637ecebe00146101e257806384b0196e146101f557600080fd5b806318bf5077116100d357806318bf50771461016757806323b872dd1461017c5780632b8c49e31461018f578063313ce567146101a257600080fd5b806301ffc9a71461010557806306fdde031461012d578063095ea7b31461014257806318160ddd14610155575b600080fd5b610118610113366004610dfe565b610277565b60405190151581526020015b60405180910390f35b6101356102ae565b6040516101249190610e75565b610118610150366004610ea4565b610340565b6002545b604051908152602001610124565b61017a610175366004610ea4565b610358565b005b61011861018a366004610ece565b6103b0565b61017a61019d366004610ea4565b6103d4565b60405160098152602001610124565b610159610424565b6101596101c7366004610f0b565b6001600160a01b031660009081526020819052604090205490565b6101596101f0366004610f0b565b610433565b6101fd610451565b6040516101249796959493929190610f26565b610135610497565b610118610226366004610ea4565b6104a6565b61017a610239366004610fbe565b6104b4565b61015961024c366004611031565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006001600160e01b03198216630cccc66560e21b14806102a857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546102bd90611064565b80601f01602080910402602001604051908101604052809291908181526020018280546102e990611064565b80156103365780601f1061030b57610100808354040283529160200191610336565b820191906000526020600020905b81548152906001019060200180831161031957829003601f168201915b5050505050905090565b60003361034e8185856105f3565b5060019392505050565b61036133610605565b61036b8282610637565b60405181815233906001600160a01b038416907fde22baff038e3a3e08407cbdf617deed74e869a7ba517df611e33131c6e6ea04906020015b60405180910390a35050565b6000336103be858285610671565b6103c98585856106f0565b506001949350505050565b6103dd33610605565b6103e7828261074f565b60405181815233906001600160a01b038416907fb90795a66650155983e242cac3e1ac1a4dc26f8ed2987f3ce416a34e00111fd4906020016103a4565b600061042e610785565b905090565b6001600160a01b0381166000908152600760205260408120546102a8565b6000606080600080600060606104656108b0565b61046d6108dd565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6060600480546102bd90611064565b60003361034e8185856106f0565b834211156104dd5760405163313c898160e11b8152600481018590526024015b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861052a8c6001600160a01b0316600090815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006105858261090a565b9050600061059582878787610937565b9050896001600160a01b0316816001600160a01b0316146105dc576040516325c0072360e11b81526001600160a01b0380831660048301528b1660248201526044016104d4565b6105e78a8a8a6105f3565b50505050505050505050565b6106008383836001610965565b505050565b6001600160a01b0381166028602160991b0114610634576040516282b42960e81b815260040160405180910390fd5b50565b6001600160a01b0382166106615760405163ec442f0560e01b8152600060048201526024016104d4565b61066d60008383610a3a565b5050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198110156106ea57818110156106db57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016104d4565b6106ea84848484036000610965565b50505050565b6001600160a01b03831661071a57604051634b637e8f60e11b8152600060048201526024016104d4565b6001600160a01b0382166107445760405163ec442f0560e01b8152600060048201526024016104d4565b610600838383610a3a565b6001600160a01b03821661077957604051634b637e8f60e11b8152600060048201526024016104d4565b61066d82600083610a3a565b6000306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156107de57507f000000000000000000000000000000000000000000000000000000000000000046145b1561080857507f000000000000000000000000000000000000000000000000000000000000000090565b61042e604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b606061042e7f00000000000000000000000000000000000000000000000000000000000000006005610b64565b606061042e7f00000000000000000000000000000000000000000000000000000000000000006006610b64565b60006102a8610917610785565b8360405161190160f01b8152600281019290925260228201526042902090565b60008060008061094988888888610c0f565b9250925092506109598282610cde565b50909695505050505050565b6001600160a01b03841661098f5760405163e602df0560e01b8152600060048201526024016104d4565b6001600160a01b0383166109b957604051634a1406b160e11b8152600060048201526024016104d4565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156106ea57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a2c91815260200190565b60405180910390a350505050565b6001600160a01b038316610a65578060026000828254610a5a919061109e565b90915550610ad79050565b6001600160a01b03831660009081526020819052604090205481811015610ab85760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016104d4565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610af357600280548290039055610b12565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b5791815260200190565b60405180910390a3505050565b606060ff8314610b7e57610b7783610d97565b90506102a8565b818054610b8a90611064565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb690611064565b8015610c035780601f10610bd857610100808354040283529160200191610c03565b820191906000526020600020905b815481529060010190602001808311610be657829003601f168201915b505050505090506102a8565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610c4a5750600091506003905082610cd4565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610c9e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610cca57506000925060019150829050610cd4565b9250600091508190505b9450945094915050565b6000826003811115610cf257610cf26110bf565b03610cfb575050565b6001826003811115610d0f57610d0f6110bf565b03610d2d5760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610d4157610d416110bf565b03610d625760405163fce698f760e01b8152600481018290526024016104d4565b6003826003811115610d7657610d766110bf565b0361066d576040516335e2f38360e21b8152600481018290526024016104d4565b60606000610da483610dd6565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b600060ff8216601f8111156102a857604051632cd44ac360e21b815260040160405180910390fd5b600060208284031215610e1057600080fd5b81356001600160e01b031981168114610e2857600080fd5b9392505050565b6000815180845260005b81811015610e5557602081850181015186830182015201610e39565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000610e286020830184610e2f565b80356001600160a01b0381168114610e9f57600080fd5b919050565b60008060408385031215610eb757600080fd5b610ec083610e88565b946020939093013593505050565b600080600060608486031215610ee357600080fd5b610eec84610e88565b9250610efa60208501610e88565b929592945050506040919091013590565b600060208284031215610f1d57600080fd5b610e2882610e88565b60ff60f81b8816815260e060208201526000610f4560e0830189610e2f565b8281036040840152610f578189610e2f565b606084018890526001600160a01b038716608085015260a0840186905283810360c08501528451808252602080870193509091019060005b81811015610fad578351835260209384019390920191600101610f8f565b50909b9a5050505050505050505050565b600080600080600080600060e0888a031215610fd957600080fd5b610fe288610e88565b9650610ff060208901610e88565b95506040880135945060608801359350608088013560ff8116811461101457600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561104457600080fd5b61104d83610e88565b915061105b60208401610e88565b90509250929050565b600181811c9082168061107857607f821691505b60208210810361109857634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102a857634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea26469706673582212204025291af35330df43c9096757c1e2057f99b65f742e03c53b93652afa8d267564736f6c634300081c0033","opcodes":"PUSH2 0x160 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xB DUP2 MSTORE PUSH1 0x20 ADD PUSH11 0x15DC985C1C19590BD5D255 PUSH1 0xAA SHL 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 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xB DUP2 MSTORE PUSH1 0x20 ADD PUSH11 0x15DC985C1C19590815D255 PUSH1 0xAA SHL DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x15D255 PUSH1 0xEA SHL DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH2 0xA0 SWAP2 SWAP1 PUSH2 0x281 JUMP JUMPDEST POP PUSH1 0x4 PUSH2 0xAD DUP3 DUP3 PUSH2 0x281 JUMP JUMPDEST POP PUSH2 0xBD SWAP2 POP DUP4 SWAP1 POP PUSH1 0x5 PUSH2 0x168 JUMP JUMPDEST PUSH2 0x120 MSTORE PUSH2 0xCC DUP2 PUSH1 0x6 PUSH2 0x168 JUMP JUMPDEST PUSH2 0x140 MSTORE DUP2 MLOAD PUSH1 0x20 DUP1 DUP5 ADD SWAP2 SWAP1 SWAP2 KECCAK256 PUSH1 0xE0 MSTORE DUP2 MLOAD SWAP1 DUP3 ADD KECCAK256 PUSH2 0x100 MSTORE CHAINID PUSH1 0xA0 MSTORE PUSH2 0x159 PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH1 0x20 DUP3 ADD MSTORE SWAP1 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 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 SWAP1 JUMP JUMPDEST PUSH1 0x80 MSTORE POP POP ADDRESS PUSH1 0xC0 MSTORE POP PUSH2 0x3B1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP4 MLOAD LT ISZERO PUSH2 0x184 JUMPI PUSH2 0x17D DUP4 PUSH2 0x19B JUMP JUMPDEST SWAP1 POP PUSH2 0x195 JUMP JUMPDEST DUP2 PUSH2 0x18F DUP5 DUP3 PUSH2 0x281 JUMP JUMPDEST POP PUSH1 0xFF SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 SWAP1 POP PUSH1 0x1F DUP2 MLOAD GT ISZERO PUSH2 0x1CF JUMPI DUP3 PUSH1 0x40 MLOAD PUSH4 0x305A27A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C6 SWAP2 SWAP1 PUSH2 0x33F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1DA DUP3 PUSH2 0x38D JUMP JUMPDEST OR SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x20C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x22C 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 0x1F DUP3 GT ISZERO PUSH2 0x27C JUMPI DUP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x259 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x279 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x265 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x29A JUMPI PUSH2 0x29A PUSH2 0x1E2 JUMP JUMPDEST PUSH2 0x2AE DUP2 PUSH2 0x2A8 DUP5 SLOAD PUSH2 0x1F8 JUMP JUMPDEST DUP5 PUSH2 0x232 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x2E2 JUMPI PUSH1 0x0 DUP4 ISZERO PUSH2 0x2CA JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x279 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x312 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x2F2 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x330 JUMPI DUP7 DUP5 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP8 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x36D JUMPI PUSH1 0x20 DUP2 DUP7 ADD DUP2 ADD MLOAD PUSH1 0x40 DUP7 DUP5 ADD ADD MSTORE ADD PUSH2 0x350 JUMP JUMPDEST POP PUSH1 0x0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP1 DUP4 ADD MLOAD SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0x22C JUMPI PUSH1 0x0 NOT PUSH1 0x20 SWAP2 SWAP1 SWAP2 SUB PUSH1 0x3 SHL SHL AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x140 MLOAD PUSH2 0x110B PUSH2 0x40B PUSH1 0x0 CODECOPY PUSH1 0x0 PUSH2 0x8E4 ADD MSTORE PUSH1 0x0 PUSH2 0x8B7 ADD MSTORE PUSH1 0x0 PUSH2 0x85F ADD MSTORE PUSH1 0x0 PUSH2 0x837 ADD MSTORE PUSH1 0x0 PUSH2 0x792 ADD MSTORE PUSH1 0x0 PUSH2 0x7BC ADD MSTORE PUSH1 0x0 PUSH2 0x7E6 ADD MSTORE PUSH2 0x110B 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 0x3644E515 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x210 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x218 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x22B JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x23E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3644E515 EQ PUSH2 0x1B1 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1B9 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x1E2 JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x1F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18BF5077 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x18BF5077 EQ PUSH2 0x167 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x2B8C49E3 EQ PUSH2 0x18F JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x105 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x12D JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x155 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x118 PUSH2 0x113 CALLDATASIZE PUSH1 0x4 PUSH2 0xDFE JUMP JUMPDEST PUSH2 0x277 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x135 PUSH2 0x2AE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x124 SWAP2 SWAP1 PUSH2 0xE75 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x150 CALLDATASIZE PUSH1 0x4 PUSH2 0xEA4 JUMP JUMPDEST PUSH2 0x340 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x124 JUMP JUMPDEST PUSH2 0x17A PUSH2 0x175 CALLDATASIZE PUSH1 0x4 PUSH2 0xEA4 JUMP JUMPDEST PUSH2 0x358 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x118 PUSH2 0x18A CALLDATASIZE PUSH1 0x4 PUSH2 0xECE JUMP JUMPDEST PUSH2 0x3B0 JUMP JUMPDEST PUSH2 0x17A PUSH2 0x19D CALLDATASIZE PUSH1 0x4 PUSH2 0xEA4 JUMP JUMPDEST PUSH2 0x3D4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x9 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x124 JUMP JUMPDEST PUSH2 0x159 PUSH2 0x424 JUMP JUMPDEST PUSH2 0x159 PUSH2 0x1C7 CALLDATASIZE PUSH1 0x4 PUSH2 0xF0B 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 0x159 PUSH2 0x1F0 CALLDATASIZE PUSH1 0x4 PUSH2 0xF0B JUMP JUMPDEST PUSH2 0x433 JUMP JUMPDEST PUSH2 0x1FD PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x124 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xF26 JUMP JUMPDEST PUSH2 0x135 PUSH2 0x497 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x226 CALLDATASIZE PUSH1 0x4 PUSH2 0xEA4 JUMP JUMPDEST PUSH2 0x4A6 JUMP JUMPDEST PUSH2 0x17A PUSH2 0x239 CALLDATASIZE PUSH1 0x4 PUSH2 0xFBE JUMP JUMPDEST PUSH2 0x4B4 JUMP JUMPDEST PUSH2 0x159 PUSH2 0x24C CALLDATASIZE PUSH1 0x4 PUSH2 0x1031 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 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xCCCC665 PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x2A8 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x2BD SWAP1 PUSH2 0x1064 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 0x2E9 SWAP1 PUSH2 0x1064 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x336 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x30B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x336 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 0x319 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x34E DUP2 DUP6 DUP6 PUSH2 0x5F3 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x361 CALLER PUSH2 0x605 JUMP JUMPDEST PUSH2 0x36B DUP3 DUP3 PUSH2 0x637 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0xDE22BAFF038E3A3E08407CBDF617DEED74E869A7BA517DF611E33131C6E6EA04 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x3BE DUP6 DUP3 DUP6 PUSH2 0x671 JUMP JUMPDEST PUSH2 0x3C9 DUP6 DUP6 DUP6 PUSH2 0x6F0 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x3DD CALLER PUSH2 0x605 JUMP JUMPDEST PUSH2 0x3E7 DUP3 DUP3 PUSH2 0x74F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0xB90795A66650155983E242CAC3E1AC1A4DC26F8ED2987F3CE416A34E00111FD4 SWAP1 PUSH1 0x20 ADD PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42E PUSH2 0x785 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x2A8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 PUSH2 0x465 PUSH2 0x8B0 JUMP JUMPDEST PUSH2 0x46D PUSH2 0x8DD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0xF PUSH1 0xF8 SHL SWAP12 SWAP4 SWAP11 POP SWAP2 SWAP9 POP CHAINID SWAP8 POP ADDRESS SWAP7 POP SWAP5 POP SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x2BD SWAP1 PUSH2 0x1064 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x34E DUP2 DUP6 DUP6 PUSH2 0x6F0 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x4DD JUMPI PUSH1 0x40 MLOAD PUSH4 0x313C8981 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x52A DUP13 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE SWAP1 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 0x585 DUP3 PUSH2 0x90A JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x595 DUP3 DUP8 DUP8 DUP8 PUSH2 0x937 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 0x5DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x25C00723 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x4 DUP4 ADD MSTORE DUP12 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0x5E7 DUP11 DUP11 DUP11 PUSH2 0x5F3 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x600 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x965 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x28 PUSH1 0x21 PUSH1 0x99 SHL ADD EQ PUSH2 0x634 JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x661 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0x66D PUSH1 0x0 DUP4 DUP4 PUSH2 0xA3A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0x0 NOT DUP2 LT ISZERO PUSH2 0x6EA JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x6DB JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0x6EA DUP5 DUP5 DUP5 DUP5 SUB PUSH1 0x0 PUSH2 0x965 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x71A JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x744 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0x600 DUP4 DUP4 DUP4 PUSH2 0xA3A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x779 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0x66D DUP3 PUSH1 0x0 DUP4 PUSH2 0xA3A JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x7DE JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0x808 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x42E PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x0 SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 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 SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x42E PUSH32 0x0 PUSH1 0x5 PUSH2 0xB64 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x42E PUSH32 0x0 PUSH1 0x6 PUSH2 0xB64 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A8 PUSH2 0x917 PUSH2 0x785 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH2 0x1901 PUSH1 0xF0 SHL DUP2 MSTORE PUSH1 0x2 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x949 DUP9 DUP9 DUP9 DUP9 PUSH2 0xC0F JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x959 DUP3 DUP3 PUSH2 0xCDE JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x98F JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x9B9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 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 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0x6EA JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0xA2C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xA65 JUMPI DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xA5A SWAP2 SWAP1 PUSH2 0x109E JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xAD7 SWAP1 POP 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 0xAB8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xAF3 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0xB12 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 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xB57 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xFF DUP4 EQ PUSH2 0xB7E JUMPI PUSH2 0xB77 DUP4 PUSH2 0xD97 JUMP JUMPDEST SWAP1 POP PUSH2 0x2A8 JUMP JUMPDEST DUP2 DUP1 SLOAD PUSH2 0xB8A SWAP1 PUSH2 0x1064 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 0xBB6 SWAP1 PUSH2 0x1064 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xC03 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xBD8 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xC03 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 0xBE6 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH2 0x2A8 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0xC4A JUMPI POP PUSH1 0x0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0xCD4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 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 0xC9E 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 0xCCA JUMPI POP PUSH1 0x0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0xCD4 JUMP JUMPDEST SWAP3 POP PUSH1 0x0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xCF2 JUMPI PUSH2 0xCF2 PUSH2 0x10BF JUMP JUMPDEST SUB PUSH2 0xCFB JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD0F JUMPI PUSH2 0xD0F PUSH2 0x10BF JUMP JUMPDEST SUB PUSH2 0xD2D JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD41 JUMPI PUSH2 0xD41 PUSH2 0x10BF JUMP JUMPDEST SUB PUSH2 0xD62 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD76 JUMPI PUSH2 0xD76 PUSH2 0x10BF JUMP JUMPDEST SUB PUSH2 0x66D JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0xDA4 DUP4 PUSH2 0xDD6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE SWAP2 SWAP3 POP PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP POP POP SWAP2 DUP3 MSTORE POP PUSH1 0x20 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0x1F DUP2 GT ISZERO PUSH2 0x2A8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xE28 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE55 JUMPI PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD MLOAD DUP7 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0xE39 JUMP JUMPDEST POP PUSH1 0x0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0xE28 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xE2F JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE9F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEB7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEC0 DUP4 PUSH2 0xE88 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 0xEE3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEEC DUP5 PUSH2 0xE88 JUMP JUMPDEST SWAP3 POP PUSH2 0xEFA PUSH1 0x20 DUP6 ADD PUSH2 0xE88 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 0xF1D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE28 DUP3 PUSH2 0xE88 JUMP JUMPDEST PUSH1 0xFF PUSH1 0xF8 SHL DUP9 AND DUP2 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0xF45 PUSH1 0xE0 DUP4 ADD DUP10 PUSH2 0xE2F JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0xF57 DUP2 DUP10 PUSH2 0xE2F JUMP JUMPDEST PUSH1 0x60 DUP5 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD DUP7 SWAP1 MSTORE DUP4 DUP2 SUB PUSH1 0xC0 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP8 ADD SWAP4 POP SWAP1 SWAP2 ADD SWAP1 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xFAD JUMPI DUP4 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0xF8F JUMP JUMPDEST POP SWAP1 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0xFD9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xFE2 DUP9 PUSH2 0xE88 JUMP JUMPDEST SWAP7 POP PUSH2 0xFF0 PUSH1 0x20 DUP10 ADD PUSH2 0xE88 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 0x1014 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 0x1044 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x104D DUP4 PUSH2 0xE88 JUMP JUMPDEST SWAP2 POP PUSH2 0x105B PUSH1 0x20 DUP5 ADD PUSH2 0xE88 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1078 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1098 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 DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x2A8 JUMPI 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 BLOCKHASH 0x25 0x29 BYTE RETURN MSTORE8 ADDRESS 0xDF NUMBER 0xC9 MULMOD PUSH8 0x57C1E2057F99B65F PUSH21 0x2E03C53B93652AFA8D267564736F6C634300081C00 CALLER ","sourceMap":"405:1006:31:-:0;;;617:71;;;;;;;;;;1577:52:9;;;;;;;;;;;;;-1:-1:-1;;;1577:52:9;;;1616:4;3428:431:19;;;;;;;;;;;;;-1:-1:-1;;;3428:431:19;;;1582:113:7;;;;;;;;;;;;;-1:-1:-1;;;1582:113:7;;;;;;;;;;;;;;;;-1:-1:-1;;;1582:113:7;;;1656:5;1648;:13;;;;;;:::i;:::-;-1:-1:-1;1671:7:7;:17;1681:7;1671;:17;:::i;:::-;-1:-1:-1;3501:45:19;;-1:-1:-1;3501:4:19;;-1:-1:-1;3532:13:19;3501:30;:45::i;:::-;3493:53;;3567:51;:7;3601:16;3567:33;:51::i;:::-;3556:62;;3642:22;;;;;;;;;;3628:36;;3691:25;;;;;;3674:42;;3744:13;3727:30;;3792:23;4326:11;;4339:14;;4304:80;;;2079:95;4304:80;;;2914:25:51;2955:18;;;2948:34;;;;2998:18;;;2991:34;4355:13:19;3041:18:51;;;3034:34;4378:4:19;3084:19:51;;;3077:61;4268:7:19;;2886:19:51;;4304:80:19;;;;;;;;;;;;4294:91;;;;;;4287:98;;4213:179;;3792:23;3767:48;;-1:-1:-1;;3847:4:19;3825:27;;-1:-1:-1;405:1006:31;;2887:340:15;2983:11;3032:2;3016:5;3010:19;:24;3006:215;;;3057:20;3071:5;3057:13;:20::i;:::-;3050:27;;;;3006:215;3134:5;3108:46;3149:5;3134;3108:46;:::i;:::-;-1:-1:-1;1390:66:15;;-1:-1:-1;3006:215:15;2887:340;;;;:::o;1708:286::-;1773:11;1796:17;1822:3;1796:30;;1854:2;1840:4;:11;:16;1836:72;;;1893:3;1879:18;;-1:-1:-1;;;1879:18:15;;;;;;;;:::i;:::-;;;;;;;;1836:72;1974:11;;1957:13;1974:4;1957:13;:::i;:::-;1949:36;;1708:286;-1:-1:-1;;;1708:286:15:o;14:127:51:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:380;225:1;221:12;;;;268;;;289:61;;343:4;335:6;331:17;321:27;;289:61;396:2;388:6;385:14;365:18;362:38;359:161;;442:10;437:3;433:20;430:1;423:31;477:4;474:1;467:15;505:4;502:1;495:15;359:161;;146:380;;;:::o;657:518::-;759:2;754:3;751:11;748:421;;;795:5;792:1;785:16;839:4;836:1;826:18;909:2;897:10;893:19;890:1;886:27;880:4;876:38;945:4;933:10;930:20;927:47;;;-1:-1:-1;968:4:51;927:47;1023:2;1018:3;1014:12;1011:1;1007:20;1001:4;997:31;987:41;;1078:81;1096:2;1089:5;1086:13;1078:81;;;1155:1;1141:16;;1122:1;1111:13;1078:81;;;1082:3;;748:421;657:518;;;:::o;1351:1299::-;1471:10;;-1:-1:-1;;;;;1493:30:51;;1490:56;;;1526:18;;:::i;:::-;1555:97;1645:6;1605:38;1637:4;1631:11;1605:38;:::i;:::-;1599:4;1555:97;:::i;:::-;1701:4;1732:2;1721:14;;1749:1;1744:649;;;;2437:1;2454:6;2451:89;;;-1:-1:-1;2506:19:51;;;2500:26;2451:89;-1:-1:-1;;1308:1:51;1304:11;;;1300:24;1296:29;1286:40;1332:1;1328:11;;;1283:57;2553:81;;1714:930;;1744:649;604:1;597:14;;;641:4;628:18;;-1:-1:-1;;1780:20:51;;;1898:222;1912:7;1909:1;1906:14;1898:222;;;1994:19;;;1988:26;1973:42;;2101:4;2086:20;;;;2054:1;2042:14;;;;1928:12;1898:222;;;1902:3;2148:6;2139:7;2136:19;2133:201;;;2209:19;;;2203:26;-1:-1:-1;;2292:1:51;2288:14;;;2304:3;2284:24;2280:37;2276:42;2261:58;2246:74;;2133:201;-1:-1:-1;;;;2380:1:51;2364:14;;;2360:22;2347:36;;-1:-1:-1;1351:1299:51:o;3149:527::-;3298:2;3287:9;3280:21;3261:4;3330:6;3324:13;3373:6;3368:2;3357:9;3353:18;3346:34;3398:1;3408:140;3422:6;3419:1;3416:13;3408:140;;;3533:2;3517:14;;;3513:23;;3507:30;3502:2;3483:17;;;3479:26;3472:66;3437:10;3408:140;;;3412:3;3597:1;3592:2;3583:6;3572:9;3568:22;3564:31;3557:42;3667:2;3660;3656:7;3651:2;3643:6;3639:15;3635:29;3624:9;3620:45;3616:54;3608:62;;;3149:527;;;;:::o;3681:297::-;3799:12;;3846:4;3835:16;;;3829:23;;3799:12;3864:16;;3861:111;;;-1:-1:-1;;3938:4:51;3934:17;;;;3931:1;3927:25;3923:38;3912:50;;3681:297;-1:-1:-1;3681:297:51:o;:::-;405:1006:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@DOMAIN_SEPARATOR_1556":{"entryPoint":1060,"id":1556,"parameterSlots":0,"returnSlots":1},"@_EIP712Name_4074":{"entryPoint":2224,"id":4074,"parameterSlots":0,"returnSlots":1},"@_EIP712Version_4086":{"entryPoint":2269,"id":4086,"parameterSlots":0,"returnSlots":1},"@_approve_1216":{"entryPoint":1523,"id":1216,"parameterSlots":3,"returnSlots":0},"@_approve_1276":{"entryPoint":2405,"id":1276,"parameterSlots":4,"returnSlots":0},"@_buildDomainSeparator_4004":{"entryPoint":null,"id":4004,"parameterSlots":0,"returnSlots":1},"@_burn_1198":{"entryPoint":1871,"id":1198,"parameterSlots":2,"returnSlots":0},"@_checkTokenBridge_9870":{"entryPoint":1541,"id":9870,"parameterSlots":1,"returnSlots":0},"@_domainSeparatorV4_3983":{"entryPoint":1925,"id":3983,"parameterSlots":0,"returnSlots":1},"@_hashTypedDataV4_4020":{"entryPoint":2314,"id":4020,"parameterSlots":1,"returnSlots":1},"@_mint_1165":{"entryPoint":1591,"id":1165,"parameterSlots":2,"returnSlots":0},"@_msgSender_1631":{"entryPoint":null,"id":1631,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_1324":{"entryPoint":1649,"id":1324,"parameterSlots":3,"returnSlots":0},"@_throwError_3859":{"entryPoint":3294,"id":3859,"parameterSlots":2,"returnSlots":0},"@_transfer_1055":{"entryPoint":1776,"id":1055,"parameterSlots":3,"returnSlots":0},"@_update_1132":{"entryPoint":2618,"id":1132,"parameterSlots":3,"returnSlots":0},"@_useNonce_1691":{"entryPoint":null,"id":1691,"parameterSlots":1,"returnSlots":1},"@allowance_952":{"entryPoint":null,"id":952,"parameterSlots":2,"returnSlots":1},"@approve_976":{"entryPoint":832,"id":976,"parameterSlots":2,"returnSlots":1},"@balanceOf_911":{"entryPoint":null,"id":911,"parameterSlots":1,"returnSlots":1},"@byteLength_1887":{"entryPoint":3542,"id":1887,"parameterSlots":1,"returnSlots":1},"@crosschainBurn_139":{"entryPoint":980,"id":139,"parameterSlots":2,"returnSlots":0},"@crosschainMint_115":{"entryPoint":856,"id":115,"parameterSlots":2,"returnSlots":0},"@decimals_9880":{"entryPoint":null,"id":9880,"parameterSlots":0,"returnSlots":1},"@eip712Domain_4062":{"entryPoint":1105,"id":4062,"parameterSlots":0,"returnSlots":7},"@name_871":{"entryPoint":686,"id":871,"parameterSlots":0,"returnSlots":1},"@nonces_1546":{"entryPoint":1075,"id":1546,"parameterSlots":1,"returnSlots":1},"@nonces_1676":{"entryPoint":null,"id":1676,"parameterSlots":1,"returnSlots":1},"@permit_1529":{"entryPoint":1204,"id":1529,"parameterSlots":7,"returnSlots":0},"@recover_3810":{"entryPoint":2359,"id":3810,"parameterSlots":4,"returnSlots":1},"@supportsInterface_4196":{"entryPoint":null,"id":4196,"parameterSlots":1,"returnSlots":1},"@supportsInterface_91":{"entryPoint":631,"id":91,"parameterSlots":1,"returnSlots":1},"@symbol_880":{"entryPoint":1175,"id":880,"parameterSlots":0,"returnSlots":1},"@toStringWithFallback_1954":{"entryPoint":2916,"id":1954,"parameterSlots":2,"returnSlots":1},"@toString_1855":{"entryPoint":3479,"id":1855,"parameterSlots":1,"returnSlots":1},"@toTypedDataHash_4172":{"entryPoint":null,"id":4172,"parameterSlots":2,"returnSlots":1},"@totalSupply_898":{"entryPoint":null,"id":898,"parameterSlots":0,"returnSlots":1},"@transferFrom_1008":{"entryPoint":944,"id":1008,"parameterSlots":3,"returnSlots":1},"@transfer_935":{"entryPoint":1190,"id":935,"parameterSlots":2,"returnSlots":1},"@tryRecover_3774":{"entryPoint":3087,"id":3774,"parameterSlots":4,"returnSlots":3},"abi_decode_address":{"entryPoint":3720,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":3851,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":4145,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":3790,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":4030,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":3748,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes4":{"entryPoint":3582,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string":{"entryPoint":3631,"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_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"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_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed":{"entryPoint":3878,"id":null,"parameterSlots":8,"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":3701,"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_uint256":{"entryPoint":4254,"id":null,"parameterSlots":2,"returnSlots":1},"extract_byte_array_length":{"entryPoint":4196,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x21":{"entryPoint":4287,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:8374:51","nodeType":"YulBlock","src":"0:8374:51","statements":[{"nativeSrc":"6:3:51","nodeType":"YulBlock","src":"6:3:51","statements":[]},{"body":{"nativeSrc":"83:217:51","nodeType":"YulBlock","src":"83:217:51","statements":[{"body":{"nativeSrc":"129:16:51","nodeType":"YulBlock","src":"129:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"138:1:51","nodeType":"YulLiteral","src":"138:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"141:1:51","nodeType":"YulLiteral","src":"141:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"131:6:51","nodeType":"YulIdentifier","src":"131:6:51"},"nativeSrc":"131:12:51","nodeType":"YulFunctionCall","src":"131:12:51"},"nativeSrc":"131:12:51","nodeType":"YulExpressionStatement","src":"131:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"104:7:51","nodeType":"YulIdentifier","src":"104:7:51"},{"name":"headStart","nativeSrc":"113:9:51","nodeType":"YulIdentifier","src":"113:9:51"}],"functionName":{"name":"sub","nativeSrc":"100:3:51","nodeType":"YulIdentifier","src":"100:3:51"},"nativeSrc":"100:23:51","nodeType":"YulFunctionCall","src":"100:23:51"},{"kind":"number","nativeSrc":"125:2:51","nodeType":"YulLiteral","src":"125:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"96:3:51","nodeType":"YulIdentifier","src":"96:3:51"},"nativeSrc":"96:32:51","nodeType":"YulFunctionCall","src":"96:32:51"},"nativeSrc":"93:52:51","nodeType":"YulIf","src":"93:52:51"},{"nativeSrc":"154:36:51","nodeType":"YulVariableDeclaration","src":"154:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"180:9:51","nodeType":"YulIdentifier","src":"180:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"167:12:51","nodeType":"YulIdentifier","src":"167:12:51"},"nativeSrc":"167:23:51","nodeType":"YulFunctionCall","src":"167:23:51"},"variables":[{"name":"value","nativeSrc":"158:5:51","nodeType":"YulTypedName","src":"158:5:51","type":""}]},{"body":{"nativeSrc":"254:16:51","nodeType":"YulBlock","src":"254:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"263:1:51","nodeType":"YulLiteral","src":"263:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"266:1:51","nodeType":"YulLiteral","src":"266:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"256:6:51","nodeType":"YulIdentifier","src":"256:6:51"},"nativeSrc":"256:12:51","nodeType":"YulFunctionCall","src":"256:12:51"},"nativeSrc":"256:12:51","nodeType":"YulExpressionStatement","src":"256:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"212:5:51","nodeType":"YulIdentifier","src":"212:5:51"},{"arguments":[{"name":"value","nativeSrc":"223:5:51","nodeType":"YulIdentifier","src":"223:5:51"},{"arguments":[{"kind":"number","nativeSrc":"234:3:51","nodeType":"YulLiteral","src":"234:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"239:10:51","nodeType":"YulLiteral","src":"239:10:51","type":"","value":"0xffffffff"}],"functionName":{"name":"shl","nativeSrc":"230:3:51","nodeType":"YulIdentifier","src":"230:3:51"},"nativeSrc":"230:20:51","nodeType":"YulFunctionCall","src":"230:20:51"}],"functionName":{"name":"and","nativeSrc":"219:3:51","nodeType":"YulIdentifier","src":"219:3:51"},"nativeSrc":"219:32:51","nodeType":"YulFunctionCall","src":"219:32:51"}],"functionName":{"name":"eq","nativeSrc":"209:2:51","nodeType":"YulIdentifier","src":"209:2:51"},"nativeSrc":"209:43:51","nodeType":"YulFunctionCall","src":"209:43:51"}],"functionName":{"name":"iszero","nativeSrc":"202:6:51","nodeType":"YulIdentifier","src":"202:6:51"},"nativeSrc":"202:51:51","nodeType":"YulFunctionCall","src":"202:51:51"},"nativeSrc":"199:71:51","nodeType":"YulIf","src":"199:71:51"},{"nativeSrc":"279:15:51","nodeType":"YulAssignment","src":"279:15:51","value":{"name":"value","nativeSrc":"289:5:51","nodeType":"YulIdentifier","src":"289:5:51"},"variableNames":[{"name":"value0","nativeSrc":"279:6:51","nodeType":"YulIdentifier","src":"279:6:51"}]}]},"name":"abi_decode_tuple_t_bytes4","nativeSrc":"14:286:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"49:9:51","nodeType":"YulTypedName","src":"49:9:51","type":""},{"name":"dataEnd","nativeSrc":"60:7:51","nodeType":"YulTypedName","src":"60:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"72:6:51","nodeType":"YulTypedName","src":"72:6:51","type":""}],"src":"14:286:51"},{"body":{"nativeSrc":"400:92:51","nodeType":"YulBlock","src":"400:92:51","statements":[{"nativeSrc":"410:26:51","nodeType":"YulAssignment","src":"410:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"422:9:51","nodeType":"YulIdentifier","src":"422:9:51"},{"kind":"number","nativeSrc":"433:2:51","nodeType":"YulLiteral","src":"433:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"418:3:51","nodeType":"YulIdentifier","src":"418:3:51"},"nativeSrc":"418:18:51","nodeType":"YulFunctionCall","src":"418:18:51"},"variableNames":[{"name":"tail","nativeSrc":"410:4:51","nodeType":"YulIdentifier","src":"410:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"452:9:51","nodeType":"YulIdentifier","src":"452:9:51"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"477:6:51","nodeType":"YulIdentifier","src":"477:6:51"}],"functionName":{"name":"iszero","nativeSrc":"470:6:51","nodeType":"YulIdentifier","src":"470:6:51"},"nativeSrc":"470:14:51","nodeType":"YulFunctionCall","src":"470:14:51"}],"functionName":{"name":"iszero","nativeSrc":"463:6:51","nodeType":"YulIdentifier","src":"463:6:51"},"nativeSrc":"463:22:51","nodeType":"YulFunctionCall","src":"463:22:51"}],"functionName":{"name":"mstore","nativeSrc":"445:6:51","nodeType":"YulIdentifier","src":"445:6:51"},"nativeSrc":"445:41:51","nodeType":"YulFunctionCall","src":"445:41:51"},"nativeSrc":"445:41:51","nodeType":"YulExpressionStatement","src":"445:41:51"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"305:187:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"369:9:51","nodeType":"YulTypedName","src":"369:9:51","type":""},{"name":"value0","nativeSrc":"380:6:51","nodeType":"YulTypedName","src":"380:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"391:4:51","nodeType":"YulTypedName","src":"391:4:51","type":""}],"src":"305:187:51"},{"body":{"nativeSrc":"547:350:51","nodeType":"YulBlock","src":"547:350:51","statements":[{"nativeSrc":"557:26:51","nodeType":"YulVariableDeclaration","src":"557:26:51","value":{"arguments":[{"name":"value","nativeSrc":"577:5:51","nodeType":"YulIdentifier","src":"577:5:51"}],"functionName":{"name":"mload","nativeSrc":"571:5:51","nodeType":"YulIdentifier","src":"571:5:51"},"nativeSrc":"571:12:51","nodeType":"YulFunctionCall","src":"571:12:51"},"variables":[{"name":"length","nativeSrc":"561:6:51","nodeType":"YulTypedName","src":"561:6:51","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"599:3:51","nodeType":"YulIdentifier","src":"599:3:51"},{"name":"length","nativeSrc":"604:6:51","nodeType":"YulIdentifier","src":"604:6:51"}],"functionName":{"name":"mstore","nativeSrc":"592:6:51","nodeType":"YulIdentifier","src":"592:6:51"},"nativeSrc":"592:19:51","nodeType":"YulFunctionCall","src":"592:19:51"},"nativeSrc":"592:19:51","nodeType":"YulExpressionStatement","src":"592:19:51"},{"nativeSrc":"620:10:51","nodeType":"YulVariableDeclaration","src":"620:10:51","value":{"kind":"number","nativeSrc":"629:1:51","nodeType":"YulLiteral","src":"629:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"624:1:51","nodeType":"YulTypedName","src":"624:1:51","type":""}]},{"body":{"nativeSrc":"691:87:51","nodeType":"YulBlock","src":"691:87:51","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"720:3:51","nodeType":"YulIdentifier","src":"720:3:51"},{"name":"i","nativeSrc":"725:1:51","nodeType":"YulIdentifier","src":"725:1:51"}],"functionName":{"name":"add","nativeSrc":"716:3:51","nodeType":"YulIdentifier","src":"716:3:51"},"nativeSrc":"716:11:51","nodeType":"YulFunctionCall","src":"716:11:51"},{"kind":"number","nativeSrc":"729:4:51","nodeType":"YulLiteral","src":"729:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"712:3:51","nodeType":"YulIdentifier","src":"712:3:51"},"nativeSrc":"712:22:51","nodeType":"YulFunctionCall","src":"712:22:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"value","nativeSrc":"750:5:51","nodeType":"YulIdentifier","src":"750:5:51"},{"name":"i","nativeSrc":"757:1:51","nodeType":"YulIdentifier","src":"757:1:51"}],"functionName":{"name":"add","nativeSrc":"746:3:51","nodeType":"YulIdentifier","src":"746:3:51"},"nativeSrc":"746:13:51","nodeType":"YulFunctionCall","src":"746:13:51"},{"kind":"number","nativeSrc":"761:4:51","nodeType":"YulLiteral","src":"761:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"742:3:51","nodeType":"YulIdentifier","src":"742:3:51"},"nativeSrc":"742:24:51","nodeType":"YulFunctionCall","src":"742:24:51"}],"functionName":{"name":"mload","nativeSrc":"736:5:51","nodeType":"YulIdentifier","src":"736:5:51"},"nativeSrc":"736:31:51","nodeType":"YulFunctionCall","src":"736:31:51"}],"functionName":{"name":"mstore","nativeSrc":"705:6:51","nodeType":"YulIdentifier","src":"705:6:51"},"nativeSrc":"705:63:51","nodeType":"YulFunctionCall","src":"705:63:51"},"nativeSrc":"705:63:51","nodeType":"YulExpressionStatement","src":"705:63:51"}]},"condition":{"arguments":[{"name":"i","nativeSrc":"650:1:51","nodeType":"YulIdentifier","src":"650:1:51"},{"name":"length","nativeSrc":"653:6:51","nodeType":"YulIdentifier","src":"653:6:51"}],"functionName":{"name":"lt","nativeSrc":"647:2:51","nodeType":"YulIdentifier","src":"647:2:51"},"nativeSrc":"647:13:51","nodeType":"YulFunctionCall","src":"647:13:51"},"nativeSrc":"639:139:51","nodeType":"YulForLoop","post":{"nativeSrc":"661:21:51","nodeType":"YulBlock","src":"661:21:51","statements":[{"nativeSrc":"663:17:51","nodeType":"YulAssignment","src":"663:17:51","value":{"arguments":[{"name":"i","nativeSrc":"672:1:51","nodeType":"YulIdentifier","src":"672:1:51"},{"kind":"number","nativeSrc":"675:4:51","nodeType":"YulLiteral","src":"675:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"668:3:51","nodeType":"YulIdentifier","src":"668:3:51"},"nativeSrc":"668:12:51","nodeType":"YulFunctionCall","src":"668:12:51"},"variableNames":[{"name":"i","nativeSrc":"663:1:51","nodeType":"YulIdentifier","src":"663:1:51"}]}]},"pre":{"nativeSrc":"643:3:51","nodeType":"YulBlock","src":"643:3:51","statements":[]},"src":"639:139:51"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"802:3:51","nodeType":"YulIdentifier","src":"802:3:51"},{"name":"length","nativeSrc":"807:6:51","nodeType":"YulIdentifier","src":"807:6:51"}],"functionName":{"name":"add","nativeSrc":"798:3:51","nodeType":"YulIdentifier","src":"798:3:51"},"nativeSrc":"798:16:51","nodeType":"YulFunctionCall","src":"798:16:51"},{"kind":"number","nativeSrc":"816:4:51","nodeType":"YulLiteral","src":"816:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"794:3:51","nodeType":"YulIdentifier","src":"794:3:51"},"nativeSrc":"794:27:51","nodeType":"YulFunctionCall","src":"794:27:51"},{"kind":"number","nativeSrc":"823:1:51","nodeType":"YulLiteral","src":"823:1:51","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"787:6:51","nodeType":"YulIdentifier","src":"787:6:51"},"nativeSrc":"787:38:51","nodeType":"YulFunctionCall","src":"787:38:51"},"nativeSrc":"787:38:51","nodeType":"YulExpressionStatement","src":"787:38:51"},{"nativeSrc":"834:57:51","nodeType":"YulAssignment","src":"834:57:51","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"849:3:51","nodeType":"YulIdentifier","src":"849:3:51"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"862:6:51","nodeType":"YulIdentifier","src":"862:6:51"},{"kind":"number","nativeSrc":"870:2:51","nodeType":"YulLiteral","src":"870:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"858:3:51","nodeType":"YulIdentifier","src":"858:3:51"},"nativeSrc":"858:15:51","nodeType":"YulFunctionCall","src":"858:15:51"},{"arguments":[{"kind":"number","nativeSrc":"879:2:51","nodeType":"YulLiteral","src":"879:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"875:3:51","nodeType":"YulIdentifier","src":"875:3:51"},"nativeSrc":"875:7:51","nodeType":"YulFunctionCall","src":"875:7:51"}],"functionName":{"name":"and","nativeSrc":"854:3:51","nodeType":"YulIdentifier","src":"854:3:51"},"nativeSrc":"854:29:51","nodeType":"YulFunctionCall","src":"854:29:51"}],"functionName":{"name":"add","nativeSrc":"845:3:51","nodeType":"YulIdentifier","src":"845:3:51"},"nativeSrc":"845:39:51","nodeType":"YulFunctionCall","src":"845:39:51"},{"kind":"number","nativeSrc":"886:4:51","nodeType":"YulLiteral","src":"886:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"841:3:51","nodeType":"YulIdentifier","src":"841:3:51"},"nativeSrc":"841:50:51","nodeType":"YulFunctionCall","src":"841:50:51"},"variableNames":[{"name":"end","nativeSrc":"834:3:51","nodeType":"YulIdentifier","src":"834:3:51"}]}]},"name":"abi_encode_string","nativeSrc":"497:400:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"524:5:51","nodeType":"YulTypedName","src":"524:5:51","type":""},{"name":"pos","nativeSrc":"531:3:51","nodeType":"YulTypedName","src":"531:3:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"539:3:51","nodeType":"YulTypedName","src":"539:3:51","type":""}],"src":"497:400:51"},{"body":{"nativeSrc":"1023:99:51","nodeType":"YulBlock","src":"1023:99:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1040:9:51","nodeType":"YulIdentifier","src":"1040:9:51"},{"kind":"number","nativeSrc":"1051:2:51","nodeType":"YulLiteral","src":"1051:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"1033:6:51","nodeType":"YulIdentifier","src":"1033:6:51"},"nativeSrc":"1033:21:51","nodeType":"YulFunctionCall","src":"1033:21:51"},"nativeSrc":"1033:21:51","nodeType":"YulExpressionStatement","src":"1033:21:51"},{"nativeSrc":"1063:53:51","nodeType":"YulAssignment","src":"1063:53:51","value":{"arguments":[{"name":"value0","nativeSrc":"1089:6:51","nodeType":"YulIdentifier","src":"1089:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"1101:9:51","nodeType":"YulIdentifier","src":"1101:9:51"},{"kind":"number","nativeSrc":"1112:2:51","nodeType":"YulLiteral","src":"1112:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1097:3:51","nodeType":"YulIdentifier","src":"1097:3:51"},"nativeSrc":"1097:18:51","nodeType":"YulFunctionCall","src":"1097:18:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"1071:17:51","nodeType":"YulIdentifier","src":"1071:17:51"},"nativeSrc":"1071:45:51","nodeType":"YulFunctionCall","src":"1071:45:51"},"variableNames":[{"name":"tail","nativeSrc":"1063:4:51","nodeType":"YulIdentifier","src":"1063:4:51"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"902:220:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"992:9:51","nodeType":"YulTypedName","src":"992:9:51","type":""},{"name":"value0","nativeSrc":"1003:6:51","nodeType":"YulTypedName","src":"1003:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1014:4:51","nodeType":"YulTypedName","src":"1014:4:51","type":""}],"src":"902:220:51"},{"body":{"nativeSrc":"1176:124:51","nodeType":"YulBlock","src":"1176:124:51","statements":[{"nativeSrc":"1186:29:51","nodeType":"YulAssignment","src":"1186:29:51","value":{"arguments":[{"name":"offset","nativeSrc":"1208:6:51","nodeType":"YulIdentifier","src":"1208:6:51"}],"functionName":{"name":"calldataload","nativeSrc":"1195:12:51","nodeType":"YulIdentifier","src":"1195:12:51"},"nativeSrc":"1195:20:51","nodeType":"YulFunctionCall","src":"1195:20:51"},"variableNames":[{"name":"value","nativeSrc":"1186:5:51","nodeType":"YulIdentifier","src":"1186:5:51"}]},{"body":{"nativeSrc":"1278:16:51","nodeType":"YulBlock","src":"1278:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1287:1:51","nodeType":"YulLiteral","src":"1287:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1290:1:51","nodeType":"YulLiteral","src":"1290:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1280:6:51","nodeType":"YulIdentifier","src":"1280:6:51"},"nativeSrc":"1280:12:51","nodeType":"YulFunctionCall","src":"1280:12:51"},"nativeSrc":"1280:12:51","nodeType":"YulExpressionStatement","src":"1280:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1237:5:51","nodeType":"YulIdentifier","src":"1237:5:51"},{"arguments":[{"name":"value","nativeSrc":"1248:5:51","nodeType":"YulIdentifier","src":"1248:5:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1263:3:51","nodeType":"YulLiteral","src":"1263:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"1268:1:51","nodeType":"YulLiteral","src":"1268:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1259:3:51","nodeType":"YulIdentifier","src":"1259:3:51"},"nativeSrc":"1259:11:51","nodeType":"YulFunctionCall","src":"1259:11:51"},{"kind":"number","nativeSrc":"1272:1:51","nodeType":"YulLiteral","src":"1272:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1255:3:51","nodeType":"YulIdentifier","src":"1255:3:51"},"nativeSrc":"1255:19:51","nodeType":"YulFunctionCall","src":"1255:19:51"}],"functionName":{"name":"and","nativeSrc":"1244:3:51","nodeType":"YulIdentifier","src":"1244:3:51"},"nativeSrc":"1244:31:51","nodeType":"YulFunctionCall","src":"1244:31:51"}],"functionName":{"name":"eq","nativeSrc":"1234:2:51","nodeType":"YulIdentifier","src":"1234:2:51"},"nativeSrc":"1234:42:51","nodeType":"YulFunctionCall","src":"1234:42:51"}],"functionName":{"name":"iszero","nativeSrc":"1227:6:51","nodeType":"YulIdentifier","src":"1227:6:51"},"nativeSrc":"1227:50:51","nodeType":"YulFunctionCall","src":"1227:50:51"},"nativeSrc":"1224:70:51","nodeType":"YulIf","src":"1224:70:51"}]},"name":"abi_decode_address","nativeSrc":"1127:173:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"1155:6:51","nodeType":"YulTypedName","src":"1155:6:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"1166:5:51","nodeType":"YulTypedName","src":"1166:5:51","type":""}],"src":"1127:173:51"},{"body":{"nativeSrc":"1392:213:51","nodeType":"YulBlock","src":"1392:213:51","statements":[{"body":{"nativeSrc":"1438:16:51","nodeType":"YulBlock","src":"1438:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1447:1:51","nodeType":"YulLiteral","src":"1447:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1450:1:51","nodeType":"YulLiteral","src":"1450:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1440:6:51","nodeType":"YulIdentifier","src":"1440:6:51"},"nativeSrc":"1440:12:51","nodeType":"YulFunctionCall","src":"1440:12:51"},"nativeSrc":"1440:12:51","nodeType":"YulExpressionStatement","src":"1440:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1413:7:51","nodeType":"YulIdentifier","src":"1413:7:51"},{"name":"headStart","nativeSrc":"1422:9:51","nodeType":"YulIdentifier","src":"1422:9:51"}],"functionName":{"name":"sub","nativeSrc":"1409:3:51","nodeType":"YulIdentifier","src":"1409:3:51"},"nativeSrc":"1409:23:51","nodeType":"YulFunctionCall","src":"1409:23:51"},{"kind":"number","nativeSrc":"1434:2:51","nodeType":"YulLiteral","src":"1434:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"1405:3:51","nodeType":"YulIdentifier","src":"1405:3:51"},"nativeSrc":"1405:32:51","nodeType":"YulFunctionCall","src":"1405:32:51"},"nativeSrc":"1402:52:51","nodeType":"YulIf","src":"1402:52:51"},{"nativeSrc":"1463:39:51","nodeType":"YulAssignment","src":"1463:39:51","value":{"arguments":[{"name":"headStart","nativeSrc":"1492:9:51","nodeType":"YulIdentifier","src":"1492:9:51"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1473:18:51","nodeType":"YulIdentifier","src":"1473:18:51"},"nativeSrc":"1473:29:51","nodeType":"YulFunctionCall","src":"1473:29:51"},"variableNames":[{"name":"value0","nativeSrc":"1463:6:51","nodeType":"YulIdentifier","src":"1463:6:51"}]},{"nativeSrc":"1511:14:51","nodeType":"YulVariableDeclaration","src":"1511:14:51","value":{"kind":"number","nativeSrc":"1524:1:51","nodeType":"YulLiteral","src":"1524:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1515:5:51","nodeType":"YulTypedName","src":"1515:5:51","type":""}]},{"nativeSrc":"1534:41:51","nodeType":"YulAssignment","src":"1534:41:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1560:9:51","nodeType":"YulIdentifier","src":"1560:9:51"},{"kind":"number","nativeSrc":"1571:2:51","nodeType":"YulLiteral","src":"1571:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1556:3:51","nodeType":"YulIdentifier","src":"1556:3:51"},"nativeSrc":"1556:18:51","nodeType":"YulFunctionCall","src":"1556:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"1543:12:51","nodeType":"YulIdentifier","src":"1543:12:51"},"nativeSrc":"1543:32:51","nodeType":"YulFunctionCall","src":"1543:32:51"},"variableNames":[{"name":"value","nativeSrc":"1534:5:51","nodeType":"YulIdentifier","src":"1534:5:51"}]},{"nativeSrc":"1584:15:51","nodeType":"YulAssignment","src":"1584:15:51","value":{"name":"value","nativeSrc":"1594:5:51","nodeType":"YulIdentifier","src":"1594:5:51"},"variableNames":[{"name":"value1","nativeSrc":"1584:6:51","nodeType":"YulIdentifier","src":"1584:6:51"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"1305:300:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1350:9:51","nodeType":"YulTypedName","src":"1350:9:51","type":""},{"name":"dataEnd","nativeSrc":"1361:7:51","nodeType":"YulTypedName","src":"1361:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1373:6:51","nodeType":"YulTypedName","src":"1373:6:51","type":""},{"name":"value1","nativeSrc":"1381:6:51","nodeType":"YulTypedName","src":"1381:6:51","type":""}],"src":"1305:300:51"},{"body":{"nativeSrc":"1711:76:51","nodeType":"YulBlock","src":"1711:76:51","statements":[{"nativeSrc":"1721:26:51","nodeType":"YulAssignment","src":"1721:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"1733:9:51","nodeType":"YulIdentifier","src":"1733:9:51"},{"kind":"number","nativeSrc":"1744:2:51","nodeType":"YulLiteral","src":"1744:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1729:3:51","nodeType":"YulIdentifier","src":"1729:3:51"},"nativeSrc":"1729:18:51","nodeType":"YulFunctionCall","src":"1729:18:51"},"variableNames":[{"name":"tail","nativeSrc":"1721:4:51","nodeType":"YulIdentifier","src":"1721:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1763:9:51","nodeType":"YulIdentifier","src":"1763:9:51"},{"name":"value0","nativeSrc":"1774:6:51","nodeType":"YulIdentifier","src":"1774:6:51"}],"functionName":{"name":"mstore","nativeSrc":"1756:6:51","nodeType":"YulIdentifier","src":"1756:6:51"},"nativeSrc":"1756:25:51","nodeType":"YulFunctionCall","src":"1756:25:51"},"nativeSrc":"1756:25:51","nodeType":"YulExpressionStatement","src":"1756:25:51"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"1610:177:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1680:9:51","nodeType":"YulTypedName","src":"1680:9:51","type":""},{"name":"value0","nativeSrc":"1691:6:51","nodeType":"YulTypedName","src":"1691:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1702:4:51","nodeType":"YulTypedName","src":"1702:4:51","type":""}],"src":"1610:177:51"},{"body":{"nativeSrc":"1896:270:51","nodeType":"YulBlock","src":"1896:270:51","statements":[{"body":{"nativeSrc":"1942:16:51","nodeType":"YulBlock","src":"1942:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1951:1:51","nodeType":"YulLiteral","src":"1951:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"1954:1:51","nodeType":"YulLiteral","src":"1954:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1944:6:51","nodeType":"YulIdentifier","src":"1944:6:51"},"nativeSrc":"1944:12:51","nodeType":"YulFunctionCall","src":"1944:12:51"},"nativeSrc":"1944:12:51","nodeType":"YulExpressionStatement","src":"1944:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1917:7:51","nodeType":"YulIdentifier","src":"1917:7:51"},{"name":"headStart","nativeSrc":"1926:9:51","nodeType":"YulIdentifier","src":"1926:9:51"}],"functionName":{"name":"sub","nativeSrc":"1913:3:51","nodeType":"YulIdentifier","src":"1913:3:51"},"nativeSrc":"1913:23:51","nodeType":"YulFunctionCall","src":"1913:23:51"},{"kind":"number","nativeSrc":"1938:2:51","nodeType":"YulLiteral","src":"1938:2:51","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"1909:3:51","nodeType":"YulIdentifier","src":"1909:3:51"},"nativeSrc":"1909:32:51","nodeType":"YulFunctionCall","src":"1909:32:51"},"nativeSrc":"1906:52:51","nodeType":"YulIf","src":"1906:52:51"},{"nativeSrc":"1967:39:51","nodeType":"YulAssignment","src":"1967:39:51","value":{"arguments":[{"name":"headStart","nativeSrc":"1996:9:51","nodeType":"YulIdentifier","src":"1996:9:51"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1977:18:51","nodeType":"YulIdentifier","src":"1977:18:51"},"nativeSrc":"1977:29:51","nodeType":"YulFunctionCall","src":"1977:29:51"},"variableNames":[{"name":"value0","nativeSrc":"1967:6:51","nodeType":"YulIdentifier","src":"1967:6:51"}]},{"nativeSrc":"2015:48:51","nodeType":"YulAssignment","src":"2015:48:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2048:9:51","nodeType":"YulIdentifier","src":"2048:9:51"},{"kind":"number","nativeSrc":"2059:2:51","nodeType":"YulLiteral","src":"2059:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2044:3:51","nodeType":"YulIdentifier","src":"2044:3:51"},"nativeSrc":"2044:18:51","nodeType":"YulFunctionCall","src":"2044:18:51"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2025:18:51","nodeType":"YulIdentifier","src":"2025:18:51"},"nativeSrc":"2025:38:51","nodeType":"YulFunctionCall","src":"2025:38:51"},"variableNames":[{"name":"value1","nativeSrc":"2015:6:51","nodeType":"YulIdentifier","src":"2015:6:51"}]},{"nativeSrc":"2072:14:51","nodeType":"YulVariableDeclaration","src":"2072:14:51","value":{"kind":"number","nativeSrc":"2085:1:51","nodeType":"YulLiteral","src":"2085:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2076:5:51","nodeType":"YulTypedName","src":"2076:5:51","type":""}]},{"nativeSrc":"2095:41:51","nodeType":"YulAssignment","src":"2095:41:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2121:9:51","nodeType":"YulIdentifier","src":"2121:9:51"},{"kind":"number","nativeSrc":"2132:2:51","nodeType":"YulLiteral","src":"2132:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2117:3:51","nodeType":"YulIdentifier","src":"2117:3:51"},"nativeSrc":"2117:18:51","nodeType":"YulFunctionCall","src":"2117:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"2104:12:51","nodeType":"YulIdentifier","src":"2104:12:51"},"nativeSrc":"2104:32:51","nodeType":"YulFunctionCall","src":"2104:32:51"},"variableNames":[{"name":"value","nativeSrc":"2095:5:51","nodeType":"YulIdentifier","src":"2095:5:51"}]},{"nativeSrc":"2145:15:51","nodeType":"YulAssignment","src":"2145:15:51","value":{"name":"value","nativeSrc":"2155:5:51","nodeType":"YulIdentifier","src":"2155:5:51"},"variableNames":[{"name":"value2","nativeSrc":"2145:6:51","nodeType":"YulIdentifier","src":"2145:6:51"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"1792:374:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1846:9:51","nodeType":"YulTypedName","src":"1846:9:51","type":""},{"name":"dataEnd","nativeSrc":"1857:7:51","nodeType":"YulTypedName","src":"1857:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1869:6:51","nodeType":"YulTypedName","src":"1869:6:51","type":""},{"name":"value1","nativeSrc":"1877:6:51","nodeType":"YulTypedName","src":"1877:6:51","type":""},{"name":"value2","nativeSrc":"1885:6:51","nodeType":"YulTypedName","src":"1885:6:51","type":""}],"src":"1792:374:51"},{"body":{"nativeSrc":"2268:87:51","nodeType":"YulBlock","src":"2268:87:51","statements":[{"nativeSrc":"2278:26:51","nodeType":"YulAssignment","src":"2278:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"2290:9:51","nodeType":"YulIdentifier","src":"2290:9:51"},{"kind":"number","nativeSrc":"2301:2:51","nodeType":"YulLiteral","src":"2301:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2286:3:51","nodeType":"YulIdentifier","src":"2286:3:51"},"nativeSrc":"2286:18:51","nodeType":"YulFunctionCall","src":"2286:18:51"},"variableNames":[{"name":"tail","nativeSrc":"2278:4:51","nodeType":"YulIdentifier","src":"2278:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2320:9:51","nodeType":"YulIdentifier","src":"2320:9:51"},{"arguments":[{"name":"value0","nativeSrc":"2335:6:51","nodeType":"YulIdentifier","src":"2335:6:51"},{"kind":"number","nativeSrc":"2343:4:51","nodeType":"YulLiteral","src":"2343:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"2331:3:51","nodeType":"YulIdentifier","src":"2331:3:51"},"nativeSrc":"2331:17:51","nodeType":"YulFunctionCall","src":"2331:17:51"}],"functionName":{"name":"mstore","nativeSrc":"2313:6:51","nodeType":"YulIdentifier","src":"2313:6:51"},"nativeSrc":"2313:36:51","nodeType":"YulFunctionCall","src":"2313:36:51"},"nativeSrc":"2313:36:51","nodeType":"YulExpressionStatement","src":"2313:36:51"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"2171:184:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2237:9:51","nodeType":"YulTypedName","src":"2237:9:51","type":""},{"name":"value0","nativeSrc":"2248:6:51","nodeType":"YulTypedName","src":"2248:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2259:4:51","nodeType":"YulTypedName","src":"2259:4:51","type":""}],"src":"2171:184:51"},{"body":{"nativeSrc":"2461:76:51","nodeType":"YulBlock","src":"2461:76:51","statements":[{"nativeSrc":"2471:26:51","nodeType":"YulAssignment","src":"2471:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"2483:9:51","nodeType":"YulIdentifier","src":"2483:9:51"},{"kind":"number","nativeSrc":"2494:2:51","nodeType":"YulLiteral","src":"2494:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2479:3:51","nodeType":"YulIdentifier","src":"2479:3:51"},"nativeSrc":"2479:18:51","nodeType":"YulFunctionCall","src":"2479:18:51"},"variableNames":[{"name":"tail","nativeSrc":"2471:4:51","nodeType":"YulIdentifier","src":"2471:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2513:9:51","nodeType":"YulIdentifier","src":"2513:9:51"},{"name":"value0","nativeSrc":"2524:6:51","nodeType":"YulIdentifier","src":"2524:6:51"}],"functionName":{"name":"mstore","nativeSrc":"2506:6:51","nodeType":"YulIdentifier","src":"2506:6:51"},"nativeSrc":"2506:25:51","nodeType":"YulFunctionCall","src":"2506:25:51"},"nativeSrc":"2506:25:51","nodeType":"YulExpressionStatement","src":"2506:25:51"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"2360:177:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2430:9:51","nodeType":"YulTypedName","src":"2430:9:51","type":""},{"name":"value0","nativeSrc":"2441:6:51","nodeType":"YulTypedName","src":"2441:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2452:4:51","nodeType":"YulTypedName","src":"2452:4:51","type":""}],"src":"2360:177:51"},{"body":{"nativeSrc":"2612:116:51","nodeType":"YulBlock","src":"2612:116:51","statements":[{"body":{"nativeSrc":"2658:16:51","nodeType":"YulBlock","src":"2658:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2667:1:51","nodeType":"YulLiteral","src":"2667:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"2670:1:51","nodeType":"YulLiteral","src":"2670:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2660:6:51","nodeType":"YulIdentifier","src":"2660:6:51"},"nativeSrc":"2660:12:51","nodeType":"YulFunctionCall","src":"2660:12:51"},"nativeSrc":"2660:12:51","nodeType":"YulExpressionStatement","src":"2660:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2633:7:51","nodeType":"YulIdentifier","src":"2633:7:51"},{"name":"headStart","nativeSrc":"2642:9:51","nodeType":"YulIdentifier","src":"2642:9:51"}],"functionName":{"name":"sub","nativeSrc":"2629:3:51","nodeType":"YulIdentifier","src":"2629:3:51"},"nativeSrc":"2629:23:51","nodeType":"YulFunctionCall","src":"2629:23:51"},{"kind":"number","nativeSrc":"2654:2:51","nodeType":"YulLiteral","src":"2654:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"2625:3:51","nodeType":"YulIdentifier","src":"2625:3:51"},"nativeSrc":"2625:32:51","nodeType":"YulFunctionCall","src":"2625:32:51"},"nativeSrc":"2622:52:51","nodeType":"YulIf","src":"2622:52:51"},{"nativeSrc":"2683:39:51","nodeType":"YulAssignment","src":"2683:39:51","value":{"arguments":[{"name":"headStart","nativeSrc":"2712:9:51","nodeType":"YulIdentifier","src":"2712:9:51"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2693:18:51","nodeType":"YulIdentifier","src":"2693:18:51"},"nativeSrc":"2693:29:51","nodeType":"YulFunctionCall","src":"2693:29:51"},"variableNames":[{"name":"value0","nativeSrc":"2683:6:51","nodeType":"YulIdentifier","src":"2683:6:51"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"2542:186:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2578:9:51","nodeType":"YulTypedName","src":"2578:9:51","type":""},{"name":"dataEnd","nativeSrc":"2589:7:51","nodeType":"YulTypedName","src":"2589:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2601:6:51","nodeType":"YulTypedName","src":"2601:6:51","type":""}],"src":"2542:186:51"},{"body":{"nativeSrc":"3090:881:51","nodeType":"YulBlock","src":"3090:881:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3107:9:51","nodeType":"YulIdentifier","src":"3107:9:51"},{"arguments":[{"name":"value0","nativeSrc":"3122:6:51","nodeType":"YulIdentifier","src":"3122:6:51"},{"arguments":[{"kind":"number","nativeSrc":"3134:3:51","nodeType":"YulLiteral","src":"3134:3:51","type":"","value":"248"},{"kind":"number","nativeSrc":"3139:3:51","nodeType":"YulLiteral","src":"3139:3:51","type":"","value":"255"}],"functionName":{"name":"shl","nativeSrc":"3130:3:51","nodeType":"YulIdentifier","src":"3130:3:51"},"nativeSrc":"3130:13:51","nodeType":"YulFunctionCall","src":"3130:13:51"}],"functionName":{"name":"and","nativeSrc":"3118:3:51","nodeType":"YulIdentifier","src":"3118:3:51"},"nativeSrc":"3118:26:51","nodeType":"YulFunctionCall","src":"3118:26:51"}],"functionName":{"name":"mstore","nativeSrc":"3100:6:51","nodeType":"YulIdentifier","src":"3100:6:51"},"nativeSrc":"3100:45:51","nodeType":"YulFunctionCall","src":"3100:45:51"},"nativeSrc":"3100:45:51","nodeType":"YulExpressionStatement","src":"3100:45:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3165:9:51","nodeType":"YulIdentifier","src":"3165:9:51"},{"kind":"number","nativeSrc":"3176:2:51","nodeType":"YulLiteral","src":"3176:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3161:3:51","nodeType":"YulIdentifier","src":"3161:3:51"},"nativeSrc":"3161:18:51","nodeType":"YulFunctionCall","src":"3161:18:51"},{"kind":"number","nativeSrc":"3181:3:51","nodeType":"YulLiteral","src":"3181:3:51","type":"","value":"224"}],"functionName":{"name":"mstore","nativeSrc":"3154:6:51","nodeType":"YulIdentifier","src":"3154:6:51"},"nativeSrc":"3154:31:51","nodeType":"YulFunctionCall","src":"3154:31:51"},"nativeSrc":"3154:31:51","nodeType":"YulExpressionStatement","src":"3154:31:51"},{"nativeSrc":"3194:60:51","nodeType":"YulVariableDeclaration","src":"3194:60:51","value":{"arguments":[{"name":"value1","nativeSrc":"3226:6:51","nodeType":"YulIdentifier","src":"3226:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"3238:9:51","nodeType":"YulIdentifier","src":"3238:9:51"},{"kind":"number","nativeSrc":"3249:3:51","nodeType":"YulLiteral","src":"3249:3:51","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"3234:3:51","nodeType":"YulIdentifier","src":"3234:3:51"},"nativeSrc":"3234:19:51","nodeType":"YulFunctionCall","src":"3234:19:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"3208:17:51","nodeType":"YulIdentifier","src":"3208:17:51"},"nativeSrc":"3208:46:51","nodeType":"YulFunctionCall","src":"3208:46:51"},"variables":[{"name":"tail_1","nativeSrc":"3198:6:51","nodeType":"YulTypedName","src":"3198:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3274:9:51","nodeType":"YulIdentifier","src":"3274:9:51"},{"kind":"number","nativeSrc":"3285:2:51","nodeType":"YulLiteral","src":"3285:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3270:3:51","nodeType":"YulIdentifier","src":"3270:3:51"},"nativeSrc":"3270:18:51","nodeType":"YulFunctionCall","src":"3270:18:51"},{"arguments":[{"name":"tail_1","nativeSrc":"3294:6:51","nodeType":"YulIdentifier","src":"3294:6:51"},{"name":"headStart","nativeSrc":"3302:9:51","nodeType":"YulIdentifier","src":"3302:9:51"}],"functionName":{"name":"sub","nativeSrc":"3290:3:51","nodeType":"YulIdentifier","src":"3290:3:51"},"nativeSrc":"3290:22:51","nodeType":"YulFunctionCall","src":"3290:22:51"}],"functionName":{"name":"mstore","nativeSrc":"3263:6:51","nodeType":"YulIdentifier","src":"3263:6:51"},"nativeSrc":"3263:50:51","nodeType":"YulFunctionCall","src":"3263:50:51"},"nativeSrc":"3263:50:51","nodeType":"YulExpressionStatement","src":"3263:50:51"},{"nativeSrc":"3322:47:51","nodeType":"YulVariableDeclaration","src":"3322:47:51","value":{"arguments":[{"name":"value2","nativeSrc":"3354:6:51","nodeType":"YulIdentifier","src":"3354:6:51"},{"name":"tail_1","nativeSrc":"3362:6:51","nodeType":"YulIdentifier","src":"3362:6:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"3336:17:51","nodeType":"YulIdentifier","src":"3336:17:51"},"nativeSrc":"3336:33:51","nodeType":"YulFunctionCall","src":"3336:33:51"},"variables":[{"name":"tail_2","nativeSrc":"3326:6:51","nodeType":"YulTypedName","src":"3326:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3389:9:51","nodeType":"YulIdentifier","src":"3389:9:51"},{"kind":"number","nativeSrc":"3400:2:51","nodeType":"YulLiteral","src":"3400:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3385:3:51","nodeType":"YulIdentifier","src":"3385:3:51"},"nativeSrc":"3385:18:51","nodeType":"YulFunctionCall","src":"3385:18:51"},{"name":"value3","nativeSrc":"3405:6:51","nodeType":"YulIdentifier","src":"3405:6:51"}],"functionName":{"name":"mstore","nativeSrc":"3378:6:51","nodeType":"YulIdentifier","src":"3378:6:51"},"nativeSrc":"3378:34:51","nodeType":"YulFunctionCall","src":"3378:34:51"},"nativeSrc":"3378:34:51","nodeType":"YulExpressionStatement","src":"3378:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3432:9:51","nodeType":"YulIdentifier","src":"3432:9:51"},{"kind":"number","nativeSrc":"3443:3:51","nodeType":"YulLiteral","src":"3443:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3428:3:51","nodeType":"YulIdentifier","src":"3428:3:51"},"nativeSrc":"3428:19:51","nodeType":"YulFunctionCall","src":"3428:19:51"},{"arguments":[{"name":"value4","nativeSrc":"3453:6:51","nodeType":"YulIdentifier","src":"3453:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3469:3:51","nodeType":"YulLiteral","src":"3469:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"3474:1:51","nodeType":"YulLiteral","src":"3474:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3465:3:51","nodeType":"YulIdentifier","src":"3465:3:51"},"nativeSrc":"3465:11:51","nodeType":"YulFunctionCall","src":"3465:11:51"},{"kind":"number","nativeSrc":"3478:1:51","nodeType":"YulLiteral","src":"3478:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3461:3:51","nodeType":"YulIdentifier","src":"3461:3:51"},"nativeSrc":"3461:19:51","nodeType":"YulFunctionCall","src":"3461:19:51"}],"functionName":{"name":"and","nativeSrc":"3449:3:51","nodeType":"YulIdentifier","src":"3449:3:51"},"nativeSrc":"3449:32:51","nodeType":"YulFunctionCall","src":"3449:32:51"}],"functionName":{"name":"mstore","nativeSrc":"3421:6:51","nodeType":"YulIdentifier","src":"3421:6:51"},"nativeSrc":"3421:61:51","nodeType":"YulFunctionCall","src":"3421:61:51"},"nativeSrc":"3421:61:51","nodeType":"YulExpressionStatement","src":"3421:61:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3502:9:51","nodeType":"YulIdentifier","src":"3502:9:51"},{"kind":"number","nativeSrc":"3513:3:51","nodeType":"YulLiteral","src":"3513:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"3498:3:51","nodeType":"YulIdentifier","src":"3498:3:51"},"nativeSrc":"3498:19:51","nodeType":"YulFunctionCall","src":"3498:19:51"},{"name":"value5","nativeSrc":"3519:6:51","nodeType":"YulIdentifier","src":"3519:6:51"}],"functionName":{"name":"mstore","nativeSrc":"3491:6:51","nodeType":"YulIdentifier","src":"3491:6:51"},"nativeSrc":"3491:35:51","nodeType":"YulFunctionCall","src":"3491:35:51"},"nativeSrc":"3491:35:51","nodeType":"YulExpressionStatement","src":"3491:35:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3546:9:51","nodeType":"YulIdentifier","src":"3546:9:51"},{"kind":"number","nativeSrc":"3557:3:51","nodeType":"YulLiteral","src":"3557:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"3542:3:51","nodeType":"YulIdentifier","src":"3542:3:51"},"nativeSrc":"3542:19:51","nodeType":"YulFunctionCall","src":"3542:19:51"},{"arguments":[{"name":"tail_2","nativeSrc":"3567:6:51","nodeType":"YulIdentifier","src":"3567:6:51"},{"name":"headStart","nativeSrc":"3575:9:51","nodeType":"YulIdentifier","src":"3575:9:51"}],"functionName":{"name":"sub","nativeSrc":"3563:3:51","nodeType":"YulIdentifier","src":"3563:3:51"},"nativeSrc":"3563:22:51","nodeType":"YulFunctionCall","src":"3563:22:51"}],"functionName":{"name":"mstore","nativeSrc":"3535:6:51","nodeType":"YulIdentifier","src":"3535:6:51"},"nativeSrc":"3535:51:51","nodeType":"YulFunctionCall","src":"3535:51:51"},"nativeSrc":"3535:51:51","nodeType":"YulExpressionStatement","src":"3535:51:51"},{"nativeSrc":"3595:17:51","nodeType":"YulVariableDeclaration","src":"3595:17:51","value":{"name":"tail_2","nativeSrc":"3606:6:51","nodeType":"YulIdentifier","src":"3606:6:51"},"variables":[{"name":"pos","nativeSrc":"3599:3:51","nodeType":"YulTypedName","src":"3599:3:51","type":""}]},{"nativeSrc":"3621:27:51","nodeType":"YulVariableDeclaration","src":"3621:27:51","value":{"arguments":[{"name":"value6","nativeSrc":"3641:6:51","nodeType":"YulIdentifier","src":"3641:6:51"}],"functionName":{"name":"mload","nativeSrc":"3635:5:51","nodeType":"YulIdentifier","src":"3635:5:51"},"nativeSrc":"3635:13:51","nodeType":"YulFunctionCall","src":"3635:13:51"},"variables":[{"name":"length","nativeSrc":"3625:6:51","nodeType":"YulTypedName","src":"3625:6:51","type":""}]},{"expression":{"arguments":[{"name":"tail_2","nativeSrc":"3664:6:51","nodeType":"YulIdentifier","src":"3664:6:51"},{"name":"length","nativeSrc":"3672:6:51","nodeType":"YulIdentifier","src":"3672:6:51"}],"functionName":{"name":"mstore","nativeSrc":"3657:6:51","nodeType":"YulIdentifier","src":"3657:6:51"},"nativeSrc":"3657:22:51","nodeType":"YulFunctionCall","src":"3657:22:51"},"nativeSrc":"3657:22:51","nodeType":"YulExpressionStatement","src":"3657:22:51"},{"nativeSrc":"3688:22:51","nodeType":"YulAssignment","src":"3688:22:51","value":{"arguments":[{"name":"tail_2","nativeSrc":"3699:6:51","nodeType":"YulIdentifier","src":"3699:6:51"},{"kind":"number","nativeSrc":"3707:2:51","nodeType":"YulLiteral","src":"3707:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3695:3:51","nodeType":"YulIdentifier","src":"3695:3:51"},"nativeSrc":"3695:15:51","nodeType":"YulFunctionCall","src":"3695:15:51"},"variableNames":[{"name":"pos","nativeSrc":"3688:3:51","nodeType":"YulIdentifier","src":"3688:3:51"}]},{"nativeSrc":"3719:29:51","nodeType":"YulVariableDeclaration","src":"3719:29:51","value":{"arguments":[{"name":"value6","nativeSrc":"3737:6:51","nodeType":"YulIdentifier","src":"3737:6:51"},{"kind":"number","nativeSrc":"3745:2:51","nodeType":"YulLiteral","src":"3745:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3733:3:51","nodeType":"YulIdentifier","src":"3733:3:51"},"nativeSrc":"3733:15:51","nodeType":"YulFunctionCall","src":"3733:15:51"},"variables":[{"name":"srcPtr","nativeSrc":"3723:6:51","nodeType":"YulTypedName","src":"3723:6:51","type":""}]},{"nativeSrc":"3757:10:51","nodeType":"YulVariableDeclaration","src":"3757:10:51","value":{"kind":"number","nativeSrc":"3766:1:51","nodeType":"YulLiteral","src":"3766:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"3761:1:51","nodeType":"YulTypedName","src":"3761:1:51","type":""}]},{"body":{"nativeSrc":"3825:120:51","nodeType":"YulBlock","src":"3825:120:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"3846:3:51","nodeType":"YulIdentifier","src":"3846:3:51"},{"arguments":[{"name":"srcPtr","nativeSrc":"3857:6:51","nodeType":"YulIdentifier","src":"3857:6:51"}],"functionName":{"name":"mload","nativeSrc":"3851:5:51","nodeType":"YulIdentifier","src":"3851:5:51"},"nativeSrc":"3851:13:51","nodeType":"YulFunctionCall","src":"3851:13:51"}],"functionName":{"name":"mstore","nativeSrc":"3839:6:51","nodeType":"YulIdentifier","src":"3839:6:51"},"nativeSrc":"3839:26:51","nodeType":"YulFunctionCall","src":"3839:26:51"},"nativeSrc":"3839:26:51","nodeType":"YulExpressionStatement","src":"3839:26:51"},{"nativeSrc":"3878:19:51","nodeType":"YulAssignment","src":"3878:19:51","value":{"arguments":[{"name":"pos","nativeSrc":"3889:3:51","nodeType":"YulIdentifier","src":"3889:3:51"},{"kind":"number","nativeSrc":"3894:2:51","nodeType":"YulLiteral","src":"3894:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3885:3:51","nodeType":"YulIdentifier","src":"3885:3:51"},"nativeSrc":"3885:12:51","nodeType":"YulFunctionCall","src":"3885:12:51"},"variableNames":[{"name":"pos","nativeSrc":"3878:3:51","nodeType":"YulIdentifier","src":"3878:3:51"}]},{"nativeSrc":"3910:25:51","nodeType":"YulAssignment","src":"3910:25:51","value":{"arguments":[{"name":"srcPtr","nativeSrc":"3924:6:51","nodeType":"YulIdentifier","src":"3924:6:51"},{"kind":"number","nativeSrc":"3932:2:51","nodeType":"YulLiteral","src":"3932:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3920:3:51","nodeType":"YulIdentifier","src":"3920:3:51"},"nativeSrc":"3920:15:51","nodeType":"YulFunctionCall","src":"3920:15:51"},"variableNames":[{"name":"srcPtr","nativeSrc":"3910:6:51","nodeType":"YulIdentifier","src":"3910:6:51"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"3787:1:51","nodeType":"YulIdentifier","src":"3787:1:51"},{"name":"length","nativeSrc":"3790:6:51","nodeType":"YulIdentifier","src":"3790:6:51"}],"functionName":{"name":"lt","nativeSrc":"3784:2:51","nodeType":"YulIdentifier","src":"3784:2:51"},"nativeSrc":"3784:13:51","nodeType":"YulFunctionCall","src":"3784:13:51"},"nativeSrc":"3776:169:51","nodeType":"YulForLoop","post":{"nativeSrc":"3798:18:51","nodeType":"YulBlock","src":"3798:18:51","statements":[{"nativeSrc":"3800:14:51","nodeType":"YulAssignment","src":"3800:14:51","value":{"arguments":[{"name":"i","nativeSrc":"3809:1:51","nodeType":"YulIdentifier","src":"3809:1:51"},{"kind":"number","nativeSrc":"3812:1:51","nodeType":"YulLiteral","src":"3812:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"3805:3:51","nodeType":"YulIdentifier","src":"3805:3:51"},"nativeSrc":"3805:9:51","nodeType":"YulFunctionCall","src":"3805:9:51"},"variableNames":[{"name":"i","nativeSrc":"3800:1:51","nodeType":"YulIdentifier","src":"3800:1:51"}]}]},"pre":{"nativeSrc":"3780:3:51","nodeType":"YulBlock","src":"3780:3:51","statements":[]},"src":"3776:169:51"},{"nativeSrc":"3954:11:51","nodeType":"YulAssignment","src":"3954:11:51","value":{"name":"pos","nativeSrc":"3962:3:51","nodeType":"YulIdentifier","src":"3962:3:51"},"variableNames":[{"name":"tail","nativeSrc":"3954:4:51","nodeType":"YulIdentifier","src":"3954:4:51"}]}]},"name":"abi_encode_tuple_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed","nativeSrc":"2733:1238:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3011:9:51","nodeType":"YulTypedName","src":"3011:9:51","type":""},{"name":"value6","nativeSrc":"3022:6:51","nodeType":"YulTypedName","src":"3022:6:51","type":""},{"name":"value5","nativeSrc":"3030:6:51","nodeType":"YulTypedName","src":"3030:6:51","type":""},{"name":"value4","nativeSrc":"3038:6:51","nodeType":"YulTypedName","src":"3038:6:51","type":""},{"name":"value3","nativeSrc":"3046:6:51","nodeType":"YulTypedName","src":"3046:6:51","type":""},{"name":"value2","nativeSrc":"3054:6:51","nodeType":"YulTypedName","src":"3054:6:51","type":""},{"name":"value1","nativeSrc":"3062:6:51","nodeType":"YulTypedName","src":"3062:6:51","type":""},{"name":"value0","nativeSrc":"3070:6:51","nodeType":"YulTypedName","src":"3070:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3081:4:51","nodeType":"YulTypedName","src":"3081:4:51","type":""}],"src":"2733:1238:51"},{"body":{"nativeSrc":"4146:733:51","nodeType":"YulBlock","src":"4146:733:51","statements":[{"body":{"nativeSrc":"4193:16:51","nodeType":"YulBlock","src":"4193:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4202:1:51","nodeType":"YulLiteral","src":"4202:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4205:1:51","nodeType":"YulLiteral","src":"4205:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4195:6:51","nodeType":"YulIdentifier","src":"4195:6:51"},"nativeSrc":"4195:12:51","nodeType":"YulFunctionCall","src":"4195:12:51"},"nativeSrc":"4195:12:51","nodeType":"YulExpressionStatement","src":"4195:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4167:7:51","nodeType":"YulIdentifier","src":"4167:7:51"},{"name":"headStart","nativeSrc":"4176:9:51","nodeType":"YulIdentifier","src":"4176:9:51"}],"functionName":{"name":"sub","nativeSrc":"4163:3:51","nodeType":"YulIdentifier","src":"4163:3:51"},"nativeSrc":"4163:23:51","nodeType":"YulFunctionCall","src":"4163:23:51"},{"kind":"number","nativeSrc":"4188:3:51","nodeType":"YulLiteral","src":"4188:3:51","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"4159:3:51","nodeType":"YulIdentifier","src":"4159:3:51"},"nativeSrc":"4159:33:51","nodeType":"YulFunctionCall","src":"4159:33:51"},"nativeSrc":"4156:53:51","nodeType":"YulIf","src":"4156:53:51"},{"nativeSrc":"4218:39:51","nodeType":"YulAssignment","src":"4218:39:51","value":{"arguments":[{"name":"headStart","nativeSrc":"4247:9:51","nodeType":"YulIdentifier","src":"4247:9:51"}],"functionName":{"name":"abi_decode_address","nativeSrc":"4228:18:51","nodeType":"YulIdentifier","src":"4228:18:51"},"nativeSrc":"4228:29:51","nodeType":"YulFunctionCall","src":"4228:29:51"},"variableNames":[{"name":"value0","nativeSrc":"4218:6:51","nodeType":"YulIdentifier","src":"4218:6:51"}]},{"nativeSrc":"4266:48:51","nodeType":"YulAssignment","src":"4266:48:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4299:9:51","nodeType":"YulIdentifier","src":"4299:9:51"},{"kind":"number","nativeSrc":"4310:2:51","nodeType":"YulLiteral","src":"4310:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4295:3:51","nodeType":"YulIdentifier","src":"4295:3:51"},"nativeSrc":"4295:18:51","nodeType":"YulFunctionCall","src":"4295:18:51"}],"functionName":{"name":"abi_decode_address","nativeSrc":"4276:18:51","nodeType":"YulIdentifier","src":"4276:18:51"},"nativeSrc":"4276:38:51","nodeType":"YulFunctionCall","src":"4276:38:51"},"variableNames":[{"name":"value1","nativeSrc":"4266:6:51","nodeType":"YulIdentifier","src":"4266:6:51"}]},{"nativeSrc":"4323:14:51","nodeType":"YulVariableDeclaration","src":"4323:14:51","value":{"kind":"number","nativeSrc":"4336:1:51","nodeType":"YulLiteral","src":"4336:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"4327:5:51","nodeType":"YulTypedName","src":"4327:5:51","type":""}]},{"nativeSrc":"4346:41:51","nodeType":"YulAssignment","src":"4346:41:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4372:9:51","nodeType":"YulIdentifier","src":"4372:9:51"},{"kind":"number","nativeSrc":"4383:2:51","nodeType":"YulLiteral","src":"4383:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4368:3:51","nodeType":"YulIdentifier","src":"4368:3:51"},"nativeSrc":"4368:18:51","nodeType":"YulFunctionCall","src":"4368:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"4355:12:51","nodeType":"YulIdentifier","src":"4355:12:51"},"nativeSrc":"4355:32:51","nodeType":"YulFunctionCall","src":"4355:32:51"},"variableNames":[{"name":"value","nativeSrc":"4346:5:51","nodeType":"YulIdentifier","src":"4346:5:51"}]},{"nativeSrc":"4396:15:51","nodeType":"YulAssignment","src":"4396:15:51","value":{"name":"value","nativeSrc":"4406:5:51","nodeType":"YulIdentifier","src":"4406:5:51"},"variableNames":[{"name":"value2","nativeSrc":"4396:6:51","nodeType":"YulIdentifier","src":"4396:6:51"}]},{"nativeSrc":"4420:16:51","nodeType":"YulVariableDeclaration","src":"4420:16:51","value":{"kind":"number","nativeSrc":"4435:1:51","nodeType":"YulLiteral","src":"4435:1:51","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"4424:7:51","nodeType":"YulTypedName","src":"4424:7:51","type":""}]},{"nativeSrc":"4445:43:51","nodeType":"YulAssignment","src":"4445:43:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4473:9:51","nodeType":"YulIdentifier","src":"4473:9:51"},{"kind":"number","nativeSrc":"4484:2:51","nodeType":"YulLiteral","src":"4484:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4469:3:51","nodeType":"YulIdentifier","src":"4469:3:51"},"nativeSrc":"4469:18:51","nodeType":"YulFunctionCall","src":"4469:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"4456:12:51","nodeType":"YulIdentifier","src":"4456:12:51"},"nativeSrc":"4456:32:51","nodeType":"YulFunctionCall","src":"4456:32:51"},"variableNames":[{"name":"value_1","nativeSrc":"4445:7:51","nodeType":"YulIdentifier","src":"4445:7:51"}]},{"nativeSrc":"4497:17:51","nodeType":"YulAssignment","src":"4497:17:51","value":{"name":"value_1","nativeSrc":"4507:7:51","nodeType":"YulIdentifier","src":"4507:7:51"},"variableNames":[{"name":"value3","nativeSrc":"4497:6:51","nodeType":"YulIdentifier","src":"4497:6:51"}]},{"nativeSrc":"4523:48:51","nodeType":"YulVariableDeclaration","src":"4523:48:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4555:9:51","nodeType":"YulIdentifier","src":"4555:9:51"},{"kind":"number","nativeSrc":"4566:3:51","nodeType":"YulLiteral","src":"4566:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4551:3:51","nodeType":"YulIdentifier","src":"4551:3:51"},"nativeSrc":"4551:19:51","nodeType":"YulFunctionCall","src":"4551:19:51"}],"functionName":{"name":"calldataload","nativeSrc":"4538:12:51","nodeType":"YulIdentifier","src":"4538:12:51"},"nativeSrc":"4538:33:51","nodeType":"YulFunctionCall","src":"4538:33:51"},"variables":[{"name":"value_2","nativeSrc":"4527:7:51","nodeType":"YulTypedName","src":"4527:7:51","type":""}]},{"body":{"nativeSrc":"4623:16:51","nodeType":"YulBlock","src":"4623:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4632:1:51","nodeType":"YulLiteral","src":"4632:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4635:1:51","nodeType":"YulLiteral","src":"4635:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4625:6:51","nodeType":"YulIdentifier","src":"4625:6:51"},"nativeSrc":"4625:12:51","nodeType":"YulFunctionCall","src":"4625:12:51"},"nativeSrc":"4625:12:51","nodeType":"YulExpressionStatement","src":"4625:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value_2","nativeSrc":"4593:7:51","nodeType":"YulIdentifier","src":"4593:7:51"},{"arguments":[{"name":"value_2","nativeSrc":"4606:7:51","nodeType":"YulIdentifier","src":"4606:7:51"},{"kind":"number","nativeSrc":"4615:4:51","nodeType":"YulLiteral","src":"4615:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"4602:3:51","nodeType":"YulIdentifier","src":"4602:3:51"},"nativeSrc":"4602:18:51","nodeType":"YulFunctionCall","src":"4602:18:51"}],"functionName":{"name":"eq","nativeSrc":"4590:2:51","nodeType":"YulIdentifier","src":"4590:2:51"},"nativeSrc":"4590:31:51","nodeType":"YulFunctionCall","src":"4590:31:51"}],"functionName":{"name":"iszero","nativeSrc":"4583:6:51","nodeType":"YulIdentifier","src":"4583:6:51"},"nativeSrc":"4583:39:51","nodeType":"YulFunctionCall","src":"4583:39:51"},"nativeSrc":"4580:59:51","nodeType":"YulIf","src":"4580:59:51"},{"nativeSrc":"4648:17:51","nodeType":"YulAssignment","src":"4648:17:51","value":{"name":"value_2","nativeSrc":"4658:7:51","nodeType":"YulIdentifier","src":"4658:7:51"},"variableNames":[{"name":"value4","nativeSrc":"4648:6:51","nodeType":"YulIdentifier","src":"4648:6:51"}]},{"nativeSrc":"4674:16:51","nodeType":"YulVariableDeclaration","src":"4674:16:51","value":{"kind":"number","nativeSrc":"4689:1:51","nodeType":"YulLiteral","src":"4689:1:51","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"4678:7:51","nodeType":"YulTypedName","src":"4678:7:51","type":""}]},{"nativeSrc":"4699:44:51","nodeType":"YulAssignment","src":"4699:44:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4727:9:51","nodeType":"YulIdentifier","src":"4727:9:51"},{"kind":"number","nativeSrc":"4738:3:51","nodeType":"YulLiteral","src":"4738:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"4723:3:51","nodeType":"YulIdentifier","src":"4723:3:51"},"nativeSrc":"4723:19:51","nodeType":"YulFunctionCall","src":"4723:19:51"}],"functionName":{"name":"calldataload","nativeSrc":"4710:12:51","nodeType":"YulIdentifier","src":"4710:12:51"},"nativeSrc":"4710:33:51","nodeType":"YulFunctionCall","src":"4710:33:51"},"variableNames":[{"name":"value_3","nativeSrc":"4699:7:51","nodeType":"YulIdentifier","src":"4699:7:51"}]},{"nativeSrc":"4752:17:51","nodeType":"YulAssignment","src":"4752:17:51","value":{"name":"value_3","nativeSrc":"4762:7:51","nodeType":"YulIdentifier","src":"4762:7:51"},"variableNames":[{"name":"value5","nativeSrc":"4752:6:51","nodeType":"YulIdentifier","src":"4752:6:51"}]},{"nativeSrc":"4778:16:51","nodeType":"YulVariableDeclaration","src":"4778:16:51","value":{"kind":"number","nativeSrc":"4793:1:51","nodeType":"YulLiteral","src":"4793:1:51","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"4782:7:51","nodeType":"YulTypedName","src":"4782:7:51","type":""}]},{"nativeSrc":"4803:44:51","nodeType":"YulAssignment","src":"4803:44:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4831:9:51","nodeType":"YulIdentifier","src":"4831:9:51"},{"kind":"number","nativeSrc":"4842:3:51","nodeType":"YulLiteral","src":"4842:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"4827:3:51","nodeType":"YulIdentifier","src":"4827:3:51"},"nativeSrc":"4827:19:51","nodeType":"YulFunctionCall","src":"4827:19:51"}],"functionName":{"name":"calldataload","nativeSrc":"4814:12:51","nodeType":"YulIdentifier","src":"4814:12:51"},"nativeSrc":"4814:33:51","nodeType":"YulFunctionCall","src":"4814:33:51"},"variableNames":[{"name":"value_4","nativeSrc":"4803:7:51","nodeType":"YulIdentifier","src":"4803:7:51"}]},{"nativeSrc":"4856:17:51","nodeType":"YulAssignment","src":"4856:17:51","value":{"name":"value_4","nativeSrc":"4866:7:51","nodeType":"YulIdentifier","src":"4866:7:51"},"variableNames":[{"name":"value6","nativeSrc":"4856:6:51","nodeType":"YulIdentifier","src":"4856:6:51"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"3976:903:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4064:9:51","nodeType":"YulTypedName","src":"4064:9:51","type":""},{"name":"dataEnd","nativeSrc":"4075:7:51","nodeType":"YulTypedName","src":"4075:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4087:6:51","nodeType":"YulTypedName","src":"4087:6:51","type":""},{"name":"value1","nativeSrc":"4095:6:51","nodeType":"YulTypedName","src":"4095:6:51","type":""},{"name":"value2","nativeSrc":"4103:6:51","nodeType":"YulTypedName","src":"4103:6:51","type":""},{"name":"value3","nativeSrc":"4111:6:51","nodeType":"YulTypedName","src":"4111:6:51","type":""},{"name":"value4","nativeSrc":"4119:6:51","nodeType":"YulTypedName","src":"4119:6:51","type":""},{"name":"value5","nativeSrc":"4127:6:51","nodeType":"YulTypedName","src":"4127:6:51","type":""},{"name":"value6","nativeSrc":"4135:6:51","nodeType":"YulTypedName","src":"4135:6:51","type":""}],"src":"3976:903:51"},{"body":{"nativeSrc":"4971:173:51","nodeType":"YulBlock","src":"4971:173:51","statements":[{"body":{"nativeSrc":"5017:16:51","nodeType":"YulBlock","src":"5017:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5026:1:51","nodeType":"YulLiteral","src":"5026:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"5029:1:51","nodeType":"YulLiteral","src":"5029:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5019:6:51","nodeType":"YulIdentifier","src":"5019:6:51"},"nativeSrc":"5019:12:51","nodeType":"YulFunctionCall","src":"5019:12:51"},"nativeSrc":"5019:12:51","nodeType":"YulExpressionStatement","src":"5019:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4992:7:51","nodeType":"YulIdentifier","src":"4992:7:51"},{"name":"headStart","nativeSrc":"5001:9:51","nodeType":"YulIdentifier","src":"5001:9:51"}],"functionName":{"name":"sub","nativeSrc":"4988:3:51","nodeType":"YulIdentifier","src":"4988:3:51"},"nativeSrc":"4988:23:51","nodeType":"YulFunctionCall","src":"4988:23:51"},{"kind":"number","nativeSrc":"5013:2:51","nodeType":"YulLiteral","src":"5013:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4984:3:51","nodeType":"YulIdentifier","src":"4984:3:51"},"nativeSrc":"4984:32:51","nodeType":"YulFunctionCall","src":"4984:32:51"},"nativeSrc":"4981:52:51","nodeType":"YulIf","src":"4981:52:51"},{"nativeSrc":"5042:39:51","nodeType":"YulAssignment","src":"5042:39:51","value":{"arguments":[{"name":"headStart","nativeSrc":"5071:9:51","nodeType":"YulIdentifier","src":"5071:9:51"}],"functionName":{"name":"abi_decode_address","nativeSrc":"5052:18:51","nodeType":"YulIdentifier","src":"5052:18:51"},"nativeSrc":"5052:29:51","nodeType":"YulFunctionCall","src":"5052:29:51"},"variableNames":[{"name":"value0","nativeSrc":"5042:6:51","nodeType":"YulIdentifier","src":"5042:6:51"}]},{"nativeSrc":"5090:48:51","nodeType":"YulAssignment","src":"5090:48:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5123:9:51","nodeType":"YulIdentifier","src":"5123:9:51"},{"kind":"number","nativeSrc":"5134:2:51","nodeType":"YulLiteral","src":"5134:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5119:3:51","nodeType":"YulIdentifier","src":"5119:3:51"},"nativeSrc":"5119:18:51","nodeType":"YulFunctionCall","src":"5119:18:51"}],"functionName":{"name":"abi_decode_address","nativeSrc":"5100:18:51","nodeType":"YulIdentifier","src":"5100:18:51"},"nativeSrc":"5100:38:51","nodeType":"YulFunctionCall","src":"5100:38:51"},"variableNames":[{"name":"value1","nativeSrc":"5090:6:51","nodeType":"YulIdentifier","src":"5090:6:51"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"4884:260:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4929:9:51","nodeType":"YulTypedName","src":"4929:9:51","type":""},{"name":"dataEnd","nativeSrc":"4940:7:51","nodeType":"YulTypedName","src":"4940:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4952:6:51","nodeType":"YulTypedName","src":"4952:6:51","type":""},{"name":"value1","nativeSrc":"4960:6:51","nodeType":"YulTypedName","src":"4960:6:51","type":""}],"src":"4884:260:51"},{"body":{"nativeSrc":"5204:325:51","nodeType":"YulBlock","src":"5204:325:51","statements":[{"nativeSrc":"5214:22:51","nodeType":"YulAssignment","src":"5214:22:51","value":{"arguments":[{"kind":"number","nativeSrc":"5228:1:51","nodeType":"YulLiteral","src":"5228:1:51","type":"","value":"1"},{"name":"data","nativeSrc":"5231:4:51","nodeType":"YulIdentifier","src":"5231:4:51"}],"functionName":{"name":"shr","nativeSrc":"5224:3:51","nodeType":"YulIdentifier","src":"5224:3:51"},"nativeSrc":"5224:12:51","nodeType":"YulFunctionCall","src":"5224:12:51"},"variableNames":[{"name":"length","nativeSrc":"5214:6:51","nodeType":"YulIdentifier","src":"5214:6:51"}]},{"nativeSrc":"5245:38:51","nodeType":"YulVariableDeclaration","src":"5245:38:51","value":{"arguments":[{"name":"data","nativeSrc":"5275:4:51","nodeType":"YulIdentifier","src":"5275:4:51"},{"kind":"number","nativeSrc":"5281:1:51","nodeType":"YulLiteral","src":"5281:1:51","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"5271:3:51","nodeType":"YulIdentifier","src":"5271:3:51"},"nativeSrc":"5271:12:51","nodeType":"YulFunctionCall","src":"5271:12:51"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"5249:18:51","nodeType":"YulTypedName","src":"5249:18:51","type":""}]},{"body":{"nativeSrc":"5322:31:51","nodeType":"YulBlock","src":"5322:31:51","statements":[{"nativeSrc":"5324:27:51","nodeType":"YulAssignment","src":"5324:27:51","value":{"arguments":[{"name":"length","nativeSrc":"5338:6:51","nodeType":"YulIdentifier","src":"5338:6:51"},{"kind":"number","nativeSrc":"5346:4:51","nodeType":"YulLiteral","src":"5346:4:51","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"5334:3:51","nodeType":"YulIdentifier","src":"5334:3:51"},"nativeSrc":"5334:17:51","nodeType":"YulFunctionCall","src":"5334:17:51"},"variableNames":[{"name":"length","nativeSrc":"5324:6:51","nodeType":"YulIdentifier","src":"5324:6:51"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"5302:18:51","nodeType":"YulIdentifier","src":"5302:18:51"}],"functionName":{"name":"iszero","nativeSrc":"5295:6:51","nodeType":"YulIdentifier","src":"5295:6:51"},"nativeSrc":"5295:26:51","nodeType":"YulFunctionCall","src":"5295:26:51"},"nativeSrc":"5292:61:51","nodeType":"YulIf","src":"5292:61:51"},{"body":{"nativeSrc":"5412:111:51","nodeType":"YulBlock","src":"5412:111:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5433:1:51","nodeType":"YulLiteral","src":"5433:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5440:3:51","nodeType":"YulLiteral","src":"5440:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"5445:10:51","nodeType":"YulLiteral","src":"5445:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5436:3:51","nodeType":"YulIdentifier","src":"5436:3:51"},"nativeSrc":"5436:20:51","nodeType":"YulFunctionCall","src":"5436:20:51"}],"functionName":{"name":"mstore","nativeSrc":"5426:6:51","nodeType":"YulIdentifier","src":"5426:6:51"},"nativeSrc":"5426:31:51","nodeType":"YulFunctionCall","src":"5426:31:51"},"nativeSrc":"5426:31:51","nodeType":"YulExpressionStatement","src":"5426:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5477:1:51","nodeType":"YulLiteral","src":"5477:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"5480:4:51","nodeType":"YulLiteral","src":"5480:4:51","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"5470:6:51","nodeType":"YulIdentifier","src":"5470:6:51"},"nativeSrc":"5470:15:51","nodeType":"YulFunctionCall","src":"5470:15:51"},"nativeSrc":"5470:15:51","nodeType":"YulExpressionStatement","src":"5470:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5505:1:51","nodeType":"YulLiteral","src":"5505:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"5508:4:51","nodeType":"YulLiteral","src":"5508:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5498:6:51","nodeType":"YulIdentifier","src":"5498:6:51"},"nativeSrc":"5498:15:51","nodeType":"YulFunctionCall","src":"5498:15:51"},"nativeSrc":"5498:15:51","nodeType":"YulExpressionStatement","src":"5498:15:51"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"5368:18:51","nodeType":"YulIdentifier","src":"5368:18:51"},{"arguments":[{"name":"length","nativeSrc":"5391:6:51","nodeType":"YulIdentifier","src":"5391:6:51"},{"kind":"number","nativeSrc":"5399:2:51","nodeType":"YulLiteral","src":"5399:2:51","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"5388:2:51","nodeType":"YulIdentifier","src":"5388:2:51"},"nativeSrc":"5388:14:51","nodeType":"YulFunctionCall","src":"5388:14:51"}],"functionName":{"name":"eq","nativeSrc":"5365:2:51","nodeType":"YulIdentifier","src":"5365:2:51"},"nativeSrc":"5365:38:51","nodeType":"YulFunctionCall","src":"5365:38:51"},"nativeSrc":"5362:161:51","nodeType":"YulIf","src":"5362:161:51"}]},"name":"extract_byte_array_length","nativeSrc":"5149:380:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"5184:4:51","nodeType":"YulTypedName","src":"5184:4:51","type":""}],"returnVariables":[{"name":"length","nativeSrc":"5193:6:51","nodeType":"YulTypedName","src":"5193:6:51","type":""}],"src":"5149:380:51"},{"body":{"nativeSrc":"5566:95:51","nodeType":"YulBlock","src":"5566:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5583:1:51","nodeType":"YulLiteral","src":"5583:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"5590:3:51","nodeType":"YulLiteral","src":"5590:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"5595:10:51","nodeType":"YulLiteral","src":"5595:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"5586:3:51","nodeType":"YulIdentifier","src":"5586:3:51"},"nativeSrc":"5586:20:51","nodeType":"YulFunctionCall","src":"5586:20:51"}],"functionName":{"name":"mstore","nativeSrc":"5576:6:51","nodeType":"YulIdentifier","src":"5576:6:51"},"nativeSrc":"5576:31:51","nodeType":"YulFunctionCall","src":"5576:31:51"},"nativeSrc":"5576:31:51","nodeType":"YulExpressionStatement","src":"5576:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5623:1:51","nodeType":"YulLiteral","src":"5623:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"5626:4:51","nodeType":"YulLiteral","src":"5626:4:51","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"5616:6:51","nodeType":"YulIdentifier","src":"5616:6:51"},"nativeSrc":"5616:15:51","nodeType":"YulFunctionCall","src":"5616:15:51"},"nativeSrc":"5616:15:51","nodeType":"YulExpressionStatement","src":"5616:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"5647:1:51","nodeType":"YulLiteral","src":"5647:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"5650:4:51","nodeType":"YulLiteral","src":"5650:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"5640:6:51","nodeType":"YulIdentifier","src":"5640:6:51"},"nativeSrc":"5640:15:51","nodeType":"YulFunctionCall","src":"5640:15:51"},"nativeSrc":"5640:15:51","nodeType":"YulExpressionStatement","src":"5640:15:51"}]},"name":"panic_error_0x41","nativeSrc":"5534:127:51","nodeType":"YulFunctionDefinition","src":"5534:127:51"},{"body":{"nativeSrc":"5907:346:51","nodeType":"YulBlock","src":"5907:346:51","statements":[{"nativeSrc":"5917:27:51","nodeType":"YulAssignment","src":"5917:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"5929:9:51","nodeType":"YulIdentifier","src":"5929:9:51"},{"kind":"number","nativeSrc":"5940:3:51","nodeType":"YulLiteral","src":"5940:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"5925:3:51","nodeType":"YulIdentifier","src":"5925:3:51"},"nativeSrc":"5925:19:51","nodeType":"YulFunctionCall","src":"5925:19:51"},"variableNames":[{"name":"tail","nativeSrc":"5917:4:51","nodeType":"YulIdentifier","src":"5917:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5960:9:51","nodeType":"YulIdentifier","src":"5960:9:51"},{"name":"value0","nativeSrc":"5971:6:51","nodeType":"YulIdentifier","src":"5971:6:51"}],"functionName":{"name":"mstore","nativeSrc":"5953:6:51","nodeType":"YulIdentifier","src":"5953:6:51"},"nativeSrc":"5953:25:51","nodeType":"YulFunctionCall","src":"5953:25:51"},"nativeSrc":"5953:25:51","nodeType":"YulExpressionStatement","src":"5953:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5998:9:51","nodeType":"YulIdentifier","src":"5998:9:51"},{"kind":"number","nativeSrc":"6009:2:51","nodeType":"YulLiteral","src":"6009:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5994:3:51","nodeType":"YulIdentifier","src":"5994:3:51"},"nativeSrc":"5994:18:51","nodeType":"YulFunctionCall","src":"5994:18:51"},{"arguments":[{"name":"value1","nativeSrc":"6018:6:51","nodeType":"YulIdentifier","src":"6018:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6034:3:51","nodeType":"YulLiteral","src":"6034:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"6039:1:51","nodeType":"YulLiteral","src":"6039:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6030:3:51","nodeType":"YulIdentifier","src":"6030:3:51"},"nativeSrc":"6030:11:51","nodeType":"YulFunctionCall","src":"6030:11:51"},{"kind":"number","nativeSrc":"6043:1:51","nodeType":"YulLiteral","src":"6043:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6026:3:51","nodeType":"YulIdentifier","src":"6026:3:51"},"nativeSrc":"6026:19:51","nodeType":"YulFunctionCall","src":"6026:19:51"}],"functionName":{"name":"and","nativeSrc":"6014:3:51","nodeType":"YulIdentifier","src":"6014:3:51"},"nativeSrc":"6014:32:51","nodeType":"YulFunctionCall","src":"6014:32:51"}],"functionName":{"name":"mstore","nativeSrc":"5987:6:51","nodeType":"YulIdentifier","src":"5987:6:51"},"nativeSrc":"5987:60:51","nodeType":"YulFunctionCall","src":"5987:60:51"},"nativeSrc":"5987:60:51","nodeType":"YulExpressionStatement","src":"5987:60:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6067:9:51","nodeType":"YulIdentifier","src":"6067:9:51"},{"kind":"number","nativeSrc":"6078:2:51","nodeType":"YulLiteral","src":"6078:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6063:3:51","nodeType":"YulIdentifier","src":"6063:3:51"},"nativeSrc":"6063:18:51","nodeType":"YulFunctionCall","src":"6063:18:51"},{"arguments":[{"name":"value2","nativeSrc":"6087:6:51","nodeType":"YulIdentifier","src":"6087:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6103:3:51","nodeType":"YulLiteral","src":"6103:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"6108:1:51","nodeType":"YulLiteral","src":"6108:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6099:3:51","nodeType":"YulIdentifier","src":"6099:3:51"},"nativeSrc":"6099:11:51","nodeType":"YulFunctionCall","src":"6099:11:51"},{"kind":"number","nativeSrc":"6112:1:51","nodeType":"YulLiteral","src":"6112:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6095:3:51","nodeType":"YulIdentifier","src":"6095:3:51"},"nativeSrc":"6095:19:51","nodeType":"YulFunctionCall","src":"6095:19:51"}],"functionName":{"name":"and","nativeSrc":"6083:3:51","nodeType":"YulIdentifier","src":"6083:3:51"},"nativeSrc":"6083:32:51","nodeType":"YulFunctionCall","src":"6083:32:51"}],"functionName":{"name":"mstore","nativeSrc":"6056:6:51","nodeType":"YulIdentifier","src":"6056:6:51"},"nativeSrc":"6056:60:51","nodeType":"YulFunctionCall","src":"6056:60:51"},"nativeSrc":"6056:60:51","nodeType":"YulExpressionStatement","src":"6056:60:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6136:9:51","nodeType":"YulIdentifier","src":"6136:9:51"},{"kind":"number","nativeSrc":"6147:2:51","nodeType":"YulLiteral","src":"6147:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"6132:3:51","nodeType":"YulIdentifier","src":"6132:3:51"},"nativeSrc":"6132:18:51","nodeType":"YulFunctionCall","src":"6132:18:51"},{"name":"value3","nativeSrc":"6152:6:51","nodeType":"YulIdentifier","src":"6152:6:51"}],"functionName":{"name":"mstore","nativeSrc":"6125:6:51","nodeType":"YulIdentifier","src":"6125:6:51"},"nativeSrc":"6125:34:51","nodeType":"YulFunctionCall","src":"6125:34:51"},"nativeSrc":"6125:34:51","nodeType":"YulExpressionStatement","src":"6125:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6179:9:51","nodeType":"YulIdentifier","src":"6179:9:51"},{"kind":"number","nativeSrc":"6190:3:51","nodeType":"YulLiteral","src":"6190:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"6175:3:51","nodeType":"YulIdentifier","src":"6175:3:51"},"nativeSrc":"6175:19:51","nodeType":"YulFunctionCall","src":"6175:19:51"},{"name":"value4","nativeSrc":"6196:6:51","nodeType":"YulIdentifier","src":"6196:6:51"}],"functionName":{"name":"mstore","nativeSrc":"6168:6:51","nodeType":"YulIdentifier","src":"6168:6:51"},"nativeSrc":"6168:35:51","nodeType":"YulFunctionCall","src":"6168:35:51"},"nativeSrc":"6168:35:51","nodeType":"YulExpressionStatement","src":"6168:35:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6223:9:51","nodeType":"YulIdentifier","src":"6223:9:51"},{"kind":"number","nativeSrc":"6234:3:51","nodeType":"YulLiteral","src":"6234:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"6219:3:51","nodeType":"YulIdentifier","src":"6219:3:51"},"nativeSrc":"6219:19:51","nodeType":"YulFunctionCall","src":"6219:19:51"},{"name":"value5","nativeSrc":"6240:6:51","nodeType":"YulIdentifier","src":"6240:6:51"}],"functionName":{"name":"mstore","nativeSrc":"6212:6:51","nodeType":"YulIdentifier","src":"6212:6:51"},"nativeSrc":"6212:35:51","nodeType":"YulFunctionCall","src":"6212:35:51"},"nativeSrc":"6212:35:51","nodeType":"YulExpressionStatement","src":"6212:35:51"}]},"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","nativeSrc":"5666:587:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5836:9:51","nodeType":"YulTypedName","src":"5836:9:51","type":""},{"name":"value5","nativeSrc":"5847:6:51","nodeType":"YulTypedName","src":"5847:6:51","type":""},{"name":"value4","nativeSrc":"5855:6:51","nodeType":"YulTypedName","src":"5855:6:51","type":""},{"name":"value3","nativeSrc":"5863:6:51","nodeType":"YulTypedName","src":"5863:6:51","type":""},{"name":"value2","nativeSrc":"5871:6:51","nodeType":"YulTypedName","src":"5871:6:51","type":""},{"name":"value1","nativeSrc":"5879:6:51","nodeType":"YulTypedName","src":"5879:6:51","type":""},{"name":"value0","nativeSrc":"5887:6:51","nodeType":"YulTypedName","src":"5887:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5898:4:51","nodeType":"YulTypedName","src":"5898:4:51","type":""}],"src":"5666:587:51"},{"body":{"nativeSrc":"6387:171:51","nodeType":"YulBlock","src":"6387:171:51","statements":[{"nativeSrc":"6397:26:51","nodeType":"YulAssignment","src":"6397:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"6409:9:51","nodeType":"YulIdentifier","src":"6409:9:51"},{"kind":"number","nativeSrc":"6420:2:51","nodeType":"YulLiteral","src":"6420:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6405:3:51","nodeType":"YulIdentifier","src":"6405:3:51"},"nativeSrc":"6405:18:51","nodeType":"YulFunctionCall","src":"6405:18:51"},"variableNames":[{"name":"tail","nativeSrc":"6397:4:51","nodeType":"YulIdentifier","src":"6397:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6439:9:51","nodeType":"YulIdentifier","src":"6439:9:51"},{"arguments":[{"name":"value0","nativeSrc":"6454:6:51","nodeType":"YulIdentifier","src":"6454:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6470:3:51","nodeType":"YulLiteral","src":"6470:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"6475:1:51","nodeType":"YulLiteral","src":"6475:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6466:3:51","nodeType":"YulIdentifier","src":"6466:3:51"},"nativeSrc":"6466:11:51","nodeType":"YulFunctionCall","src":"6466:11:51"},{"kind":"number","nativeSrc":"6479:1:51","nodeType":"YulLiteral","src":"6479:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6462:3:51","nodeType":"YulIdentifier","src":"6462:3:51"},"nativeSrc":"6462:19:51","nodeType":"YulFunctionCall","src":"6462:19:51"}],"functionName":{"name":"and","nativeSrc":"6450:3:51","nodeType":"YulIdentifier","src":"6450:3:51"},"nativeSrc":"6450:32:51","nodeType":"YulFunctionCall","src":"6450:32:51"}],"functionName":{"name":"mstore","nativeSrc":"6432:6:51","nodeType":"YulIdentifier","src":"6432:6:51"},"nativeSrc":"6432:51:51","nodeType":"YulFunctionCall","src":"6432:51:51"},"nativeSrc":"6432:51:51","nodeType":"YulExpressionStatement","src":"6432:51:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6503:9:51","nodeType":"YulIdentifier","src":"6503:9:51"},{"kind":"number","nativeSrc":"6514:2:51","nodeType":"YulLiteral","src":"6514:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6499:3:51","nodeType":"YulIdentifier","src":"6499:3:51"},"nativeSrc":"6499:18:51","nodeType":"YulFunctionCall","src":"6499:18:51"},{"arguments":[{"name":"value1","nativeSrc":"6523:6:51","nodeType":"YulIdentifier","src":"6523:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6539:3:51","nodeType":"YulLiteral","src":"6539:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"6544:1:51","nodeType":"YulLiteral","src":"6544:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6535:3:51","nodeType":"YulIdentifier","src":"6535:3:51"},"nativeSrc":"6535:11:51","nodeType":"YulFunctionCall","src":"6535:11:51"},{"kind":"number","nativeSrc":"6548:1:51","nodeType":"YulLiteral","src":"6548:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6531:3:51","nodeType":"YulIdentifier","src":"6531:3:51"},"nativeSrc":"6531:19:51","nodeType":"YulFunctionCall","src":"6531:19:51"}],"functionName":{"name":"and","nativeSrc":"6519:3:51","nodeType":"YulIdentifier","src":"6519:3:51"},"nativeSrc":"6519:32:51","nodeType":"YulFunctionCall","src":"6519:32:51"}],"functionName":{"name":"mstore","nativeSrc":"6492:6:51","nodeType":"YulIdentifier","src":"6492:6:51"},"nativeSrc":"6492:60:51","nodeType":"YulFunctionCall","src":"6492:60:51"},"nativeSrc":"6492:60:51","nodeType":"YulExpressionStatement","src":"6492:60:51"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"6258:300:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6348:9:51","nodeType":"YulTypedName","src":"6348:9:51","type":""},{"name":"value1","nativeSrc":"6359:6:51","nodeType":"YulTypedName","src":"6359:6:51","type":""},{"name":"value0","nativeSrc":"6367:6:51","nodeType":"YulTypedName","src":"6367:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6378:4:51","nodeType":"YulTypedName","src":"6378:4:51","type":""}],"src":"6258:300:51"},{"body":{"nativeSrc":"6664:102:51","nodeType":"YulBlock","src":"6664:102:51","statements":[{"nativeSrc":"6674:26:51","nodeType":"YulAssignment","src":"6674:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"6686:9:51","nodeType":"YulIdentifier","src":"6686:9:51"},{"kind":"number","nativeSrc":"6697:2:51","nodeType":"YulLiteral","src":"6697:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6682:3:51","nodeType":"YulIdentifier","src":"6682:3:51"},"nativeSrc":"6682:18:51","nodeType":"YulFunctionCall","src":"6682:18:51"},"variableNames":[{"name":"tail","nativeSrc":"6674:4:51","nodeType":"YulIdentifier","src":"6674:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6716:9:51","nodeType":"YulIdentifier","src":"6716:9:51"},{"arguments":[{"name":"value0","nativeSrc":"6731:6:51","nodeType":"YulIdentifier","src":"6731:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"6747:3:51","nodeType":"YulLiteral","src":"6747:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"6752:1:51","nodeType":"YulLiteral","src":"6752:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"6743:3:51","nodeType":"YulIdentifier","src":"6743:3:51"},"nativeSrc":"6743:11:51","nodeType":"YulFunctionCall","src":"6743:11:51"},{"kind":"number","nativeSrc":"6756:1:51","nodeType":"YulLiteral","src":"6756:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"6739:3:51","nodeType":"YulIdentifier","src":"6739:3:51"},"nativeSrc":"6739:19:51","nodeType":"YulFunctionCall","src":"6739:19:51"}],"functionName":{"name":"and","nativeSrc":"6727:3:51","nodeType":"YulIdentifier","src":"6727:3:51"},"nativeSrc":"6727:32:51","nodeType":"YulFunctionCall","src":"6727:32:51"}],"functionName":{"name":"mstore","nativeSrc":"6709:6:51","nodeType":"YulIdentifier","src":"6709:6:51"},"nativeSrc":"6709:51:51","nodeType":"YulFunctionCall","src":"6709:51:51"},"nativeSrc":"6709:51:51","nodeType":"YulExpressionStatement","src":"6709:51:51"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"6563:203:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6633:9:51","nodeType":"YulTypedName","src":"6633:9:51","type":""},{"name":"value0","nativeSrc":"6644:6:51","nodeType":"YulTypedName","src":"6644:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6655:4:51","nodeType":"YulTypedName","src":"6655:4:51","type":""}],"src":"6563:203:51"},{"body":{"nativeSrc":"6928:188:51","nodeType":"YulBlock","src":"6928:188:51","statements":[{"nativeSrc":"6938:26:51","nodeType":"YulAssignment","src":"6938:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"6950:9:51","nodeType":"YulIdentifier","src":"6950:9:51"},{"kind":"number","nativeSrc":"6961:2:51","nodeType":"YulLiteral","src":"6961:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"6946:3:51","nodeType":"YulIdentifier","src":"6946:3:51"},"nativeSrc":"6946:18:51","nodeType":"YulFunctionCall","src":"6946:18:51"},"variableNames":[{"name":"tail","nativeSrc":"6938:4:51","nodeType":"YulIdentifier","src":"6938:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6980:9:51","nodeType":"YulIdentifier","src":"6980:9:51"},{"arguments":[{"name":"value0","nativeSrc":"6995:6:51","nodeType":"YulIdentifier","src":"6995:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7011:3:51","nodeType":"YulLiteral","src":"7011:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"7016:1:51","nodeType":"YulLiteral","src":"7016:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7007:3:51","nodeType":"YulIdentifier","src":"7007:3:51"},"nativeSrc":"7007:11:51","nodeType":"YulFunctionCall","src":"7007:11:51"},{"kind":"number","nativeSrc":"7020:1:51","nodeType":"YulLiteral","src":"7020:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7003:3:51","nodeType":"YulIdentifier","src":"7003:3:51"},"nativeSrc":"7003:19:51","nodeType":"YulFunctionCall","src":"7003:19:51"}],"functionName":{"name":"and","nativeSrc":"6991:3:51","nodeType":"YulIdentifier","src":"6991:3:51"},"nativeSrc":"6991:32:51","nodeType":"YulFunctionCall","src":"6991:32:51"}],"functionName":{"name":"mstore","nativeSrc":"6973:6:51","nodeType":"YulIdentifier","src":"6973:6:51"},"nativeSrc":"6973:51:51","nodeType":"YulFunctionCall","src":"6973:51:51"},"nativeSrc":"6973:51:51","nodeType":"YulExpressionStatement","src":"6973:51:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7044:9:51","nodeType":"YulIdentifier","src":"7044:9:51"},{"kind":"number","nativeSrc":"7055:2:51","nodeType":"YulLiteral","src":"7055:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7040:3:51","nodeType":"YulIdentifier","src":"7040:3:51"},"nativeSrc":"7040:18:51","nodeType":"YulFunctionCall","src":"7040:18:51"},{"name":"value1","nativeSrc":"7060:6:51","nodeType":"YulIdentifier","src":"7060:6:51"}],"functionName":{"name":"mstore","nativeSrc":"7033:6:51","nodeType":"YulIdentifier","src":"7033:6:51"},"nativeSrc":"7033:34:51","nodeType":"YulFunctionCall","src":"7033:34:51"},"nativeSrc":"7033:34:51","nodeType":"YulExpressionStatement","src":"7033:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7087:9:51","nodeType":"YulIdentifier","src":"7087:9:51"},{"kind":"number","nativeSrc":"7098:2:51","nodeType":"YulLiteral","src":"7098:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7083:3:51","nodeType":"YulIdentifier","src":"7083:3:51"},"nativeSrc":"7083:18:51","nodeType":"YulFunctionCall","src":"7083:18:51"},{"name":"value2","nativeSrc":"7103:6:51","nodeType":"YulIdentifier","src":"7103:6:51"}],"functionName":{"name":"mstore","nativeSrc":"7076:6:51","nodeType":"YulIdentifier","src":"7076:6:51"},"nativeSrc":"7076:34:51","nodeType":"YulFunctionCall","src":"7076:34:51"},"nativeSrc":"7076:34:51","nodeType":"YulExpressionStatement","src":"7076:34:51"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"6771:345:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6881:9:51","nodeType":"YulTypedName","src":"6881:9:51","type":""},{"name":"value2","nativeSrc":"6892:6:51","nodeType":"YulTypedName","src":"6892:6:51","type":""},{"name":"value1","nativeSrc":"6900:6:51","nodeType":"YulTypedName","src":"6900:6:51","type":""},{"name":"value0","nativeSrc":"6908:6:51","nodeType":"YulTypedName","src":"6908:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6919:4:51","nodeType":"YulTypedName","src":"6919:4:51","type":""}],"src":"6771:345:51"},{"body":{"nativeSrc":"7169:174:51","nodeType":"YulBlock","src":"7169:174:51","statements":[{"nativeSrc":"7179:16:51","nodeType":"YulAssignment","src":"7179:16:51","value":{"arguments":[{"name":"x","nativeSrc":"7190:1:51","nodeType":"YulIdentifier","src":"7190:1:51"},{"name":"y","nativeSrc":"7193:1:51","nodeType":"YulIdentifier","src":"7193:1:51"}],"functionName":{"name":"add","nativeSrc":"7186:3:51","nodeType":"YulIdentifier","src":"7186:3:51"},"nativeSrc":"7186:9:51","nodeType":"YulFunctionCall","src":"7186:9:51"},"variableNames":[{"name":"sum","nativeSrc":"7179:3:51","nodeType":"YulIdentifier","src":"7179:3:51"}]},{"body":{"nativeSrc":"7226:111:51","nodeType":"YulBlock","src":"7226:111:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7247:1:51","nodeType":"YulLiteral","src":"7247:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"7254:3:51","nodeType":"YulLiteral","src":"7254:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"7259:10:51","nodeType":"YulLiteral","src":"7259:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"7250:3:51","nodeType":"YulIdentifier","src":"7250:3:51"},"nativeSrc":"7250:20:51","nodeType":"YulFunctionCall","src":"7250:20:51"}],"functionName":{"name":"mstore","nativeSrc":"7240:6:51","nodeType":"YulIdentifier","src":"7240:6:51"},"nativeSrc":"7240:31:51","nodeType":"YulFunctionCall","src":"7240:31:51"},"nativeSrc":"7240:31:51","nodeType":"YulExpressionStatement","src":"7240:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7291:1:51","nodeType":"YulLiteral","src":"7291:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"7294:4:51","nodeType":"YulLiteral","src":"7294:4:51","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"7284:6:51","nodeType":"YulIdentifier","src":"7284:6:51"},"nativeSrc":"7284:15:51","nodeType":"YulFunctionCall","src":"7284:15:51"},"nativeSrc":"7284:15:51","nodeType":"YulExpressionStatement","src":"7284:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7319:1:51","nodeType":"YulLiteral","src":"7319:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"7322:4:51","nodeType":"YulLiteral","src":"7322:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"7312:6:51","nodeType":"YulIdentifier","src":"7312:6:51"},"nativeSrc":"7312:15:51","nodeType":"YulFunctionCall","src":"7312:15:51"},"nativeSrc":"7312:15:51","nodeType":"YulExpressionStatement","src":"7312:15:51"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"7210:1:51","nodeType":"YulIdentifier","src":"7210:1:51"},{"name":"sum","nativeSrc":"7213:3:51","nodeType":"YulIdentifier","src":"7213:3:51"}],"functionName":{"name":"gt","nativeSrc":"7207:2:51","nodeType":"YulIdentifier","src":"7207:2:51"},"nativeSrc":"7207:10:51","nodeType":"YulFunctionCall","src":"7207:10:51"},"nativeSrc":"7204:133:51","nodeType":"YulIf","src":"7204:133:51"}]},"name":"checked_add_t_uint256","nativeSrc":"7121:222:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"7152:1:51","nodeType":"YulTypedName","src":"7152:1:51","type":""},{"name":"y","nativeSrc":"7155:1:51","nodeType":"YulTypedName","src":"7155:1:51","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"7161:3:51","nodeType":"YulTypedName","src":"7161:3:51","type":""}],"src":"7121:222:51"},{"body":{"nativeSrc":"7561:276:51","nodeType":"YulBlock","src":"7561:276:51","statements":[{"nativeSrc":"7571:27:51","nodeType":"YulAssignment","src":"7571:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"7583:9:51","nodeType":"YulIdentifier","src":"7583:9:51"},{"kind":"number","nativeSrc":"7594:3:51","nodeType":"YulLiteral","src":"7594:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"7579:3:51","nodeType":"YulIdentifier","src":"7579:3:51"},"nativeSrc":"7579:19:51","nodeType":"YulFunctionCall","src":"7579:19:51"},"variableNames":[{"name":"tail","nativeSrc":"7571:4:51","nodeType":"YulIdentifier","src":"7571:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7614:9:51","nodeType":"YulIdentifier","src":"7614:9:51"},{"name":"value0","nativeSrc":"7625:6:51","nodeType":"YulIdentifier","src":"7625:6:51"}],"functionName":{"name":"mstore","nativeSrc":"7607:6:51","nodeType":"YulIdentifier","src":"7607:6:51"},"nativeSrc":"7607:25:51","nodeType":"YulFunctionCall","src":"7607:25:51"},"nativeSrc":"7607:25:51","nodeType":"YulExpressionStatement","src":"7607:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7652:9:51","nodeType":"YulIdentifier","src":"7652:9:51"},{"kind":"number","nativeSrc":"7663:2:51","nodeType":"YulLiteral","src":"7663:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7648:3:51","nodeType":"YulIdentifier","src":"7648:3:51"},"nativeSrc":"7648:18:51","nodeType":"YulFunctionCall","src":"7648:18:51"},{"name":"value1","nativeSrc":"7668:6:51","nodeType":"YulIdentifier","src":"7668:6:51"}],"functionName":{"name":"mstore","nativeSrc":"7641:6:51","nodeType":"YulIdentifier","src":"7641:6:51"},"nativeSrc":"7641:34:51","nodeType":"YulFunctionCall","src":"7641:34:51"},"nativeSrc":"7641:34:51","nodeType":"YulExpressionStatement","src":"7641:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7695:9:51","nodeType":"YulIdentifier","src":"7695:9:51"},{"kind":"number","nativeSrc":"7706:2:51","nodeType":"YulLiteral","src":"7706:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7691:3:51","nodeType":"YulIdentifier","src":"7691:3:51"},"nativeSrc":"7691:18:51","nodeType":"YulFunctionCall","src":"7691:18:51"},{"name":"value2","nativeSrc":"7711:6:51","nodeType":"YulIdentifier","src":"7711:6:51"}],"functionName":{"name":"mstore","nativeSrc":"7684:6:51","nodeType":"YulIdentifier","src":"7684:6:51"},"nativeSrc":"7684:34:51","nodeType":"YulFunctionCall","src":"7684:34:51"},"nativeSrc":"7684:34:51","nodeType":"YulExpressionStatement","src":"7684:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7738:9:51","nodeType":"YulIdentifier","src":"7738:9:51"},{"kind":"number","nativeSrc":"7749:2:51","nodeType":"YulLiteral","src":"7749:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"7734:3:51","nodeType":"YulIdentifier","src":"7734:3:51"},"nativeSrc":"7734:18:51","nodeType":"YulFunctionCall","src":"7734:18:51"},{"name":"value3","nativeSrc":"7754:6:51","nodeType":"YulIdentifier","src":"7754:6:51"}],"functionName":{"name":"mstore","nativeSrc":"7727:6:51","nodeType":"YulIdentifier","src":"7727:6:51"},"nativeSrc":"7727:34:51","nodeType":"YulFunctionCall","src":"7727:34:51"},"nativeSrc":"7727:34:51","nodeType":"YulExpressionStatement","src":"7727:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7781:9:51","nodeType":"YulIdentifier","src":"7781:9:51"},{"kind":"number","nativeSrc":"7792:3:51","nodeType":"YulLiteral","src":"7792:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"7777:3:51","nodeType":"YulIdentifier","src":"7777:3:51"},"nativeSrc":"7777:19:51","nodeType":"YulFunctionCall","src":"7777:19:51"},{"arguments":[{"name":"value4","nativeSrc":"7802:6:51","nodeType":"YulIdentifier","src":"7802:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7818:3:51","nodeType":"YulLiteral","src":"7818:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"7823:1:51","nodeType":"YulLiteral","src":"7823:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7814:3:51","nodeType":"YulIdentifier","src":"7814:3:51"},"nativeSrc":"7814:11:51","nodeType":"YulFunctionCall","src":"7814:11:51"},{"kind":"number","nativeSrc":"7827:1:51","nodeType":"YulLiteral","src":"7827:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7810:3:51","nodeType":"YulIdentifier","src":"7810:3:51"},"nativeSrc":"7810:19:51","nodeType":"YulFunctionCall","src":"7810:19:51"}],"functionName":{"name":"and","nativeSrc":"7798:3:51","nodeType":"YulIdentifier","src":"7798:3:51"},"nativeSrc":"7798:32:51","nodeType":"YulFunctionCall","src":"7798:32:51"}],"functionName":{"name":"mstore","nativeSrc":"7770:6:51","nodeType":"YulIdentifier","src":"7770:6:51"},"nativeSrc":"7770:61:51","nodeType":"YulFunctionCall","src":"7770:61:51"},"nativeSrc":"7770:61:51","nodeType":"YulExpressionStatement","src":"7770:61:51"}]},"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","nativeSrc":"7348:489:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7498:9:51","nodeType":"YulTypedName","src":"7498:9:51","type":""},{"name":"value4","nativeSrc":"7509:6:51","nodeType":"YulTypedName","src":"7509:6:51","type":""},{"name":"value3","nativeSrc":"7517:6:51","nodeType":"YulTypedName","src":"7517:6:51","type":""},{"name":"value2","nativeSrc":"7525:6:51","nodeType":"YulTypedName","src":"7525:6:51","type":""},{"name":"value1","nativeSrc":"7533:6:51","nodeType":"YulTypedName","src":"7533:6:51","type":""},{"name":"value0","nativeSrc":"7541:6:51","nodeType":"YulTypedName","src":"7541:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7552:4:51","nodeType":"YulTypedName","src":"7552:4:51","type":""}],"src":"7348:489:51"},{"body":{"nativeSrc":"8023:217:51","nodeType":"YulBlock","src":"8023:217:51","statements":[{"nativeSrc":"8033:27:51","nodeType":"YulAssignment","src":"8033:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"8045:9:51","nodeType":"YulIdentifier","src":"8045:9:51"},{"kind":"number","nativeSrc":"8056:3:51","nodeType":"YulLiteral","src":"8056:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"8041:3:51","nodeType":"YulIdentifier","src":"8041:3:51"},"nativeSrc":"8041:19:51","nodeType":"YulFunctionCall","src":"8041:19:51"},"variableNames":[{"name":"tail","nativeSrc":"8033:4:51","nodeType":"YulIdentifier","src":"8033:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"8076:9:51","nodeType":"YulIdentifier","src":"8076:9:51"},{"name":"value0","nativeSrc":"8087:6:51","nodeType":"YulIdentifier","src":"8087:6:51"}],"functionName":{"name":"mstore","nativeSrc":"8069:6:51","nodeType":"YulIdentifier","src":"8069:6:51"},"nativeSrc":"8069:25:51","nodeType":"YulFunctionCall","src":"8069:25:51"},"nativeSrc":"8069:25:51","nodeType":"YulExpressionStatement","src":"8069:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8114:9:51","nodeType":"YulIdentifier","src":"8114:9:51"},{"kind":"number","nativeSrc":"8125:2:51","nodeType":"YulLiteral","src":"8125:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8110:3:51","nodeType":"YulIdentifier","src":"8110:3:51"},"nativeSrc":"8110:18:51","nodeType":"YulFunctionCall","src":"8110:18:51"},{"arguments":[{"name":"value1","nativeSrc":"8134:6:51","nodeType":"YulIdentifier","src":"8134:6:51"},{"kind":"number","nativeSrc":"8142:4:51","nodeType":"YulLiteral","src":"8142:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"8130:3:51","nodeType":"YulIdentifier","src":"8130:3:51"},"nativeSrc":"8130:17:51","nodeType":"YulFunctionCall","src":"8130:17:51"}],"functionName":{"name":"mstore","nativeSrc":"8103:6:51","nodeType":"YulIdentifier","src":"8103:6:51"},"nativeSrc":"8103:45:51","nodeType":"YulFunctionCall","src":"8103:45:51"},"nativeSrc":"8103:45:51","nodeType":"YulExpressionStatement","src":"8103:45:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8168:9:51","nodeType":"YulIdentifier","src":"8168:9:51"},{"kind":"number","nativeSrc":"8179:2:51","nodeType":"YulLiteral","src":"8179:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8164:3:51","nodeType":"YulIdentifier","src":"8164:3:51"},"nativeSrc":"8164:18:51","nodeType":"YulFunctionCall","src":"8164:18:51"},{"name":"value2","nativeSrc":"8184:6:51","nodeType":"YulIdentifier","src":"8184:6:51"}],"functionName":{"name":"mstore","nativeSrc":"8157:6:51","nodeType":"YulIdentifier","src":"8157:6:51"},"nativeSrc":"8157:34:51","nodeType":"YulFunctionCall","src":"8157:34:51"},"nativeSrc":"8157:34:51","nodeType":"YulExpressionStatement","src":"8157:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8211:9:51","nodeType":"YulIdentifier","src":"8211:9:51"},{"kind":"number","nativeSrc":"8222:2:51","nodeType":"YulLiteral","src":"8222:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8207:3:51","nodeType":"YulIdentifier","src":"8207:3:51"},"nativeSrc":"8207:18:51","nodeType":"YulFunctionCall","src":"8207:18:51"},{"name":"value3","nativeSrc":"8227:6:51","nodeType":"YulIdentifier","src":"8227:6:51"}],"functionName":{"name":"mstore","nativeSrc":"8200:6:51","nodeType":"YulIdentifier","src":"8200:6:51"},"nativeSrc":"8200:34:51","nodeType":"YulFunctionCall","src":"8200:34:51"},"nativeSrc":"8200:34:51","nodeType":"YulExpressionStatement","src":"8200:34:51"}]},"name":"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"7842:398:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7968:9:51","nodeType":"YulTypedName","src":"7968:9:51","type":""},{"name":"value3","nativeSrc":"7979:6:51","nodeType":"YulTypedName","src":"7979:6:51","type":""},{"name":"value2","nativeSrc":"7987:6:51","nodeType":"YulTypedName","src":"7987:6:51","type":""},{"name":"value1","nativeSrc":"7995:6:51","nodeType":"YulTypedName","src":"7995:6:51","type":""},{"name":"value0","nativeSrc":"8003:6:51","nodeType":"YulTypedName","src":"8003:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"8014:4:51","nodeType":"YulTypedName","src":"8014:4:51","type":""}],"src":"7842:398:51"},{"body":{"nativeSrc":"8277:95:51","nodeType":"YulBlock","src":"8277:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8294:1:51","nodeType":"YulLiteral","src":"8294:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"8301:3:51","nodeType":"YulLiteral","src":"8301:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"8306:10:51","nodeType":"YulLiteral","src":"8306:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"8297:3:51","nodeType":"YulIdentifier","src":"8297:3:51"},"nativeSrc":"8297:20:51","nodeType":"YulFunctionCall","src":"8297:20:51"}],"functionName":{"name":"mstore","nativeSrc":"8287:6:51","nodeType":"YulIdentifier","src":"8287:6:51"},"nativeSrc":"8287:31:51","nodeType":"YulFunctionCall","src":"8287:31:51"},"nativeSrc":"8287:31:51","nodeType":"YulExpressionStatement","src":"8287:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8334:1:51","nodeType":"YulLiteral","src":"8334:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"8337:4:51","nodeType":"YulLiteral","src":"8337:4:51","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"8327:6:51","nodeType":"YulIdentifier","src":"8327:6:51"},"nativeSrc":"8327:15:51","nodeType":"YulFunctionCall","src":"8327:15:51"},"nativeSrc":"8327:15:51","nodeType":"YulExpressionStatement","src":"8327:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8358:1:51","nodeType":"YulLiteral","src":"8358:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"8361:4:51","nodeType":"YulLiteral","src":"8361:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"8351:6:51","nodeType":"YulIdentifier","src":"8351:6:51"},"nativeSrc":"8351:15:51","nodeType":"YulFunctionCall","src":"8351:15:51"},"nativeSrc":"8351:15:51","nodeType":"YulExpressionStatement","src":"8351:15:51"}]},"name":"panic_error_0x21","nativeSrc":"8245:127:51","nodeType":"YulFunctionDefinition","src":"8245:127:51"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_bytes4(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, shl(224, 0xffffffff)))) { revert(0, 0) }\n        value0 := value\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_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 0x20) }\n        {\n            mstore(add(add(pos, i), 0x20), mload(add(add(value, i), 0x20)))\n        }\n        mstore(add(add(pos, length), 0x20), 0)\n        end := add(add(pos, and(add(length, 31), not(31))), 0x20)\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_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\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        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := value\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_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        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\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_bytes32__to_t_bytes32__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, value0)\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_encode_tuple_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value6, value5, value4, value3, value2, value1, value0) -> tail\n    {\n        mstore(headStart, and(value0, shl(248, 255)))\n        mstore(add(headStart, 32), 224)\n        let tail_1 := abi_encode_string(value1, add(headStart, 224))\n        mstore(add(headStart, 64), sub(tail_1, headStart))\n        let tail_2 := abi_encode_string(value2, tail_1)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), and(value4, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 160), value5)\n        mstore(add(headStart, 192), sub(tail_2, headStart))\n        let pos := tail_2\n        let length := mload(value6)\n        mstore(tail_2, length)\n        pos := add(tail_2, 32)\n        let srcPtr := add(value6, 32)\n        let i := 0\n        for { } lt(i, length) { i := add(i, 1) }\n        {\n            mstore(pos, mload(srcPtr))\n            pos := add(pos, 32)\n            srcPtr := add(srcPtr, 32)\n        }\n        tail := pos\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        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 96))\n        value3 := value_1\n        let value_2 := calldataload(add(headStart, 128))\n        if iszero(eq(value_2, and(value_2, 0xff))) { revert(0, 0) }\n        value4 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 160))\n        value5 := value_3\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 192))\n        value6 := value_4\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 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    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        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 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_address_t_address__to_t_address_t_address__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), and(value1, sub(shl(160, 1), 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, sub(shl(160, 1), 1)))\n    }\n    function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\n        mstore(add(headStart, 64), value2)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\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_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 panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n}","id":51,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"3881":[{"length":32,"start":2022}],"3883":[{"length":32,"start":1980}],"3885":[{"length":32,"start":1938}],"3887":[{"length":32,"start":2103}],"3889":[{"length":32,"start":2143}],"3892":[{"length":32,"start":2231}],"3895":[{"length":32,"start":2276}]},"linkReferences":{},"object":"608060405234801561001057600080fd5b50600436106101005760003560e01c80633644e5151161009757806395d89b411161006657806395d89b4114610210578063a9059cbb14610218578063d505accf1461022b578063dd62ed3e1461023e57600080fd5b80633644e515146101b157806370a08231146101b95780637ecebe00146101e257806384b0196e146101f557600080fd5b806318bf5077116100d357806318bf50771461016757806323b872dd1461017c5780632b8c49e31461018f578063313ce567146101a257600080fd5b806301ffc9a71461010557806306fdde031461012d578063095ea7b31461014257806318160ddd14610155575b600080fd5b610118610113366004610dfe565b610277565b60405190151581526020015b60405180910390f35b6101356102ae565b6040516101249190610e75565b610118610150366004610ea4565b610340565b6002545b604051908152602001610124565b61017a610175366004610ea4565b610358565b005b61011861018a366004610ece565b6103b0565b61017a61019d366004610ea4565b6103d4565b60405160098152602001610124565b610159610424565b6101596101c7366004610f0b565b6001600160a01b031660009081526020819052604090205490565b6101596101f0366004610f0b565b610433565b6101fd610451565b6040516101249796959493929190610f26565b610135610497565b610118610226366004610ea4565b6104a6565b61017a610239366004610fbe565b6104b4565b61015961024c366004611031565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006001600160e01b03198216630cccc66560e21b14806102a857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546102bd90611064565b80601f01602080910402602001604051908101604052809291908181526020018280546102e990611064565b80156103365780601f1061030b57610100808354040283529160200191610336565b820191906000526020600020905b81548152906001019060200180831161031957829003601f168201915b5050505050905090565b60003361034e8185856105f3565b5060019392505050565b61036133610605565b61036b8282610637565b60405181815233906001600160a01b038416907fde22baff038e3a3e08407cbdf617deed74e869a7ba517df611e33131c6e6ea04906020015b60405180910390a35050565b6000336103be858285610671565b6103c98585856106f0565b506001949350505050565b6103dd33610605565b6103e7828261074f565b60405181815233906001600160a01b038416907fb90795a66650155983e242cac3e1ac1a4dc26f8ed2987f3ce416a34e00111fd4906020016103a4565b600061042e610785565b905090565b6001600160a01b0381166000908152600760205260408120546102a8565b6000606080600080600060606104656108b0565b61046d6108dd565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6060600480546102bd90611064565b60003361034e8185856106f0565b834211156104dd5760405163313c898160e11b8152600481018590526024015b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861052a8c6001600160a01b0316600090815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006105858261090a565b9050600061059582878787610937565b9050896001600160a01b0316816001600160a01b0316146105dc576040516325c0072360e11b81526001600160a01b0380831660048301528b1660248201526044016104d4565b6105e78a8a8a6105f3565b50505050505050505050565b6106008383836001610965565b505050565b6001600160a01b0381166028602160991b0114610634576040516282b42960e81b815260040160405180910390fd5b50565b6001600160a01b0382166106615760405163ec442f0560e01b8152600060048201526024016104d4565b61066d60008383610a3a565b5050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198110156106ea57818110156106db57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016104d4565b6106ea84848484036000610965565b50505050565b6001600160a01b03831661071a57604051634b637e8f60e11b8152600060048201526024016104d4565b6001600160a01b0382166107445760405163ec442f0560e01b8152600060048201526024016104d4565b610600838383610a3a565b6001600160a01b03821661077957604051634b637e8f60e11b8152600060048201526024016104d4565b61066d82600083610a3a565b6000306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156107de57507f000000000000000000000000000000000000000000000000000000000000000046145b1561080857507f000000000000000000000000000000000000000000000000000000000000000090565b61042e604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b606061042e7f00000000000000000000000000000000000000000000000000000000000000006005610b64565b606061042e7f00000000000000000000000000000000000000000000000000000000000000006006610b64565b60006102a8610917610785565b8360405161190160f01b8152600281019290925260228201526042902090565b60008060008061094988888888610c0f565b9250925092506109598282610cde565b50909695505050505050565b6001600160a01b03841661098f5760405163e602df0560e01b8152600060048201526024016104d4565b6001600160a01b0383166109b957604051634a1406b160e11b8152600060048201526024016104d4565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156106ea57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a2c91815260200190565b60405180910390a350505050565b6001600160a01b038316610a65578060026000828254610a5a919061109e565b90915550610ad79050565b6001600160a01b03831660009081526020819052604090205481811015610ab85760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016104d4565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216610af357600280548290039055610b12565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b5791815260200190565b60405180910390a3505050565b606060ff8314610b7e57610b7783610d97565b90506102a8565b818054610b8a90611064565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb690611064565b8015610c035780601f10610bd857610100808354040283529160200191610c03565b820191906000526020600020905b815481529060010190602001808311610be657829003601f168201915b505050505090506102a8565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610c4a5750600091506003905082610cd4565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610c9e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610cca57506000925060019150829050610cd4565b9250600091508190505b9450945094915050565b6000826003811115610cf257610cf26110bf565b03610cfb575050565b6001826003811115610d0f57610d0f6110bf565b03610d2d5760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610d4157610d416110bf565b03610d625760405163fce698f760e01b8152600481018290526024016104d4565b6003826003811115610d7657610d766110bf565b0361066d576040516335e2f38360e21b8152600481018290526024016104d4565b60606000610da483610dd6565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b600060ff8216601f8111156102a857604051632cd44ac360e21b815260040160405180910390fd5b600060208284031215610e1057600080fd5b81356001600160e01b031981168114610e2857600080fd5b9392505050565b6000815180845260005b81811015610e5557602081850181015186830182015201610e39565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000610e286020830184610e2f565b80356001600160a01b0381168114610e9f57600080fd5b919050565b60008060408385031215610eb757600080fd5b610ec083610e88565b946020939093013593505050565b600080600060608486031215610ee357600080fd5b610eec84610e88565b9250610efa60208501610e88565b929592945050506040919091013590565b600060208284031215610f1d57600080fd5b610e2882610e88565b60ff60f81b8816815260e060208201526000610f4560e0830189610e2f565b8281036040840152610f578189610e2f565b606084018890526001600160a01b038716608085015260a0840186905283810360c08501528451808252602080870193509091019060005b81811015610fad578351835260209384019390920191600101610f8f565b50909b9a5050505050505050505050565b600080600080600080600060e0888a031215610fd957600080fd5b610fe288610e88565b9650610ff060208901610e88565b95506040880135945060608801359350608088013560ff8116811461101457600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561104457600080fd5b61104d83610e88565b915061105b60208401610e88565b90509250929050565b600181811c9082168061107857607f821691505b60208210810361109857634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102a857634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea26469706673582212204025291af35330df43c9096757c1e2057f99b65f742e03c53b93652afa8d267564736f6c634300081c0033","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 0x3644E515 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x210 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x218 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x22B JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x23E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x3644E515 EQ PUSH2 0x1B1 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1B9 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x1E2 JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x1F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x18BF5077 GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x18BF5077 EQ PUSH2 0x167 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x17C JUMPI DUP1 PUSH4 0x2B8C49E3 EQ PUSH2 0x18F JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x105 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x12D JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x142 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x155 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x118 PUSH2 0x113 CALLDATASIZE PUSH1 0x4 PUSH2 0xDFE JUMP JUMPDEST PUSH2 0x277 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x135 PUSH2 0x2AE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x124 SWAP2 SWAP1 PUSH2 0xE75 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x150 CALLDATASIZE PUSH1 0x4 PUSH2 0xEA4 JUMP JUMPDEST PUSH2 0x340 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x124 JUMP JUMPDEST PUSH2 0x17A PUSH2 0x175 CALLDATASIZE PUSH1 0x4 PUSH2 0xEA4 JUMP JUMPDEST PUSH2 0x358 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x118 PUSH2 0x18A CALLDATASIZE PUSH1 0x4 PUSH2 0xECE JUMP JUMPDEST PUSH2 0x3B0 JUMP JUMPDEST PUSH2 0x17A PUSH2 0x19D CALLDATASIZE PUSH1 0x4 PUSH2 0xEA4 JUMP JUMPDEST PUSH2 0x3D4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x9 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x124 JUMP JUMPDEST PUSH2 0x159 PUSH2 0x424 JUMP JUMPDEST PUSH2 0x159 PUSH2 0x1C7 CALLDATASIZE PUSH1 0x4 PUSH2 0xF0B 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 0x159 PUSH2 0x1F0 CALLDATASIZE PUSH1 0x4 PUSH2 0xF0B JUMP JUMPDEST PUSH2 0x433 JUMP JUMPDEST PUSH2 0x1FD PUSH2 0x451 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x124 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xF26 JUMP JUMPDEST PUSH2 0x135 PUSH2 0x497 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x226 CALLDATASIZE PUSH1 0x4 PUSH2 0xEA4 JUMP JUMPDEST PUSH2 0x4A6 JUMP JUMPDEST PUSH2 0x17A PUSH2 0x239 CALLDATASIZE PUSH1 0x4 PUSH2 0xFBE JUMP JUMPDEST PUSH2 0x4B4 JUMP JUMPDEST PUSH2 0x159 PUSH2 0x24C CALLDATASIZE PUSH1 0x4 PUSH2 0x1031 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 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xCCCC665 PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x2A8 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x2BD SWAP1 PUSH2 0x1064 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 0x2E9 SWAP1 PUSH2 0x1064 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x336 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x30B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x336 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 0x319 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x34E DUP2 DUP6 DUP6 PUSH2 0x5F3 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x361 CALLER PUSH2 0x605 JUMP JUMPDEST PUSH2 0x36B DUP3 DUP3 PUSH2 0x637 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0xDE22BAFF038E3A3E08407CBDF617DEED74E869A7BA517DF611E33131C6E6EA04 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x3BE DUP6 DUP3 DUP6 PUSH2 0x671 JUMP JUMPDEST PUSH2 0x3C9 DUP6 DUP6 DUP6 PUSH2 0x6F0 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x3DD CALLER PUSH2 0x605 JUMP JUMPDEST PUSH2 0x3E7 DUP3 DUP3 PUSH2 0x74F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0xB90795A66650155983E242CAC3E1AC1A4DC26F8ED2987F3CE416A34E00111FD4 SWAP1 PUSH1 0x20 ADD PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42E PUSH2 0x785 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x2A8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 PUSH2 0x465 PUSH2 0x8B0 JUMP JUMPDEST PUSH2 0x46D PUSH2 0x8DD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0xF PUSH1 0xF8 SHL SWAP12 SWAP4 SWAP11 POP SWAP2 SWAP9 POP CHAINID SWAP8 POP ADDRESS SWAP7 POP SWAP5 POP SWAP3 POP SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x2BD SWAP1 PUSH2 0x1064 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x34E DUP2 DUP6 DUP6 PUSH2 0x6F0 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x4DD JUMPI PUSH1 0x40 MLOAD PUSH4 0x313C8981 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x52A DUP13 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 DUP2 ADD SWAP1 SWAP2 SSTORE SWAP1 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 0x585 DUP3 PUSH2 0x90A JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x595 DUP3 DUP8 DUP8 DUP8 PUSH2 0x937 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 0x5DC JUMPI PUSH1 0x40 MLOAD PUSH4 0x25C00723 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x4 DUP4 ADD MSTORE DUP12 AND PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x44 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0x5E7 DUP11 DUP11 DUP11 PUSH2 0x5F3 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x600 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x965 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x28 PUSH1 0x21 PUSH1 0x99 SHL ADD EQ PUSH2 0x634 JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x661 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0x66D PUSH1 0x0 DUP4 DUP4 PUSH2 0xA3A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0x0 NOT DUP2 LT ISZERO PUSH2 0x6EA JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x6DB JUMPI PUSH1 0x40 MLOAD PUSH4 0x7DC7A0D9 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0x6EA DUP5 DUP5 DUP5 DUP5 SUB PUSH1 0x0 PUSH2 0x965 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x71A JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x744 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0x600 DUP4 DUP4 DUP4 PUSH2 0xA3A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x779 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH2 0x66D DUP3 PUSH1 0x0 DUP4 PUSH2 0xA3A JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x7DE JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0x808 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x42E PUSH1 0x40 DUP1 MLOAD PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x0 SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0x0 PUSH1 0x60 DUP3 ADD MSTORE CHAINID PUSH1 0x80 DUP3 ADD MSTORE ADDRESS PUSH1 0xA0 DUP3 ADD MSTORE PUSH1 0x0 SWAP1 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 SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x42E PUSH32 0x0 PUSH1 0x5 PUSH2 0xB64 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x42E PUSH32 0x0 PUSH1 0x6 PUSH2 0xB64 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A8 PUSH2 0x917 PUSH2 0x785 JUMP JUMPDEST DUP4 PUSH1 0x40 MLOAD PUSH2 0x1901 PUSH1 0xF0 SHL DUP2 MSTORE PUSH1 0x2 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 SWAP1 KECCAK256 SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH2 0x949 DUP9 DUP9 DUP9 DUP9 PUSH2 0xC0F JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x959 DUP3 DUP3 PUSH2 0xCDE JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x98F JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x9B9 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 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 DUP3 SWAP1 SSTORE DUP1 ISZERO PUSH2 0x6EA JUMPI DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0xA2C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0xA65 JUMPI DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xA5A SWAP2 SWAP1 PUSH2 0x109E JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xAD7 SWAP1 POP 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 0xAB8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x391434E3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x44 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x64 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP1 DUP3 SWAP1 SUB SWAP1 SSTORE JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0xAF3 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0xB12 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 DUP1 SLOAD DUP3 ADD SWAP1 SSTORE JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xB57 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xFF DUP4 EQ PUSH2 0xB7E JUMPI PUSH2 0xB77 DUP4 PUSH2 0xD97 JUMP JUMPDEST SWAP1 POP PUSH2 0x2A8 JUMP JUMPDEST DUP2 DUP1 SLOAD PUSH2 0xB8A SWAP1 PUSH2 0x1064 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 0xBB6 SWAP1 PUSH2 0x1064 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xC03 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xBD8 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xC03 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 0xBE6 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH2 0x2A8 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0xC4A JUMPI POP PUSH1 0x0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0xCD4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP1 DUP5 MSTORE DUP11 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP2 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP7 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 0xC9E 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 0xCCA JUMPI POP PUSH1 0x0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0xCD4 JUMP JUMPDEST SWAP3 POP PUSH1 0x0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xCF2 JUMPI PUSH2 0xCF2 PUSH2 0x10BF JUMP JUMPDEST SUB PUSH2 0xCFB JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD0F JUMPI PUSH2 0xD0F PUSH2 0x10BF JUMP JUMPDEST SUB PUSH2 0xD2D JUMPI PUSH1 0x40 MLOAD PUSH4 0xF645EEDF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD41 JUMPI PUSH2 0xD41 PUSH2 0x10BF JUMP JUMPDEST SUB PUSH2 0xD62 JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD76 JUMPI PUSH2 0xD76 PUSH2 0x10BF JUMP JUMPDEST SUB PUSH2 0x66D JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0xDA4 DUP4 PUSH2 0xDD6 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE SWAP2 SWAP3 POP PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY POP POP POP SWAP2 DUP3 MSTORE POP PUSH1 0x20 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND PUSH1 0x1F DUP2 GT ISZERO PUSH2 0x2A8 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xE28 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE55 JUMPI PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD MLOAD DUP7 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0xE39 JUMP JUMPDEST POP PUSH1 0x0 PUSH1 0x20 DUP3 DUP7 ADD ADD MSTORE PUSH1 0x20 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP6 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0xE28 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xE2F JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE9F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEB7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEC0 DUP4 PUSH2 0xE88 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 0xEE3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEEC DUP5 PUSH2 0xE88 JUMP JUMPDEST SWAP3 POP PUSH2 0xEFA PUSH1 0x20 DUP6 ADD PUSH2 0xE88 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 0xF1D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE28 DUP3 PUSH2 0xE88 JUMP JUMPDEST PUSH1 0xFF PUSH1 0xF8 SHL DUP9 AND DUP2 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x0 PUSH2 0xF45 PUSH1 0xE0 DUP4 ADD DUP10 PUSH2 0xE2F JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0xF57 DUP2 DUP10 PUSH2 0xE2F JUMP JUMPDEST PUSH1 0x60 DUP5 ADD DUP9 SWAP1 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x80 DUP6 ADD MSTORE PUSH1 0xA0 DUP5 ADD DUP7 SWAP1 MSTORE DUP4 DUP2 SUB PUSH1 0xC0 DUP6 ADD MSTORE DUP5 MLOAD DUP1 DUP3 MSTORE PUSH1 0x20 DUP1 DUP8 ADD SWAP4 POP SWAP1 SWAP2 ADD SWAP1 PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xFAD JUMPI DUP4 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0xF8F JUMP JUMPDEST POP SWAP1 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0xFD9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xFE2 DUP9 PUSH2 0xE88 JUMP JUMPDEST SWAP7 POP PUSH2 0xFF0 PUSH1 0x20 DUP10 ADD PUSH2 0xE88 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 0x1014 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 0x1044 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x104D DUP4 PUSH2 0xE88 JUMP JUMPDEST SWAP2 POP PUSH2 0x105B PUSH1 0x20 DUP5 ADD PUSH2 0xE88 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1078 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1098 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 DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x2A8 JUMPI 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 BLOCKHASH 0x25 0x29 BYTE RETURN MSTORE8 ADDRESS 0xDF NUMBER 0xC9 MULMOD PUSH8 0x57C1E2057F99B65F PUSH21 0x2E03C53B93652AFA8D267564736F6C634300081C00 CALLER ","sourceMap":"405:1006:31:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1026:213:1;;;;;;:::i;:::-;;:::i;:::-;;;470:14:51;;463:22;445:41;;433:2;418:18;1026:213:1;;;;;;;;1760:89:7;;;:::i;:::-;;;;;;;:::i;3902:186::-;;;;;;:::i;:::-;;:::i;2803:97::-;2881:12;;2803:97;;;1756:25:51;;;1744:2;1729:18;2803:97:7;1610:177:51;1336:178:1;;;;;;:::i;:::-;;:::i;:::-;;4680:244:7;;;;;;:::i;:::-;;:::i;1611:184:1:-;;;;;;:::i;:::-;;:::i;1324:84:31:-;;;1399:1;2313:36:51;;2301:2;2286:18;1324:84:31;2171:184:51;2614:112:9;;;:::i;2933:116:7:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3024:18:7;2998:7;3024:18;;;;;;;;;;;;2933:116;2379:143:9;;;;;;:::i;:::-;;:::i;5228:557:19:-;;;:::i;:::-;;;;;;;;;;;;;:::i;1962:93:7:-;;;:::i;3244:178::-;;;;;;:::i;:::-;;:::i;1668:672:9:-;;;;;;:::i;:::-;;:::i;3455:140:7:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3561:18:7;;;3535:7;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3455:140;1026:213:1;1128:4;-1:-1:-1;;;;;;1151:41:1;;-1:-1:-1;;;1151:41:1;;:81;;-1:-1:-1;;;;;;;;;;829:40:21;;;1196:36:1;1144:88;1026:213;-1:-1:-1;;1026:213:1:o;1760:89:7:-;1805:13;1837:5;1830:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89;:::o;3902:186::-;3975:4;735:10:12;4029:31:7;735:10:12;4045:7:7;4054:5;4029:8;:31::i;:::-;-1:-1:-1;4077:4:7;;3902:186;-1:-1:-1;;;3902:186:7:o;1336:178:1:-;946:29;964:10;946:17;:29::i;:::-;1437:16:::1;1443:2;1447:5;1437;:16::i;:::-;1468:39;::::0;1756:25:51;;;735:10:12;;-1:-1:-1;;;;;1468:39:1;::::1;::::0;::::1;::::0;1744:2:51;1729:18;1468:39:1::1;;;;;;;;1336:178:::0;;:::o;4680:244:7:-;4767:4;735:10:12;4823:37:7;4839:4;735:10:12;4854:5:7;4823:15;:37::i;:::-;4870:26;4880:4;4886:2;4890:5;4870:9;:26::i;:::-;-1:-1:-1;4913:4:7;;4680:244;-1:-1:-1;;;;4680:244:7:o;1611:184:1:-;946:29;964:10;946:17;:29::i;:::-;1714:18:::1;1720:4;1726:5;1714;:18::i;:::-;1747:41;::::0;1756:25:51;;;735:10:12;;-1:-1:-1;;;;;1747:41:1;::::1;::::0;::::1;::::0;1744:2:51;1729:18;1747:41:1::1;1610:177:51::0;2614:112:9;2673:7;2699:20;:18;:20::i;:::-;2692:27;;2614:112;:::o;2379:143::-;-1:-1:-1;;;;;624:14:13;;2470:7:9;624:14:13;;;:7;:14;;;;;;2496:19:9;538:107:13;5228:557:19;5326:13;5353:18;5385:21;5420:15;5449:25;5488:12;5514:27;5617:13;:11;:13::i;:::-;5644:16;:14;:16::i;:::-;5752;;;5736:1;5752:16;;;;;;;;;-1:-1:-1;;;5566:212:19;;;-1:-1:-1;5566:212:19;;-1:-1:-1;5674:13:19;;-1:-1:-1;5709:4:19;;-1:-1:-1;5736:1:19;-1:-1:-1;5752:16:19;-1:-1:-1;5566:212:19;-1:-1:-1;5228:557:19:o;1962:93:7:-;2009:13;2041:7;2034:14;;;;;:::i;3244:178::-;3313:4;735:10:12;3367:27:7;735:10:12;3384:2:7;3388:5;3367:9;:27::i;1668:672:9:-;1889:8;1871:15;:26;1867:97;;;1920:33;;-1:-1:-1;;;1920:33:9;;;;;1756:25:51;;;1729:18;;1920:33:9;;;;;;;;1867:97;1974:18;1024:95;2033:5;2040:7;2049:5;2056:16;2066:5;-1:-1:-1;;;;;1121:14:13;819:7;1121:14;;;:7;:14;;;;;:16;;;;;;;;;759:395;2056:16:9;2005:78;;;;;;5953:25:51;;;;-1:-1:-1;;;;;6014:32:51;;;5994:18;;;5987:60;6083:32;;;;6063:18;;;6056:60;6132:18;;;6125:34;6175:19;;;6168:35;6219:19;;;6212:35;;;5925:19;;2005:78:9;;;;;;;;;;;;1995:89;;;;;;1974:110;;2095:12;2110:28;2127:10;2110:16;:28::i;:::-;2095:43;;2149:14;2166:28;2180:4;2186:1;2189;2192;2166:13;:28::i;:::-;2149:45;;2218:5;-1:-1:-1;;;;;2208:15:9;:6;-1:-1:-1;;;;;2208:15:9;;2204:88;;2246:35;;-1:-1:-1;;;2246:35:9;;-1:-1:-1;;;;;6450:32:51;;;2246:35:9;;;6432:51:51;6519:32;;6499:18;;;6492:60;6405:18;;2246:35:9;6258:300:51;2204:88:9;2302:31;2311:5;2318:7;2327:5;2302:8;:31::i;:::-;1857:483;;;1668:672;;;;;;;:::o;8630:128:7:-;8714:37;8723:5;8730:7;8739:5;8746:4;8714:8;:37::i;:::-;8630:128;;;:::o;921:145:31:-;-1:-1:-1;;;;;1002:33:31;;-1:-1:-1;;;;;1002:33:31;998:60;;1044:14;;-1:-1:-1;;;1044:14:31;;;;;;;;;;;998:60;921:145;:::o;7362:208:7:-;-1:-1:-1;;;;;7432:21:7;;7428:91;;7476:32;;-1:-1:-1;;;7476:32:7;;7505:1;7476:32;;;6709:51:51;6682:18;;7476:32:7;6563:203:51;7428:91:7;7528:35;7544:1;7548:7;7557:5;7528:7;:35::i;:::-;7362:208;;:::o;10319:476::-;-1:-1:-1;;;;;3561:18:7;;;10418:24;3561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10484:36:7;;10480:309;;;10559:5;10540:16;:24;10536:130;;;10591:60;;-1:-1:-1;;;10591:60:7;;-1:-1:-1;;;;;6991:32:51;;10591:60:7;;;6973:51:51;7040:18;;;7033:34;;;7083:18;;;7076:34;;;6946:18;;10591:60:7;6771:345:51;10536:130:7;10707:57;10716:5;10723:7;10751:5;10732:16;:24;10758:5;10707:8;:57::i;:::-;10408:387;10319:476;;;:::o;5297:300::-;-1:-1:-1;;;;;5380:18:7;;5376:86;;5421:30;;-1:-1:-1;;;5421:30:7;;5448:1;5421:30;;;6709:51:51;6682:18;;5421:30:7;6563:203:51;5376:86:7;-1:-1:-1;;;;;5475:16:7;;5471:86;;5514:32;;-1:-1:-1;;;5514:32:7;;5543:1;5514:32;;;6709:51:51;6682:18;;5514:32:7;6563:203:51;5471:86:7;5566:24;5574:4;5580:2;5584:5;5566:7;:24::i;7888:206::-;-1:-1:-1;;;;;7958:21:7;;7954:89;;8002:30;;-1:-1:-1;;;8002:30:7;;8029:1;8002:30;;;6709:51:51;6682:18;;8002:30:7;6563:203:51;7954:89:7;8052:35;8060:7;8077:1;8081:5;8052:7;:35::i;3945:262:19:-;3998:7;4029:4;-1:-1:-1;;;;;4038:11:19;4021:28;;:63;;;;;4070:14;4053:13;:31;4021:63;4017:184;;;-1:-1:-1;4107:22:19;;3945:262::o;4017:184::-;4167:23;4304:80;;;2079:95;4304:80;;;7607:25:51;4326:11:19;7648:18:51;;;7641:34;;;;4339:14:19;7691:18:51;;;7684:34;4355:13:19;7734:18:51;;;7727:34;4378:4:19;7777:19:51;;;7770:61;4268:7:19;;7579:19:51;;4304:80:19;;;;;;;;;;;;4294:91;;;;;;4287:98;;4213:179;;6105:126;6151:13;6183:41;:5;6210:13;6183:26;:41::i;6557:135::-;6606:13;6638:47;:8;6668:16;6638:29;:47::i;5017:176::-;5094:7;5120:66;5153:20;:18;:20::i;:::-;5175:10;4049:4:20;4043:11;-1:-1:-1;;;4067:23:20;;4119:4;4110:14;;4103:39;;;;4171:4;4162:14;;4155:34;4227:4;4212:20;;;3874:374;6887:260:18;6972:7;6992:17;7011:18;7031:16;7051:25;7062:4;7068:1;7071;7074;7051:10;:25::i;:::-;6991:85;;;;;;7086:28;7098:5;7105:8;7086:11;:28::i;:::-;-1:-1:-1;7131:9:18;;6887:260;-1:-1:-1;;;;;;6887:260:18:o;9605:432:7:-;-1:-1:-1;;;;;9717:19:7;;9713:89;;9759:32;;-1:-1:-1;;;9759:32:7;;9788:1;9759:32;;;6709:51:51;6682:18;;9759:32:7;6563:203:51;9713:89:7;-1:-1:-1;;;;;9815:21:7;;9811:90;;9859:31;;-1:-1:-1;;;9859:31:7;;9887:1;9859:31;;;6709:51:51;6682:18;;9859:31:7;6563:203:51;9811:90:7;-1:-1:-1;;;;;9910:18:7;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;9955:76;;;;10005:7;-1:-1:-1;;;;;9989:31:7;9998:5;-1:-1:-1;;;;;9989:31:7;;10014:5;9989:31;;;;1756:25:51;;1744:2;1729:18;;1610:177;9989:31:7;;;;;;;;9605:432;;;;:::o;5912:1107::-;-1:-1:-1;;;;;6001:18:7;;5997:540;;6153:5;6137:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;5997:540:7;;-1:-1:-1;5997:540:7;;-1:-1:-1;;;;;6211:15:7;;6189:19;6211:15;;;;;;;;;;;6244:19;;;6240:115;;;6290:50;;-1:-1:-1;;;6290:50:7;;-1:-1:-1;;;;;6991:32:51;;6290:50:7;;;6973:51:51;7040:18;;;7033:34;;;7083:18;;;7076:34;;;6946:18;;6290:50:7;6771:345:51;6240:115:7;-1:-1:-1;;;;;6475:15:7;;:9;:15;;;;;;;;;;6493:19;;;;6475:37;;5997:540;-1:-1:-1;;;;;6551:16:7;;6547:425;;6714:12;:21;;;;;;;6547:425;;;-1:-1:-1;;;;;6925:13:7;;:9;:13;;;;;;;;;;:22;;;;;;6547:425;7002:2;-1:-1:-1;;;;;6987:25:7;6996:4;-1:-1:-1;;;;;6987:25:7;;7006:5;6987:25;;;;1756::51;;1744:2;1729:18;;1610:177;6987:25:7;;;;;;;;5912:1107;;;:::o;3368:267:15:-;3462:13;1390:66;3491:46;;3487:142;;3560:15;3569:5;3560:8;:15::i;:::-;3553:22;;;;3487:142;3613:5;3606:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5203:1551:18;5329:17;;;6283:66;6270:79;;6266:164;;;-1:-1:-1;6381:1:18;;-1:-1:-1;6385:30:18;;-1:-1:-1;6417:1:18;6365:54;;6266:164;6541:24;;;6524:14;6541:24;;;;;;;;;8069:25:51;;;8142:4;8130:17;;8110:18;;;8103:45;;;;8164:18;;;8157:34;;;8207:18;;;8200:34;;;6541:24:18;;8041:19:51;;6541:24:18;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6541:24:18;;-1:-1:-1;;6541:24:18;;;-1:-1:-1;;;;;;;6579:20:18;;6575:113;;-1:-1:-1;6631:1:18;;-1:-1:-1;6635:29:18;;-1:-1:-1;6631:1:18;;-1:-1:-1;6615:62:18;;6575:113;6706:6;-1:-1:-1;6714:20:18;;-1:-1:-1;6714:20:18;;-1:-1:-1;5203:1551:18;;;;;;;;;:::o;7280:532::-;7375:20;7366:5;:29;;;;;;;;:::i;:::-;;7362:444;;7280:532;;:::o;7362:444::-;7471:29;7462:5;:38;;;;;;;;:::i;:::-;;7458:348;;7523:23;;-1:-1:-1;;;7523:23:18;;;;;;;;;;;7458:348;7576:35;7567:5;:44;;;;;;;;:::i;:::-;;7563:243;;7634:46;;-1:-1:-1;;;7634:46:18;;;;;1756:25:51;;;1729:18;;7634:46:18;1610:177:51;7563:243:18;7710:30;7701:5;:39;;;;;;;;:::i;:::-;;7697:109;;7763:32;;-1:-1:-1;;;7763:32:18;;;;;1756:25:51;;;1729:18;;7763:32:18;1610:177:51;2078:378:15;2137:13;2162:11;2176:16;2187:4;2176:10;:16::i;:::-;2300:14;;;2311:2;2300:14;;;;;;;;;2162:30;;-1:-1:-1;2280:17:15;;2300:14;;;;;;;;;-1:-1:-1;;;2363:16:15;;;-1:-1:-1;2408:4:15;2399:14;;2392:28;;;;-1:-1:-1;2363:16:15;2078:378::o;2528:245::-;2589:7;2661:4;2625:40;;2688:2;2679:11;;2675:69;;;2713:20;;-1:-1:-1;;;2713:20:15;;;;;;;;;;;14:286:51;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:51;;209:43;;199:71;;266:1;263;256:12;199:71;289:5;14:286;-1:-1:-1;;;14:286:51:o;497:400::-;539:3;577:5;571:12;604:6;599:3;592:19;629:1;639:139;653:6;650:1;647:13;639:139;;;761:4;746:13;;;742:24;;736:31;716:11;;;712:22;;705:63;668:12;639:139;;;643:3;823:1;816:4;807:6;802:3;798:16;794:27;787:38;886:4;879:2;875:7;870:2;862:6;858:15;854:29;849:3;845:39;841:50;834:57;;;497:400;;;;:::o;902:220::-;1051:2;1040:9;1033:21;1014:4;1071:45;1112:2;1101:9;1097:18;1089:6;1071:45;:::i;1127:173::-;1195:20;;-1:-1:-1;;;;;1244:31:51;;1234:42;;1224:70;;1290:1;1287;1280:12;1224:70;1127:173;;;:::o;1305:300::-;1373:6;1381;1434:2;1422:9;1413:7;1409:23;1405:32;1402:52;;;1450:1;1447;1440:12;1402:52;1473:29;1492:9;1473:29;:::i;:::-;1463:39;1571:2;1556:18;;;;1543:32;;-1:-1:-1;;;1305:300:51:o;1792:374::-;1869:6;1877;1885;1938:2;1926:9;1917:7;1913:23;1909:32;1906:52;;;1954:1;1951;1944:12;1906:52;1977:29;1996:9;1977:29;:::i;:::-;1967:39;;2025:38;2059:2;2048:9;2044:18;2025:38;:::i;:::-;1792:374;;2015:48;;-1:-1:-1;;;2132:2:51;2117:18;;;;2104:32;;1792:374::o;2542:186::-;2601:6;2654:2;2642:9;2633:7;2629:23;2625:32;2622:52;;;2670:1;2667;2660:12;2622:52;2693:29;2712:9;2693:29;:::i;2733:1238::-;3139:3;3134;3130:13;3122:6;3118:26;3107:9;3100:45;3181:3;3176:2;3165:9;3161:18;3154:31;3081:4;3208:46;3249:3;3238:9;3234:19;3226:6;3208:46;:::i;:::-;3302:9;3294:6;3290:22;3285:2;3274:9;3270:18;3263:50;3336:33;3362:6;3354;3336:33;:::i;:::-;3400:2;3385:18;;3378:34;;;-1:-1:-1;;;;;3449:32:51;;3443:3;3428:19;;3421:61;3469:3;3498:19;;3491:35;;;3563:22;;;3557:3;3542:19;;3535:51;3635:13;;3657:22;;;3707:2;3733:15;;;;-1:-1:-1;3695:15:51;;;;-1:-1:-1;3776:169:51;3790:6;3787:1;3784:13;3776:169;;;3851:13;;3839:26;;3894:2;3920:15;;;;3885:12;;;;3812:1;3805:9;3776:169;;;-1:-1:-1;3962:3:51;;2733:1238;-1:-1:-1;;;;;;;;;;;2733:1238:51:o;3976:903::-;4087:6;4095;4103;4111;4119;4127;4135;4188:3;4176:9;4167:7;4163:23;4159:33;4156:53;;;4205:1;4202;4195:12;4156:53;4228:29;4247:9;4228:29;:::i;:::-;4218:39;;4276:38;4310:2;4299:9;4295:18;4276:38;:::i;:::-;4266:48;-1:-1:-1;4383:2:51;4368:18;;4355:32;;-1:-1:-1;4484:2:51;4469:18;;4456:32;;-1:-1:-1;4566:3:51;4551:19;;4538:33;4615:4;4602:18;;4590:31;;4580:59;;4635:1;4632;4625:12;4580:59;3976:903;;;;-1:-1:-1;3976:903:51;;;;4658:7;4738:3;4723:19;;4710:33;;-1:-1:-1;4842:3:51;4827:19;;;4814:33;;3976:903;-1:-1:-1;;3976:903:51:o;4884:260::-;4952:6;4960;5013:2;5001:9;4992:7;4988:23;4984:32;4981:52;;;5029:1;5026;5019:12;4981:52;5052:29;5071:9;5052:29;:::i;:::-;5042:39;;5100:38;5134:2;5123:9;5119:18;5100:38;:::i;:::-;5090:48;;4884:260;;;;;:::o;5149:380::-;5228:1;5224:12;;;;5271;;;5292:61;;5346:4;5338:6;5334:17;5324:27;;5292:61;5399:2;5391:6;5388:14;5368:18;5365:38;5362:161;;5445:10;5440:3;5436:20;5433:1;5426:31;5480:4;5477:1;5470:15;5508:4;5505:1;5498:15;5362:161;;5149:380;;;:::o;7121:222::-;7186:9;;;7207:10;;;7204:133;;;7259:10;7254:3;7250:20;7247:1;7240:31;7294:4;7291:1;7284:15;7322:4;7319:1;7312:15;8245:127;8306:10;8301:3;8297:20;8294:1;8287:31;8337:4;8334:1;8327:15;8361:4;8358:1;8351:15"},"methodIdentifiers":{"DOMAIN_SEPARATOR()":"3644e515","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","crosschainBurn(address,uint256)":"2b8c49e3","crosschainMint(address,uint256)":"18bf5077","decimals()":"313ce567","eip712Domain()":"84b0196e","name()":"06fdde03","nonces(address)":"7ecebe00","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"allowance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientAllowance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"ERC20InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC20InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"ERC20InvalidSpender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"deadline\",\"type\":\"uint256\"}],\"name\":\"ERC2612ExpiredSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"signer\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC2612InvalidSigner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"currentNonce\",\"type\":\"uint256\"}],\"name\":\"InvalidAccountNonce\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidShortString\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"str\",\"type\":\"string\"}],\"name\":\"StringTooLong\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"Unauthorized\",\"type\":\"error\"},{\"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\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"CrosschainBurn\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"CrosschainMint\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"EIP712DomainChanged\",\"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\":\"value\",\"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\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"crosschainBurn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"crosschainMint\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"eip712Domain\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"fields\",\"type\":\"bytes1\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"version\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"chainId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"verifyingContract\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"},{\"internalType\":\"uint256[]\",\"name\":\"extensions\",\"type\":\"uint256[]\"}],\"stateMutability\":\"view\",\"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\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"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\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"ECDSAInvalidSignature()\":[{\"details\":\"The signature derives the `address(0)`.\"}],\"ECDSAInvalidSignatureLength(uint256)\":[{\"details\":\"The signature has an invalid length.\"}],\"ECDSAInvalidSignatureS(bytes32)\":[{\"details\":\"The signature has an S value that is in the upper half order.\"}],\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `allowance`. Used in transfers.\",\"params\":{\"allowance\":\"Amount of tokens a `spender` is allowed to operate with.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC20InsufficientBalance(address,uint256,uint256)\":[{\"details\":\"Indicates an error related to the current `balance` of a `sender`. Used in transfers.\",\"params\":{\"balance\":\"Current balance for the interacting account.\",\"needed\":\"Minimum amount required to perform a transfer.\",\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC20InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC20InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC20InvalidSpender(address)\":[{\"details\":\"Indicates a failure with the `spender` to be approved. Used in approvals.\",\"params\":{\"spender\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC2612ExpiredSignature(uint256)\":[{\"details\":\"Permit deadline has expired.\"}],\"ERC2612InvalidSigner(address,address)\":[{\"details\":\"Mismatched signature.\"}],\"InvalidAccountNonce(address,uint256)\":[{\"details\":\"The nonce used for an `account` is not the expected current nonce.\"}]},\"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.\"},\"CrosschainBurn(address,uint256,address)\":{\"params\":{\"amount\":\"Amount of tokens burned.\",\"from\":\"Address of the account tokens are being burned from.\",\"sender\":\"Address of the caller (msg.sender) who invoked crosschainBurn.\"}},\"CrosschainMint(address,uint256,address)\":{\"params\":{\"amount\":\"Amount of tokens minted.\",\"sender\":\"Address of the caller (msg.sender) who invoked crosschainMint.\",\"to\":\"Address of the account tokens are being minted for.\"}},\"EIP712DomainChanged()\":{\"details\":\"MAY be emitted to signal that the domain could have changed.\"},\"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\":{\"DOMAIN_SEPARATOR()\":{\"details\":\"Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\"},\"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\":\"See {IERC20-approve}. NOTE: If `value` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"crosschainBurn(address,uint256)\":{\"details\":\"See {IERC7802-crosschainBurn}. Emits a {CrosschainBurn} event.\"},\"crosschainMint(address,uint256)\":{\"details\":\"See {IERC7802-crosschainMint}. Emits a {CrosschainMint} event.\"},\"eip712Domain()\":{\"details\":\"returns the fields and values that describe the domain separator used by this contract for EIP-712 signature.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"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]. CAUTION: See Security Considerations above.\"},\"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[ERC section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Skips emitting an {Approval} event indicating an allowance update. This is not required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `value`. - the caller must have allowance for ``from``'s tokens of at least `value`.\"}},\"version\":1},\"userdoc\":{\"events\":{\"CrosschainBurn(address,uint256,address)\":{\"notice\":\"Emitted when a crosschain transfer burns tokens.\"},\"CrosschainMint(address,uint256,address)\":{\"notice\":\"Emitted when a crosschain transfer mints tokens.\"}},\"kind\":\"user\",\"methods\":{\"decimals()\":{\"notice\":\"=============================================================================================================== --- ERC20 -----------------------------------------------------------------------------------------------------\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/WrappedWITSuperchain.sol\":\"WrappedWITSuperchain\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/community-contracts/contracts/interfaces/IERC7802.sol\":{\"keccak256\":\"0x47cd8978c9c554c4a6458bc131d7115867ce3e04153470dec1ef51015c98b40b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cee8847208b4b7358e0e21cd22518575a3d7a7425d9b7014e5a05402b671cbf3\",\"dweb:/ipfs/QmUJCnpBNvet1gaK3pLGyPxLFVe9J8pG7fasux1nDVrU3D\"]},\"@openzeppelin/community-contracts/contracts/token/ERC20/extensions/ERC20Bridgeable.sol\":{\"keccak256\":\"0xcc72e5332718c1956b3ce120c55b1a4b874d8c88a1cf6cb43ef0dfba7dfb7570\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://41c00f6b4e03bd3073af9c7dc3c28b4b1bfa8bd5b60dd542f70a99a90207db3d\",\"dweb:/ipfs/QmY1GyFj6qmVP3xEjNMoG3hXxWuze9xX6R5BYXV3gSPvJR\"]},\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0xfb223a85dd0b2175cfbbaa325a744e2cd74ecd17c3df2b77b0722f991d2725ee\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://84bf1dea0589ec49c8d15d559cc6d86ee493048a89b2d4adb60fbe705a3d89ae\",\"dweb:/ipfs/Qmd56n556d529wk2pRMhYhm5nhMDhviwereodDikjs68w1\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x19fdfb0f3b89a230e7dbd1cf416f1a6b531a3ee5db4da483f946320fc74afc0e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3490d794728f5bfecb46820431adaff71ba374141545ec20b650bb60353fac23\",\"dweb:/ipfs/QmPsfxjVpMcZbpE7BH93DzTpEaktESigEw4SmDzkXuJ4WR\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x86b7b71a6aedefdad89b607378eeab1dcc5389b9ea7d17346d08af01d7190994\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1dc2db8d94a21eac8efe03adf574c419b08536409b416057a2b5b95cb772c43c\",\"dweb:/ipfs/QmZfqJCKVU1ScuX2A7s8WZdQEaikwJbDH5JBrBdKTUT4Gu\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x74ed01eb66b923d0d0cfe3be84604ac04b76482a55f9dd655e1ef4d367f95bc2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5282825a626cfe924e504274b864a652b0023591fa66f06a067b25b51ba9b303\",\"dweb:/ipfs/QmeCfPykghhMc81VJTrHTC7sF6CRvaA1FXVq2pJhwYp1dV\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\":{\"keccak256\":\"0xecd08ad8132d88a5fcfd50f76a18583004fcdab4c33fb86343903ae420ca5a2b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://02422dce2e5305624e5cec644add1baa44bfa98ea131bf6030069089a2f56ca4\",\"dweb:/ipfs/QmcsSUkX7AYXNZE18LYE6JEmv8zZcCZvKfbUm9cSzNQyNo\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xd6fa4088198f04eef10c5bce8a2f4d60554b7ec4b987f684393c01bf79b94d9f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f95ee0bbd4dd3ac730d066ba3e785ded4565e890dbec2fa7d3b9fe3bad9d0d6e\",\"dweb:/ipfs/QmSLr6bHkPFWT7ntj34jmwfyskpwo97T9jZUrk5sz3sdtR\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x2fa0657dd7b8bc75475a47f64bc04a9adb42236b15d65e6781594ea69a46c3e4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7496f42681aed94bf0142a077324e50b86046610c1724e7c12e96cf1c365914a\",\"dweb:/ipfs/QmZvhNdSAAbN4PKPdheAqwpXukUiXp3Q3TdQccDMg2NDTV\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/Nonces.sol\":{\"keccak256\":\"0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e\",\"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ\"]},\"@openzeppelin/contracts/utils/Panic.sol\":{\"keccak256\":\"0xf7fe324703a64fc51702311dc51562d5cb1497734f074e4f483bfb6717572d7a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c6a5ff4f9fd8649b7ee20800b7fa387d3465bd77cf20c2d1068cd5c98e1ed57a\",\"dweb:/ipfs/QmVSaVJf9FXFhdYEYeCEfjMVHrxDh5qL4CGkxdMWpQCrqG\"]},\"@openzeppelin/contracts/utils/ShortStrings.sol\":{\"keccak256\":\"0x1fcf8cceb1a67e6c8512267e780933c4a3f63ef44756e6c818fda79be51c8402\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://617d7d57f6f9cd449068b4d23daf485676d083aae648e038d05eb3a13291de35\",\"dweb:/ipfs/QmPADWPiGaSzZDFNpFEUx4ZPqhzPkYncBpHyTfAGcfsqzy\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"@openzeppelin/contracts/utils/Strings.sol\":{\"keccak256\":\"0xad148d59f05165f9217d0a9e1ac8f772abb02ea6aaad8a756315c532bf79f9f4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://15e3599867c2182f5831e9268b274b2ef2047825837df6b4d81c9e89254b093e\",\"dweb:/ipfs/QmZbL7XAYr5RmaNaooPgZRmcDXaudfsYQfYD9y5iAECvpS\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x17fc4574e07105b0180ef61f1b3cacd1820a3d37f29a4af1018d0a253c6399b5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be46b3e1362dbcadbbb45ec92cdea849dceccea3e2795237f00c123aeae44746\",\"dweb:/ipfs/QmSpyB8mud6xKiZaQnVtEPrxtTHGtyBgjs1PCYk4f2gesd\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0x2d9dc2fe26180f74c11c13663647d38e259e45f95eb88f57b61d2160b0109d3e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://81233d1f98060113d9922180bb0f14f8335856fe9f339134b09335e9f678c377\",\"dweb:/ipfs/QmWh6R35SarhAn4z2wH8SU456jJSYL2FgucfTFgbHJJN4E\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x8891738ffe910f0cf2da09566928589bf5d63f4524dd734fd9cedbac3274dd5c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://971f954442df5c2ef5b5ebf1eb245d7105d9fbacc7386ee5c796df1d45b21617\",\"dweb:/ipfs/QmadRjHbkicwqwwh61raUEapaVEtaLMcYbQZWs9gUkgj3u\"]},\"@openzeppelin/contracts/utils/math/Math.sol\":{\"keccak256\":\"0x1225214420c83ebcca88f2ae2b50f053aaa7df7bd684c3e878d334627f2edfc6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6c5fab4970634f9ab9a620983dc1c8a30153981a0b1a521666e269d0a11399d3\",\"dweb:/ipfs/QmVRnBC575MESGkEHndjujtR7qub2FzU9RWy9eKLp4hPZB\"]},\"@openzeppelin/contracts/utils/math/SafeCast.sol\":{\"keccak256\":\"0x195533c86d0ef72bcc06456a4f66a9b941f38eb403739b00f21fd7c1abd1ae54\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b1d578337048cad08c1c03041cca5978eff5428aa130c781b271ad9e5566e1f8\",\"dweb:/ipfs/QmPFKL2r9CBsMwmUqqdcFPfHZB2qcs9g1HDrPxzWSxomvy\"]},\"@openzeppelin/contracts/utils/math/SignedMath.sol\":{\"keccak256\":\"0xb1970fac7b64e6c09611e6691791e848d5e3fe410fa5899e7df2e0afd77a99e3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://db5fbb3dddd8b7047465b62575d96231ba8a2774d37fb4737fbf23340fabbb03\",\"dweb:/ipfs/QmVUSvooZKEdEdap619tcJjTLcAuH6QBdZqAzWwnAXZAWJ\"]},\"contracts/WrappedWITSuperchain.sol\":{\"keccak256\":\"0x4757bb98e4087f4cc74e302ea4b3f9c6405875a4141ac440b38c0fb8357cc7b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://90250405cf6649d203c8bc6e1f3c128221a718e865d8211f952a4422b13dfe97\",\"dweb:/ipfs/QmS1WxXgzMHigV2mL73pFCMy4Wa5cBeb8N2QRn1hKoLxDq\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/WitOracle.sol":{"WitOracle":{"abi":[{"inputs":[],"name":"InvalidDataReport","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"evmRequester","type":"address"},{"indexed":false,"internalType":"uint256","name":"evmGasPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"evmReward","type":"uint256"},{"indexed":false,"internalType":"Witnet.QueryId","name":"queryId","type":"uint64"},{"indexed":false,"internalType":"Witnet.RadonHash","name":"radonHash","type":"bytes32"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"indexed":false,"internalType":"struct Witnet.QuerySLA","name":"radonParams","type":"tuple"}],"name":"WitOracleQuery","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"Witnet.QueryId","name":"queryId","type":"uint64"},{"indexed":false,"internalType":"uint256","name":"evmGasPrice","type":"uint256"}],"name":"WitOracleQueryReport","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"Witnet.QueryId","name":"queryId","type":"uint64"},{"indexed":false,"internalType":"address","name":"evmConsumer","type":"address"},{"indexed":false,"internalType":"uint256","name":"evmGasPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"evmCallbackGas","type":"uint256"}],"name":"WitOracleQueryReportDelivery","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"Witnet.QueryId","name":"queryId","type":"uint64"},{"indexed":false,"internalType":"address","name":"evmDisputer","type":"address"}],"name":"WitOracleQueryReportDispute","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"Witnet.QueryId","name":"queryId","type":"uint64"},{"indexed":false,"internalType":"address","name":"evmSender","type":"address"},{"indexed":false,"internalType":"uint256","name":"evmGasPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"evmReward","type":"uint256"}],"name":"WitOracleQueryUpgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"evmOrigin","type":"address"},{"indexed":true,"internalType":"address","name":"evmConsumer","type":"address"},{"indexed":false,"internalType":"address","name":"evmReporter","type":"address"},{"indexed":false,"internalType":"Witnet.TransactionHash","name":"witDrTxHash","type":"bytes32"},{"indexed":false,"internalType":"Witnet.RadonHash","name":"queryRadHash","type":"bytes32"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"indexed":false,"internalType":"struct Witnet.QuerySLA","name":"queryParams","type":"tuple"},{"indexed":false,"internalType":"Witnet.Timestamp","name":"resultTimestamp","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"resultCborBytes","type":"bytes"}],"name":"WitOracleReport","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"Witnet.QueryId","name":"queryId","type":"uint64"},{"indexed":false,"internalType":"address","name":"evmConsumer","type":"address"},{"indexed":false,"internalType":"uint256","name":"evmGasPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"evmCallbackActualGas","type":"uint256"},{"indexed":false,"internalType":"string","name":"evmCallbackRevertReason","type":"string"},{"indexed":false,"internalType":"bytes","name":"resultCborBytes","type":"bytes"}],"name":"WitOracleResportDeliveryFailed","type":"event"},{"inputs":[],"name":"channel","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"class","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"queryId","type":"uint256"}],"name":"deleteQuery","outputs":[{"internalType":"Witnet.QueryEvmReward","name":"","type":"uint72"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"evmGasPrice","type":"uint256"}],"name":"estimateBaseFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"evmGasPrice","type":"uint256"},{"internalType":"uint24","name":"callbackGas","type":"uint24"}],"name":"estimateBaseFeeWithCallback","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"evmGasPrice","type":"uint256"},{"internalType":"uint256","name":"evmWitPrice","type":"uint256"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"querySLA","type":"tuple"}],"name":"estimateExtraFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextQueryId","outputs":[{"internalType":"Witnet.QueryId","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"queryId","type":"uint256"}],"name":"getQuery","outputs":[{"components":[{"components":[{"internalType":"address","name":"requester","type":"address"},{"internalType":"uint24","name":"callbackGas","type":"uint24"},{"internalType":"uint72","name":"_0","type":"uint72"},{"internalType":"bytes","name":"radonBytecode","type":"bytes"},{"internalType":"Witnet.RadonHash","name":"radonHash","type":"bytes32"}],"internalType":"struct Witnet.QueryRequest","name":"request","type":"tuple"},{"components":[{"internalType":"address","name":"reporter","type":"address"},{"internalType":"uint32","name":"_0","type":"uint32"},{"internalType":"Witnet.Timestamp","name":"resultTimestamp","type":"uint64"},{"internalType":"Witnet.TransactionHash","name":"resultDrTxHash","type":"bytes32"},{"internalType":"bytes","name":"resultCborBytes","type":"bytes"},{"internalType":"address","name":"disputer","type":"address"}],"internalType":"struct Witnet.QueryResponse","name":"response","type":"tuple"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"slaParams","type":"tuple"},{"internalType":"Witnet.QueryHash","name":"hash","type":"bytes15"},{"internalType":"Witnet.QueryEvmReward","name":"reward","type":"uint72"},{"internalType":"Witnet.BlockNumber","name":"checkpoint","type":"uint64"}],"internalType":"struct Witnet.Query","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryEvmReward","outputs":[{"internalType":"Witnet.QueryEvmReward","name":"","type":"uint72"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryRequest","outputs":[{"components":[{"internalType":"address","name":"requester","type":"address"},{"internalType":"uint24","name":"callbackGas","type":"uint24"},{"internalType":"uint72","name":"_0","type":"uint72"},{"internalType":"bytes","name":"radonBytecode","type":"bytes"},{"internalType":"Witnet.RadonHash","name":"radonHash","type":"bytes32"}],"internalType":"struct Witnet.QueryRequest","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryResponse","outputs":[{"components":[{"internalType":"address","name":"reporter","type":"address"},{"internalType":"uint32","name":"_0","type":"uint32"},{"internalType":"Witnet.Timestamp","name":"resultTimestamp","type":"uint64"},{"internalType":"Witnet.TransactionHash","name":"resultDrTxHash","type":"bytes32"},{"internalType":"bytes","name":"resultCborBytes","type":"bytes"},{"internalType":"address","name":"disputer","type":"address"}],"internalType":"struct Witnet.QueryResponse","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryResult","outputs":[{"components":[{"internalType":"enum Witnet.ResultStatus","name":"status","type":"uint8"},{"internalType":"enum Witnet.RadonDataTypes","name":"dataType","type":"uint8"},{"internalType":"Witnet.TransactionHash","name":"drTxHash","type":"bytes32"},{"internalType":"Witnet.Timestamp","name":"timestamp","type":"uint64"},{"components":[{"components":[{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"cursor","type":"uint256"}],"internalType":"struct WitnetBuffer.Buffer","name":"buffer","type":"tuple"},{"internalType":"uint8","name":"initialByte","type":"uint8"},{"internalType":"uint8","name":"majorType","type":"uint8"},{"internalType":"uint8","name":"additionalInformation","type":"uint8"},{"internalType":"uint64","name":"len","type":"uint64"},{"internalType":"uint64","name":"tag","type":"uint64"}],"internalType":"struct WitnetCBOR.CBOR","name":"value","type":"tuple"}],"internalType":"struct Witnet.DataResult","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryResultStatus","outputs":[{"internalType":"enum Witnet.ResultStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryResultStatusDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryStatus","outputs":[{"internalType":"enum Witnet.QueryStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"name":"getQueryStatusBatch","outputs":[{"internalType":"enum Witnet.QueryStatus[]","name":"","type":"uint8[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryStatusString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"Witnet.TransactionHash","name":"witDrTxHash","type":"bytes32"},{"internalType":"Witnet.RadonHash","name":"queryRadHash","type":"bytes32"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"queryParams","type":"tuple"},{"internalType":"Witnet.Timestamp","name":"resultTimestamp","type":"uint64"},{"internalType":"bytes","name":"resultCborBytes","type":"bytes"}],"internalType":"struct Witnet.DataPushReport","name":"report","type":"tuple"},{"internalType":"bytes","name":"proof","type":"bytes"}],"name":"parseDataReport","outputs":[{"components":[{"internalType":"enum Witnet.ResultStatus","name":"status","type":"uint8"},{"internalType":"enum Witnet.RadonDataTypes","name":"dataType","type":"uint8"},{"internalType":"Witnet.TransactionHash","name":"drTxHash","type":"bytes32"},{"internalType":"Witnet.Timestamp","name":"timestamp","type":"uint64"},{"components":[{"components":[{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"cursor","type":"uint256"}],"internalType":"struct WitnetBuffer.Buffer","name":"buffer","type":"tuple"},{"internalType":"uint8","name":"initialByte","type":"uint8"},{"internalType":"uint8","name":"majorType","type":"uint8"},{"internalType":"uint8","name":"additionalInformation","type":"uint8"},{"internalType":"uint64","name":"len","type":"uint64"},{"internalType":"uint64","name":"tag","type":"uint64"}],"internalType":"struct WitnetCBOR.CBOR","name":"value","type":"tuple"}],"internalType":"struct Witnet.DataResult","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"Witnet.TransactionHash","name":"witDrTxHash","type":"bytes32"},{"internalType":"Witnet.RadonHash","name":"queryRadHash","type":"bytes32"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"queryParams","type":"tuple"},{"internalType":"Witnet.Timestamp","name":"resultTimestamp","type":"uint64"},{"internalType":"bytes","name":"resultCborBytes","type":"bytes"}],"internalType":"struct Witnet.DataPushReport","name":"report","type":"tuple"},{"internalType":"bytes","name":"proof","type":"bytes"}],"name":"pushDataReport","outputs":[{"components":[{"internalType":"enum Witnet.ResultStatus","name":"status","type":"uint8"},{"internalType":"enum Witnet.RadonDataTypes","name":"dataType","type":"uint8"},{"internalType":"Witnet.TransactionHash","name":"drTxHash","type":"bytes32"},{"internalType":"Witnet.Timestamp","name":"timestamp","type":"uint64"},{"components":[{"components":[{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"cursor","type":"uint256"}],"internalType":"struct WitnetBuffer.Buffer","name":"buffer","type":"tuple"},{"internalType":"uint8","name":"initialByte","type":"uint8"},{"internalType":"uint8","name":"majorType","type":"uint8"},{"internalType":"uint8","name":"additionalInformation","type":"uint8"},{"internalType":"uint64","name":"len","type":"uint64"},{"internalType":"uint64","name":"tag","type":"uint64"}],"internalType":"struct WitnetCBOR.CBOR","name":"value","type":"tuple"}],"internalType":"struct Witnet.DataResult","name":"","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"Witnet.RadonHash","name":"radonHash","type":"bytes32"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"","type":"tuple"}],"name":"queryData","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"Witnet.RadonHash","name":"radonHash","type":"bytes32"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"","type":"tuple"},{"components":[{"internalType":"address","name":"consumer","type":"address"},{"internalType":"uint24","name":"gasLimit","type":"uint24"}],"internalType":"struct Witnet.QueryCallback","name":"","type":"tuple"}],"name":"queryDataWithCallback","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"registry","outputs":[{"internalType":"contract IWitOracleRadonRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"specs","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"upgradeQueryEvmReward","outputs":[],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"channel()":"7bbdb96e","class()":"bff852fa","deleteQuery(uint256)":"7c1fbda3","estimateBaseFee(uint256)":"39a8653e","estimateBaseFeeWithCallback(uint256,uint24)":"05e742ef","estimateExtraFee(uint256,uint256,(uint16,uint16,uint64))":"d0a92a08","getNextQueryId()":"c805dd0f","getQuery(uint256)":"aeb2ffc1","getQueryEvmReward(uint256)":"6fdaab7e","getQueryRequest(uint256)":"0aa4112a","getQueryResponse(uint256)":"f61921b2","getQueryResult(uint256)":"59209b39","getQueryResultStatus(uint256)":"4cddf615","getQueryResultStatusDescription(uint256)":"c2581348","getQueryStatus(uint256)":"6f07abcc","getQueryStatusBatch(uint256[])":"581f5094","getQueryStatusString(uint256)":"838d44e2","parseDataReport((bytes32,bytes32,(uint16,uint16,uint64),uint64,bytes),bytes)":"b783922b","pushDataReport((bytes32,bytes32,(uint16,uint16,uint64),uint64,bytes),bytes)":"6d0d6a7e","queryData(bytes32,(uint16,uint16,uint64))":"a58f6803","queryDataWithCallback(bytes32,(uint16,uint16,uint64),(address,uint24))":"3b3195b7","registry()":"7b103999","specs()":"adb7c3f7","upgradeQueryEvmReward(uint256)":"ec5946db"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidDataReport\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"evmRequester\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmReward\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"Witnet.QueryId\",\"name\":\"queryId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonHash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"indexed\":false,\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"radonParams\",\"type\":\"tuple\"}],\"name\":\"WitOracleQuery\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"Witnet.QueryId\",\"name\":\"queryId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"}],\"name\":\"WitOracleQueryReport\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"Witnet.QueryId\",\"name\":\"queryId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"evmConsumer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmCallbackGas\",\"type\":\"uint256\"}],\"name\":\"WitOracleQueryReportDelivery\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"Witnet.QueryId\",\"name\":\"queryId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"evmDisputer\",\"type\":\"address\"}],\"name\":\"WitOracleQueryReportDispute\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"Witnet.QueryId\",\"name\":\"queryId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"evmSender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmReward\",\"type\":\"uint256\"}],\"name\":\"WitOracleQueryUpgrade\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"evmOrigin\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"evmConsumer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"evmReporter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"Witnet.TransactionHash\",\"name\":\"witDrTxHash\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"Witnet.RadonHash\",\"name\":\"queryRadHash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"indexed\":false,\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"queryParams\",\"type\":\"tuple\"},{\"indexed\":false,\"internalType\":\"Witnet.Timestamp\",\"name\":\"resultTimestamp\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"resultCborBytes\",\"type\":\"bytes\"}],\"name\":\"WitOracleReport\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"Witnet.QueryId\",\"name\":\"queryId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"evmConsumer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmCallbackActualGas\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"evmCallbackRevertReason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"resultCborBytes\",\"type\":\"bytes\"}],\"name\":\"WitOracleResportDeliveryFailed\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"channel\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"class\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"queryId\",\"type\":\"uint256\"}],\"name\":\"deleteQuery\",\"outputs\":[{\"internalType\":\"Witnet.QueryEvmReward\",\"name\":\"\",\"type\":\"uint72\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"}],\"name\":\"estimateBaseFee\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"},{\"internalType\":\"uint24\",\"name\":\"callbackGas\",\"type\":\"uint24\"}],\"name\":\"estimateBaseFeeWithCallback\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"evmWitPrice\",\"type\":\"uint256\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"querySLA\",\"type\":\"tuple\"}],\"name\":\"estimateExtraFee\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNextQueryId\",\"outputs\":[{\"internalType\":\"Witnet.QueryId\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"queryId\",\"type\":\"uint256\"}],\"name\":\"getQuery\",\"outputs\":[{\"components\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"requester\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"callbackGas\",\"type\":\"uint24\"},{\"internalType\":\"uint72\",\"name\":\"_0\",\"type\":\"uint72\"},{\"internalType\":\"bytes\",\"name\":\"radonBytecode\",\"type\":\"bytes\"},{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonHash\",\"type\":\"bytes32\"}],\"internalType\":\"struct Witnet.QueryRequest\",\"name\":\"request\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"address\",\"name\":\"reporter\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"_0\",\"type\":\"uint32\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"resultTimestamp\",\"type\":\"uint64\"},{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"resultDrTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"resultCborBytes\",\"type\":\"bytes\"},{\"internalType\":\"address\",\"name\":\"disputer\",\"type\":\"address\"}],\"internalType\":\"struct Witnet.QueryResponse\",\"name\":\"response\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"slaParams\",\"type\":\"tuple\"},{\"internalType\":\"Witnet.QueryHash\",\"name\":\"hash\",\"type\":\"bytes15\"},{\"internalType\":\"Witnet.QueryEvmReward\",\"name\":\"reward\",\"type\":\"uint72\"},{\"internalType\":\"Witnet.BlockNumber\",\"name\":\"checkpoint\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.Query\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryEvmReward\",\"outputs\":[{\"internalType\":\"Witnet.QueryEvmReward\",\"name\":\"\",\"type\":\"uint72\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryRequest\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"requester\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"callbackGas\",\"type\":\"uint24\"},{\"internalType\":\"uint72\",\"name\":\"_0\",\"type\":\"uint72\"},{\"internalType\":\"bytes\",\"name\":\"radonBytecode\",\"type\":\"bytes\"},{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonHash\",\"type\":\"bytes32\"}],\"internalType\":\"struct Witnet.QueryRequest\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryResponse\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"reporter\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"_0\",\"type\":\"uint32\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"resultTimestamp\",\"type\":\"uint64\"},{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"resultDrTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"resultCborBytes\",\"type\":\"bytes\"},{\"internalType\":\"address\",\"name\":\"disputer\",\"type\":\"address\"}],\"internalType\":\"struct Witnet.QueryResponse\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryResult\",\"outputs\":[{\"components\":[{\"internalType\":\"enum Witnet.ResultStatus\",\"name\":\"status\",\"type\":\"uint8\"},{\"internalType\":\"enum Witnet.RadonDataTypes\",\"name\":\"dataType\",\"type\":\"uint8\"},{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"drTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"components\":[{\"components\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"cursor\",\"type\":\"uint256\"}],\"internalType\":\"struct WitnetBuffer.Buffer\",\"name\":\"buffer\",\"type\":\"tuple\"},{\"internalType\":\"uint8\",\"name\":\"initialByte\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"majorType\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"additionalInformation\",\"type\":\"uint8\"},{\"internalType\":\"uint64\",\"name\":\"len\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"tag\",\"type\":\"uint64\"}],\"internalType\":\"struct WitnetCBOR.CBOR\",\"name\":\"value\",\"type\":\"tuple\"}],\"internalType\":\"struct Witnet.DataResult\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryResultStatus\",\"outputs\":[{\"internalType\":\"enum Witnet.ResultStatus\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryResultStatusDescription\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryStatus\",\"outputs\":[{\"internalType\":\"enum Witnet.QueryStatus\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"name\":\"getQueryStatusBatch\",\"outputs\":[{\"internalType\":\"enum Witnet.QueryStatus[]\",\"name\":\"\",\"type\":\"uint8[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryStatusString\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"witDrTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"Witnet.RadonHash\",\"name\":\"queryRadHash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"queryParams\",\"type\":\"tuple\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"resultTimestamp\",\"type\":\"uint64\"},{\"internalType\":\"bytes\",\"name\":\"resultCborBytes\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.DataPushReport\",\"name\":\"report\",\"type\":\"tuple\"},{\"internalType\":\"bytes\",\"name\":\"proof\",\"type\":\"bytes\"}],\"name\":\"parseDataReport\",\"outputs\":[{\"components\":[{\"internalType\":\"enum Witnet.ResultStatus\",\"name\":\"status\",\"type\":\"uint8\"},{\"internalType\":\"enum Witnet.RadonDataTypes\",\"name\":\"dataType\",\"type\":\"uint8\"},{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"drTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"components\":[{\"components\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"cursor\",\"type\":\"uint256\"}],\"internalType\":\"struct WitnetBuffer.Buffer\",\"name\":\"buffer\",\"type\":\"tuple\"},{\"internalType\":\"uint8\",\"name\":\"initialByte\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"majorType\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"additionalInformation\",\"type\":\"uint8\"},{\"internalType\":\"uint64\",\"name\":\"len\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"tag\",\"type\":\"uint64\"}],\"internalType\":\"struct WitnetCBOR.CBOR\",\"name\":\"value\",\"type\":\"tuple\"}],\"internalType\":\"struct Witnet.DataResult\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"witDrTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"Witnet.RadonHash\",\"name\":\"queryRadHash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"queryParams\",\"type\":\"tuple\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"resultTimestamp\",\"type\":\"uint64\"},{\"internalType\":\"bytes\",\"name\":\"resultCborBytes\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.DataPushReport\",\"name\":\"report\",\"type\":\"tuple\"},{\"internalType\":\"bytes\",\"name\":\"proof\",\"type\":\"bytes\"}],\"name\":\"pushDataReport\",\"outputs\":[{\"components\":[{\"internalType\":\"enum Witnet.ResultStatus\",\"name\":\"status\",\"type\":\"uint8\"},{\"internalType\":\"enum Witnet.RadonDataTypes\",\"name\":\"dataType\",\"type\":\"uint8\"},{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"drTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"components\":[{\"components\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"cursor\",\"type\":\"uint256\"}],\"internalType\":\"struct WitnetBuffer.Buffer\",\"name\":\"buffer\",\"type\":\"tuple\"},{\"internalType\":\"uint8\",\"name\":\"initialByte\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"majorType\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"additionalInformation\",\"type\":\"uint8\"},{\"internalType\":\"uint64\",\"name\":\"len\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"tag\",\"type\":\"uint64\"}],\"internalType\":\"struct WitnetCBOR.CBOR\",\"name\":\"value\",\"type\":\"tuple\"}],\"internalType\":\"struct Witnet.DataResult\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonHash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"\",\"type\":\"tuple\"}],\"name\":\"queryData\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonHash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"address\",\"name\":\"consumer\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"gasLimit\",\"type\":\"uint24\"}],\"internalType\":\"struct Witnet.QueryCallback\",\"name\":\"\",\"type\":\"tuple\"}],\"name\":\"queryDataWithCallback\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"registry\",\"outputs\":[{\"internalType\":\"contract IWitOracleRadonRegistry\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"specs\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"upgradeQueryEvmReward\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"The Witnet Foundation.\",\"kind\":\"dev\",\"methods\":{\"deleteQuery(uint256)\":{\"details\":\"Fails if the query is not in a final status, or not called from the actual requester.\",\"params\":{\"queryId\":\"The unique query identifier.\"}},\"estimateBaseFee(uint256)\":{\"params\":{\"evmGasPrice\":\"Expected gas price to pay upon posting the data request.\"}},\"estimateBaseFeeWithCallback(uint256,uint24)\":{\"params\":{\"callbackGas\":\"Maximum gas to be spent when reporting the data request result.\",\"evmGasPrice\":\"Expected gas price to pay upon posting the data request.\"}},\"estimateExtraFee(uint256,uint256,(uint16,uint16,uint64))\":{\"details\":\"The extra fee gets calculated in proportion to:\",\"params\":{\"evmGasPrice\":\"Tentative EVM gas price at the moment the query result is ready.\",\"evmWitPrice\":\"Tentative nanoWit price in Wei at the moment the query is solved on the Wit/Oracle blockchain.\",\"querySLA\":\"The query SLA data security parameters as required for the Wit/Oracle blockchain. \"}},\"queryData(bytes32,(uint16,uint16,uint64))\":{\"details\":\"Reasons to revert:- the data request's RAD hash was not previously verified into the WitOracleRadonRegistry contract;- invalid query SLA parameters were provided;- insufficient value is paid as reward.\",\"params\":{\"radonHash\":\"The unique hash of the Radon Request to be solved by Wit/Oracle sidechain. \"}},\"queryDataWithCallback(bytes32,(uint16,uint16,uint64),(address,uint24))\":{\"details\":\"Reasons to revert:- the data request's RAD hash was not previously verified into the Radon Registry;- invalid query SLA parameters were provided;- insufficient value is paid as reward.- passed `consumer` is not a contract implementing the IWitOracleQueriableConsumer interface;\",\"params\":{\"radonHash\":\"The unique hash of the Radon Request to be solved by Wit/Oracle sidechain. \"}}},\"title\":\"Witnet Request Board functionality base contract.\",\"version\":1},\"userdoc\":{\"events\":{\"WitOracleQuery(address,uint256,uint256,uint64,bytes32,(uint16,uint16,uint64))\":{\"notice\":\"Emitted every time a new query containing some verified data request is posted to the WitOracle.\"},\"WitOracleQueryReport(uint64,uint256)\":{\"notice\":\"Emitted when a query with no callback gets reported into the WRB.\"},\"WitOracleQueryReportDelivery(uint64,address,uint256,uint256)\":{\"notice\":\"Emitted when a query with a callback gets successfully reported into the WRB.\"},\"WitOracleQueryUpgrade(uint64,address,uint256,uint256)\":{\"notice\":\"Emitted when the reward of some not-yet reported query gets upgraded.\"},\"WitOracleResportDeliveryFailed(uint64,address,uint256,uint256,string,bytes)\":{\"notice\":\"Emitted when a query with a callback cannot get reported into the WRB.\"}},\"kind\":\"user\",\"methods\":{\"channel()\":{\"notice\":\"Uniquely identifies the WitOracle instance and the chain on which it's deployed.\"},\"class()\":{\"notice\":\"Returns the name of the actual contract implementing the logic of this Witnet appliance.\"},\"deleteQuery(uint256)\":{\"notice\":\"Removes all query data from storage. Pays back reward on expired queries.\"},\"estimateBaseFee(uint256)\":{\"notice\":\"Estimate the minimum reward required for posting a data request.\"},\"estimateBaseFeeWithCallback(uint256,uint24)\":{\"notice\":\"Estimate the minimum reward required for posting a data request with a callback.\"},\"estimateExtraFee(uint256,uint256,(uint16,uint16,uint64))\":{\"notice\":\"Estimate the extra reward (i.e. over the base fee) to be paid when posting a newdata query in order to avoid getting provable \\\"too low incentives\\\" results fromthe Wit/Oracle blockchain. \"},\"getNextQueryId()\":{\"notice\":\"Returns next query id to be generated by the Witnet Request Board.\"},\"getQuery(uint256)\":{\"notice\":\"Gets the whole Query data contents, if any, no matter its current status.\"},\"getQueryEvmReward(uint256)\":{\"notice\":\"Gets the current EVM reward the reporter can claim, if not done yet.\"},\"getQueryRequest(uint256)\":{\"notice\":\"Retrieves the RAD hash and SLA parameters of the given query.\"},\"getQueryResponse(uint256)\":{\"notice\":\"Retrieves the whole `Witnet.QueryResponse` record referred to a previously posted Witnet Data Request.\"},\"getQueryStatus(uint256)\":{\"notice\":\"Gets current status of given query.\"},\"getQueryStatusBatch(uint256[])\":{\"notice\":\"Get current status of all given query ids.\"},\"parseDataReport((bytes32,bytes32,(uint16,uint16,uint64),uint64,bytes),bytes)\":{\"notice\":\"Verify the data report (as provided by Wit/Kermit API) is well-formed and authentic, returning the parsed Witnet.DataResult if so, or reverting otherwise.\"},\"pushDataReport((bytes32,bytes32,(uint16,uint16,uint64),uint64,bytes),bytes)\":{\"notice\":\"Same as `parseDataReport` but on certain implementations it may store roll-up information  that will contribute to reduce the cost of verifying and/or rolling-up future data reports. Emits `DataReport` if report is authentic. \"},\"queryData(bytes32,(uint16,uint16,uint64))\":{\"notice\":\"Request real world data from the Wit/Oracle sidechain. The paid fee is escrowed as a reward for the reporter that eventually relays back a valid query result from the Wit/Oracle sidechain.Query results are CBOR-encoded, and can contain either some     data, or an error.\"},\"queryDataWithCallback(bytes32,(uint16,uint16,uint64),(address,uint24))\":{\"notice\":\"Request real world data from the Wit/Oracle sidechain. The paid fee is escrowed as a reward for the reporter that eventually relays back a valid query result from the Wit/Oracle sidechain.The Witnet-provable result will be reported directly to the requesting contract. Query results are CBOR-encoded, and can contain either some data, or an error.\"},\"registry()\":{\"notice\":\"Returns the WitOracleRadonRegistry in which Witnet-compliant Radon requestscan be formally verified and forever registered as a away to let smart contracts and users to track actual data sources and offchain computations applied on data updates safely reported from the Wit/Oracle blockchain. \"},\"specs()\":{\"notice\":\"Returns the ERC-165 id of the minimal functionality expected for this appliance.\"},\"upgradeQueryEvmReward(uint256)\":{\"notice\":\"Increments the reward of a previously posted request by adding the transaction value to it.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/WitOracle.sol\":\"WitOracle\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/WitOracle.sol\":{\"keccak256\":\"0x7f20eab15140df459753dfa8e406b826918b56ebe2c46456f9d04345c02629d1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e0573ce3d48200c71d8235a1a8c055b706420b2037bd21336f3c61713c3b8349\",\"dweb:/ipfs/QmY7BnVaNXFtJs1BFdeaa7dQfvUVoZyfwtv9HuToCxUUHU\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol\":{\"keccak256\":\"0xd207ca54a1049445a3d99eea497d9b34c6dbdd44d771eee825e4c031bd2f447e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f81de32d868ff2881ed6fe97cc897e40b4b11d23cbe53a0e23cf3e68f9c0f0a3\",\"dweb:/ipfs/QmeeXmzmK5MAzt7Hf5DB2L81efKtTzZg9VbQ8sUiTqEk5c\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracle.sol\":{\"keccak256\":\"0xd9f1a62989dbd33e486beb27362340565f899b143d1c4a1b022c6116b0ec317b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://00fa3a545ba871732ce1bd13241dcd24ad8c31908e764bb7e8ac1d96cb534e7f\",\"dweb:/ipfs/QmQvGiyxaULT6wu3RfvpnRrKdP8X2mbCDgQYyW9CQkH73f\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol\":{\"keccak256\":\"0xcd8e57eca7f8042c85a83264e2ff6d1cd7a9f1521831736d7f57bcc7800642e6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5c639668e9439d60770b5df77436088ae7bd0aeb1d1be446552a98b6c29138f0\",\"dweb:/ipfs/QmbN3f5YuKMSd2j9tjay3VEkiYibGWpbfbwRNyrxA8k4o4\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriable.sol\":{\"keccak256\":\"0xd7075a3c4a6744989883a9a791d9068f84872a1b1f9600665f8bde4b43ed9b3b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6fdea2451c22af317b4a699928e76fdd66d1faee2a87df951ef4d669d6b3058f\",\"dweb:/ipfs/QmcrohJfHjigPV9sXxyCucDhqwK2wP84Sc2qc5hx7RFQ6i\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableEvents.sol\":{\"keccak256\":\"0x47c283e931006d35bd2599524f86724e45eae6fad2fdd9cdecd1c85a90ff3f8c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3ad0520f99ec9298536ae9434f58caeb470c10dd3eaab1e4c7ed4cae9a97e2a2\",\"dweb:/ipfs/QmSuYCsSPweZfQc5Fbf9jYDdx4u7gwYCUdjhpcrrxmWZy6\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistry.sol\":{\"keccak256\":\"0x437bbb89129311bd1cc8f6becd333df46109ec53b24d3159be942b225614071f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ef9bcdf4a73cb126885478c994821b7fe2b87d9221b767b4c9342b89b0d6550a\",\"dweb:/ipfs/QmXzZXPMxjSiFpcEnhg6CjLFNxGCpDZt22xpUh7VHxNTGd\"]},\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol":{"WitOracleRadonRequestFactory":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"NewRadonReducer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"Witnet.RadonHash","name":"radonHash","type":"bytes32"}],"name":"NewRadonRequest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"witOracleRadonRequestModal","type":"address"}],"name":"NewRadonRequestModal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"witOracleRadonRequestTemplate","type":"address"}],"name":"NewRadonRequestTemplate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"NewRadonRetrieval","type":"event"},{"inputs":[{"components":[{"internalType":"enum Witnet.RadonRetrievalMethods","name":"method","type":"uint8"},{"internalType":"string","name":"body","type":"string"},{"internalType":"string[2][]","name":"headers","type":"string[2][]"},{"internalType":"bytes","name":"script","type":"bytes"}],"internalType":"struct IWitOracleRadonRequestFactory.DataSourceRequest","name":"commonDataRequest","type":"tuple"},{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"crowdAttestationTally","type":"tuple"}],"name":"buildRadonRequestModal","outputs":[{"internalType":"contract IWitOracleRadonRequestModal","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"url","type":"string"},{"components":[{"internalType":"enum Witnet.RadonRetrievalMethods","name":"method","type":"uint8"},{"internalType":"string","name":"body","type":"string"},{"internalType":"string[2][]","name":"headers","type":"string[2][]"},{"internalType":"bytes","name":"script","type":"bytes"}],"internalType":"struct IWitOracleRadonRequestFactory.DataSourceRequest","name":"request","type":"tuple"}],"internalType":"struct IWitOracleRadonRequestFactory.DataSource[]","name":"dataSources","type":"tuple[]"},{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"dataSourcesAggregator","type":"tuple"},{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"crowdAttestationTally","type":"tuple"}],"name":"buildRadonRequestTemplate","outputs":[{"internalType":"contract IWitOracleRadonRequestTemplate","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"dataRetrieveHashes","type":"bytes32[]"},{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"dataSourcesAggregator","type":"tuple"},{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"crowdAttestationTally","type":"tuple"}],"name":"buildRadonRequestTemplate","outputs":[{"internalType":"contract IWitOracleRadonRequestTemplate","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"class","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"specs","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"witOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"buildRadonRequestModal((uint8,string,string[2][],bytes),(uint8,(uint8,bytes)[]))":"c96e201f","buildRadonRequestTemplate((string,(uint8,string,string[2][],bytes))[],(uint8,(uint8,bytes)[]),(uint8,(uint8,bytes)[]))":"9f165d4b","buildRadonRequestTemplate(bytes32[],(uint8,(uint8,bytes)[]),(uint8,(uint8,bytes)[]))":"e71dc532","class()":"bff852fa","specs()":"adb7c3f7","witOracle()":"1014d375"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"hash\",\"type\":\"bytes32\"}],\"name\":\"NewRadonReducer\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonHash\",\"type\":\"bytes32\"}],\"name\":\"NewRadonRequest\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"witOracleRadonRequestModal\",\"type\":\"address\"}],\"name\":\"NewRadonRequestModal\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"witOracleRadonRequestTemplate\",\"type\":\"address\"}],\"name\":\"NewRadonRequestTemplate\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"hash\",\"type\":\"bytes32\"}],\"name\":\"NewRadonRetrieval\",\"type\":\"event\"},{\"inputs\":[{\"components\":[{\"internalType\":\"enum Witnet.RadonRetrievalMethods\",\"name\":\"method\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"body\",\"type\":\"string\"},{\"internalType\":\"string[2][]\",\"name\":\"headers\",\"type\":\"string[2][]\"},{\"internalType\":\"bytes\",\"name\":\"script\",\"type\":\"bytes\"}],\"internalType\":\"struct IWitOracleRadonRequestFactory.DataSourceRequest\",\"name\":\"commonDataRequest\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"crowdAttestationTally\",\"type\":\"tuple\"}],\"name\":\"buildRadonRequestModal\",\"outputs\":[{\"internalType\":\"contract IWitOracleRadonRequestModal\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"string\",\"name\":\"url\",\"type\":\"string\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonRetrievalMethods\",\"name\":\"method\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"body\",\"type\":\"string\"},{\"internalType\":\"string[2][]\",\"name\":\"headers\",\"type\":\"string[2][]\"},{\"internalType\":\"bytes\",\"name\":\"script\",\"type\":\"bytes\"}],\"internalType\":\"struct IWitOracleRadonRequestFactory.DataSourceRequest\",\"name\":\"request\",\"type\":\"tuple\"}],\"internalType\":\"struct IWitOracleRadonRequestFactory.DataSource[]\",\"name\":\"dataSources\",\"type\":\"tuple[]\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"dataSourcesAggregator\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"crowdAttestationTally\",\"type\":\"tuple\"}],\"name\":\"buildRadonRequestTemplate\",\"outputs\":[{\"internalType\":\"contract IWitOracleRadonRequestTemplate\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32[]\",\"name\":\"dataRetrieveHashes\",\"type\":\"bytes32[]\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"dataSourcesAggregator\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"crowdAttestationTally\",\"type\":\"tuple\"}],\"name\":\"buildRadonRequestTemplate\",\"outputs\":[{\"internalType\":\"contract IWitOracleRadonRequestTemplate\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"class\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"specs\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracle\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"events\":{\"NewRadonReducer(bytes32)\":{\"notice\":\"Emitted every time a new Radon Reducer gets successfully verified and stored into the WitOracleRadonRegistry.\"},\"NewRadonRequest(bytes32)\":{\"notice\":\"Emitted every time a new Radon Request gets successfully verified and stored into the WitOracleRadonRegistry.\"},\"NewRadonRetrieval(bytes32)\":{\"notice\":\"Emitted every time a new Radon Retrieval gets successfully verified and stored into the WitOracleRadonRegistry.\"}},\"kind\":\"user\",\"methods\":{\"class()\":{\"notice\":\"Returns the name of the actual contract implementing the logic of this Witnet appliance.\"},\"specs()\":{\"notice\":\"Returns the ERC-165 id of the minimal functionality expected for this appliance.\"},\"witOracle()\":{\"notice\":\"Returns the WitOracle address that this appliance is bound to.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol\":\"WitOracleRadonRequestFactory\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol\":{\"keccak256\":\"0x7aa7a7f61c2e5a61a050a3e1819e7eed11f9e8a09b15b157e1bc1b298b6118c0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d75af90a732a14fb76cd043978e09bd1e53c378c54039b9e1c2f3fee5e071fd2\",\"dweb:/ipfs/QmSSDQxsi4CueiFnKHuCTHzscgt4TroRTBDYUBywPi8o3b\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol\":{\"keccak256\":\"0xd207ca54a1049445a3d99eea497d9b34c6dbdd44d771eee825e4c031bd2f447e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f81de32d868ff2881ed6fe97cc897e40b4b11d23cbe53a0e23cf3e68f9c0f0a3\",\"dweb:/ipfs/QmeeXmzmK5MAzt7Hf5DB2L81efKtTzZg9VbQ8sUiTqEk5c\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol\":{\"keccak256\":\"0xcd8e57eca7f8042c85a83264e2ff6d1cd7a9f1521831736d7f57bcc7800642e6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5c639668e9439d60770b5df77436088ae7bd0aeb1d1be446552a98b6c29138f0\",\"dweb:/ipfs/QmbN3f5YuKMSd2j9tjay3VEkiYibGWpbfbwRNyrxA8k4o4\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistryEvents.sol\":{\"keccak256\":\"0x9bd30477aeb33de11c4f1df3cd7451452a90ffed1f6eabd9e643046bf1e60d66\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fb38c5528ed2e1bf90ff8d123bf5a9523d0dc49f448d6c39ddad1cd9048d0a\",\"dweb:/ipfs/QmQq1RUwFgnGTk3xDAmN6u2WMPBzvjZNJc7TPYtG6aZfRn\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestFactory.sol\":{\"keccak256\":\"0x4484204bd9cb0f054dfe5120409e9da5ff7e4eca03917e3c0c4cef9a322ee98a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ecd34db48b011fc94c5132ff6fead4ca36b45a464e2342b65692cc4001cde0bb\",\"dweb:/ipfs/QmNPG3hM7XpMN3iGvR7UhGiSS3Kz5qNmEZKUQRjSPggKax\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestModal.sol\":{\"keccak256\":\"0xe939497e9d6b7e6ede25f885a9079797ec91107893e974cb11d052ed40e80dab\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b3272b7a52bd122c7a9b02b07d681cdcbe9a9b58039d05b8642db86045864866\",\"dweb:/ipfs/QmQadtigEDbLL5UoqVTt35ukZHz1QaZ54eD7sMFpK82tuX\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestTemplate.sol\":{\"keccak256\":\"0xd0829d45fe03f6c8bd48e8fffa2e5cf438349b5cf853d22dde1f04cdd614d4e8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da54a909fc2f50e36092296d4d15c65c1445abc3d9f9e9e466139ace88c6d2a8\",\"dweb:/ipfs/QmW5VT5KX33QoJ6mz9wsUt6iFL9qFdcvbxqGRMz7niUB4F\"]},\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol":{"IWitAppliance":{"abi":[{"inputs":[],"name":"class","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"specs","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"class()":"bff852fa","specs()":"adb7c3f7"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"class\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"specs\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"class()\":{\"notice\":\"Returns the name of the actual contract implementing the logic of this Witnet appliance.\"},\"specs()\":{\"notice\":\"Returns the ERC-165 id of the minimal functionality expected for this appliance.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol\":\"IWitAppliance\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol\":{\"keccak256\":\"0xd207ca54a1049445a3d99eea497d9b34c6dbdd44d771eee825e4c031bd2f447e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f81de32d868ff2881ed6fe97cc897e40b4b11d23cbe53a0e23cf3e68f9c0f0a3\",\"dweb:/ipfs/QmeeXmzmK5MAzt7Hf5DB2L81efKtTzZg9VbQ8sUiTqEk5c\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/interfaces/IWitOracle.sol":{"IWitOracle":{"abi":[{"inputs":[],"name":"InvalidDataReport","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"evmOrigin","type":"address"},{"indexed":true,"internalType":"address","name":"evmConsumer","type":"address"},{"indexed":false,"internalType":"address","name":"evmReporter","type":"address"},{"indexed":false,"internalType":"Witnet.TransactionHash","name":"witDrTxHash","type":"bytes32"},{"indexed":false,"internalType":"Witnet.RadonHash","name":"queryRadHash","type":"bytes32"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"indexed":false,"internalType":"struct Witnet.QuerySLA","name":"queryParams","type":"tuple"},{"indexed":false,"internalType":"Witnet.Timestamp","name":"resultTimestamp","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"resultCborBytes","type":"bytes"}],"name":"WitOracleReport","type":"event"},{"inputs":[],"name":"channel","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"Witnet.TransactionHash","name":"witDrTxHash","type":"bytes32"},{"internalType":"Witnet.RadonHash","name":"queryRadHash","type":"bytes32"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"queryParams","type":"tuple"},{"internalType":"Witnet.Timestamp","name":"resultTimestamp","type":"uint64"},{"internalType":"bytes","name":"resultCborBytes","type":"bytes"}],"internalType":"struct Witnet.DataPushReport","name":"report","type":"tuple"},{"internalType":"bytes","name":"proof","type":"bytes"}],"name":"parseDataReport","outputs":[{"components":[{"internalType":"enum Witnet.ResultStatus","name":"status","type":"uint8"},{"internalType":"enum Witnet.RadonDataTypes","name":"dataType","type":"uint8"},{"internalType":"Witnet.TransactionHash","name":"drTxHash","type":"bytes32"},{"internalType":"Witnet.Timestamp","name":"timestamp","type":"uint64"},{"components":[{"components":[{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"cursor","type":"uint256"}],"internalType":"struct WitnetBuffer.Buffer","name":"buffer","type":"tuple"},{"internalType":"uint8","name":"initialByte","type":"uint8"},{"internalType":"uint8","name":"majorType","type":"uint8"},{"internalType":"uint8","name":"additionalInformation","type":"uint8"},{"internalType":"uint64","name":"len","type":"uint64"},{"internalType":"uint64","name":"tag","type":"uint64"}],"internalType":"struct WitnetCBOR.CBOR","name":"value","type":"tuple"}],"internalType":"struct Witnet.DataResult","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"Witnet.TransactionHash","name":"witDrTxHash","type":"bytes32"},{"internalType":"Witnet.RadonHash","name":"queryRadHash","type":"bytes32"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"queryParams","type":"tuple"},{"internalType":"Witnet.Timestamp","name":"resultTimestamp","type":"uint64"},{"internalType":"bytes","name":"resultCborBytes","type":"bytes"}],"internalType":"struct Witnet.DataPushReport","name":"report","type":"tuple"},{"internalType":"bytes","name":"proof","type":"bytes"}],"name":"pushDataReport","outputs":[{"components":[{"internalType":"enum Witnet.ResultStatus","name":"status","type":"uint8"},{"internalType":"enum Witnet.RadonDataTypes","name":"dataType","type":"uint8"},{"internalType":"Witnet.TransactionHash","name":"drTxHash","type":"bytes32"},{"internalType":"Witnet.Timestamp","name":"timestamp","type":"uint64"},{"components":[{"components":[{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"cursor","type":"uint256"}],"internalType":"struct WitnetBuffer.Buffer","name":"buffer","type":"tuple"},{"internalType":"uint8","name":"initialByte","type":"uint8"},{"internalType":"uint8","name":"majorType","type":"uint8"},{"internalType":"uint8","name":"additionalInformation","type":"uint8"},{"internalType":"uint64","name":"len","type":"uint64"},{"internalType":"uint64","name":"tag","type":"uint64"}],"internalType":"struct WitnetCBOR.CBOR","name":"value","type":"tuple"}],"internalType":"struct Witnet.DataResult","name":"","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"registry","outputs":[{"internalType":"contract IWitOracleRadonRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"channel()":"7bbdb96e","parseDataReport((bytes32,bytes32,(uint16,uint16,uint64),uint64,bytes),bytes)":"b783922b","pushDataReport((bytes32,bytes32,(uint16,uint16,uint64),uint64,bytes),bytes)":"6d0d6a7e","registry()":"7b103999"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidDataReport\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"evmOrigin\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"evmConsumer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"evmReporter\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"Witnet.TransactionHash\",\"name\":\"witDrTxHash\",\"type\":\"bytes32\"},{\"indexed\":false,\"internalType\":\"Witnet.RadonHash\",\"name\":\"queryRadHash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"indexed\":false,\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"queryParams\",\"type\":\"tuple\"},{\"indexed\":false,\"internalType\":\"Witnet.Timestamp\",\"name\":\"resultTimestamp\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"resultCborBytes\",\"type\":\"bytes\"}],\"name\":\"WitOracleReport\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"channel\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"witDrTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"Witnet.RadonHash\",\"name\":\"queryRadHash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"queryParams\",\"type\":\"tuple\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"resultTimestamp\",\"type\":\"uint64\"},{\"internalType\":\"bytes\",\"name\":\"resultCborBytes\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.DataPushReport\",\"name\":\"report\",\"type\":\"tuple\"},{\"internalType\":\"bytes\",\"name\":\"proof\",\"type\":\"bytes\"}],\"name\":\"parseDataReport\",\"outputs\":[{\"components\":[{\"internalType\":\"enum Witnet.ResultStatus\",\"name\":\"status\",\"type\":\"uint8\"},{\"internalType\":\"enum Witnet.RadonDataTypes\",\"name\":\"dataType\",\"type\":\"uint8\"},{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"drTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"components\":[{\"components\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"cursor\",\"type\":\"uint256\"}],\"internalType\":\"struct WitnetBuffer.Buffer\",\"name\":\"buffer\",\"type\":\"tuple\"},{\"internalType\":\"uint8\",\"name\":\"initialByte\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"majorType\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"additionalInformation\",\"type\":\"uint8\"},{\"internalType\":\"uint64\",\"name\":\"len\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"tag\",\"type\":\"uint64\"}],\"internalType\":\"struct WitnetCBOR.CBOR\",\"name\":\"value\",\"type\":\"tuple\"}],\"internalType\":\"struct Witnet.DataResult\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"witDrTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"Witnet.RadonHash\",\"name\":\"queryRadHash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"queryParams\",\"type\":\"tuple\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"resultTimestamp\",\"type\":\"uint64\"},{\"internalType\":\"bytes\",\"name\":\"resultCborBytes\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.DataPushReport\",\"name\":\"report\",\"type\":\"tuple\"},{\"internalType\":\"bytes\",\"name\":\"proof\",\"type\":\"bytes\"}],\"name\":\"pushDataReport\",\"outputs\":[{\"components\":[{\"internalType\":\"enum Witnet.ResultStatus\",\"name\":\"status\",\"type\":\"uint8\"},{\"internalType\":\"enum Witnet.RadonDataTypes\",\"name\":\"dataType\",\"type\":\"uint8\"},{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"drTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"components\":[{\"components\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"cursor\",\"type\":\"uint256\"}],\"internalType\":\"struct WitnetBuffer.Buffer\",\"name\":\"buffer\",\"type\":\"tuple\"},{\"internalType\":\"uint8\",\"name\":\"initialByte\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"majorType\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"additionalInformation\",\"type\":\"uint8\"},{\"internalType\":\"uint64\",\"name\":\"len\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"tag\",\"type\":\"uint64\"}],\"internalType\":\"struct WitnetCBOR.CBOR\",\"name\":\"value\",\"type\":\"tuple\"}],\"internalType\":\"struct Witnet.DataResult\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"registry\",\"outputs\":[{\"internalType\":\"contract IWitOracleRadonRegistry\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"channel()\":{\"notice\":\"Uniquely identifies the WitOracle instance and the chain on which it's deployed.\"},\"parseDataReport((bytes32,bytes32,(uint16,uint16,uint64),uint64,bytes),bytes)\":{\"notice\":\"Verify the data report (as provided by Wit/Kermit API) is well-formed and authentic, returning the parsed Witnet.DataResult if so, or reverting otherwise.\"},\"pushDataReport((bytes32,bytes32,(uint16,uint16,uint64),uint64,bytes),bytes)\":{\"notice\":\"Same as `parseDataReport` but on certain implementations it may store roll-up information  that will contribute to reduce the cost of verifying and/or rolling-up future data reports. Emits `DataReport` if report is authentic. \"},\"registry()\":{\"notice\":\"Returns the WitOracleRadonRegistry in which Witnet-compliant Radon requestscan be formally verified and forever registered as a away to let smart contracts and users to track actual data sources and offchain computations applied on data updates safely reported from the Wit/Oracle blockchain. \"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracle.sol\":\"IWitOracle\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracle.sol\":{\"keccak256\":\"0xd9f1a62989dbd33e486beb27362340565f899b143d1c4a1b022c6116b0ec317b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://00fa3a545ba871732ce1bd13241dcd24ad8c31908e764bb7e8ac1d96cb534e7f\",\"dweb:/ipfs/QmQvGiyxaULT6wu3RfvpnRrKdP8X2mbCDgQYyW9CQkH73f\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistry.sol\":{\"keccak256\":\"0x437bbb89129311bd1cc8f6becd333df46109ec53b24d3159be942b225614071f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ef9bcdf4a73cb126885478c994821b7fe2b87d9221b767b4c9342b89b0d6550a\",\"dweb:/ipfs/QmXzZXPMxjSiFpcEnhg6CjLFNxGCpDZt22xpUh7VHxNTGd\"]},\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol":{"IWitOracleAppliance":{"abi":[{"inputs":[],"name":"class","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"specs","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"class()":"bff852fa","specs()":"adb7c3f7","witOracle()":"1014d375"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"class\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"specs\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracle\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"class()\":{\"notice\":\"Returns the name of the actual contract implementing the logic of this Witnet appliance.\"},\"specs()\":{\"notice\":\"Returns the ERC-165 id of the minimal functionality expected for this appliance.\"},\"witOracle()\":{\"notice\":\"Returns the WitOracle address that this appliance is bound to.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol\":\"IWitOracleAppliance\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol\":{\"keccak256\":\"0xd207ca54a1049445a3d99eea497d9b34c6dbdd44d771eee825e4c031bd2f447e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f81de32d868ff2881ed6fe97cc897e40b4b11d23cbe53a0e23cf3e68f9c0f0a3\",\"dweb:/ipfs/QmeeXmzmK5MAzt7Hf5DB2L81efKtTzZg9VbQ8sUiTqEk5c\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol\":{\"keccak256\":\"0xcd8e57eca7f8042c85a83264e2ff6d1cd7a9f1521831736d7f57bcc7800642e6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5c639668e9439d60770b5df77436088ae7bd0aeb1d1be446552a98b6c29138f0\",\"dweb:/ipfs/QmbN3f5YuKMSd2j9tjay3VEkiYibGWpbfbwRNyrxA8k4o4\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/interfaces/IWitOracleConsumer.sol":{"IWitOracleConsumer":{"abi":[{"inputs":[{"components":[{"internalType":"Witnet.TransactionHash","name":"witDrTxHash","type":"bytes32"},{"internalType":"Witnet.RadonHash","name":"queryRadHash","type":"bytes32"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"queryParams","type":"tuple"},{"internalType":"Witnet.Timestamp","name":"resultTimestamp","type":"uint64"},{"internalType":"bytes","name":"resultCborBytes","type":"bytes"}],"internalType":"struct Witnet.DataPushReport","name":"report","type":"tuple"},{"internalType":"bytes","name":"proof","type":"bytes"}],"name":"pushDataReport","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"pushDataReport((bytes32,bytes32,(uint16,uint16,uint64),uint64,bytes),bytes)":"6d0d6a7e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"components\":[{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"witDrTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"Witnet.RadonHash\",\"name\":\"queryRadHash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"queryParams\",\"type\":\"tuple\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"resultTimestamp\",\"type\":\"uint64\"},{\"internalType\":\"bytes\",\"name\":\"resultCborBytes\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.DataPushReport\",\"name\":\"report\",\"type\":\"tuple\"},{\"internalType\":\"bytes\",\"name\":\"proof\",\"type\":\"bytes\"}],\"name\":\"pushDataReport\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"pushDataReport((bytes32,bytes32,(uint16,uint16,uint64),uint64,bytes),bytes)\":{\"details\":\"The referred `witOracle()` contract emits a `IWitOracle.DataReport` for every `Witnet.DataPushReport` proven to be authentic. \"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"pushDataReport((bytes32,bytes32,(uint16,uint16,uint64),uint64,bytes),bytes)\":{\"notice\":\"Accepts a data report from the Wit/oracle blockchain that ought to be verified by the WitOracle contract pointed out by `witOracle()`. \"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleConsumer.sol\":\"IWitOracleConsumer\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracle.sol\":{\"keccak256\":\"0xd9f1a62989dbd33e486beb27362340565f899b143d1c4a1b022c6116b0ec317b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://00fa3a545ba871732ce1bd13241dcd24ad8c31908e764bb7e8ac1d96cb534e7f\",\"dweb:/ipfs/QmQvGiyxaULT6wu3RfvpnRrKdP8X2mbCDgQYyW9CQkH73f\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleConsumer.sol\":{\"keccak256\":\"0x0091b5953897f5bec810d4fa22e43a9dbd5e01600994f6465e3fe14edab02a5b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://61862f8fd20ba0f619c4d6851affd39885c4bbbf1a7bd99e01ac472dae487a1b\",\"dweb:/ipfs/QmXuw1XaQmbSpcrZUhAzTnmnj3Vxna9D1Fg9Zwq5EnZRZK\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistry.sol\":{\"keccak256\":\"0x437bbb89129311bd1cc8f6becd333df46109ec53b24d3159be942b225614071f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ef9bcdf4a73cb126885478c994821b7fe2b87d9221b767b4c9342b89b0d6550a\",\"dweb:/ipfs/QmXzZXPMxjSiFpcEnhg6CjLFNxGCpDZt22xpUh7VHxNTGd\"]},\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriable.sol":{"IWitOracleQueriable":{"abi":[{"inputs":[{"internalType":"uint256","name":"queryId","type":"uint256"}],"name":"deleteQuery","outputs":[{"internalType":"Witnet.QueryEvmReward","name":"","type":"uint72"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"evmGasPrice","type":"uint256"}],"name":"estimateBaseFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"evmGasPrice","type":"uint256"},{"internalType":"uint24","name":"callbackGas","type":"uint24"}],"name":"estimateBaseFeeWithCallback","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"evmGasPrice","type":"uint256"},{"internalType":"uint256","name":"evmWitPrice","type":"uint256"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"querySLA","type":"tuple"}],"name":"estimateExtraFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextQueryId","outputs":[{"internalType":"Witnet.QueryId","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"queryId","type":"uint256"}],"name":"getQuery","outputs":[{"components":[{"components":[{"internalType":"address","name":"requester","type":"address"},{"internalType":"uint24","name":"callbackGas","type":"uint24"},{"internalType":"uint72","name":"_0","type":"uint72"},{"internalType":"bytes","name":"radonBytecode","type":"bytes"},{"internalType":"Witnet.RadonHash","name":"radonHash","type":"bytes32"}],"internalType":"struct Witnet.QueryRequest","name":"request","type":"tuple"},{"components":[{"internalType":"address","name":"reporter","type":"address"},{"internalType":"uint32","name":"_0","type":"uint32"},{"internalType":"Witnet.Timestamp","name":"resultTimestamp","type":"uint64"},{"internalType":"Witnet.TransactionHash","name":"resultDrTxHash","type":"bytes32"},{"internalType":"bytes","name":"resultCborBytes","type":"bytes"},{"internalType":"address","name":"disputer","type":"address"}],"internalType":"struct Witnet.QueryResponse","name":"response","type":"tuple"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"slaParams","type":"tuple"},{"internalType":"Witnet.QueryHash","name":"hash","type":"bytes15"},{"internalType":"Witnet.QueryEvmReward","name":"reward","type":"uint72"},{"internalType":"Witnet.BlockNumber","name":"checkpoint","type":"uint64"}],"internalType":"struct Witnet.Query","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryEvmReward","outputs":[{"internalType":"Witnet.QueryEvmReward","name":"","type":"uint72"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryRequest","outputs":[{"components":[{"internalType":"address","name":"requester","type":"address"},{"internalType":"uint24","name":"callbackGas","type":"uint24"},{"internalType":"uint72","name":"_0","type":"uint72"},{"internalType":"bytes","name":"radonBytecode","type":"bytes"},{"internalType":"Witnet.RadonHash","name":"radonHash","type":"bytes32"}],"internalType":"struct Witnet.QueryRequest","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryResponse","outputs":[{"components":[{"internalType":"address","name":"reporter","type":"address"},{"internalType":"uint32","name":"_0","type":"uint32"},{"internalType":"Witnet.Timestamp","name":"resultTimestamp","type":"uint64"},{"internalType":"Witnet.TransactionHash","name":"resultDrTxHash","type":"bytes32"},{"internalType":"bytes","name":"resultCborBytes","type":"bytes"},{"internalType":"address","name":"disputer","type":"address"}],"internalType":"struct Witnet.QueryResponse","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryResult","outputs":[{"components":[{"internalType":"enum Witnet.ResultStatus","name":"status","type":"uint8"},{"internalType":"enum Witnet.RadonDataTypes","name":"dataType","type":"uint8"},{"internalType":"Witnet.TransactionHash","name":"drTxHash","type":"bytes32"},{"internalType":"Witnet.Timestamp","name":"timestamp","type":"uint64"},{"components":[{"components":[{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"cursor","type":"uint256"}],"internalType":"struct WitnetBuffer.Buffer","name":"buffer","type":"tuple"},{"internalType":"uint8","name":"initialByte","type":"uint8"},{"internalType":"uint8","name":"majorType","type":"uint8"},{"internalType":"uint8","name":"additionalInformation","type":"uint8"},{"internalType":"uint64","name":"len","type":"uint64"},{"internalType":"uint64","name":"tag","type":"uint64"}],"internalType":"struct WitnetCBOR.CBOR","name":"value","type":"tuple"}],"internalType":"struct Witnet.DataResult","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryResultStatus","outputs":[{"internalType":"enum Witnet.ResultStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryResultStatusDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryStatus","outputs":[{"internalType":"enum Witnet.QueryStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"name":"getQueryStatusBatch","outputs":[{"internalType":"enum Witnet.QueryStatus[]","name":"","type":"uint8[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getQueryStatusString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.RadonHash","name":"radonHash","type":"bytes32"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"","type":"tuple"}],"name":"queryData","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"Witnet.RadonHash","name":"radonHash","type":"bytes32"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"","type":"tuple"},{"components":[{"internalType":"address","name":"consumer","type":"address"},{"internalType":"uint24","name":"gasLimit","type":"uint24"}],"internalType":"struct Witnet.QueryCallback","name":"","type":"tuple"}],"name":"queryDataWithCallback","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"upgradeQueryEvmReward","outputs":[],"stateMutability":"payable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"deleteQuery(uint256)":"7c1fbda3","estimateBaseFee(uint256)":"39a8653e","estimateBaseFeeWithCallback(uint256,uint24)":"05e742ef","estimateExtraFee(uint256,uint256,(uint16,uint16,uint64))":"d0a92a08","getNextQueryId()":"c805dd0f","getQuery(uint256)":"aeb2ffc1","getQueryEvmReward(uint256)":"6fdaab7e","getQueryRequest(uint256)":"0aa4112a","getQueryResponse(uint256)":"f61921b2","getQueryResult(uint256)":"59209b39","getQueryResultStatus(uint256)":"4cddf615","getQueryResultStatusDescription(uint256)":"c2581348","getQueryStatus(uint256)":"6f07abcc","getQueryStatusBatch(uint256[])":"581f5094","getQueryStatusString(uint256)":"838d44e2","queryData(bytes32,(uint16,uint16,uint64))":"a58f6803","queryDataWithCallback(bytes32,(uint16,uint16,uint64),(address,uint24))":"3b3195b7","upgradeQueryEvmReward(uint256)":"ec5946db"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"queryId\",\"type\":\"uint256\"}],\"name\":\"deleteQuery\",\"outputs\":[{\"internalType\":\"Witnet.QueryEvmReward\",\"name\":\"\",\"type\":\"uint72\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"}],\"name\":\"estimateBaseFee\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"},{\"internalType\":\"uint24\",\"name\":\"callbackGas\",\"type\":\"uint24\"}],\"name\":\"estimateBaseFeeWithCallback\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"evmWitPrice\",\"type\":\"uint256\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"querySLA\",\"type\":\"tuple\"}],\"name\":\"estimateExtraFee\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getNextQueryId\",\"outputs\":[{\"internalType\":\"Witnet.QueryId\",\"name\":\"\",\"type\":\"uint64\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"queryId\",\"type\":\"uint256\"}],\"name\":\"getQuery\",\"outputs\":[{\"components\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"requester\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"callbackGas\",\"type\":\"uint24\"},{\"internalType\":\"uint72\",\"name\":\"_0\",\"type\":\"uint72\"},{\"internalType\":\"bytes\",\"name\":\"radonBytecode\",\"type\":\"bytes\"},{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonHash\",\"type\":\"bytes32\"}],\"internalType\":\"struct Witnet.QueryRequest\",\"name\":\"request\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"address\",\"name\":\"reporter\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"_0\",\"type\":\"uint32\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"resultTimestamp\",\"type\":\"uint64\"},{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"resultDrTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"resultCborBytes\",\"type\":\"bytes\"},{\"internalType\":\"address\",\"name\":\"disputer\",\"type\":\"address\"}],\"internalType\":\"struct Witnet.QueryResponse\",\"name\":\"response\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"slaParams\",\"type\":\"tuple\"},{\"internalType\":\"Witnet.QueryHash\",\"name\":\"hash\",\"type\":\"bytes15\"},{\"internalType\":\"Witnet.QueryEvmReward\",\"name\":\"reward\",\"type\":\"uint72\"},{\"internalType\":\"Witnet.BlockNumber\",\"name\":\"checkpoint\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.Query\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryEvmReward\",\"outputs\":[{\"internalType\":\"Witnet.QueryEvmReward\",\"name\":\"\",\"type\":\"uint72\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryRequest\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"requester\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"callbackGas\",\"type\":\"uint24\"},{\"internalType\":\"uint72\",\"name\":\"_0\",\"type\":\"uint72\"},{\"internalType\":\"bytes\",\"name\":\"radonBytecode\",\"type\":\"bytes\"},{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonHash\",\"type\":\"bytes32\"}],\"internalType\":\"struct Witnet.QueryRequest\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryResponse\",\"outputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"reporter\",\"type\":\"address\"},{\"internalType\":\"uint32\",\"name\":\"_0\",\"type\":\"uint32\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"resultTimestamp\",\"type\":\"uint64\"},{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"resultDrTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"resultCborBytes\",\"type\":\"bytes\"},{\"internalType\":\"address\",\"name\":\"disputer\",\"type\":\"address\"}],\"internalType\":\"struct Witnet.QueryResponse\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryResult\",\"outputs\":[{\"components\":[{\"internalType\":\"enum Witnet.ResultStatus\",\"name\":\"status\",\"type\":\"uint8\"},{\"internalType\":\"enum Witnet.RadonDataTypes\",\"name\":\"dataType\",\"type\":\"uint8\"},{\"internalType\":\"Witnet.TransactionHash\",\"name\":\"drTxHash\",\"type\":\"bytes32\"},{\"internalType\":\"Witnet.Timestamp\",\"name\":\"timestamp\",\"type\":\"uint64\"},{\"components\":[{\"components\":[{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"cursor\",\"type\":\"uint256\"}],\"internalType\":\"struct WitnetBuffer.Buffer\",\"name\":\"buffer\",\"type\":\"tuple\"},{\"internalType\":\"uint8\",\"name\":\"initialByte\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"majorType\",\"type\":\"uint8\"},{\"internalType\":\"uint8\",\"name\":\"additionalInformation\",\"type\":\"uint8\"},{\"internalType\":\"uint64\",\"name\":\"len\",\"type\":\"uint64\"},{\"internalType\":\"uint64\",\"name\":\"tag\",\"type\":\"uint64\"}],\"internalType\":\"struct WitnetCBOR.CBOR\",\"name\":\"value\",\"type\":\"tuple\"}],\"internalType\":\"struct Witnet.DataResult\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryResultStatus\",\"outputs\":[{\"internalType\":\"enum Witnet.ResultStatus\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryResultStatusDescription\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryStatus\",\"outputs\":[{\"internalType\":\"enum Witnet.QueryStatus\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"name\":\"getQueryStatusBatch\",\"outputs\":[{\"internalType\":\"enum Witnet.QueryStatus[]\",\"name\":\"\",\"type\":\"uint8[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getQueryStatusString\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonHash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"\",\"type\":\"tuple\"}],\"name\":\"queryData\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonHash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"address\",\"name\":\"consumer\",\"type\":\"address\"},{\"internalType\":\"uint24\",\"name\":\"gasLimit\",\"type\":\"uint24\"}],\"internalType\":\"struct Witnet.QueryCallback\",\"name\":\"\",\"type\":\"tuple\"}],\"name\":\"queryDataWithCallback\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"upgradeQueryEvmReward\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"deleteQuery(uint256)\":{\"details\":\"Fails if the query is not in a final status, or not called from the actual requester.\",\"params\":{\"queryId\":\"The unique query identifier.\"}},\"estimateBaseFee(uint256)\":{\"params\":{\"evmGasPrice\":\"Expected gas price to pay upon posting the data request.\"}},\"estimateBaseFeeWithCallback(uint256,uint24)\":{\"params\":{\"callbackGas\":\"Maximum gas to be spent when reporting the data request result.\",\"evmGasPrice\":\"Expected gas price to pay upon posting the data request.\"}},\"estimateExtraFee(uint256,uint256,(uint16,uint16,uint64))\":{\"details\":\"The extra fee gets calculated in proportion to:\",\"params\":{\"evmGasPrice\":\"Tentative EVM gas price at the moment the query result is ready.\",\"evmWitPrice\":\"Tentative nanoWit price in Wei at the moment the query is solved on the Wit/Oracle blockchain.\",\"querySLA\":\"The query SLA data security parameters as required for the Wit/Oracle blockchain. \"}},\"queryData(bytes32,(uint16,uint16,uint64))\":{\"details\":\"Reasons to revert:- the data request's RAD hash was not previously verified into the WitOracleRadonRegistry contract;- invalid query SLA parameters were provided;- insufficient value is paid as reward.\",\"params\":{\"radonHash\":\"The unique hash of the Radon Request to be solved by Wit/Oracle sidechain. \"}},\"queryDataWithCallback(bytes32,(uint16,uint16,uint64),(address,uint24))\":{\"details\":\"Reasons to revert:- the data request's RAD hash was not previously verified into the Radon Registry;- invalid query SLA parameters were provided;- insufficient value is paid as reward.- passed `consumer` is not a contract implementing the IWitOracleQueriableConsumer interface;\",\"params\":{\"radonHash\":\"The unique hash of the Radon Request to be solved by Wit/Oracle sidechain. \"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"deleteQuery(uint256)\":{\"notice\":\"Removes all query data from storage. Pays back reward on expired queries.\"},\"estimateBaseFee(uint256)\":{\"notice\":\"Estimate the minimum reward required for posting a data request.\"},\"estimateBaseFeeWithCallback(uint256,uint24)\":{\"notice\":\"Estimate the minimum reward required for posting a data request with a callback.\"},\"estimateExtraFee(uint256,uint256,(uint16,uint16,uint64))\":{\"notice\":\"Estimate the extra reward (i.e. over the base fee) to be paid when posting a newdata query in order to avoid getting provable \\\"too low incentives\\\" results fromthe Wit/Oracle blockchain. \"},\"getNextQueryId()\":{\"notice\":\"Returns next query id to be generated by the Witnet Request Board.\"},\"getQuery(uint256)\":{\"notice\":\"Gets the whole Query data contents, if any, no matter its current status.\"},\"getQueryEvmReward(uint256)\":{\"notice\":\"Gets the current EVM reward the reporter can claim, if not done yet.\"},\"getQueryRequest(uint256)\":{\"notice\":\"Retrieves the RAD hash and SLA parameters of the given query.\"},\"getQueryResponse(uint256)\":{\"notice\":\"Retrieves the whole `Witnet.QueryResponse` record referred to a previously posted Witnet Data Request.\"},\"getQueryStatus(uint256)\":{\"notice\":\"Gets current status of given query.\"},\"getQueryStatusBatch(uint256[])\":{\"notice\":\"Get current status of all given query ids.\"},\"queryData(bytes32,(uint16,uint16,uint64))\":{\"notice\":\"Request real world data from the Wit/Oracle sidechain. The paid fee is escrowed as a reward for the reporter that eventually relays back a valid query result from the Wit/Oracle sidechain.Query results are CBOR-encoded, and can contain either some     data, or an error.\"},\"queryDataWithCallback(bytes32,(uint16,uint16,uint64),(address,uint24))\":{\"notice\":\"Request real world data from the Wit/Oracle sidechain. The paid fee is escrowed as a reward for the reporter that eventually relays back a valid query result from the Wit/Oracle sidechain.The Witnet-provable result will be reported directly to the requesting contract. Query results are CBOR-encoded, and can contain either some data, or an error.\"},\"upgradeQueryEvmReward(uint256)\":{\"notice\":\"Increments the reward of a previously posted request by adding the transaction value to it.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriable.sol\":\"IWitOracleQueriable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriable.sol\":{\"keccak256\":\"0xd7075a3c4a6744989883a9a791d9068f84872a1b1f9600665f8bde4b43ed9b3b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6fdea2451c22af317b4a699928e76fdd66d1faee2a87df951ef4d669d6b3058f\",\"dweb:/ipfs/QmcrohJfHjigPV9sXxyCucDhqwK2wP84Sc2qc5hx7RFQ6i\"]},\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableConsumer.sol":{"IWitOracleQueriableConsumer":{"abi":[{"inputs":[{"internalType":"uint256","name":"queryId","type":"uint256"},{"internalType":"bytes","name":"queryResult","type":"bytes"}],"name":"reportWitOracleQueryResult","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reportableFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"reportWitOracleQueryResult(uint256,bytes)":"d6f29e81","reportableFrom(address)":"47a10e56"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"queryId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"queryResult\",\"type\":\"bytes\"}],\"name\":\"reportWitOracleQueryResult\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"reportableFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"reportWitOracleQueryResult(uint256,bytes)\":{\"details\":\"It should revert if called from any other address different to the WitOracle being usedby the WitOracleQueriableConsumer contract. \",\"params\":{\"queryId\":\"The unique identifier of the Witnet query being reported.\",\"queryResult\":\"Abi-encoded Witnet.DataResult containing the CBOR-encoded query's result, and metadata.\"}},\"reportableFrom(address)\":{\"details\":\"In practice, must only be true on the WitOracle address that's being used bythe WitOracleQueriableConsumer to post queries. \"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"reportWitOracleQueryResult(uint256,bytes)\":{\"notice\":\"Method to be called from the WitOracle contract as soon as the given Witnet `queryId`gets reported.\"},\"reportableFrom(address)\":{\"notice\":\"Determines if Witnet queries can be reported from given address.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableConsumer.sol\":\"IWitOracleQueriableConsumer\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriable.sol\":{\"keccak256\":\"0xd7075a3c4a6744989883a9a791d9068f84872a1b1f9600665f8bde4b43ed9b3b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6fdea2451c22af317b4a699928e76fdd66d1faee2a87df951ef4d669d6b3058f\",\"dweb:/ipfs/QmcrohJfHjigPV9sXxyCucDhqwK2wP84Sc2qc5hx7RFQ6i\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableConsumer.sol\":{\"keccak256\":\"0xc10f14a5aa25409d3fe7199c2fa7fa16ba6823c122a42e6772ed0fbff5465d57\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9d0d0033b3d0961d1439c4b0664435e6488c730e82436c83564be11a48032a34\",\"dweb:/ipfs/QmeMJ2xC7tyNTzKKqhgym1KM3N6WnNadEsooHsVNqVzR4j\"]},\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableEvents.sol":{"IWitOracleQueriableEvents":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"evmRequester","type":"address"},{"indexed":false,"internalType":"uint256","name":"evmGasPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"evmReward","type":"uint256"},{"indexed":false,"internalType":"Witnet.QueryId","name":"queryId","type":"uint64"},{"indexed":false,"internalType":"Witnet.RadonHash","name":"radonHash","type":"bytes32"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"indexed":false,"internalType":"struct Witnet.QuerySLA","name":"radonParams","type":"tuple"}],"name":"WitOracleQuery","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"Witnet.QueryId","name":"queryId","type":"uint64"},{"indexed":false,"internalType":"uint256","name":"evmGasPrice","type":"uint256"}],"name":"WitOracleQueryReport","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"Witnet.QueryId","name":"queryId","type":"uint64"},{"indexed":false,"internalType":"address","name":"evmConsumer","type":"address"},{"indexed":false,"internalType":"uint256","name":"evmGasPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"evmCallbackGas","type":"uint256"}],"name":"WitOracleQueryReportDelivery","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"Witnet.QueryId","name":"queryId","type":"uint64"},{"indexed":false,"internalType":"address","name":"evmDisputer","type":"address"}],"name":"WitOracleQueryReportDispute","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"Witnet.QueryId","name":"queryId","type":"uint64"},{"indexed":false,"internalType":"address","name":"evmSender","type":"address"},{"indexed":false,"internalType":"uint256","name":"evmGasPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"evmReward","type":"uint256"}],"name":"WitOracleQueryUpgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"Witnet.QueryId","name":"queryId","type":"uint64"},{"indexed":false,"internalType":"address","name":"evmConsumer","type":"address"},{"indexed":false,"internalType":"uint256","name":"evmGasPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"evmCallbackActualGas","type":"uint256"},{"indexed":false,"internalType":"string","name":"evmCallbackRevertReason","type":"string"},{"indexed":false,"internalType":"bytes","name":"resultCborBytes","type":"bytes"}],"name":"WitOracleResportDeliveryFailed","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"evmRequester\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmReward\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"Witnet.QueryId\",\"name\":\"queryId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonHash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"indexed\":false,\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"radonParams\",\"type\":\"tuple\"}],\"name\":\"WitOracleQuery\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"Witnet.QueryId\",\"name\":\"queryId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"}],\"name\":\"WitOracleQueryReport\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"Witnet.QueryId\",\"name\":\"queryId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"evmConsumer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmCallbackGas\",\"type\":\"uint256\"}],\"name\":\"WitOracleQueryReportDelivery\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"Witnet.QueryId\",\"name\":\"queryId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"evmDisputer\",\"type\":\"address\"}],\"name\":\"WitOracleQueryReportDispute\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"Witnet.QueryId\",\"name\":\"queryId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"evmSender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmReward\",\"type\":\"uint256\"}],\"name\":\"WitOracleQueryUpgrade\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"Witnet.QueryId\",\"name\":\"queryId\",\"type\":\"uint64\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"evmConsumer\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"evmCallbackActualGas\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"evmCallbackRevertReason\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bytes\",\"name\":\"resultCborBytes\",\"type\":\"bytes\"}],\"name\":\"WitOracleResportDeliveryFailed\",\"type\":\"event\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"events\":{\"WitOracleQuery(address,uint256,uint256,uint64,bytes32,(uint16,uint16,uint64))\":{\"notice\":\"Emitted every time a new query containing some verified data request is posted to the WitOracle.\"},\"WitOracleQueryReport(uint64,uint256)\":{\"notice\":\"Emitted when a query with no callback gets reported into the WRB.\"},\"WitOracleQueryReportDelivery(uint64,address,uint256,uint256)\":{\"notice\":\"Emitted when a query with a callback gets successfully reported into the WRB.\"},\"WitOracleQueryUpgrade(uint64,address,uint256,uint256)\":{\"notice\":\"Emitted when the reward of some not-yet reported query gets upgraded.\"},\"WitOracleResportDeliveryFailed(uint64,address,uint256,uint256,string,bytes)\":{\"notice\":\"Emitted when a query with a callback cannot get reported into the WRB.\"}},\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableEvents.sol\":\"IWitOracleQueriableEvents\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableEvents.sol\":{\"keccak256\":\"0x47c283e931006d35bd2599524f86724e45eae6fad2fdd9cdecd1c85a90ff3f8c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3ad0520f99ec9298536ae9434f58caeb470c10dd3eaab1e4c7ed4cae9a97e2a2\",\"dweb:/ipfs/QmSuYCsSPweZfQc5Fbf9jYDdx4u7gwYCUdjhpcrrxmWZy6\"]},\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistry.sol":{"IWitOracleRadonRegistry":{"abi":[{"inputs":[{"internalType":"bytes","name":"radonRequestBytecode","type":"bytes"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"queryParams","type":"tuple"}],"name":"bytecodeOf","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.RadonHash","name":"radonRequestHash","type":"bytes32"},{"components":[{"internalType":"uint16","name":"witResultMaxSize","type":"uint16"},{"internalType":"uint16","name":"witCommitteeSize","type":"uint16"},{"internalType":"uint64","name":"witUnitaryReward","type":"uint64"}],"internalType":"struct Witnet.QuerySLA","name":"queryParams","type":"tuple"}],"name":"bytecodeOf","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"hashOf","outputs":[{"internalType":"Witnet.RadonHash","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"isVerifiedRadonReducer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.RadonHash","name":"","type":"bytes32"}],"name":"isVerifiedRadonRequest","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"isVerifiedRadonRetrieval","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"lookupRadonReducer","outputs":[{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.RadonHash","name":"radonRequestHash","type":"bytes32"}],"name":"lookupRadonRequestBytecode","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.RadonHash","name":"radonRequestHash","type":"bytes32"}],"name":"lookupRadonRequestCrowdAttestationTally","outputs":[{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.RadonHash","name":"radonRequestHash","type":"bytes32"}],"name":"lookupRadonRequestResultDataType","outputs":[{"internalType":"enum Witnet.RadonDataTypes","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.RadonHash","name":"radonRequestHash","type":"bytes32"}],"name":"lookupRadonRequestRetrievals","outputs":[{"components":[{"internalType":"uint8","name":"argsCount","type":"uint8"},{"internalType":"enum Witnet.RadonRetrievalMethods","name":"method","type":"uint8"},{"internalType":"enum Witnet.RadonDataTypes","name":"dataType","type":"uint8"},{"internalType":"string","name":"url","type":"string"},{"internalType":"string","name":"body","type":"string"},{"internalType":"string[2][]","name":"headers","type":"string[2][]"},{"internalType":"bytes","name":"radonScript","type":"bytes"}],"internalType":"struct Witnet.RadonRetrieval[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.RadonHash","name":"radonRequestHash","type":"bytes32"}],"name":"lookupRadonRequestRetrievalsAggregator","outputs":[{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"Witnet.RadonHash","name":"radonRequestHash","type":"bytes32"}],"name":"lookupRadonRequestRetrievalsCount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"lookupRadonRetrieval","outputs":[{"components":[{"internalType":"uint8","name":"argsCount","type":"uint8"},{"internalType":"enum Witnet.RadonRetrievalMethods","name":"method","type":"uint8"},{"internalType":"enum Witnet.RadonDataTypes","name":"dataType","type":"uint8"},{"internalType":"string","name":"url","type":"string"},{"internalType":"string","name":"body","type":"string"},{"internalType":"string[2][]","name":"headers","type":"string[2][]"},{"internalType":"bytes","name":"radonScript","type":"bytes"}],"internalType":"struct Witnet.RadonRetrieval","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"lookupRadonRetrievalArgsCount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"lookupRadonRetrievalResultDataType","outputs":[{"internalType":"enum Witnet.RadonDataTypes","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"reducer","type":"tuple"}],"name":"verifyRadonReducer","outputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"retrieveHashes","type":"bytes32[]"},{"internalType":"bytes32","name":"aggregateReducerHash","type":"bytes32"},{"internalType":"bytes32","name":"tallyReducerHash","type":"bytes32"}],"name":"verifyRadonRequest","outputs":[{"internalType":"Witnet.RadonHash","name":"radonRequestHash","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"radonRetrieveHashes","type":"bytes32[]"},{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"dataSourcesAggregator","type":"tuple"},{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"crowsAttestationTally","type":"tuple"}],"name":"verifyRadonRequest","outputs":[{"internalType":"Witnet.RadonHash","name":"radonRequestHash","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"commonRetrieveHash","type":"bytes32"},{"internalType":"string[]","name":"commonRetrieveArgs","type":"string[]"},{"internalType":"string[]","name":"dataProviders","type":"string[]"},{"internalType":"bytes32","name":"dataSourcesAggregatorHash","type":"bytes32"},{"internalType":"bytes32","name":"crowdAttestationTallyHash","type":"bytes32"}],"name":"verifyRadonRequest","outputs":[{"internalType":"Witnet.RadonHash","name":"radonRequestHash","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"radonRetrieveHashes","type":"bytes32[]"},{"internalType":"string[][]","name":"radonRetrieveArgs","type":"string[][]"},{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"dataSourcesAggregator","type":"tuple"},{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"crowdAttestationTally","type":"tuple"}],"name":"verifyRadonRequest","outputs":[{"internalType":"Witnet.RadonHash","name":"radonRequestHash","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"radonRetrieveHashes","type":"bytes32[]"},{"internalType":"string[][]","name":"radonRetrieveArgs","type":"string[][]"},{"internalType":"bytes32","name":"dataSourcesAggregatorHash","type":"bytes32"},{"internalType":"bytes32","name":"crowdAttestationTallyHash","type":"bytes32"}],"name":"verifyRadonRequest","outputs":[{"internalType":"Witnet.RadonHash","name":"radonRequestHash","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Witnet.RadonRetrievalMethods","name":"requestMethod","type":"uint8"},{"internalType":"string","name":"requestURL","type":"string"},{"internalType":"string","name":"requestBody","type":"string"},{"internalType":"string[2][]","name":"requestHeaders","type":"string[2][]"},{"internalType":"bytes","name":"requestRadonScript","type":"bytes"}],"name":"verifyRadonRetrieval","outputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"bytecodeOf(bytes,(uint16,uint16,uint64))":"9a7af84e","bytecodeOf(bytes32,(uint16,uint16,uint64))":"dcf3f972","hashOf(bytes)":"a0490fa0","isVerifiedRadonReducer(bytes32)":"2229e86e","isVerifiedRadonRequest(bytes32)":"68ec07a4","isVerifiedRadonRetrieval(bytes32)":"977e0157","lookupRadonReducer(bytes32)":"3679f864","lookupRadonRequestBytecode(bytes32)":"8a227764","lookupRadonRequestCrowdAttestationTally(bytes32)":"48223a0b","lookupRadonRequestResultDataType(bytes32)":"4c729104","lookupRadonRequestRetrievals(bytes32)":"77c11259","lookupRadonRequestRetrievalsAggregator(bytes32)":"c61fa893","lookupRadonRequestRetrievalsCount(bytes32)":"23f2e3ea","lookupRadonRetrieval(bytes32)":"9dd48757","lookupRadonRetrievalArgsCount(bytes32)":"b4ab01a5","lookupRadonRetrievalResultDataType(bytes32)":"a0e55336","verifyRadonReducer((uint8,(uint8,bytes)[]))":"7f412e23","verifyRadonRequest(bytes32,string[],string[],bytes32,bytes32)":"98cb04f4","verifyRadonRequest(bytes32[],(uint8,(uint8,bytes)[]),(uint8,(uint8,bytes)[]))":"6bd04634","verifyRadonRequest(bytes32[],bytes32,bytes32)":"40c5da1d","verifyRadonRequest(bytes32[],string[][],(uint8,(uint8,bytes)[]),(uint8,(uint8,bytes)[]))":"b73cb313","verifyRadonRequest(bytes32[],string[][],bytes32,bytes32)":"dbc218ef","verifyRadonRetrieval(uint8,string,string,string[2][],bytes)":"9eb3ab1f"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"radonRequestBytecode\",\"type\":\"bytes\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"queryParams\",\"type\":\"tuple\"}],\"name\":\"bytecodeOf\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonRequestHash\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"uint16\",\"name\":\"witResultMaxSize\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"witCommitteeSize\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"witUnitaryReward\",\"type\":\"uint64\"}],\"internalType\":\"struct Witnet.QuerySLA\",\"name\":\"queryParams\",\"type\":\"tuple\"}],\"name\":\"bytecodeOf\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"name\":\"hashOf\",\"outputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"isVerifiedRadonReducer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"isVerifiedRadonRequest\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"isVerifiedRadonRetrieval\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"hash\",\"type\":\"bytes32\"}],\"name\":\"lookupRadonReducer\",\"outputs\":[{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonRequestHash\",\"type\":\"bytes32\"}],\"name\":\"lookupRadonRequestBytecode\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonRequestHash\",\"type\":\"bytes32\"}],\"name\":\"lookupRadonRequestCrowdAttestationTally\",\"outputs\":[{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonRequestHash\",\"type\":\"bytes32\"}],\"name\":\"lookupRadonRequestResultDataType\",\"outputs\":[{\"internalType\":\"enum Witnet.RadonDataTypes\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonRequestHash\",\"type\":\"bytes32\"}],\"name\":\"lookupRadonRequestRetrievals\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"argsCount\",\"type\":\"uint8\"},{\"internalType\":\"enum Witnet.RadonRetrievalMethods\",\"name\":\"method\",\"type\":\"uint8\"},{\"internalType\":\"enum Witnet.RadonDataTypes\",\"name\":\"dataType\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"url\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"body\",\"type\":\"string\"},{\"internalType\":\"string[2][]\",\"name\":\"headers\",\"type\":\"string[2][]\"},{\"internalType\":\"bytes\",\"name\":\"radonScript\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonRetrieval[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonRequestHash\",\"type\":\"bytes32\"}],\"name\":\"lookupRadonRequestRetrievalsAggregator\",\"outputs\":[{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonRequestHash\",\"type\":\"bytes32\"}],\"name\":\"lookupRadonRequestRetrievalsCount\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"hash\",\"type\":\"bytes32\"}],\"name\":\"lookupRadonRetrieval\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"argsCount\",\"type\":\"uint8\"},{\"internalType\":\"enum Witnet.RadonRetrievalMethods\",\"name\":\"method\",\"type\":\"uint8\"},{\"internalType\":\"enum Witnet.RadonDataTypes\",\"name\":\"dataType\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"url\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"body\",\"type\":\"string\"},{\"internalType\":\"string[2][]\",\"name\":\"headers\",\"type\":\"string[2][]\"},{\"internalType\":\"bytes\",\"name\":\"radonScript\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonRetrieval\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"hash\",\"type\":\"bytes32\"}],\"name\":\"lookupRadonRetrievalArgsCount\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"hash\",\"type\":\"bytes32\"}],\"name\":\"lookupRadonRetrievalResultDataType\",\"outputs\":[{\"internalType\":\"enum Witnet.RadonDataTypes\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"reducer\",\"type\":\"tuple\"}],\"name\":\"verifyRadonReducer\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"hash\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32[]\",\"name\":\"retrieveHashes\",\"type\":\"bytes32[]\"},{\"internalType\":\"bytes32\",\"name\":\"aggregateReducerHash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"tallyReducerHash\",\"type\":\"bytes32\"}],\"name\":\"verifyRadonRequest\",\"outputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonRequestHash\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32[]\",\"name\":\"radonRetrieveHashes\",\"type\":\"bytes32[]\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"dataSourcesAggregator\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"crowsAttestationTally\",\"type\":\"tuple\"}],\"name\":\"verifyRadonRequest\",\"outputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonRequestHash\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"commonRetrieveHash\",\"type\":\"bytes32\"},{\"internalType\":\"string[]\",\"name\":\"commonRetrieveArgs\",\"type\":\"string[]\"},{\"internalType\":\"string[]\",\"name\":\"dataProviders\",\"type\":\"string[]\"},{\"internalType\":\"bytes32\",\"name\":\"dataSourcesAggregatorHash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"crowdAttestationTallyHash\",\"type\":\"bytes32\"}],\"name\":\"verifyRadonRequest\",\"outputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonRequestHash\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32[]\",\"name\":\"radonRetrieveHashes\",\"type\":\"bytes32[]\"},{\"internalType\":\"string[][]\",\"name\":\"radonRetrieveArgs\",\"type\":\"string[][]\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"dataSourcesAggregator\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"crowdAttestationTally\",\"type\":\"tuple\"}],\"name\":\"verifyRadonRequest\",\"outputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonRequestHash\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32[]\",\"name\":\"radonRetrieveHashes\",\"type\":\"bytes32[]\"},{\"internalType\":\"string[][]\",\"name\":\"radonRetrieveArgs\",\"type\":\"string[][]\"},{\"internalType\":\"bytes32\",\"name\":\"dataSourcesAggregatorHash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"crowdAttestationTallyHash\",\"type\":\"bytes32\"}],\"name\":\"verifyRadonRequest\",\"outputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonRequestHash\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"enum Witnet.RadonRetrievalMethods\",\"name\":\"requestMethod\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"requestURL\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"requestBody\",\"type\":\"string\"},{\"internalType\":\"string[2][]\",\"name\":\"requestHeaders\",\"type\":\"string[2][]\"},{\"internalType\":\"bytes\",\"name\":\"requestRadonScript\",\"type\":\"bytes\"}],\"name\":\"verifyRadonRetrieval\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"hash\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"lookupRadonReducer(bytes32)\":{\"details\":\"Reverts if unknown.\"},\"lookupRadonRequestCrowdAttestationTally(bytes32)\":{\"details\":\"Reverts if unknown.\"},\"lookupRadonRequestResultDataType(bytes32)\":{\"details\":\"Reverts if unknown.\"},\"lookupRadonRequestRetrievals(bytes32)\":{\"details\":\"Reverts if unknown.\"},\"lookupRadonRequestRetrievalsAggregator(bytes32)\":{\"details\":\"Reverts if unknown.\"},\"lookupRadonRetrieval(bytes32)\":{\"details\":\"Reverts if unknown.\"},\"lookupRadonRetrievalArgsCount(bytes32)\":{\"details\":\"Reverts if unknown.\"},\"lookupRadonRetrievalResultDataType(bytes32)\":{\"details\":\"Reverts if unknown.\"},\"verifyRadonReducer((uint8,(uint8,bytes)[]))\":{\"details\":\"Reverts if unsupported reducing or filtering methods are specified.\"},\"verifyRadonRequest(bytes32[],(uint8,(uint8,bytes)[]),(uint8,(uint8,bytes)[]))\":{\"details\":\"Reverts if: - unverified retrievals are passed; - retrievals return different data types; - any of passed retrievals is parameterized; - unsupported reducers are passed.\"},\"verifyRadonRequest(bytes32[],bytes32,bytes32)\":{\"details\":\"Reverts if: - unverified retrievals are passed; - retrievals return different data types; - ranks of passed args don't match with those required by each given retrieval; - unverified reducers are passed.\"},\"verifyRadonRequest(bytes32[],string[][],(uint8,(uint8,bytes)[]),(uint8,(uint8,bytes)[]))\":{\"details\":\"Reverts if: - unverified retrievals are passed; - retrievals return different data types; - ranks of passed args don't match with those required by each given retrieval; - unsupported reducers are passed.\"},\"verifyRadonRequest(bytes32[],string[][],bytes32,bytes32)\":{\"details\":\"Reverts if: - unverified retrieval is passed; - ranks of passed args don't match with those expected by given retrieval, after replacing the data provider URL. - unverified reducers are passed.\"},\"verifyRadonRetrieval(uint8,string,string,string[2][],bytes)\":{\"details\":\"Reverts if: - unsupported retrieval method is given; - no URL is provided Http/* requests; - non-empty strings given on RNG reqs.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"bytecodeOf(bytes,(uint16,uint16,uint64))\":{\"notice\":\"Returns the Witnet-compliant DRO bytecode for some data request object  made out of the given RAD bytecode and Radon SLA security parameters. \"},\"bytecodeOf(bytes32,(uint16,uint16,uint64))\":{\"notice\":\"Returns the Witnet-compliant DRO bytecode for some data request object  made out of the given Radon Request and Radon SLA security parameters. \"},\"hashOf(bytes)\":{\"notice\":\"Returns the hash of the given Witnet-compliant bytecode. Returned value can be used to trace back in the Witnet blockchain all past resolutions  of the given data request payload.\"},\"isVerifiedRadonReducer(bytes32)\":{\"notice\":\"Tells whether the specified Radon Reducer has been formally verified into the registry.\"},\"isVerifiedRadonRequest(bytes32)\":{\"notice\":\"Tells whether the given Radon Hash has been formally verified into the registry.\"},\"isVerifiedRadonRetrieval(bytes32)\":{\"notice\":\"Tells whether the specified Radon Retrieval has been formally verified into the registry.\"},\"lookupRadonReducer(bytes32)\":{\"notice\":\"Returns the whole Witnet.RadonReducer metadata struct for the given hash.\"},\"lookupRadonRequestBytecode(bytes32)\":{\"notice\":\"Returns the Witnet-compliant RAD bytecode for some Radon Request  identified by its unique RAD hash. \"},\"lookupRadonRequestCrowdAttestationTally(bytes32)\":{\"notice\":\"Returns the Tally reducer that is applied to aggregated values revealed by the witnessing nodes on the  Witnet blockchain. \"},\"lookupRadonRequestResultDataType(bytes32)\":{\"notice\":\"Returns the deterministic data type returned by successful resolutions of the given Radon Request. \"},\"lookupRadonRequestRetrievals(bytes32)\":{\"notice\":\"Returns an array (one or more items) containing the introspective metadata of the given Radon Request's  data sources (i.e. Radon Retrievals). \"},\"lookupRadonRequestRetrievalsAggregator(bytes32)\":{\"notice\":\"Returns the Aggregate reducer that is applied to the data extracted from the data sources  (i.e. Radon Retrievals) whenever the given Radon Request gets solved on the Witnet blockchain. \"},\"lookupRadonRetrieval(bytes32)\":{\"notice\":\"Returns introspective metadata of some previously verified Radon Retrieval (i.e. public data source). \"},\"lookupRadonRetrievalArgsCount(bytes32)\":{\"notice\":\"Returns the number of indexed parameters required to be fulfilled when  eventually using the given Radon Retrieval. \"},\"lookupRadonRetrievalResultDataType(bytes32)\":{\"notice\":\"Returns the type of the data that would be retrieved by the given Radon Retrieval  (i.e. public data source). \"},\"verifyRadonReducer((uint8,(uint8,bytes)[]))\":{\"notice\":\"Verifies and registers the given sequence of dataset filters and reducing function to be  potentially used as either Aggregate or Tally reducers within the resolution workflow of Radon Requests in the Wit/Oracle blockchain. Returns a unique hash that identifies the  given Radon Reducer in the registry. \"},\"verifyRadonRequest(bytes32[],(uint8,(uint8,bytes)[]),(uint8,(uint8,bytes)[]))\":{\"notice\":\"Verifies and registers the specified Radon Request out of the given data sources (i.e. retrievals) and the aggregate and tally Radon Reducers. Returns a unique RAD hash that identifies the  verified Radon Request. \"},\"verifyRadonRequest(bytes32[],bytes32,bytes32)\":{\"notice\":\"Verifies and registers the specified Radon Request out of the given data sources (i.e. retrievals),  data sources parameters (if required), and some pre-verified aggregate and tally Radon Reducers.  Returns a unique RAD hash that identifies the verified Radon Request.\"},\"verifyRadonRequest(bytes32[],string[][],(uint8,(uint8,bytes)[]),(uint8,(uint8,bytes)[]))\":{\"notice\":\"Verifies and registers the specified Radon Request out of the given data sources (i.e. retrievals),  data sources parameters (if required), and the aggregate and tally Radon Reducers. Returns a unique  RAD hash that identifies the verified Radon Request.\"},\"verifyRadonRequest(bytes32[],string[][],bytes32,bytes32)\":{\"notice\":\"Verifies and registers the specified Radon Request out of a single modal retrieval where first  parameter corresponds to data provider's URL, an array of data providers (i.e. URLs), and an array of parmeter values common to all data providers. Some pre-verified aggregate and tally Radon Reducers must also be provided. Returns a unique RAD hash that identifies the verified Radon Request.\"},\"verifyRadonRetrieval(uint8,string,string,string[2][],bytes)\":{\"notice\":\"Verifies and registers the specified Radon Retrieval (i.e. public data source) into this registry contract.  Returns a unique retrieval hash that identifies the verified Radon Retrieval. All parameters but the retrieval method are parameterizable by using embedded wildcard \\\\x\\\\ substrings (with x='0'..'9').\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistry.sol\":\"IWitOracleRadonRegistry\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistry.sol\":{\"keccak256\":\"0x437bbb89129311bd1cc8f6becd333df46109ec53b24d3159be942b225614071f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ef9bcdf4a73cb126885478c994821b7fe2b87d9221b767b4c9342b89b0d6550a\",\"dweb:/ipfs/QmXzZXPMxjSiFpcEnhg6CjLFNxGCpDZt22xpUh7VHxNTGd\"]},\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistryEvents.sol":{"IWitOracleRadonRegistryEvents":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"NewRadonReducer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"Witnet.RadonHash","name":"radonHash","type":"bytes32"}],"name":"NewRadonRequest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"NewRadonRetrieval","type":"event"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"hash\",\"type\":\"bytes32\"}],\"name\":\"NewRadonReducer\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"Witnet.RadonHash\",\"name\":\"radonHash\",\"type\":\"bytes32\"}],\"name\":\"NewRadonRequest\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"hash\",\"type\":\"bytes32\"}],\"name\":\"NewRadonRetrieval\",\"type\":\"event\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"events\":{\"NewRadonReducer(bytes32)\":{\"notice\":\"Emitted every time a new Radon Reducer gets successfully verified and stored into the WitOracleRadonRegistry.\"},\"NewRadonRequest(bytes32)\":{\"notice\":\"Emitted every time a new Radon Request gets successfully verified and stored into the WitOracleRadonRegistry.\"},\"NewRadonRetrieval(bytes32)\":{\"notice\":\"Emitted every time a new Radon Retrieval gets successfully verified and stored into the WitOracleRadonRegistry.\"}},\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistryEvents.sol\":\"IWitOracleRadonRegistryEvents\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistryEvents.sol\":{\"keccak256\":\"0x9bd30477aeb33de11c4f1df3cd7451452a90ffed1f6eabd9e643046bf1e60d66\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fb38c5528ed2e1bf90ff8d123bf5a9523d0dc49f448d6c39ddad1cd9048d0a\",\"dweb:/ipfs/QmQq1RUwFgnGTk3xDAmN6u2WMPBzvjZNJc7TPYtG6aZfRn\"]},\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestFactory.sol":{"IWitOracleRadonRequestFactory":{"abi":[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"witOracleRadonRequestModal","type":"address"}],"name":"NewRadonRequestModal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"witOracleRadonRequestTemplate","type":"address"}],"name":"NewRadonRequestTemplate","type":"event"},{"inputs":[{"components":[{"internalType":"enum Witnet.RadonRetrievalMethods","name":"method","type":"uint8"},{"internalType":"string","name":"body","type":"string"},{"internalType":"string[2][]","name":"headers","type":"string[2][]"},{"internalType":"bytes","name":"script","type":"bytes"}],"internalType":"struct IWitOracleRadonRequestFactory.DataSourceRequest","name":"commonDataRequest","type":"tuple"},{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"crowdAttestationTally","type":"tuple"}],"name":"buildRadonRequestModal","outputs":[{"internalType":"contract IWitOracleRadonRequestModal","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"url","type":"string"},{"components":[{"internalType":"enum Witnet.RadonRetrievalMethods","name":"method","type":"uint8"},{"internalType":"string","name":"body","type":"string"},{"internalType":"string[2][]","name":"headers","type":"string[2][]"},{"internalType":"bytes","name":"script","type":"bytes"}],"internalType":"struct IWitOracleRadonRequestFactory.DataSourceRequest","name":"request","type":"tuple"}],"internalType":"struct IWitOracleRadonRequestFactory.DataSource[]","name":"dataSources","type":"tuple[]"},{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"dataSourcesAggregator","type":"tuple"},{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"crowdAttestationTally","type":"tuple"}],"name":"buildRadonRequestTemplate","outputs":[{"internalType":"contract IWitOracleRadonRequestTemplate","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"dataRetrieveHashes","type":"bytes32[]"},{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"dataSourcesAggregator","type":"tuple"},{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"crowdAttestationTally","type":"tuple"}],"name":"buildRadonRequestTemplate","outputs":[{"internalType":"contract IWitOracleRadonRequestTemplate","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"buildRadonRequestModal((uint8,string,string[2][],bytes),(uint8,(uint8,bytes)[]))":"c96e201f","buildRadonRequestTemplate((string,(uint8,string,string[2][],bytes))[],(uint8,(uint8,bytes)[]),(uint8,(uint8,bytes)[]))":"9f165d4b","buildRadonRequestTemplate(bytes32[],(uint8,(uint8,bytes)[]),(uint8,(uint8,bytes)[]))":"e71dc532"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"witOracleRadonRequestModal\",\"type\":\"address\"}],\"name\":\"NewRadonRequestModal\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"witOracleRadonRequestTemplate\",\"type\":\"address\"}],\"name\":\"NewRadonRequestTemplate\",\"type\":\"event\"},{\"inputs\":[{\"components\":[{\"internalType\":\"enum Witnet.RadonRetrievalMethods\",\"name\":\"method\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"body\",\"type\":\"string\"},{\"internalType\":\"string[2][]\",\"name\":\"headers\",\"type\":\"string[2][]\"},{\"internalType\":\"bytes\",\"name\":\"script\",\"type\":\"bytes\"}],\"internalType\":\"struct IWitOracleRadonRequestFactory.DataSourceRequest\",\"name\":\"commonDataRequest\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"crowdAttestationTally\",\"type\":\"tuple\"}],\"name\":\"buildRadonRequestModal\",\"outputs\":[{\"internalType\":\"contract IWitOracleRadonRequestModal\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"string\",\"name\":\"url\",\"type\":\"string\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonRetrievalMethods\",\"name\":\"method\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"body\",\"type\":\"string\"},{\"internalType\":\"string[2][]\",\"name\":\"headers\",\"type\":\"string[2][]\"},{\"internalType\":\"bytes\",\"name\":\"script\",\"type\":\"bytes\"}],\"internalType\":\"struct IWitOracleRadonRequestFactory.DataSourceRequest\",\"name\":\"request\",\"type\":\"tuple\"}],\"internalType\":\"struct IWitOracleRadonRequestFactory.DataSource[]\",\"name\":\"dataSources\",\"type\":\"tuple[]\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"dataSourcesAggregator\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"crowdAttestationTally\",\"type\":\"tuple\"}],\"name\":\"buildRadonRequestTemplate\",\"outputs\":[{\"internalType\":\"contract IWitOracleRadonRequestTemplate\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32[]\",\"name\":\"dataRetrieveHashes\",\"type\":\"bytes32[]\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"dataSourcesAggregator\",\"type\":\"tuple\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"crowdAttestationTally\",\"type\":\"tuple\"}],\"name\":\"buildRadonRequestTemplate\",\"outputs\":[{\"internalType\":\"contract IWitOracleRadonRequestTemplate\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestFactory.sol\":\"IWitOracleRadonRequestFactory\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestFactory.sol\":{\"keccak256\":\"0x4484204bd9cb0f054dfe5120409e9da5ff7e4eca03917e3c0c4cef9a322ee98a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ecd34db48b011fc94c5132ff6fead4ca36b45a464e2342b65692cc4001cde0bb\",\"dweb:/ipfs/QmNPG3hM7XpMN3iGvR7UhGiSS3Kz5qNmEZKUQRjSPggKax\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestModal.sol\":{\"keccak256\":\"0xe939497e9d6b7e6ede25f885a9079797ec91107893e974cb11d052ed40e80dab\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b3272b7a52bd122c7a9b02b07d681cdcbe9a9b58039d05b8642db86045864866\",\"dweb:/ipfs/QmQadtigEDbLL5UoqVTt35ukZHz1QaZ54eD7sMFpK82tuX\"]},\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestTemplate.sol\":{\"keccak256\":\"0xd0829d45fe03f6c8bd48e8fffa2e5cf438349b5cf853d22dde1f04cdd614d4e8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da54a909fc2f50e36092296d4d15c65c1445abc3d9f9e9e466139ace88c6d2a8\",\"dweb:/ipfs/QmW5VT5KX33QoJ6mz9wsUt6iFL9qFdcvbxqGRMz7niUB4F\"]},\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestModal.sol":{"IWitOracleRadonRequestModal":{"abi":[{"inputs":[],"name":"getCrowdAttestationTally","outputs":[{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDataResultType","outputs":[{"internalType":"enum Witnet.RadonDataTypes","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDataSourcesAggregator","outputs":[{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDataSourcesArgsCount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRadonModalRetrieval","outputs":[{"components":[{"internalType":"uint8","name":"argsCount","type":"uint8"},{"internalType":"enum Witnet.RadonRetrievalMethods","name":"method","type":"uint8"},{"internalType":"enum Witnet.RadonDataTypes","name":"dataType","type":"uint8"},{"internalType":"string","name":"url","type":"string"},{"internalType":"string","name":"body","type":"string"},{"internalType":"string[2][]","name":"headers","type":"string[2][]"},{"internalType":"bytes","name":"radonScript","type":"bytes"}],"internalType":"struct Witnet.RadonRetrieval","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"commonRetrievalArgs","type":"string[]"},{"internalType":"string[]","name":"dataProviders","type":"string[]"}],"name":"verifyRadonRequest","outputs":[{"internalType":"Witnet.RadonHash","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"witOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"getCrowdAttestationTally()":"0f0adf5b","getDataResultType()":"7f2b1d77","getDataSourcesAggregator()":"13152e89","getDataSourcesArgsCount()":"9ae40404","getRadonModalRetrieval()":"7bb725d3","verifyRadonRequest(string[],string[])":"f0e271bc","witOracle()":"1014d375"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"getCrowdAttestationTally\",\"outputs\":[{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDataResultType\",\"outputs\":[{\"internalType\":\"enum Witnet.RadonDataTypes\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDataSourcesAggregator\",\"outputs\":[{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDataSourcesArgsCount\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getRadonModalRetrieval\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"argsCount\",\"type\":\"uint8\"},{\"internalType\":\"enum Witnet.RadonRetrievalMethods\",\"name\":\"method\",\"type\":\"uint8\"},{\"internalType\":\"enum Witnet.RadonDataTypes\",\"name\":\"dataType\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"url\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"body\",\"type\":\"string\"},{\"internalType\":\"string[2][]\",\"name\":\"headers\",\"type\":\"string[2][]\"},{\"internalType\":\"bytes\",\"name\":\"radonScript\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonRetrieval\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string[]\",\"name\":\"commonRetrievalArgs\",\"type\":\"string[]\"},{\"internalType\":\"string[]\",\"name\":\"dataProviders\",\"type\":\"string[]\"}],\"name\":\"verifyRadonRequest\",\"outputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracle\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestModal.sol\":\"IWitOracleRadonRequestModal\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestModal.sol\":{\"keccak256\":\"0xe939497e9d6b7e6ede25f885a9079797ec91107893e974cb11d052ed40e80dab\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b3272b7a52bd122c7a9b02b07d681cdcbe9a9b58039d05b8642db86045864866\",\"dweb:/ipfs/QmQadtigEDbLL5UoqVTt35ukZHz1QaZ54eD7sMFpK82tuX\"]},\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestTemplate.sol":{"IWitOracleRadonRequestTemplate":{"abi":[{"inputs":[],"name":"getCrowdAttestationTally","outputs":[{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDataResultType","outputs":[{"internalType":"enum Witnet.RadonDataTypes","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDataSources","outputs":[{"components":[{"internalType":"uint8","name":"argsCount","type":"uint8"},{"internalType":"enum Witnet.RadonRetrievalMethods","name":"method","type":"uint8"},{"internalType":"enum Witnet.RadonDataTypes","name":"dataType","type":"uint8"},{"internalType":"string","name":"url","type":"string"},{"internalType":"string","name":"body","type":"string"},{"internalType":"string[2][]","name":"headers","type":"string[2][]"},{"internalType":"bytes","name":"radonScript","type":"bytes"}],"internalType":"struct Witnet.RadonRetrieval[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDataSourcesAggregator","outputs":[{"components":[{"internalType":"enum Witnet.RadonReduceOpcodes","name":"opcode","type":"uint8"},{"components":[{"internalType":"enum Witnet.RadonFilterOpcodes","name":"opcode","type":"uint8"},{"internalType":"bytes","name":"cborArgs","type":"bytes"}],"internalType":"struct Witnet.RadonFilter[]","name":"filters","type":"tuple[]"}],"internalType":"struct Witnet.RadonReducer","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDataSourcesArgsCount","outputs":[{"internalType":"uint8[]","name":"","type":"uint8[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[][]","name":"args","type":"string[][]"}],"name":"verifyRadonRequest","outputs":[{"internalType":"Witnet.RadonHash","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"witOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"getCrowdAttestationTally()":"0f0adf5b","getDataResultType()":"7f2b1d77","getDataSources()":"bc04eba8","getDataSourcesAggregator()":"13152e89","getDataSourcesArgsCount()":"9ae40404","verifyRadonRequest(string[][])":"bf7a0bd3","witOracle()":"1014d375"}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"getCrowdAttestationTally\",\"outputs\":[{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDataResultType\",\"outputs\":[{\"internalType\":\"enum Witnet.RadonDataTypes\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDataSources\",\"outputs\":[{\"components\":[{\"internalType\":\"uint8\",\"name\":\"argsCount\",\"type\":\"uint8\"},{\"internalType\":\"enum Witnet.RadonRetrievalMethods\",\"name\":\"method\",\"type\":\"uint8\"},{\"internalType\":\"enum Witnet.RadonDataTypes\",\"name\":\"dataType\",\"type\":\"uint8\"},{\"internalType\":\"string\",\"name\":\"url\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"body\",\"type\":\"string\"},{\"internalType\":\"string[2][]\",\"name\":\"headers\",\"type\":\"string[2][]\"},{\"internalType\":\"bytes\",\"name\":\"radonScript\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonRetrieval[]\",\"name\":\"\",\"type\":\"tuple[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDataSourcesAggregator\",\"outputs\":[{\"components\":[{\"internalType\":\"enum Witnet.RadonReduceOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"components\":[{\"internalType\":\"enum Witnet.RadonFilterOpcodes\",\"name\":\"opcode\",\"type\":\"uint8\"},{\"internalType\":\"bytes\",\"name\":\"cborArgs\",\"type\":\"bytes\"}],\"internalType\":\"struct Witnet.RadonFilter[]\",\"name\":\"filters\",\"type\":\"tuple[]\"}],\"internalType\":\"struct Witnet.RadonReducer\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getDataSourcesArgsCount\",\"outputs\":[{\"internalType\":\"uint8[]\",\"name\":\"\",\"type\":\"uint8[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string[][]\",\"name\":\"args\",\"type\":\"string[][]\"}],\"name\":\"verifyRadonRequest\",\"outputs\":[{\"internalType\":\"Witnet.RadonHash\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracle\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"verifyRadonRequest(string[][])\":{\"details\":\"This method requires less gas than buildWitOracleRequest(string[][]), and it's usually preferred when data requests built out of this templateare intended to be used just once in lifetime.    \"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"verifyRadonRequest(string[][])\":{\"notice\":\"Verifies into the bounded WitOracle's registry the actual bytecode  and RAD hash of the Witnet-compliant Radon Request that gets provably  made out of the data sources, aggregate and tally Radon Reducers that  compose this WitOracleRequestTemplate. While no WitOracleRequest instance is  actually constructed, the returned value will be accepted as a valid RAD hash on the witOracle() contract from now on.  Reverts if: - the ranks of passed array don't match either the number of this    template's data sources, or the number of required parameters by    each one of those.\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestTemplate.sol\":\"IWitOracleRadonRequestTemplate\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestTemplate.sol\":{\"keccak256\":\"0xd0829d45fe03f6c8bd48e8fffa2e5cf438349b5cf853d22dde1f04cdd614d4e8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://da54a909fc2f50e36092296d4d15c65c1445abc3d9f9e9e466139ace88c6d2a8\",\"dweb:/ipfs/QmW5VT5KX33QoJ6mz9wsUt6iFL9qFdcvbxqGRMz7niUB4F\"]},\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/libs/Bech32.sol":{"Bech32":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212202f23a57314f6a3f23895d427f20bede8963e762b0b179d34f585577c72bfd9fe64736f6c634300081c0033","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 0x2F 0x23 0xA5 PUSH20 0x14F6A3F23895D427F20BEDE8963E762B0B179D34 CREATE2 DUP6 JUMPI PUSH29 0x72BFD9FE64736F6C634300081C00330000000000000000000000000000 ","sourceMap":"211:13199:46:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;211:13199:46;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212202f23a57314f6a3f23895d427f20bede8963e762b0b179d34f585577c72bfd9fe64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2F 0x23 0xA5 PUSH20 0x14F6A3F23895D427F20BEDE8963E762B0B179D34 CREATE2 DUP6 JUMPI PUSH29 0x72BFD9FE64736F6C634300081C00330000000000000000000000000000 ","sourceMap":"211:13199:46:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Collection of functions related to the Bech32 address generation\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":\"Bech32\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/libs/Secp256k1.sol":{"Secp256k1":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212203b2b2e6c8343f94bacbaa2b5c42f59d41a1d3803c5e0e8353a456934144ded6764736f6c634300081c0033","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 EXTCODESIZE 0x2B 0x2E PUSH13 0x8343F94BACBAA2B5C42F59D41A SAR CODESIZE SUB 0xC5 0xE0 0xE8 CALLDATALOAD GASPRICE GASLIMIT PUSH10 0x34144DED6764736F6C63 NUMBER STOP ADDMOD SHR STOP CALLER ","sourceMap":"299:10679:47:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;299:10679:47;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212203b2b2e6c8343f94bacbaa2b5c42f59d41a1d3803c5e0e8353a456934144ded6764736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXTCODESIZE 0x2B 0x2E PUSH13 0x8343F94BACBAA2B5C42F59D41A SAR CODESIZE SUB 0xC5 0xE0 0xE8 CALLDATALOAD GASPRICE GASLIMIT PUSH10 0x34144DED6764736F6C63 NUMBER STOP ADDMOD SHR STOP CALLER ","sourceMap":"299:10679:47:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"author\":\"cyphered.eth\",\"details\":\"Library providing arithmetic operations over signed `secpk256k1` signed message due to recover the signer public key EC point in `Solidity`.\",\"kind\":\"dev\",\"methods\":{},\"title\":\"Secp256k1 public key recovery Library\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":\"Secp256k1\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/libs/Witnet.sol":{"Witnet":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212203946c1ddff939f84019957017b8ddbc18c3741d641fed8cbd2b6b272852f2ba464736f6c634300081c0033","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 CODECOPY CHAINID 0xC1 0xDD SELFDESTRUCT SWAP4 SWAP16 DUP5 ADD SWAP10 JUMPI ADD PUSH28 0x8DDBC18C3741D641FED8CBD2B6B272852F2BA464736F6C634300081C STOP CALLER ","sourceMap":"151:52659:48:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;151:52659:48;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212203946c1ddff939f84019957017b8ddbc18c3741d641fed8cbd2b6b272852f2ba464736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CODECOPY CHAINID 0xC1 0xDD SELFDESTRUCT SWAP4 SWAP16 DUP5 ADD SWAP10 JUMPI ADD PUSH28 0x8DDBC18C3741D641FED8CBD2B6B272852F2BA464736F6C634300081C STOP CALLER ","sourceMap":"151:52659:48:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":\"Witnet\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/libs/Bech32.sol\":{\"keccak256\":\"0x14618323a0efe7586c20906a2e9cee7ad63baa976ff231c57f7f2d7d3707fb8b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a19f05fe84047a7a6d3d6fc39972b432e6e536aa70472386a9d7a6d9aab64a64\",\"dweb:/ipfs/QmcHwUY66yjiotRH4Q3kbRvSzcHyLQ1yHL3KbtQKiMhtZE\"]},\"witnet-solidity-bridge/contracts/libs/Secp256k1.sol\":{\"keccak256\":\"0xbe686002da5004ff39dd70709f3820eba2afe9323ae9cb894009c161e4b1a666\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://18fab91775216de0707cea9ad285b10be09127461a13432fea358bf9cb2a0c2e\",\"dweb:/ipfs/QmeRUGsgstnM4hxM9hpkBf3L6cE5btirEaowcMxmuw3utj\"]},\"witnet-solidity-bridge/contracts/libs/Witnet.sol\":{\"keccak256\":\"0x94d2c9bc4aba52b0396402a8197b03cab6c405019334d6f7cf97e3f50db9d0cd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a7ed71b13d245315277119892960c85ebbc34c76cf897ee955b14487cf640bb9\",\"dweb:/ipfs/QmW8Ve8QLuvpjYRLVE3kPosnTwsMw7qAbxTJPTvhE3nrqJ\"]},\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol":{"WitnetBuffer":{"abi":[{"inputs":[],"name":"EmptyBuffer","type":"error"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"range","type":"uint256"}],"name":"IndexOutOfBounds","type":"error"},{"inputs":[{"internalType":"uint256","name":"expected","type":"uint256"},{"internalType":"uint256","name":"given","type":"uint256"}],"name":"MissingArgs","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220cb74ce272f0b7c53ea73fcd90585a28df48d17924b7291117bb7a2e4aef51e5064736f6c634300081c0033","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 0xCB PUSH21 0xCE272F0B7C53EA73FCD90585A28DF48D17924B7291 GT PUSH28 0xB7A2E4AEF51E5064736F6C634300081C003300000000000000000000 ","sourceMap":"644:26479:49:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;644:26479:49;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220cb74ce272f0b7c53ea73fcd90585a28df48d17924b7291117bb7a2e4aef51e5064736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCB PUSH21 0xCE272F0B7C53EA73FCD90585A28DF48D17924B7291 GT PUSH28 0xB7A2E4AEF51E5064736F6C634300081C003300000000000000000000 ","sourceMap":"644:26479:49:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"EmptyBuffer\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"range\",\"type\":\"uint256\"}],\"name\":\"IndexOutOfBounds\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"expected\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"given\",\"type\":\"uint256\"}],\"name\":\"MissingArgs\",\"type\":\"error\"}],\"devdoc\":{\"author\":\"The Witnet Foundation.\",\"details\":\"`uint32` is used here for `cursor` because `uint16` would only enable seeking up to 8KB, which could in some theoretical use cases be exceeded. Conversely, `uint32` supports up to 512MB, which cannot credibly be exceeded.\",\"kind\":\"dev\",\"methods\":{},\"title\":\"A convenient wrapper around the `bytes memory` type that exposes a buffer-like interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"The buffer has an inner cursor that tracks the final offset of every read, i.e. any subsequent read will start with the byte that goes right after the last one in the previous read.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":\"WitnetBuffer\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]}},\"version\":1}"}},"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol":{"WitnetCBOR":{"abi":[{"inputs":[],"name":"EmptyArray","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"InvalidLengthEncoding","type":"error"},{"inputs":[{"internalType":"uint256","name":"read","type":"uint256"},{"internalType":"uint256","name":"expected","type":"uint256"}],"name":"UnexpectedMajorType","type":"error"},{"inputs":[{"internalType":"uint256","name":"unexpected","type":"uint256"}],"name":"UnsupportedMajorType","type":"error"},{"inputs":[{"internalType":"uint256","name":"primitive","type":"uint256"}],"name":"UnsupportedPrimitive","type":"error"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220871a7792298060cc17409a96dbfa7cfc11bdb1d313657d59b54699e80a43c9e164736f6c634300081c0033","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 DUP8 BYTE PUSH24 0x92298060CC17409A96DBFA7CFC11BDB1D313657D59B54699 0xE8 EXP NUMBER 0xC9 0xE1 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"536:19028:50:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;536:19028:50;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220871a7792298060cc17409a96dbfa7cfc11bdb1d313657d59b54699e80a43c9e164736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP8 BYTE PUSH24 0x92298060CC17409A96DBFA7CFC11BDB1D313657D59B54699 0xE8 EXP NUMBER 0xC9 0xE1 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"536:19028:50:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.28+commit.7893614a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"EmptyArray\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"InvalidLengthEncoding\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"read\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expected\",\"type\":\"uint256\"}],\"name\":\"UnexpectedMajorType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"unexpected\",\"type\":\"uint256\"}],\"name\":\"UnsupportedMajorType\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"primitive\",\"type\":\"uint256\"}],\"name\":\"UnsupportedPrimitive\",\"type\":\"error\"}],\"devdoc\":{\"author\":\"The Witnet Foundation.\",\"details\":\"Most of the logic has been borrowed from Patrick Gansterer\\u2019s cbor.js library: https://github.com/paroga/cbor-js\",\"kind\":\"dev\",\"methods\":{},\"title\":\"A minimalistic implementation of \\u201cRFC 7049 Concise Binary Object Representation\\u201d\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"This library leverages a buffer-like structure for step-by-step decoding of bytes so as to minimize the gas cost of decoding them into a useful native type.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":\"WitnetCBOR\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"witnet-solidity-bridge/contracts/libs/WitnetBuffer.sol\":{\"keccak256\":\"0x8e07aebe2954ab3e6f2d8eceedb12db7cf915c1f3e8630f4fa9999cecb1c78ec\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ed6c54cc901183d61546e8fd15bd5ea8ef238ebc915642946071d435dd7481ea\",\"dweb:/ipfs/Qmcaqta7YjUSBbBUGqoh44bsCS6UqqoyHjBuz4qnKBShXM\"]},\"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol\":{\"keccak256\":\"0xd99308373575cc10fb7f2ceb0f6a8625f3911275c1fa27811fae498d98d03d97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b4909a999d7b660a2dc54ca957b6eccfa523e2765fc4d6a2574dee7d5cd67b43\",\"dweb:/ipfs/QmWGQT4KDcfSFe1hcHVoWx6E4PhYMaod5iLpJCWBEeShzh\"]}},\"version\":1}"}}}}}